/*
Theme Name: 7Vertex
Author:Rinku
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Roboto:wght@300;400;500;700&display=swap');
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color:#e89530;
  --theme-color-2:#566DFB;
  --header:#1E2023;
  --text:#555;
  --border:#E6EFFF;
  --ratting:#F8BC26;
  --bg:#FFF3ED;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  background: var(--theme-color);
  color: var(--white);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 35px;
  padding-right: 5px;
  border-radius: 0;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.theme-btn i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme-color);
  margin-left: 35px;
  transition: all 0.4s ease-in-out;
}
.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.theme-btn:hover::before, .theme-btn:hover::after {
  width: 100%;
}
.theme-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header {
  background-color: var(--header);
}
.theme-btn.bg-header::before, .theme-btn.bg-header::after {
  background-color: var(--white);
}
.theme-btn.bg-header i {
  background-color: var(--theme-color);
  color: var(--white);
}
.theme-btn.bg-header:hover {
  color: var(--header);
}
.theme-btn.theme-btn-2 {
  background: var(--theme-color-2);
}
.theme-btn.theme-btn-2 i {
  color: var(--theme-color-2);
}
.theme-btn.theme-btn-2:hover::before, .theme-btn.theme-btn-2:hover::after {
  width: 100%;
}
.theme-btn.theme-btn-2:hover i {
  background: var(--theme-color-2);
  color: var(--white);
}

.link-btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color);
  text-transform: uppercase;
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
   font-family: "Roboto", "Noto Sans TC", sans-serif, serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Unbounded", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

h1 {
  font-size: 150px;
  font-weight: 600;
  line-height: 127%;
}

h2 {
  font-size: 56px;
  font-weight:600;
  line-height: 121%;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 140%;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight:600;
  line-height: 150%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight:600;
  line-height: 160%;
}

h6 {
  font-size: 16px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme-color);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Unbounded", sans-serif, "Rubik", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme-color);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Unbounded", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  transition: 0.3s;
}
.header-search-bar.search-open {
  top: 0;
}

.contact-search-form-box {
  margin-top: 50px;
}
.contact-search-form-box form {
  position: relative;
}
.contact-search-form-box form button {
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: 18px;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.search-bar .contact-search-form-box input {
  border: none;
  width: 100%;
  outline: none;
  color: var(--header);
  border-bottom: 1px solid var(--border);
  font-size: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 767px) {
  .search-bar .contact-search-form-box input {
    font-size: 22px;
  }
}
.search-bar .contact-search-form-box input::placeholder {
  color: var(--header);
}
.search-bar .contact-search-form-box i {
  color: var(--theme-color);
}
.search-bar .contact-search-form-box p {
  color: #666C78;
  padding-top: 15px;
}
.search-bar .search-bar-title {
  font-size: 25px;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
  margin-top: -7px;
}
@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}
.section-title span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .section-title span {
    margin-bottom: 5px;
  }
}
.section-title span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color);
  width: 37px;
  top: 13px;
}
.section-title span.text-white-style {
  color: var(--white);
}
.section-title span.text-white-style::before {
  background-color: var(--white);
}
.section-title.style-2 span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme-color-2);
  display: inline-block;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
}
.section-title.style-2 span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 2px;
  background-color: var(--theme-color-2);
  width: 37px;
  top: 14px;
}
.section-title.style-2 span.style-2::before {
  background-color: var(--white);
}
.section-title.style-2 h2 {
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-title p {
    margin-top: 0.5rem !important;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 0;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .section-title-area {
    gap: 20px;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .section-title-area .theme-btn {
    display: none;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg) !important;
}

.sect-bg {
  background-color: rgb(239, 238, 250);
}

.footer-bg {
  background-color: var(--header);
}

.section-bg-2 {
  background: rgba(86, 109, 251, 0.1);
}

.section-padding {
  padding:75px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding:60px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 50px 0;
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes arryUpDown {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}
.animation__arryUpDown {
  animation: arryUpDown 2s ease infinite alternate;
}

@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.GlidingArrow {
  -webkit-animation: slide 5s linear infinite;
  animation: slide 5s linear infinite;
}

.delay1 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.delay3 {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.delay4 {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.delay5 {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-150);
  }
  20% {
    opacity: 1;
    transform: translateX(-90);
  }
  80% {
    opacity: 1;
    transform: translateX(90);
  }
  100% {
    opacity: 0;
    transform: translateX(150);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}
@-webkit-keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 22px;
}
@media (max-width: 1600px) {
  .header-main .main-menu ul li {
    margin-inline-end: 20px;
  }
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight:400;
  color: var(--header);
   font-family: "Roboto", "Noto Sans TC", sans-serif, serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a .head-icon {
  margin-left: 0;
  margin-right: 5px;
}
.header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 320px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  transform: translateY(10px);
  transition: all 0.4s ease-in-out;
  padding:15px 15px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom:none;
}
.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom:5px;
  padding-top:5px;
  border-bottom:  1px dotted #323232;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight:400;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: capitalize;
  font-family: "Rubik", sans-serif;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme-color);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
  overflow: hidden;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
  color: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a:hover {
  color: var(--theme-color) !important;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 50px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .header-right .search-icon {
  color: var(--header);
  font-size: 18px;
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-section-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-section-3 .header-2 {
  position: static;
}
.header-section-3.style-2 {
  position: static;
}

.header-top-section {
  background: #1E2023;
  padding: 8px 0;
}
@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper.style-2 p a {
  color: var(--theme-color-2);
}
.header-top-wrapper p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.header-top-wrapper p a {
  color: var(--theme-color);
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}
.header-top-wrapper .contact-right {
  display: flex;
  align-items: center;
  gap: 55px;
}
.header-top-wrapper .contact-right li {
  color: var(--white);
}
.header-top-wrapper .contact-right li a {
  color: var(--white);
}
.header-top-wrapper .contact-right li i {
  margin-right: 5px;
  color: var(--theme-color);
}
.header-top-wrapper .flag-wrap {
  position: relative;
  max-width: 106px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .header-top-wrapper .flag-wrap {
    display: none;
  }
}
.header-top-wrapper .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
}
.header-top-wrapper .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-top-wrapper .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.header-top-wrapper .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-top-wrapper .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-top-wrapper .flag-wrap .nice-select::after {
  right: 75px;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 8px;
  height: 8px;
  top: 17px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-top-wrapper .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.header-top-wrapper .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-top-wrapper .flag-wrap .flag {
    display: none;
  }
}
.header-top-wrapper .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-top-wrapper .social-icon {
  gap: 15px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-top-wrapper .social-icon {
    display: none !important;
  }
}
.header-top-wrapper .social-icon a {
  color: var(--white);
}
.header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}
.header-top-wrapper .right-flag {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media (max-width: 1600px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -450px;
  }
}
@media (max-width: 1399px) {
  .header-1 .main-menu ul li .has-homemenu {
    left: -560px;
  }
}
.header-1 .header-main {
  padding: 0 0;
}
.header-1 .header-button .theme-btn {
  padding: 35px 70px;
}
@media (max-width: 1399px) {
  .header-1 .header-button .theme-btn {
    display: none;
  }
}
.header-1 .mega-menu-wrapper {
  background-color: var(--white);
  padding-left: 40px;
}
@media (max-width: 470px) {
  .header-1 .mega-menu-wrapper {
    padding-left: 25px;
  }
}
.header-1 .container-fluid {
  padding-left: 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 0;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 35px;
}
.header-1 .header-left .social-icon {
  gap: 15px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  padding-left: 35px;
}
@media (max-width: 1399px) {
  .header-1 .header-left .social-icon {
    display: none !important;
  }
}
.header-1 .header-left .social-icon a {
  color: var(--header);
}
.header-1 .header-left .social-icon a:hover {
  color: var(--theme-color);
}
.header-1 .sidebar__toggle {
  width: 85px;
  height: 84px;
  line-height: 84px;
  text-align: center;
  background: #1E2023;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-logo-2 {
  display: none;
}
.header-2 .header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
}
@media (max-width: 1199px) {
  .header-2 .header-main {
    padding: 14px 0;
  }
}
.header-2 .header-main .main-menu ul {
  margin-bottom: 0;
}
.header-2 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-2 .header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.header-2 .header-main .sidebar__toggle {
  color: var(--white);
}
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 100px;
}
.header-2 .header-right .header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .header-2 .header-right .header-contact {
    display: none;
  }
}
.header-2 .header-right .header-contact .search-toggle {
  color: var(--white);
}
.header-2 .header-right .header-contact .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-2 .header-right .header-contact .info-items .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 26px;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-2 .header-right .header-contact .info-items .content {
    text-align: center;
  }
}
.header-2 .header-right .header-contact .info-items .content span {
  font-size: 14px;
  color: var(--white);
  margin-bottom: 5px;
  font-weight: 500;
}
.header-2 .header-right .header-contact .info-items .content h6 {
  font-size: 18px;
  font-weight: 700;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--white);
}
.header-2 .header-right .flag-wrap {
  position: relative;
  max-width: 106px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  height: 85px;
  line-height: 85px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .header-2 .header-right .flag-wrap {
    display: none;
  }
}
.header-2 .header-right .flag-wrap .nice-select {
  padding: 0 0 0 45px;
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  border: none !important;
  padding-bottom: 0 !important;
  font-weight: 400 !important;
}
.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
}
.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.header-2 .header-right .flag-wrap .nice-select .option {
  border: none;
  background-color: #fff;
}
.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.header-2 .header-right .flag-wrap .nice-select::after {
  right: 75px;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
  width: 8px;
  height: 8px;
  top: 43px;
  border-bottom: 1px solid transparent;
  border-color: var(--white);
  border-right: 1px solid var(--white);
}
.header-2 .header-right .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.header-2 .header-right .flag-wrap .flag {
  position: absolute;
  top: 0;
  left: 15px;
  z-index: 1;
}
@media (max-width: 767px) {
  .header-2 .header-right .flag-wrap .flag {
    display: none;
  }
}
.header-2 .header-right .flag-wrap .flag img {
  width: 100%;
  height: 100%;
}
.header-2 .header-right .social-icon {
  gap: 20px;
  font-size: 18px;
}
@media (max-width: 1399px) {
  .header-2 .header-right .social-icon {
    display: none !important;
  }
}
.header-2 .header-right .social-icon a {
  color: var(--white);
}
.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}
.header-2.header-4 {
  position: static;
  border: none;
}
.header-2.header-4 .header-main {
  padding: 16px 0;
}
.header-2.header-4 .header-main .main-menu ul li a {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-2.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color-2) !important;
}
.header-2.header-4 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .main-menu ul li:hover > a {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color-2);
}
.header-2.header-4 .header-main .sidebar__toggle {
  color: var(--header);
}
.header-2.header-4 .search-header {
  position: relative;
}
.header-2.header-4 .search-header .form {
  margin: 0;
  padding: 0;
  height: 0;
}
.header-2.header-4 .search-header input {
  width: 100%;
  outline: none;
  border: 1px solid rgba(30, 32, 35, 0.19);
  padding: 18px 20px;
  line-height: 1;
  color: var(--text);
}
.header-2.header-4 .search-header i {
  position: absolute;
  top: 18px;
  right: 20px;
}

.header-middle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  padding-right: 0;
  background: #1E2023;
  margin-bottom: -57px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .header-middle-wrapper {
    display: none;
  }
}
.header-middle-wrapper .left-shape {
  position: absolute;
  top: 1px;
  left: -23px;
}
.header-middle-wrapper .right-shape {
  position: absolute;
  top: 1px;
  right: -23px;
}
.header-middle-wrapper .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-middle-wrapper .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(255, 255, 255, 0.69);
}
.header-middle-wrapper .theme-btn {
  padding: 40px 50px;
}
.header-middle-wrapper .theme-btn::before, .header-middle-wrapper .theme-btn::after {
  background-color: var(--white);
}
.header-middle-wrapper .theme-btn:hover {
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: var(---box-shadow);
}
.sticky.header-2 .header-logo {
  display: none;
}
.sticky.header-2 .header-logo-2 {
  display: block;
}
.sticky.header-2 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky.header-2 .header-main .main-menu ul li a:hover {
  color: var(--theme-color) !important;
}
.sticky.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.sticky.header-2 .header-main .sidebar__toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .search-toggle {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .icon {
  background-color: var(--theme-color);
  color: var(--white);
}
.sticky.header-2 .header-right .header-contact .info-items .content span {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 {
  color: var(--header);
}
.sticky.header-2 .header-right .header-contact .info-items .content h6 a {
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  font-weight: 400;
  color: var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select .list {
  width: 100px;
  left: 0;
  background-color: var(--white);
  border-radius: 0;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select .option.selected.focus {
  background-color: #fff;
}
.sticky.header-2 .header-right .flag-wrap .nice-select::after {
  border-bottom: 1px solid transparent;
  border-color: var(--header);
  border-right: 1px solid var(--header);
}
.sticky.header-2 .header-right .flag-wrap .nice-select span {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a {
  color: var(--header);
}
.sticky.header-2 .header-right .social-icon a:hover {
  color: var(--theme-color);
}
.sticky.header-5 {
  position: relative;
}
.sticky.header-5 .header-logo-4 {
  display: block !important;
}

.header-section-5 {
  position: relative;
  z-index: 9999;
  margin-bottom: -68px;
}
@media (max-width: 1199px) {
  .header-section-5 {
    margin-bottom: 0;
    background-color: var(--theme-color-2);
  }
}
.header-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1E2023;
  z-index: -1;
  height: 59%;
}
@media (max-width: 1199px) {
  .header-section-5::before {
    display: none;
  }
}
.header-section-5 .header-logo-3 {
  padding-top: 25px;
}
@media (max-width: 1199px) {
  .header-section-5 .header-logo-3 {
    padding-top: 10px;
  }
}
.header-section-5 .header-right-wrapper-5 {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.header-section-5 .header-right-wrapper-5 .right-header-items {
  flex-basis: 80%;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 {
  background-color: var(--theme-color-2);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main {
  padding: 0 20px;
}
@media (max-width: 1199px) {
  .header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main {
    padding: 14px 0;
  }
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul {
  margin-bottom: 0;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a i {
  margin-left: 5px;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li a:hover {
  color: var(--white) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu {
  color: var(--header);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color-2) !important;
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color-2);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li:hover > a {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .header-main .sidebar__toggle {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .right-header-items .header-5 .search-toggle {
  color: var(--white);
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
  display: flex;
  align-items: center;
  gap: 80px;
  background-color: var(--white);
  padding: 18px 30px;
}
@media (max-width: 1399px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info {
    display: none;
  }
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color-2);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content {
    text-align: center;
  }
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h5 {
  font-size: 18px;
  color: var(--header);
  margin-bottom: 5px;
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: rgba(30, 32, 35, 0.79);
}
.header-section-5 .header-right-wrapper-5 .header-middle-wrapper-area .header-middle-wrapper-info .info-items .content h6 a {
  color: rgba(30, 32, 35, 0.79);
}

.header-5 .header-logo-4 {
  display: none;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas-title {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
  margin-top: 30px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .theme-btn {
  width: 100%;
  padding: 24px 30px;
  text-align: center;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-section {
  position: relative;
}
.breadcrumb-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(4, 2, 0, 0.73);
}

.page-heading {
  padding: 265px 0 105px;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .page-heading {
    padding: 180px 0 105px;
  }
}
.page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}
.page-heading .breadcrumb-list li {
  color: var(--white);
  font-weight: 400;
  position: relative;
}
.page-heading .breadcrumb-list li a {
  color: var(--white);
}
.page-heading .breadcrumb-list li:not(:last-child)::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  background-color: var(--theme-color);
  top: 13px;
  left: 58px;
}
.page-heading h2 {
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 575px) {
  .page-heading h2 {
    font-size: 48px;
  }
}

.error-wrapper .error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-wrapper .error-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .error-wrapper .error-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .error-wrapper .error-content {
    text-align: center;
  }
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.mean-container .mean-nav ul li a.border-none {
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}
.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

.hero-1 {
  padding: 120px 80px 0;
  position: relative;
  z-index: 9;
  width: calc(100% - 130px);
}
@media (max-width: 1899px) {
  .hero-1 {
    padding: 120px 50px 0;
    width: initial;
  }
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 170px 40px 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 200px 30px 0;
  }
}
.hero-1 .hero-text {
  letter-spacing: -4.8px;
  -webkit-text-stroke: 1px var(--theme-color);
  -webkit-text-fill-color: transparent;
  font-size: 160px;
  font-weight: 700;
  animation: shine 3s infinite;
  -webkit-mask-image: linear-gradient(-75deg, rgba(255, 255, 255, 0.25) 50%, #fff 50%, rgba(255, 255, 255, 0.25) 70%);
  -webkit-mask-size: 200%;
  position: absolute;
  line-height: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Unbounded", sans-serif;
  top: 20%;
}
.hero-1 .hero-arrow-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-1 .hero-arrow-shape img {
  width: 100%;
  height: 100%;
}
.hero-1::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(23, 7, 1, 0.78);
  z-index: -1;
}
.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}
.hero-1 .hero-content h1 {
  color: var(--white);
  line-height: 97%;
}
@media (max-width: 1600px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 105px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 130%;
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-1 .hero-content h1 span {
  font-size: 88px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 span {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 span {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 48px;
  }
}
.hero-1 .hero-content .theme-btn {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content .theme-btn {
    margin-top: 30px;
  }
}
.hero-1 .hero-image {
  text-align: right;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .hero-1 .hero-image {
    text-align: center;
  }
}
@media (max-width: 1600px) {
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.animation-infinite2 {
  animation: ShapeAnim2 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim2 {
  0% {
    background-position: top left;
  }
  100% {
    background-position: 2000px left bottom;
  }
}
.hero-main-section {
  position: relative;
  z-index: 9;
}
.hero-main-section .line-shape {
  height: 67px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.hero-main-section .line-2 {
  position: absolute;
  height: 100%;
  width: 69px;
  background-repeat: repeat;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  animation: ShapeAnim2 80s linear infinite;
}
.hero-main-section .hero-list-contact {
  display: flex;
  align-items: center;
  gap: 30px;
  transform: rotate(-90deg);
  position: absolute;
  top: 46%;
  right: -11%;
  z-index: 99;
}
@media (max-width: 1899px) {
  .hero-main-section .hero-list-contact {
    display: none;
  }
}
.hero-main-section .hero-list-contact li {
  font-size: 18px;
  color: #616161;
  font-weight: 700;
}
.hero-main-section .hero-list-contact li a {
  font-weight: 500;
  color: rgba(97, 97, 97, 0.85);
}

.hero-section-2 {
  position: relative;
}
/*.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.59);
  -moz-transform: scale(1.59);
  transform: scale(1.59);
}*/
.hero-section-2 .array-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 50px;
  right: 50px;
  z-index: 99;
}
@media (max-width: 1199px) {
  .hero-section-2 .array-buttons {
    display: none;
  }
}
.hero-section-2 .array-buttons .array-next, .hero-section-2 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border: 1px solid var(--theme-color);
  color: var(--white);
  background-color: transparent;
}
.hero-section-2 .array-buttons .array-next:hover, .hero-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.hero-section-4 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}
.hero-section-4 .array-buttons {
  display: grid;
  align-items: center;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  right: 50px;
  z-index: 99;
  gap: 15px;
}
@media (max-width: 1899px) {
  .hero-section-4 .array-buttons {
    display: none;
  }
}
.hero-section-4 .array-buttons .array-next, .hero-section-4 .array-buttons .array-prev {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  color: var(--white);
  background-color: transparent;
}
.hero-section-4 .array-buttons .array-next:hover, .hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev {
  background: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
}
.hero-section-4 .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.hero-section-4 .array-buttons .array-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-2 {
  padding: 180px 0 330px;
  position: relative;
}
.hero-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  /*height: 100%;*/
  width: 100%;
  background-repeat: no-repeat;
  background-size:100%;
  background-position: center center;
 /* transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;*/
}

.hero-2 .hero-content {
  position: relative;
  z-index: 99;
/*  max-width: 1100px;*/
  margin: 0 auto;
  margin-top:75px;
  text-align:left;
}
.hero-2 .hero-content h1 {
  font-size:36px;
  color: var(--white);
  font-weight:400;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size:42px;
  }
}
@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size:42px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size:32px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 32px;
  }
}
.hero-2 .hero-content p {
  font-size:18px;
  font-weight:300;
  color: var(--white);
/*  max-width: 600px;*/
  margin:20px auto 0;
}
@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 18px;
    margin-top: 25px;
  }
}
.hero-2 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  justify-content: left;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
  }
}
.hero-2 .hero-content .hero-button .theme-btn {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn:hover {
  border: 1px solid var(--header);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2 i {
  background-color: var(--theme-color);
  color: var(--white);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover {
  border: 1px solid var(--theme-color);
}
.hero-2 .hero-content .hero-button .theme-btn.style-2:hover::before, .hero-2 .hero-content .hero-button .theme-btn.style-2:hover::after {
  background-color: var(--theme-color);
}
.hero-2 .bar-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
@media (max-width: 1399px) {
  .hero-2 .bar-shape {
    display: none;
  }
}
.hero-2 .bar-shape img {
  height: 100%;
}

.hero-3 {
  position: relative;
  padding: 430px 100px 130px;
}
@media (max-width: 1600px) {
  .hero-3 {
    padding: 200px 30px 100px;
  }
}
.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-3 .hero-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1600px) {
  .hero-3 .hero-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.hero-3 .hero-wrapper .left-content {
  position: relative;
}
.hero-3 .hero-wrapper .left-content h1 {
  color: var(--white);
  font-size: 96px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 85px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-wrapper .left-content h1 {
    font-size: 42px;
  }
}
.hero-3 .hero-wrapper .right-content {
  position: relative;
}
.hero-3 .hero-wrapper .right-content p {
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn {
    flex-wrap: wrap;
  }
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text .title {
  margin-bottom: 5px;
  color: var(--white);
}
.hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
}
@media (max-width: 767px) {
  .hero-3 .hero-wrapper .right-content .hero-us-btn .client-info .text h6 {
    text-align: left;
  }
}

.hero-4 {
  position: relative;
}
.hero-4 .left-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .left-shape {
    display: none;
  }
}
.hero-4 .right-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .hero-4 .right-shape {
    display: none;
  }
}
.hero-4 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
}
.hero-4 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(4, 2, 0, 0) 0%, rgba(4, 2, 0, 0.74) 80.87%);
}
.hero-4 .hero-content {
  position: relative;
  z-index: 99;
  padding: 210px 0 210px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content {
    padding: 190px 0 190px;
  }
}
@media (max-width: 991px) {
  .hero-4 .hero-content {
    padding: 160px 0 160px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content {
    padding: 130px 0 130px;
  }
}
.hero-4 .hero-content h1 {
  color: var(--white);
  font-size: 96px;
  letter-spacing: -1.92px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 991px) {
  .hero-4 .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-content h1 {
    font-size: 65px;
    line-height: 140%;
  }
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 {
    font-size: 42px;
  }
}
.hero-4 .hero-content h1 .client-info {
  display: inline-block;
  border-radius: 101px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(21.8999996185px);
  padding: 0 30px;
  line-height: 1;
}
@media (max-width: 575px) {
  .hero-4 .hero-content h1 .client-info {
    padding: 10px 20px;
  }
}
.hero-4 .hero-content h1 .client-info img {
  margin-top: -15px;
}
.hero-4 .hero-content h1 .text-stoke {
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--white);
}
.hero-4 .hero-content p {
  font-size: 20px;
  max-width: 620px;
  color: var(--white);
  padding-left: 20px;
  border-left: 5px solid var(--theme-color-2);
  margin-top: 40px;
}
@media (max-width: 575px) {
  .hero-4 .hero-content p {
    font-size: 18px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 25px;
}
@media (max-width: 1199px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.hero-4 .hero-content .hero-button .theme-btn {
  border: 1px solid transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2 {
  border: 1px solid var(--theme-color-2);
  color: var(--white);
  background-color: transparent;
}
.hero-4 .hero-content .hero-button .theme-btn.style-2::before, .hero-4 .hero-content .hero-button .theme-btn.style-2::after {
  background-color: var(--theme-color-2);
}
.hero-4 .hero-content .hero-button .theme-btn.style-2:hover i {
  background-color: var(--white);
  color: var(--header);
}

.hero-5 {
  position: relative;
}
.hero-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(205deg, rgba(4, 2, 0, 0) 15.95%, rgba(4, 2, 0, 0.82) 56.25%);
}
.hero-5 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 1600px) {
  .hero-5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-5 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .hero-5 .container-fluid {
    padding: 0 30px;
  }
}
.hero-5 .hero-content {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-5 .hero-content {
    padding-top: 120px;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-5 .hero-content h1 {
  font-size: 96px;
  color: var(--white);
}
@media (max-width: 1399px) {
  .hero-5 .hero-content h1 {
    font-size: 76px;
  }
}
@media (max-width: 991px) {
  .hero-5 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-5 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-5 .hero-content h1 {
    font-size: 48px;
  }
}
.hero-5 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .hero-5 .hero-content .hero-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.hero-5 .hero-content .hero-button p {
  color: var(--white);
  font-weight: 600;
  max-width: 468px;
}
.hero-5 .hero-content .hero-box {
  position: absolute;
  bottom: -90%;
  padding: 30px 50px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 1899px) {
  .hero-5 .hero-content .hero-box {
    display: none;
  }
}
.hero-5 .hero-content .hero-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h2 {
  color: var(--theme-color-2);
}
.hero-5 .hero-content .hero-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.hero-5 .hero-image {
  position: relative;
}
.hero-5 .hero-image img {
  width: 100%;
  height: 100%;
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .counter-wrapper {
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper .counter-items {
  max-width: 265px;
}
.counter-wrapper .counter-items h2 {
  font-size: 72px;
  font-weight: 700;
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .counter-wrapper .counter-items h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 20px;
}
.counter-wrapper .counter-items h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  margin-top: 20px;
}
.counter-wrapper .counter-items:hover h2 {
  color: var(--theme-color) !important;
  -webkit-text-stroke: initial !important;
}

.choose-us-section {
  position: relative;
  margin: 0 90px 36px;
}
@media (max-width: 1600px) {
  .choose-us-section {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .choose-us-section {
    margin: 0 0;
  }
}
.choose-us-section:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
}
.choose-us-section .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -38px;
  height: 37px;
}
@media (max-width: 1199px) {
  .choose-us-section .line-shape {
    display: none;
  }
}
.choose-us-section .circle-shape {
  position: absolute;
  left: -5%;
  bottom: -20%;
  z-index: -1;
}
@media (max-width: 1399px) {
  .choose-us-section .circle-shape {
    display: none;
  }
}

.choose-us-wrapper {
  position: relative;
}
@media (max-width: 1399px) {
  .choose-us-wrapper .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-us-wrapper .section-title p {
  max-width: 650px;
  color: var(--white);
  margin-top: 30px;
}
.choose-us-wrapper .theme-btn {
  border: 1px solid var(--theme-color);
  background: transparent;
}
.choose-us-wrapper .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.choose-us-wrapper .theme-btn:hover::before, .choose-us-wrapper .theme-btn:hover::after {
  background-color: var(--theme-color);
}
.choose-us-wrapper .theme-btn:hover i {
  background-color: var(--white);
  color: var(--header);
}
.choose-us-wrapper .choose-us-image {
  position: relative;
  margin-top: 30px;
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-image {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-image {
    text-align: center;
  }
}
.choose-us-wrapper .choose-us-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.choose-us-wrapper .choose-us-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
  top: 10px;
  left: -10px;
}
.choose-us-wrapper .choose-us-content {
  position: relative;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap {
    justify-content: center;
    text-align: center;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .icon i {
  display: block;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .choose-us-icon .text h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content {
  margin-top: 30px;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content h5 {
  color: var(--white);
  margin-bottom: 10px;
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item .content p {
  color: var(--white);
}
.choose-us-wrapper .choose-us-content .choose-us-wrap .choose-us-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.vedio-wrapper {
  padding: 280px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .vedio-wrapper {
    padding: 170px 0;
  }
}
@media (max-width: 767px) {
  .vedio-wrapper {
    padding: 140px 0;
  }
}
@media (max-width: 575px) {
  .vedio-wrapper {
    padding: 120px 0;
  }
}
.vedio-wrapper .video {
  position: relative;
}
.vedio-wrapper .video .video-btn {
  width: 164px;
  height: 164px;
  line-height: 164px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color);
  display: inline-block;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 767px) {
  .vedio-wrapper .video .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
.vedio-wrapper .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  display: none;
}
.vedio-wrapper .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.vedio-wrapper .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1399px) {
  .vedio-wrapper .watch-text {
    display: none;
  }
}

.vedio-bg-section {
  position: relative;
  background-attachment: fixed;
}
.vedio-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.26);
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 30px;
  gap: 140px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 25px;
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .choose-us-section-2 .nav {
    gap: 20px;
  }
}
.choose-us-section-2 .nav .nav-item .nav-link {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  position: relative;
}
.choose-us-section-2 .nav .nav-item .nav-link.active {
  color: var(--theme-color);
}
.choose-us-section-2 .nav .nav-item .nav-link.active::before {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 150px;
  height: 3px;
  content: "";
  background-color: var(--theme-color);
}
@media (max-width: 575px) {
  .choose-us-section-2 .nav .nav-item .nav-link.active::before {
    display: none;
  }
}

.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.choose-us-wrapper-2 .choose-us-content {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-2 .choose-us-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}
.choose-us-wrapper-2 .choose-us-content .list-items {
  margin-top: 17px;
}
.choose-us-wrapper-2 .choose-us-content .list-items li {
  font-weight: 500;
  color: var(--header);
}
.choose-us-wrapper-2 .choose-us-content .list-items li i {
  margin-right: 10px;
  color: var(--theme-color);
}
.choose-us-wrapper-2 .choose-us-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}

.work-process-main-item {
  position: relative;
  margin-top: 30px;
}
.work-process-main-item h2 {
  position: absolute;
  top: -12px;
  right: 20px;
  font-size: 56px;
  font-weight: 800;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 1199px) {
  .work-process-main-item h2 {
    display: none;
  }
}
.work-process-main-item h2.style-2 {
  right: 14px;
  top: 58px;
}
.work-process-main-item .arrow-shape {
  position: absolute;
  right: -145px;
  top: 60px;
}
@media (max-width: 1199px) {
  .work-process-main-item .arrow-shape {
    display: none;
  }
}
.work-process-main-item .arrow-shape.style-3 {
  top: -40px;
  right: -140px;
}
.work-process-main-item .work-process-item {
  text-align: center;
}
.work-process-main-item .work-process-item .icon {
  width: 112px;
  height: 108px;
  line-height: 120px;
  text-align: center;
  background-color: var(--theme-color);
  margin: 0 auto;
  font-size: 55px;
  color: var(--white);
}
.work-process-main-item .work-process-item .icon i {
  display: block;
}
.work-process-main-item .work-process-item .work-process-content {
  margin-top: 40px;
}
.work-process-main-item .work-process-item .work-process-content h3 {
  color: var(--white);
  margin-bottom: 10px;
}
.work-process-main-item .work-process-item .work-process-content p {
  color: var(--white);
}
.work-process-main-item .work-process-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.work-process-main-item.style-2 h2 {
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color);
}
.work-process-main-item.style-2 .work-process-item .work-process-content h3 {
  color: var(--header);
}
.work-process-main-item.style-2 .work-process-item .work-process-content p {
  color: var(--text);
}

.work-process-section {
  position: relative;
}
.work-process-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

.choose-us-wrapper-2 .choose-us-content .choose-us-btn {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn {
    justify-content: center;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text {
    text-align: left !important;
  }
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text .title {
  margin-bottom: 5px;
}
.choose-us-wrapper-2 .choose-us-content .choose-us-btn .client-info .text h6 {
  font-weight: 700;
}
.choose-us-wrapper-2 .choose-us-content .choose-text {
  margin-top: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .choose-text {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.choose-us-wrapper-2 .choose-us-content p {
  max-width: 570px;
}
.choose-us-wrapper-2 .choose-us-image {
  position: relative;
}
.choose-us-wrapper-2 .choose-us-image img {
  width: 100%;
  height: 100%;
}
.choose-us-wrapper-2 .choose-us-image .icon-image {
  position: absolute;
  left: -180px;
  bottom: -80px;
}
@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-image .icon-image {
    left: 50%;
    bottom: initial;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.feature-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 50px 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .feature-box-item {
    padding: 30px;
  }
}
.feature-box-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 4px solid var(--theme-color);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.feature-box-item .feature-icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.feature-box-item .feature-icon-item .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.feature-box-item .feature-icon-item .icon i {
  display: block;
}
.feature-box-item .feature-icon-item h5 {
  font-weight: 600;
  font-size: 18px;
}
.feature-box-item:hover {
  background-color: #FFF3ED;
}
.feature-box-item:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.feature-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .circle-shape {
  position: absolute;
  left: 65px;
  top: 0;
}
@media (max-width: 1399px) {
  .choose-us-section-2 .circle-shape {
    display: none;
  }
}
.choose-us-section-2 .dot-shape {
  position: absolute;
  top: 120px;
  left: 224px;
}
@media (max-width: 1399px) {
  .choose-us-section-2 .dot-shape {
    display: none;
  }
}

.marquee-text-slider-3 {
  background-color: var(--theme-color);
  padding: 24px 0;
}
.marquee-text-slider-3.style-11 {
  background-color: transparent;
  padding: 0;
  margin-top: -25px;
}
.marquee-text-slider-3.style-11 .marquee-text-3 .text-marquee {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
  line-height: 1;
  font-family: "Unbounded", sans-serif;
}
.marquee-text-slider-3.style-11 .marquee-text-3 .marquee-dot {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-color: transparent;
  display: inline-block;
  border: 2px solid var(--theme-color);
}
.marquee-text-slider-3.style-12 {
  background-color: transparent;
  padding-top: 50px;
  padding-bottom: 120px;
  margin-top: 0;
}
@media (max-width: 1199px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .marquee-text-slider-3.style-12 {
    padding-bottom: 80px;
  }
}
.marquee-text-slider-3.style-12 .marquee-text-3 .text-marquee {
  font-size: 72px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.47);
  line-height: 1;
  font-family: "Unbounded", sans-serif;
}
.marquee-text-slider-3.style-12 .marquee-text-3 .marquee-dot {
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background-color: transparent;
  display: inline-block;
  border: 2px solid var(--theme-color);
}
.marquee-text-slider-3.style-2 {
  background-color: var(--header);
  margin-top: 0;
  margin-bottom: 120px;
}
.marquee-text-slider-3 .marquee-text-3 {
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-text-slider-3 .marquee-text-3 .text-marquee {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.marquee-text-slider-3 .marquee-text-3 .marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--white);
  display: inline-block;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .line-shape {
  animation: ShapeAnim 80slinear infinite;
  height: 30px;
  width: 1000%;
  background-repeat: repeat;
  overflow: hidden;
  position: absolute;
  bottom: 0;
}

.feature-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .feature-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .feature-wrapper-3 {
    justify-content: center;
    display: grid;
    text-align: center;
  }
}
.feature-wrapper-3 .icon-items .icon {
  color: var(--theme-color);
  font-size: 78px;
  margin-bottom: 30px;
}
.feature-wrapper-3 .icon-items .icon i {
  display: block;
}
.feature-wrapper-3 .icon-items h4 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
}
.feature-wrapper-3 .icon-items:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.choose-us-wrapper-3 {
  margin-top: 70px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 {
    margin-top: 10px;
  }
}
.choose-us-wrapper-3 .choose-us-box {
  padding: 40px 25px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  z-index: 1;
  position: relative;
  background: var(--white);
  margin-top: 0;
}
@media (max-width: 767px) {
  .choose-us-wrapper-3 .choose-us-box {
    text-align: center;
  }
}
.choose-us-wrapper-3 .choose-us-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.choose-us-wrapper-3 .choose-us-box.style-margin {
  margin-top: 24px;
}
.choose-us-wrapper-3 .choose-us-box .icon {
  margin-bottom: 30px;
  font-size: 60px;
  color: var(--theme-color);
}
.choose-us-wrapper-3 .choose-us-box .icon i {
  display: block;
}
.choose-us-wrapper-3 .choose-us-box .content h5 {
  font-size: 18px;
  margin-bottom: 10px;
}
.choose-us-wrapper-3 .choose-us-box:hover {
  border: 1px solid var(--theme-color);
}
.choose-us-wrapper-3 .choose-us-box:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.choose-us-wrapper-3 .choose-us-box:hover .icon {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.choose-us-wrapper-3 .choose-us-box:hover .content h5 {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-box:hover .content p {
  color: var(--white);
}
.choose-us-wrapper-3 .choose-us-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content {
    margin-left: 0;
  }
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items {
  width: 100%;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .progress {
  background: rgba(255, 121, 45, 0.28);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 6px;
  width: 0;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.choose-us-wrapper-3 .choose-us-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-thumb {
  margin-top: 80px;
  margin-left: -208px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .choose-us-thumb {
    margin-left: 0;
    margin-top: 30px;
  }
}
.choose-us-wrapper-3 .choose-us-content .choose-us-thumb img {
  width: 100%;
  height: 100%;
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
.choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.feature-section-2 {
  position: relative;
}
.feature-section-2 .left-shape {
  position: absolute;
  left: 0;
  bottom: -50px;
}

.feature-card-items {
  text-align: center;
}
.feature-card-items .icon {
  font-size: 83px;
  color: var(--theme-color-2);
}
.feature-card-items .icon i {
  display: block;
}
.feature-card-items .content {
  margin-top: 35px;
}
.feature-card-items .content h4 {
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .feature-card-items .content p br {
    display: none;
  }
}
.feature-card-items .content .link-btn {
  display: inline-block;
  color: var(--theme-color-2);
  margin-top: 30px;
}
.feature-card-items .content .link-btn:hover {
  color: var(--theme-color);
}
.feature-card-items:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.feature-card-items.style-2 .icon {
  color: var(--theme-color);
}
.feature-card-items.style-2 .content .link-btn {
  color: var(--theme-color);
}

.choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item {
  max-width: 270px;
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
  font-size: 72px;
  margin-bottom: 15px;
  color: var(--header);
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h2 {
    font-size: 45px;
  }
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item.style-2 h2 {
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.choose-us-wrapper-4 .choose-us-left-content .counter-wrap .counter-item h5 {
  font-weight: 600;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items {
  width: 100%;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .progress {
  background: rgba(86, 109, 251, 0.28);
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color-2);
  height: 6px;
  width: 0;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.choose-us-wrapper-4 .choose-us-left-content .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}
.choose-us-wrapper-4 .choose-us-right-content {
  margin-left: 90px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-4 .choose-us-right-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .choose-us-wrapper-4 .choose-us-right-content .section-title {
    text-align: left;
  }
}
.choose-us-wrapper-4 .choose-us-right-content .list li {
  font-weight: 500;
  color: var(--header);
}
.choose-us-wrapper-4 .choose-us-right-content .list li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.choose-us-wrapper-4 .choose-us-right-content .list li:not(:last-child) {
  margin-bottom: 12px;
}
.choose-us-wrapper-4 .choose-us-right-content .theme-btn {
  margin-top: 30px;
}
.choose-us-wrapper-4.style-2 .choose-us-left-content .progress-wrap .pro-items .progress {
  background: rgba(255, 121, 45, 0.28);
}
.choose-us-wrapper-4.style-2 .choose-us-left-content .progress-wrap .pro-items .progress-value {
  background: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .section-title span {
  color: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .section-title span::before {
  background-color: var(--theme-color);
}
.choose-us-wrapper-4.style-2 .choose-us-right-content .list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.vedio-bg-section-2 {
  position: relative;
  background-attachment: fixed;
}
.vedio-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.26);
}

.vedio-wrapper-2 {
  padding: 280px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 1199px) {
  .vedio-wrapper-2 {
    padding: 180px 0;
  }
}
@media (max-width: 991px) {
  .vedio-wrapper-2 {
    padding: 140px 0;
  }
}
@media (max-width: 767px) {
  .vedio-wrapper-2 {
    padding: 100px 0;
  }
}
.vedio-wrapper-2 .video {
  position: relative;
}
.vedio-wrapper-2 .video .video-btn {
  width: 164px;
  height: 164px;
  line-height: 164px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color-2);
  display: inline-block;
  text-align: center;
  font-size: 24px;
  z-index: 9;
}
@media (max-width: 767px) {
  .vedio-wrapper-2 .video .video-btn {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
  }
}
.vedio-wrapper-2 .video .video-btn.style-2 {
  color: var(--theme-color);
}
.vedio-wrapper-2 .video .circle-image {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  z-index: 1;
  display: none;
}
.vedio-wrapper-2 .video .circle-image img {
  animation: cir36 10s linear infinite;
}
.vedio-wrapper-2 .watch-text {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1600px) {
  .vedio-wrapper-2 .watch-text {
    display: none;
  }
}

.counter-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-3 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .counter-wrapper-3 {
    display: grid;
    justify-content: center;
  }
}
.counter-wrapper-3 .counter-item {
  border-right: 1px solid rgba(0, 0, 0, 0.09);
  padding-right: 100px;
  text-align: center;
}
@media (max-width: 1199px) {
  .counter-wrapper-3 .counter-item {
    padding-right: 0;
    border-right: none;
  }
}
.counter-wrapper-3 .counter-item.style-2 {
  border-right: none;
  padding-right: 0;
}
.counter-wrapper-3 .counter-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 15px;
}
.counter-wrapper-3 .counter-item h2 {
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .counter-wrapper-3 .counter-item h2 {
    font-size: 50px;
  }
}
.counter-wrapper-3 .counter-item p {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
}
.counter-wrapper-3 .counter-item:hover h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}

.work-process-wrapper {
  position: relative;
}
.work-process-wrapper .shape-1 {
  position: absolute;
  left: 270px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-1 {
    display: none;
  }
}
.work-process-wrapper .shape-2 {
  position: absolute;
  right: 170px;
  top: -22px;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-2 {
    display: none;
  }
}
.work-process-wrapper .shape-3 {
  position: absolute;
  left: 43%;
  bottom: 37%;
}
@media (max-width: 1199px) {
  .work-process-wrapper .shape-3 {
    display: none;
  }
}
.work-process-wrapper .work-process-item {
  text-align: center;
  margin-top: 30px;
}
.work-process-wrapper .work-process-item .work-process-image {
  position: relative;
}
.work-process-wrapper .work-process-item .work-process-image img {
  width: 100%;
  height: 100%;
}
.work-process-wrapper .work-process-item .work-process-image .process-number {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  line-height: 75px;
  text-align: center;
  background: var(--theme-color-2);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 1;
}
.work-process-wrapper .work-process-item .content {
  margin-top: 40px;
}
.work-process-wrapper .work-process-item .content h4 {
  margin-bottom: 15px;
}

.work-process-section-2 {
  position: relative;
  margin-top: 25px;
}
.work-process-section-2 .left-shape {
  position: absolute;
  left: -110px;
  top: -180px;
}
@media (max-width: 1199px) {
  .work-process-section-2 .left-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-5 .choose-us-content .section-title {
    text-align: left;
  }
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-5 .choose-us-content .choose-us-button {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.choose-us-wrapper-5 .choose-us-content .choose-us-button .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.choose-us-wrapper-5 .faq-items {
  position: relative;
  z-index: 9;
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .choose-us-wrapper-5 .faq-items {
    margin-left: 0;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 40px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
  padding-bottom: 40px;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding-left: 40px !important;
  font-family: "Unbounded", sans-serif;
  color: var(--header);
  cursor: pointer;
  padding: 0;
}
@media (max-width: 575px) {
  .choose-us-wrapper-5 .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body {
  padding: 0 0;
  padding-top: 20px;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .choose-us-wrapper-5 .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-item.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button::after {
  display: none;
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f178";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: -7px;
  left: 0;
  font-size: 34px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.choose-us-wrapper-5 .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f178";
}

.why-choose-us-section {
  position: relative;
}
.why-choose-us-section .right-shape {
  position: absolute;
  top: -30%;
  right: 0;
}
@media (max-width: 1399px) {
  .why-choose-us-section .right-shape {
    display: none;
  }
}

.choose-us-section-2 {
  position: relative;
}
.choose-us-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 80px;
}
@media (max-width: 1199px) {
  .choose-us-section-2 .right-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-wrapper .section-title {
    text-align: left;
  }
}
.about-wrapper .section-title h2 {
  margin-left: 180px;
}
@media (max-width: 767px) {
  .about-wrapper .section-title h2 {
    margin-left: 0;
  }
}
.about-wrapper .about-image {
  margin-top: 30px;
  margin-left: -30%;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image {
    margin-left: 0;
  }
}
.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper .about-content {
  margin-top: 30px;
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-box-wrap {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-left: -37%;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-box-wrap {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items {
  background-color: var(--header);
  padding: 55px 60px;
  text-align: center;
  max-width: 540px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-box-wrap .about-box-items {
    padding: 30px 20px;
  }
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img {
  border: 2px solid var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: "Rubik", sans-serif;
}
.about-wrapper .about-content .about-box-wrap .about-box-items .client-info .content span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.about-wrapper .about-content .about-box-wrap .about-box-items p {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.about-wrapper .about-content .about-box-wrap .medal-content {
  text-align: center;
}
.about-wrapper .about-content .about-box-wrap .medal-content h5 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Rubik", sans-serif;
  margin-top: 20px;
}
.about-wrapper .about-content .about-list {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-list {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-list li {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.about-wrapper .about-content .about-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.about-wrapper .about-content .about-list li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-content .about-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-content .about-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .about-content .about-btn {
    margin-top: 30px;
  }
}
.about-wrapper .about-content .about-btn .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 22px;
}
.about-wrapper .about-content .about-btn .icon-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-wrapper .about-content .about-btn .icon-items span {
  font-size: 14px;
  font-weight: 500;
}
.about-wrapper .about-content .about-btn .icon-items h4 {
  font-size: 18px;
  font-weight: 600;
  font-weight: "Rubik", sans-serif;
}

.about-wrapper-2 {
  margin-top: 120px;
  position: relative;
}
@media (max-width: 1399px) {
  .about-wrapper-2 {
    margin-top: 55px;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-top: 0;
  }
}
.about-wrapper-2 .about-shape {
  position: absolute;
  top: 25px;
  left: 80px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-shape {
    display: none;
  }
}
.about-wrapper-2 .about-image {
  max-width: 555px;
  position: relative;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image {
    max-width: 1000px;
  }
}
.about-wrapper-2 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-2 .about-image .about-image-1 {
  clip-path: polygon(50% 0%, 100% 0, 100% 43%, 100% 81%, 100% 100%, 16% 100%, 0 85%, 0% 43%, 0 0);
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-1 {
    margin-top: 0;
  }
}
.about-wrapper-2 .about-image .about-image-2 {
  position: absolute;
  top: -130px;
  right: -100px;
  border: 10px solid var(--white);
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-image-2 {
    top: 0;
    right: 0;
    height: 250px;
  }
  .about-wrapper-2 .about-image .about-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-wrapper-2 .about-image .about-image-2 img {
  clip-path: polygon(0 0, 88% 0, 100% 13%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.about-wrapper-2 .about-image .about-counter {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  box-shadow: 10px 16px 120px rgba(4, 7, 56, 0.12);
  border: 1px solid rgba(30, 32, 35, 0.12);
  text-align: center;
  background-color: var(--white);
  display: block;
  position: absolute;
  bottom: 66px;
  right: -100px;
  padding-top: 50px;
  text-align: center;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-counter {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-image .about-counter {
    width: 220px;
    height: 220px;
  }
}
.about-wrapper-2 .about-image .about-counter h2 {
  font-size: 56px;
  font-weight: 800;
  color: var(--theme-color);
}
.about-wrapper-2 .about-image .about-counter p {
  margin-top: 5px;
}
.about-wrapper-2 .about-content {
  margin-left: 70px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
  .about-wrapper-2 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-2 .about-content .about-text {
  margin-top: 20px;
  margin-bottom: 20px;
}
.about-wrapper-2 .about-content .about-list-items {
  background: #FFF3ED;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-list-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-2 .about-content .about-list-items ul li {
  font-weight: 500;
  color: var(--header);
}
.about-wrapper-2 .about-content .about-list-items ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-2 .about-content .about-list-items ul li i {
  margin-right: 10px;
  color: var(--theme-color);
}
.about-wrapper-2 .about-content .about-button {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
  }
}
.about-wrapper-2 .about-content .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-2 .about-content .about-button .author-icon .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  text-align: center;
  color: var(--white);
  font-size: 26px;
  border-radius: 50%;
  position: relative;
}
.about-wrapper-2 .about-content .about-button .author-icon .content h5 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
}
.about-wrapper-2 .about-content .about-button .author-icon .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.about-wrapper-3 {
  padding-left: 60px;
  padding-right: 10px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .section-title {
    text-align: left !important;
  }
}
.about-wrapper-3 .left-image {
  max-width: 356px;
  margin-right: -50px;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .left-image {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .left-image {
    max-width: 700px;
  }
}
.about-wrapper-3 .left-image img {
  width: 100%;
  height: 100%;
  transform: rotate(-9.204deg);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .left-image img {
    transform: rotate(0);
    object-fit: cover;
  }
}
.about-wrapper-3 .about-item {
  max-width: 1060px;
  margin: 0 auto;
}
.about-wrapper-3 .about-item .about-text {
  max-width: 630px;
  margin: 40px auto 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-text {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-text {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.about-wrapper-3 .about-item .list-item {
  display: flex;
  align-items: center;
  gap: 55px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .about-item .list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .list-item {
    justify-content: start;
  }
}
.about-wrapper-3 .about-item .list-item ul li {
  font-size: 16px;
  font-weight: 500;
}
.about-wrapper-3 .about-item .list-item ul li i {
  color: var(--theme-color);
  margin-right: 6px;
}
.about-wrapper-3 .about-item .list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-3 .about-item .about-button {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-item .about-button {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
    margin-top: 30px;
  }
}
.about-wrapper-3 .about-item .about-button .author-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-3 .about-item .about-button .author-icon .icon {
  width: 55px;
  height: 55px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  text-align: center;
  color: var(--white);
  font-size: 26px;
  border-radius: 50%;
  position: relative;
}
.about-wrapper-3 .about-item .about-button .author-icon .content h5 {
  font-weight: 600;
  font-size: 18px;
  font-family: "Rubik", sans-serif;
}
.about-wrapper-3 .about-item .about-button .author-icon .content span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.about-wrapper-3 .right-image {
  max-width: 356px;
  margin-left: -110px;
  margin-right: 70px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .right-image {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .about-wrapper-3 .right-image {
    max-width: 700px;
  }
}
.about-wrapper-3 .right-image img {
  width: 100%;
  height: 100%;
  transform: rotate(15deg);
}
@media (max-width: 1199px) {
  .about-wrapper-3 .right-image img {
    transform: rotate(0);
  }
}

.about-section-3 {
  position: relative;
}
.about-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1399px) {
  .about-section-3 .right-shape {
    display: none;
  }
}
.about-section-3.style-2 {
  position: relative;
}
.about-section-3.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: initial;
  bottom: -65%;
  z-index: -1;
}

.about-wrapper-4 .about-image {
  max-width: 570px;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-image {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image {
    max-width: 800px;
  }
}
.about-wrapper-4 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-4 .about-image .about-box {
  position: absolute;
  bottom: -30px;
  left: 0;
  padding: 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 575px) {
  .about-wrapper-4 .about-image .about-box {
    display: none;
  }
}
.about-wrapper-4 .about-image .about-box .icon {
  font-size: 89px;
  color: var(--theme-color-2);
}
.about-wrapper-4 .about-image .about-box .content h2 {
  color: var(--theme-color-2);
  margin-bottom: 10px;
}
.about-wrapper-4 .about-image .about-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.about-wrapper-4 .about-image .dot-shape {
  position: absolute;
  right: -36px;
  bottom: -22px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-image .dot-shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-wrapper-4 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-4 .about-content .about-item {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-item {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.about-wrapper-4 .about-content .about-item .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-wrapper-4 .about-content .about-item .item .icon {
  font-size: 60px;
  color: var(--theme-color-2);
}
.about-wrapper-4 .about-content .about-item .item .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.about-wrapper-4 .about-content .about-sideber {
  background: rgba(86, 109, 251, 0.1);
  padding: 35px 50px;
  border-left: 5px solid var(--theme-color-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-sideber {
    padding: 30px;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.about-wrapper-4 .about-content .about-sideber .list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-4 .about-content .about-sideber .list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-4 .about-content .about-sideber .list li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.about-wrapper-4 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content .about-button {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}
.about-wrapper-4 .about-content .about-button .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-4 .about-content .about-button .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.about-wrapper-4 .about-content .about-button .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.about-wrapper-4 .about-content .about-button .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.about-section-4 {
  position: relative;
}
.about-section-4 .right-shape {
  position: absolute;
  right: 0;
  top: 0%;
}
@media (max-width: 1199px) {
  .about-section-4 .right-shape {
    display: none;
  }
}

.about-wrapper-5 .about-image {
  max-width: 717px;
  position: relative;
  margin-left: -190px;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-image {
    margin-left: 0;
    max-width: 900px;
  }
}
.about-wrapper-5 .about-image img {
  width: 100%;
  height: 100%;
}
.about-wrapper-5 .about-image .about-box {
  position: absolute;
  bottom: 290px;
  right: -162px;
  padding: 30px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-image .about-box {
    display: none;
  }
}
.about-wrapper-5 .about-image .about-box .icon {
  font-size: 81px;
  color: var(--theme-color-2);
}
.about-wrapper-5 .about-image .about-box .content h2 {
  color: var(--theme-color-2);
  font-size: 66px;
  font-weight: 700;
}
.about-wrapper-5 .about-image .about-box .content h5 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .section-title {
    text-align: left;
  }
}
.about-wrapper-5 .about-content .text-item {
  margin-left: 60px;
}
@media (max-width: 1199px) {
  .about-wrapper-5 .about-content .text-item {
    margin-left: 0;
  }
}
.about-wrapper-5 .about-content .text-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-wrapper-5 .about-content .list {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-wrapper-5 .about-content .list {
    margin-top: 30px;
  }
}
.about-wrapper-5 .about-content .list li {
  color: var(--header);
  font-weight: 500;
}
.about-wrapper-5 .about-content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.about-wrapper-5 .about-content .list li i {
  color: var(--theme-color-2);
}
.about-wrapper-5 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper-5 .about-content .about-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.about-wrapper-5 .about-content .about-button .client-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-wrapper-5 .about-content .about-button .client-item .content h6 {
  font-weight: 700;
  line-height: 181%;
}

.about-section-5 {
  position: relative;
}
.about-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: 0%;
}

.service-card-items {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 15px;
  margin-top: 30px;
}
.service-card-items .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-items .service-content {
  text-align: center;
  padding: 0px 35px 40px;
}
.service-card-items .service-content .icon {
  width: 88px;
  height: 88px;
  text-align: center;
  line-height: 105px;
  background-color: var(--theme-color);
  text-align: center;
  margin: 0 auto;
  margin-top: -40px;
  position: relative;
  margin-bottom: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-card-items .service-content .icon i {
  display: block;
}
.service-card-items .service-content h4 {
  margin-bottom: 10px;
}
.service-card-items .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-card-items .service-content .link-btn {
  margin-top: 30px;
  display: inline-block;
}
.service-card-items:hover .service-content .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-2 {
  position: relative;
  z-index: 9;
}
.service-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 68%;
  height: initial;
  z-index: -1;
}
.service-section-2 .left-shape {
  position: absolute;
  left: 0;
  top: 50px;
}
@media (max-width: 1399px) {
  .service-section-2 .left-shape {
    display: none;
  }
}
.service-section-2 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1399px) {
  .service-section-2 .right-shape {
    display: none;
  }
}
.service-section-2 .dot-shape {
  position: absolute;
  right: 127px;
  top: 198px;
}
@media (max-width: 1399px) {
  .service-section-2 .dot-shape {
    display: none;
  }
}
.service-section-2 .line-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 362px;
  z-index: -1;
  height: 70px;
}
@media (max-width: 1399px) {
  .service-section-2 .line-shape {
    display: none;
  }
}

.service-card-items-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 50px;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
@media (max-width: 1199px) {
  .service-card-items-2 {
    clip-path: none;
    padding: 25px;
  }
}
.service-card-items-2 .service-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-card-items-2 .service-icon img {
  display: block;
}
.service-card-items-2 .service-icon .text h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.service-card-items-2 .service-content {
  margin-top: 50px;
}
.service-card-items-2 .service-content h3 {
  margin-bottom: 15px;
}
.service-card-items-2 .service-content h3 a:hover {
  color: var(--theme-color);
}
.service-card-items-2 .service-content .link-btn {
  display: inline-block;
  margin-top: 40px;
}
.service-card-items-2 .service-content .link-btn i {
  margin-left: 10px;
}
.service-card-items-2:hover .service-icon img {
  animation: icon-bounce 0.8s 1;
}

.service-card-items-3 {
  background: #f8f7f7;
  margin-top: 30px;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
  padding: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .service-card-items-3 {
    text-align: center;
  }
}
.service-card-items-3 .icon {
  margin-bottom: 25px;
  font-size: 60px;
  color: var(--theme-color);
}
.service-card-items-3 .icon i {
  display: block;
}
.service-card-items-3 .service-content h5 {
  margin-bottom: 15px;
}
.service-card-items-3 .service-content h5 a:hover {
  color: var(--theme-color);
}
.service-card-items-3 .service-content .link-btn {
  display: inline-block;
  margin-top: 30px;
}
.service-card-items-3:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section {
  position: relative;
  z-index: 9;
}
.service-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 60%;
  height: initial;
  z-index: -1;
}
.service-section .right-shape {
  position: absolute;
  top: 40px;
  right: 127px;
  z-index: -1;
}

.service-section-3 {
  position: relative;
}
.service-section-3 .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}

.service-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #FFF;
  /*box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);*/
  margin-top: 30px;
}
.service-box-item .service-header {
  padding: 10px 25px;
}
@media (max-width: 1399px) {
  .service-box-item .service-header {
    padding: 10px 35px;
  }
}
@media (max-width: 575px) {
  .service-box-item .service-header {
    padding: 10px 25px;
  }
}
.service-box-item .service-header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-box-item .service-header .header .icon {
  width: 88px;
  height: 88px;
  line-height: 97px;
  text-align: center;
  background-color: var(--theme-color);
  margin-bottom: 28px;
  margin-top: -20px;
  font-size: 40px;
  color: var(--white);
}
.service-box-item .service-header .header .icon i {
  display: block;
}
.service-box-item .service-header .header h2 {
  font-size: 72px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
  -webkit-text-fill-color: transparent;
}
.service-box-item .service-header h4 {
  margin-bottom: 10px;
}
.service-box-item .service-header h4 a:hover {
  color: var(--theme-color);
}
.service-box-item .service-image img {
  width: 100%;
  height: 100%;
}
.service-box-item .service-content {
  padding: 25px 25px;
}
@media (max-width: 1399px) {
  .service-box-item .service-content {
    padding: 30px 35px;
  }
}
@media (max-width: 575px) {
  .service-box-item .service-content {
    padding: 20px 25px;
  }
}
.service-box-item .service-content .service-list {
  margin-top:15px;
  margin-bottom:4px;
}
.service-box-item .service-content .service-list li {
  font-size: 16px;
  font-weight: 500;
}
.service-box-item .service-content .service-list li i {
  color: var(--theme-color);
  margin-right: 6px;
}
.service-box-item .service-content .service-list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-box-item:hover .service-header .header .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-section-4 .service-btn {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .service-section-4 .service-btn {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
}
.service-section-4 .service-btn span {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
  max-width: 340px;
  display: inline-block;
}
.service-section-4 .section-title h2 {
  margin-left: 180px;
  line-height: 1;
}
@media (max-width: 1199px) {
  .service-section-4 .section-title h2 {
    margin-left: 0;
    line-height: initial;
  }
}

.service-wrapper {
  margin-top: -210px;
  position: relative;
  z-index: 9;
}

.service-top-wrapper {
  margin-right: -37%;
}
@media (max-width: 1199px) {
  .service-top-wrapper {
    margin-right: 0;
  }
}
.service-top-wrapper .service-top-box {
  padding: 20px;
  background-color: var(--white);
  margin-top: 30px;
}
.service-top-wrapper .service-top-box .service-content {
  padding: 10px 20px;
}
.service-top-wrapper .service-top-box .service-content h4 {
  margin-bottom: 15px;
}
.service-top-wrapper .service-top-box .service-content h4 a:hover {
  color: var(--theme-color);
}
.service-top-wrapper .service-top-box .service-content .link-btn {
  display: inline-block;
  margin-top: 20px;
}
.service-top-wrapper .service-top-box .service-image {
  margin-top: 30px;
  position: relative;
}
.service-top-wrapper .service-top-box .service-image img {
  width: 100%;
  height: 100%;
}
.service-top-wrapper .service-top-box .service-image .icon {
  position: absolute;
  width: 88px;
  height: 88px;
  line-height: 100px;
  text-align: center;
  background-color: var(--theme-color);
  top: -36px;
  right: 25px;
  font-size: 41px;
  color: var(--white);
}
.service-top-wrapper .service-top-box .service-image .icon img {
  width: initial;
  height: initial;
}

.service-section-4 {
  position: relative;
  z-index: 9;
}
.service-section-4 .top-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.service-section-5 {
  position: relative;
}
.service-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.service-section-5 .section-title-area .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .service-section-5 .section-title-area .array-buttons {
    display: none;
  }
}
.service-section-5 .section-title-area .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.service-section-5 .section-title-area .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.service-section-5 .section-title-area .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}

.service-wrapper-2 {
  position: relative;
  z-index: 9;
}
.service-wrapper-2 .service-box-items-2 {
  text-align: center;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.service-wrapper-2 .service-box-items-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-color-2);
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: -1;
}
.service-wrapper-2 .service-box-items-2 .icon {
  color: var(--theme-color-2);
  font-size: 47px;
  margin-bottom: 20px;
}
.service-wrapper-2 .service-box-items-2 .icon i {
  display: block;
}
.service-wrapper-2 .service-box-items-2 .content h6 {
  font-weight: 600;
  line-height: 175%;
}
.service-wrapper-2 .service-box-items-2 .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2 .content h6 a:hover {
  color: var(--theme-color);
}
.service-wrapper-2 .service-box-items-2:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}
.service-wrapper-2 .service-box-items-2:hover .icon {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.service-wrapper-2 .service-box-items-2:hover .content h6 a {
  color: var(--white);
}
.service-wrapper-2 .service-box-items-2:hover .content p {
  color: var(--white);
}
.service-wrapper-2 .service-pagi-items {
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .service-wrapper-2 .service-pagi-items {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items {
    justify-content: center;
    margin-top: 20px;
  }
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet {
  width: 218px;
  height: 2px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: 0.6s;
  margin: 0 !important;
  margin-top: 10px;
}
.service-wrapper-2 .service-pagi-items .service-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color-2);
  width: 200px;
  height: 3px;
}
@media (max-width: 767px) {
  .service-wrapper-2 .service-pagi-items .service-dot {
    display: none;
  }
}

.services-bg-section {
  position: relative;
  margin: 0 100px;
  background-attachment: fixed;
}
@media (max-width: 1600px) {
  .services-bg-section {
    margin: 0 30px;
  }
}
@media (max-width: 1399px) {
  .services-bg-section {
    margin: 0;
  }
}
.services-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.68);
}

.service-bg-main-section {
  position: relative;
}
.service-bg-main-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(86, 109, 251, 0.1);
  height: 50%;
}

.service-left-content {
  position: relative;
}
.service-left-content .service-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-left-content .service-button {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.service-left-content .service-button .video-button {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button {
    justify-content: center;
    display: grid;
    text-align: center;
  }
}
.service-left-content .service-button .video-button .video-btn {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color-2);
  display: inline-block;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 575px) {
  .service-left-content .service-button .video-button .video-btn {
    margin: 0 auto;
  }
}
.service-left-content .service-button .video-button h6 {
  color: var(--white);
  font-weight: 600;
  line-height: 163%;
}

.service-card-item-4 {
  margin-top: 30px;
}
.service-card-item-4 .service-image {
  position: relative;
}
.service-card-item-4 .service-image img {
  width: 100%;
  height: 100%;
}
.service-card-item-4 .service-image .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 41px;
  color: var(--white);
  position: absolute;
  left: 10px;
  top: -12px;
}
.service-card-item-4 .service-image .icon i {
  display: block;
}
.service-card-item-4 .service-content {
  margin-top: 30px;
}
.service-card-item-4 .service-content h4 {
  margin-bottom: 15px;
}
.service-card-item-4 .service-content h4 a:hover {
  color: var(--theme-color-2);
}
.service-card-item-4 .service-content .link-btn {
  color: var(--theme-color-2);
  margin-top: 20px;
  display: inline-block;
}
.service-card-item-4:hover .icon i {
  animation: icon-bounce 0.8s 1;
}

.service-bg-section-2 {
  position: relative;
}
.service-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(231deg, rgba(4, 2, 0, 0) 27.51%, rgba(4, 2, 0, 0.83) 67.94%);
}

.service-bg-wrapper {
  position: relative;
}
.service-bg-wrapper .service-content .icon-wrapper {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper {
    display: grid;
    text-align: center;
    justify-content: center;
    gap: 20px;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .service-bg-wrapper .service-content .icon-wrapper .icon-item {
    display: grid;
    text-align: center;
    justify-content: center;
  }
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color-2);
  font-size: 60px;
}
.service-bg-wrapper .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper .service-white-box .service-counter {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 40px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter {
    display: grid;
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .icon {
  font-size: 83px;
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content {
  text-align: left;
}
@media (max-width: 1199px) {
  .service-bg-wrapper .service-white-box .service-counter .content {
    text-align: center;
  }
}
.service-bg-wrapper .service-white-box .service-counter .content h2 {
  color: var(--theme-color-2);
}
.service-bg-wrapper .service-white-box .service-counter .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .icon {
  color: var(--theme-color);
  font-size: 60px;
}
.service-bg-wrapper.style-2 .service-content .icon-wrapper .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.service-bg-wrapper.style-2 .service-white-box {
  padding: 60px 0px;
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
}
.service-bg-wrapper.style-2 .service-white-box .icon-image {
  margin-bottom: 20px;
}
.service-bg-wrapper.style-2 .service-white-box h5 {
  font-weight: 600;
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .icon {
  color: var(--theme-color);
}
.service-bg-wrapper.style-2 .service-white-box .service-counter .content h2 {
  color: var(--theme-color);
}

.service-details-wrapper .details-image {
  margin-bottom: 30px;
}
.service-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .details-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
}
.service-details-wrapper .details-content h4 {
  margin-top: 50px;
  margin-bottom: 15px;
}
.service-details-wrapper .details-content .details-item {
  margin-top: 30px;
  margin-bottom: 50px;
}
.service-details-wrapper .details-content .details-item .thumb img {
  width: 100%;
  height: 100%;
}
.service-details-wrapper .details-content .details-item .content {
  margin-left: 10px;
}
.service-details-wrapper .details-content .details-item .content .list {
  margin-top: 18px;
  margin-bottom: 30px;
}
.service-details-wrapper .details-content .details-item .content .list li {
  font-weight: 500;
  color: var(--header);
  font-size: 15px;
}
.service-details-wrapper .details-content .details-item .content .list li i {
  color: var(--theme-color);
  margin-right: 5px;
}
.service-details-wrapper .details-content .details-item .content .list li:not(:last-child) {
  margin-bottom: 10px;
}
.service-details-wrapper .details-content .details-item .content .icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.service-details-wrapper .details-content .details-item .content .icon-item .icon {
  font-size: 60px;
  color: var(--theme-color);
}
.service-details-wrapper .details-content .details-item .content .icon-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget {
  background-color: var(--white);
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  padding: 40px 40px 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li {
  padding: 20px 0;
  background-color: var(--bg);
  font-family: "Unbounded", sans-serif;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-details-wrapper .single-sideber-widget .sidebar-widget ul li a:hover {
  color: var(--theme-color);
}
.service-details-wrapper .single-sideber-widget .contact-bg {
  position: relative;
}
.service-details-wrapper .single-sideber-widget .contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.92);
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content {
  padding: 45px;
  position: relative;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content h4 {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info .info-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-info .info-text p {
  font-size: 15px;
  color: var(--white);
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item:not(:last-child) {
  margin-bottom: 40px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .icon {
  width: 57px;
  height: 57px;
  line-height: 57px;
  text-align: center;
  font-size: 25px;
  color: var(--theme-color);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100%;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content span {
  color: var(--white);
  display: inline-block;
  margin-bottom: 5px;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content h6 {
  font-weight: 700;
}
.service-details-wrapper .single-sideber-widget .contact-bg .contact-content .contact-item .content h6 a {
  color: var(--white);
}

.service-section-6 .section-title h2 {
  margin-left: 215px;
}
@media (max-width: 1199px) {
  .service-section-6 .section-title h2 {
    margin-left: 0;
  }
}

.shop-box-items {
  text-align: center;
  margin-top: 30px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  padding: 55px 40px;
}
@media (max-width: 1399px) {
  .shop-box-items {
    padding: 30px 10px;
  }
}
@media (max-width: 991px) {
  .shop-box-items {
    padding: 30px 20px;
  }
}
.shop-box-items .thumb {
  position: relative;
}
.shop-box-items .thumb .theme-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.shop-box-items .content {
  margin-top: 40px;
}
.shop-box-items .content .star {
  color: var(--theme-color);
  margin-bottom: 10px;
}
.shop-box-items .content h4 {
  font-size: 18px;
  font-weight: 600;
}
.shop-box-items .content h4 a:hover {
  color: var(--theme-color);
}
.shop-box-items .content .price-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}
.shop-box-items .content .price-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
}
.shop-box-items .content .price-list li del {
  font-weight: 500;
  color: rgba(100, 105, 112, 0.47);
}
.shop-box-items:hover .thumb .theme-btn {
  opacity: 1;
  visibility: visible;
}

.product-details-wrapper .shop-details-image {
  position: relative;
}
.product-details-wrapper .shop-details-image .nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.product-details-wrapper .shop-details-image .nav .nav-link {
  padding: 0;
  max-width: 115px;
}
.product-details-wrapper .shop-details-image .shop-thumb img {
  width: 100%;
  height: 100%;
}
.product-details-wrapper .product-details-content {
  margin-left:30px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .product-details-content {
    margin-left:20px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .product-details-content {
    margin-left: 0;
  }
}
.product-details-wrapper .product-details-content h2 {
  font-size: 49px;
}
@media (max-width: 767px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .product-details-wrapper .product-details-content h2 {
    font-size: 32px;
  }
}
.product-details-wrapper .product-details-content .star a {
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 600;
}
.product-details-wrapper .product-details-content .star span {
  margin-left: 10px;
}
.product-details-wrapper .product-details-content .price-list {
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.product-details-wrapper .product-details-content .price-list h3 {
  font-size: 40px;
}
.product-details-wrapper .product-details-content .cart-quantity {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .product-details-wrapper .product-details-content .cart-quantity {
    flex-wrap: wrap;
  }
}
.product-details-wrapper .product-details-content .cart-quantity .qty {
  display: flex;
  align-items: center;
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  line-height: 1;
  justify-content: space-between;
}
.product-details-wrapper .product-details-content .cart-quantity .qty button,
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  font-weight: 400;
  font-size: 24px;
}
.product-details-wrapper .product-details-content .cart-quantity .qty input {
  background-color: transparent;
  text-align: center;
  border-radius: 0;
  border: unset;
  outline: none;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 24px 20px;
  text-align: center;
  line-height: 1;
  display: inline-block;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  text-transform: capitalize;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn i {
  margin-right: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .shop-btn:hover {
  background-color: var(--header);
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon {
  border: 1px solid #E4E4E5;
  padding: 16px 24px;
  transition: all 0.4s ease-in-out;
}
.product-details-wrapper .product-details-content .cart-quantity .icon-item .icon:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.product-details-wrapper .product-details-content .details-info {
  position: relative;
}
.product-details-wrapper .product-details-content .details-info:not(:last-child) {
  margin-bottom: 10px;
}
.product-details-wrapper .product-details-content .details-info span {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-details-wrapper .product-details-content .details-info a {
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  margin-left: 150px;
  text-transform: capitalize;
}
.product-details-wrapper .single-tab {
  padding-top: 60px;
}
.product-details-wrapper .single-tab .nav {
  justify-content: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.product-details-wrapper .single-tab .nav .nav-link.active {
  position: relative;
}
.product-details-wrapper .single-tab .nav .nav-link.active h6 {
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .nav .nav-link.active::before {
  position: absolute;
  bottom: -21px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme-color);
  transition: 0.3s;
}
@media (max-width: 470px) {
  .product-details-wrapper .single-tab .nav .nav-link.active::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .nav .nav-link h6 {
  font-size: 18px;
}
.product-details-wrapper .single-tab .description-items .description-content {
  margin-right: 50px;
}
@media (max-width: 1399px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper .single-tab .description-items .description-content {
    margin-right: 0;
  }
}
.product-details-wrapper .single-tab .description-items .description-content h3 {
  margin-bottom: 15px;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .description-items .description-content .description-list-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--header);
  font-weight: 600;
}
.product-details-wrapper .single-tab .description-items .description-content .description-list-items .description-list li span {
  color: var(--text);
  font-weight: 400;
}
@media (max-width: 767px) {
  .product-details-wrapper .single-tab .review-items .admin-items {
    justify-content: center;
    gap: 30px;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img {
  width: 100px;
  height: 100px;
}
.product-details-wrapper .single-tab .review-items .admin-items .admin-img img {
  border-radius: 50%;
}
.product-details-wrapper .single-tab .review-items .admin-items .content {
  position: relative;
  border: 1px solid var(--border);
}
.product-details-wrapper .single-tab .review-items .admin-items .content::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: var(--white);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
  top: 40%;
  left: -16px;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-items .admin-items .content::before {
    display: none;
  }
}
.product-details-wrapper .single-tab .review-items .admin-items .content .head-content h5 span {
  font-size: 14px;
  margin-left: 30px;
}
.product-details-wrapper .single-tab .review-items .admin-items .content .star i {
  font-size: 16px;
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .review-title .rate-now {
  margin-top: 15px;
  gap: 15px;
}
.product-details-wrapper .single-tab .review-title .rate-now p {
  font-size: 16px;
  text-transform: capitalize;
}
.product-details-wrapper .single-tab .review-title .rate-now i {
  font-size: 16px;
  color: var(--theme-color);
}
.product-details-wrapper .single-tab .review-form {
  margin-top: 40px;
}
.product-details-wrapper .single-tab .review-form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 18px 35px;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt input {
    padding: 15px 20px;
  }
}
.product-details-wrapper .single-tab .review-form .form-clt-big textarea {
  padding: 18px 35px 170px;
  width: 100%;
  outline: none;
  color: var(--text);
  background-color: rgb(245, 245, 245);
  font-size: 16px;
  border: none;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .product-details-wrapper .single-tab .review-form .form-clt-big textarea {
    padding: 15px 20px;
  }
}

@media (max-width: 1199px) {
  .shop-section .section-title-area .theme-btn {
    display: none;
  }
}

.common-table {
  min-width: -moz-max-content;
  min-width: max-content;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.common-table .cart-item-thumb {
  width: 86px;
}
@media (max-width: 1399px) {
  .common-table .cart-item-thumb {
    flex-wrap: wrap;
  }
}
.common-table .cart-item-thumb .head {
  color: #1B1F2A;
  font-size: 20px;
  text-transform: capitalize;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
}
.common-table .price-usd {
  font-size: 16px;
  font-weight: 500;
  color: #666C78;
}
.common-table tr {
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead,
.common-table tbody {
  width: 100%;
}

.common-table thead tr,
.common-table tbody tr {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}

.common-table thead tr th,
.common-table thead tr td,
.common-table tbody tr th,
.common-table tbody tr td {
  width: 100%;
  box-sizing: border-box;
}

.common-table thead tr {
  color: #1B1F2A;
  border-bottom: unset;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #E4E4E5;
}

.common-table thead tr th {
  background: unset;
  color: unset;
  border: unset;
  font-size: 16px;
  padding-bottom: 16px;
}

.common-table tbody tr td {
  background: transparent;
  color: unset;
  box-sizing: border-box;
  border-bottom: unset;
}

.quantity button i {
  font-size: 16px;
}

.quantity .quantityValue {
  width: 40px;
  text-align: center;
  padding: 0;
  color: #000;
  border: unset;
}

@media (max-width: 767px) {
  .cart-list-area .table-responsive {
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .cart-list-area .table-responsive .table {
    width: 900px;
  }
}
.cart-list-area .coupon-items input {
  background: #F5F6FA;
  border: none;
  padding: 18px 30px;
  color: var(--text);
  line-height: 1;
}
.cart-list-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 18px 30px;
  line-height: 1;
}

.cart-total-area {
  margin-top: -10px;
}
.cart-total-area h3 {
  font-size: 40px;
  margin-bottom: 5px;
}
.cart-total-area ul {
  margin-bottom: 50px;
}
.cart-total-area ul li {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 220px;
  border-bottom: 1px solid #E4E4E5;
  padding-bottom: 25px;
  padding-top: 25px;
}
.cart-total-area ul li .subtotal {
  color: #666C78;
  font-weight: 400;
  margin-left: -30px;
}
.cart-total-area ul li .price {
  font-weight: 700;
  font-size: 22px;
  flex-basis: 30%;
}
.cart-total-area .theme-btn {
  transition: all 0.4s ease-in-out;
  padding: 22px 30px;
  line-height: 1;
}

.checkout-radio {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  padding: 24px;
}
.checkout-radio .primary-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 16px;
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio h4 {
  color: var(--header);
  margin-bottom: 16px;
  font-weight: 600;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single .form-check-input {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  box-shadow: none;
  outline: none;
  border: 1px solid var(--border);
  font-weight: 500;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single label {
  color: var(--header);
  text-transform: capitalize;
}
.checkout-radio .checkout-radio-wrapper .checkout-radio-single:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 500px) {
  .checkout-radio {
    padding: 10px;
  }
}

.checkout-single-wrapper .checkout-single h4 {
  color: var(--header);
  margin-bottom: 2rem;
  font-weight: 600;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single input {
  width: 100%;
  outline: none;
  box-shadow: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  color: var(--header);
  text-transform: capitalize;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single label {
  color: var(--header);
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single ::placeholder {
  color: var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select {
  background-color: var(--white);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select span {
  font-size: 18px;
  color: var(--header);
  font-weight: 500;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select::after {
  border-right: 1px solid var(--header);
  border-bottom: 1px solid var(--header);
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .list {
  width: 100%;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .input-single .nice-select .option {
  background-color: var(--bg);
  border: none;
}
.checkout-single-wrapper .checkout-single .checkout-single-form .payment {
  color: var(--header);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.checkout-single-wrapper .boxshado-single {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .boxshado-single {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
}
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single textarea,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single .country-select,
.checkout-single-wrapper .checkout-single-bg .checkout-single-form .input-single input {
  border: 1px solid var(--border);
  background: transparent;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .checkout-single-wrapper .checkout-single-bg {
    padding: 14px;
  }
}
.checkout-single-wrapper .checkout-single-bg .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.checkout-single-wrapper .checkout-single-bg .payment-save input {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  background-color: var(--theme-color);
  outline: none;
  color: var(--header);
}
.checkout-single-wrapper .checkout-single-bg .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.checkout-single-wrapper .theme-btn {
  padding: 22px 40px;
}

.project-section {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .project-section {
    margin-bottom: -35px;
  }
}
@media (max-width: 991px) {
  .project-section {
    margin-bottom: 20px;
  }
}
.project-section::before {
  position: absolute;
  content: "";
  bottom: 100px;
  left: 0;
  width: 614px;
  height: 380px;
  background: #FFF3ED;
}
@media (max-width: 1199px) {
  .project-section::before {
    display: none;
  }
}

.project-wrapper {
  margin-right: -50%;
}
@media (max-width: 767px) {
  .project-wrapper {
    margin-right: 0;
  }
}
.project-wrapper .project-image-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.project-wrapper .project-image-items img {
  width: 100%;
  height: 100%;
}
.project-wrapper .project-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.69) 100%);
}
.project-wrapper .project-image-items .content {
  position: absolute;
  bottom: 35px;
  right: 40px;
  left: 40px;
  z-index: 9;
}
.project-wrapper .project-image-items .content .post-cat {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.project-wrapper .project-image-items .content .post-cat:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.project-wrapper .project-image-items .content h4 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 20px;
}
.project-wrapper .project-image-items .content h4 a {
  color: var(--white);
}
.project-wrapper .project-image-items .content h4 a:hover {
  color: var(--theme-color);
}
.project-wrapper .project-image-items .content .post-cat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-wrapper .project-image-items .content .arrow-icon {
  color: var(--white);
  position: absolute;
  right: 0;
  bottom: 25px;
  font-size: 18px;
  transform: rotate(-45deg);
}
.project-wrapper .project-image-items .content .arrow-icon:hover {
  color: var(--theme-color);
}

.project-card-item:not(:last-child) {
  margin-bottom: 30px;
}
.project-card-item .project-image img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(0 0, 91% 0, 100% 16%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.project-card-item .project-content {
  margin-top: 30px;
  position: relative;
}
.project-card-item .project-content .post-cat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-card-item .project-content .post-cat {
  display: inline-block;
  padding: 12px 16px;
  border: 1px solid rgba(255, 121, 45, 0.22);
  font-size: 14px;
  font-weight: 600;
  color: var(--theme-color);
  line-height: 1;
  margin-bottom: 20px;
}
.project-card-item .project-content .post-cat:hover {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  color: var(--white);
}
.project-card-item .project-content h5 a:hover {
  color: var(--theme-color);
}
.project-card-item .project-content .icon {
  font-size: 30px;
  position: absolute;
  top: 40px;
  right: 0;
}
.project-card-item .project-content .icon i {
  transform: rotate(-45deg);
  color: var(--theme-color);
}

.project-section-2 {
  position: relative;
}
.project-section-2 .bottom-shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1199px) {
  .project-section-2 .bottom-shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .project-section-2 .section-title .theme-btn {
    margin-bottom: 20px !important;
  }
}
@media (max-width: 575px) {
  .project-section-2 .section-title .theme-btn {
    margin-top: 20px !important;
  }
}

.project-card-item-3 .project-thumb {
  position: relative;
}
.project-card-item-3 .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-card-item-3 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  padding: 40px;
  background-color: var(--white);
}
.project-card-item-3 .project-content .icon i {
  color: var(--theme-color);
}

.project-wrapper-3 {
  margin-left: -360px;
  margin-right: -360px;
}
@media (max-width: 1199px) {
  .project-wrapper-3 {
    margin-left: 0;
    margin-right: 0;
  }
}
.project-wrapper-3 .project-card-item-3 {
  margin-top: 30px;
}
.project-wrapper-3 .project-card-item-3 .project-thumb {
  position: relative;
}
.project-wrapper-3 .project-card-item-3 .project-thumb img {
  width: 100%;
  height: 100%;
}
.project-wrapper-3 .project-card-item-3 .project-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  padding: 40px;
  background-color: var(--white);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li a {
  padding: 10px 16px;
  border: 1px solid rgba(255, 121, 45, 0.22);
  line-height: 1;
  color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content .project-btn li:hover a {
  color: var(--white);
  background-color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .left-content h5 a:hover {
  color: var(--theme-color);
}
.project-wrapper-3 .project-card-item-3 .project-content .icon i {
  color: var(--theme-color);
  font-size: 24px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}
.project-wrapper-3 .project-card-item-3 .project-content .icon:hover i {
  transform: rotate(0);
}

.project-section-3 .section-title span {
  margin-bottom: 0;
}
.project-section-3 .section-title h2 {
  margin-left: 251px;
}
@media (max-width: 1199px) {
  .project-section-3 .section-title h2 {
    margin-left: 0;
  }
}
.project-section-3 .content p {
  max-width: 400px;
}

.project-section-4 .container-fluid {
  padding: 0 20px;
}

.project-box-item {
  margin-top: 30px;
}
.project-box-item .project-image {
  position: relative;
  overflow: hidden;
}
.project-box-item .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-item .project-image::after {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.project-box-item .project-image .project-content {
  padding: 30px;
  background-color: var(--theme-color-2);
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 9;
}
.project-box-item .project-image .project-content .list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.project-box-item .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
}
.project-box-item .project-image .project-content .list li a:hover {
  background-color: var(--white);
  color: var(--header);
}
.project-box-item .project-image .project-content h5 a {
  color: var(--white);
}
.project-box-item:hover .project-image::after {
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
}
.project-box-item:hover .project-image .project-content {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.project-section-5 {
  position: relative;
}
.project-section-5 .left-shape {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .project-section-5 .left-shape {
    display: none;
  }
}
.project-section-5 .right-shape {
  position: absolute;
  right: 0;
  top: -210px;
}
@media (max-width: 1199px) {
  .project-section-5 .right-shape {
    display: none;
  }
}

.project-box-item-2 {
  margin-top: 30px;
}
.project-box-item-2 .project-image {
  position: relative;
}
.project-box-item-2 .project-image img {
  width: 100%;
  height: 100%;
}
.project-box-item-2 .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(187deg, rgba(4, 2, 0, 0) 11.85%, rgba(4, 2, 0, 0.82) 71%);
}
.project-box-item-2 .project-image .project-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.project-box-item-2 .project-image .project-content .list {
  margin-bottom: 20px;
}
.project-box-item-2 .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: inline-block;
}
.project-box-item-2 .project-image .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color-2);
  border: 1px solid var(--theme-color-2);
}
.project-box-item-2 .project-image .project-content h5 {
  font-size: 18px;
  font-weight: 600;
}
.project-box-item-2 .project-image .project-content h5 a {
  color: var(--white);
}
.project-box-item-2 .project-image .project-content h5 a:hover {
  color: var(--theme-color-2);
}

.project-image-item .project-image {
  position: relative;
}
.project-image-item .project-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.69) 100%);
}
.project-image-item .project-image img {
  width: 100%;
  height: 100%;
}
.project-image-item .project-image .project-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.project-image-item .project-image .project-content .list {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-image-item .project-image .project-content .list li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  line-height: 1;
  display: inline-block;
}
.project-image-item .project-image .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color-2);
}
.project-image-item .project-image .project-content .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 10px;
}
.project-image-item .project-image .project-content .content h5 a {
  color: var(--white);
}
.project-image-item .project-image .project-content .content h5 a:hover {
  color: var(--theme-color);
}
.project-image-item .project-image .project-content .content .icon a i {
  color: var(--white);
  transform: rotate(-40deg);
}
.project-image-item.style-theme-color .project-content .list li a:hover {
  color: var(--white);
  background-color: var(--theme-color);
}

.project-details-wrapper .details-image {
  margin-bottom: 30px;
}
.project-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
}
.project-details-wrapper .details-content h3 {
  font-size: 38px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content h3 {
    font-size: 30px;
  }
}
.project-details-wrapper .details-content h4 {
  margin-top: 50px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content h4 {
    margin-top: 30px;
  }
}
.project-details-wrapper .details-content .details-sideber {
  background-color: rgb(255, 243, 237);
  padding: 38px 50px;
  border-left: 4px solid var(--theme-color);
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 30px;
  }
}
.project-details-wrapper .details-content .details-sideber h5 {
  font-weight: 500;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber h5 {
    dz: 18px;
  }
}
.project-details-wrapper .details-content .details-sideber .details-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .project-details-wrapper .details-content .details-sideber .details-info-item {
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 10px;
  }
}
.project-details-wrapper .details-content .details-sideber .details-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.project-details-wrapper .details-content .details-sideber .details-info-item .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .project-details-wrapper .details-content .list-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.project-details-wrapper .details-content .list-item li {
  font-weight: 500;
  color: var(--header);
}
.project-details-wrapper .details-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .details-content .list-item li i {
  color: var(--theme-color);
  margin: 5px;
}
.project-details-wrapper .details-content .details-item {
  margin-top: 50px;
}
.project-details-wrapper .details-content .details-item .thumb {
  margin-top: 15px;
}
.project-details-wrapper .details-content .details-item .thumb img {
  width: 100%;
  height: 100%;
}

.main-sidebar .single-sideber-widget {
  margin-bottom: 40px;
}
.main-sidebar .single-sideber-widget .project-information-box {
  padding: 45px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
.main-sidebar .single-sideber-widget .project-information-box h4 {
  margin-bottom: 10px;
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li:not(:last-child) {
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
}
.main-sidebar .single-sideber-widget .project-information-box .information-list li:last-child {
  padding-bottom: 0;
}
.main-sidebar .single-sideber-widget .contact-bg-image {
  position: relative;
  height: 553px;
}
.main-sidebar .single-sideber-widget .contact-bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(30, 32, 35, 0) 0%, rgba(30, 32, 35, 0.87) 72.69%);
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content {
  position: absolute;
  bottom: 40px;
  top: initial;
  left: 20px;
  right: 20px;
  text-align: center;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content h4 {
  color: var(--white);
  margin-bottom: 5px;
}
.main-sidebar .single-sideber-widget .contact-bg-image .contact-content p {
  color: var(--white);
  margin-bottom: 20px;
}

.pricing-box-items {
  margin-top: 30px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  padding: 50px 40px;
}
@media (max-width: 1399px) {
  .pricing-box-items {
    padding: 40px 30px;
  }
}
@media (max-width: 1199px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .pricing-box-items {
    padding: 30px 20px;
  }
}
.pricing-box-items .pricing-header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-box-items .pricing-header h2 {
  color: var(--theme-color);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  margin-top: 30px;
}
.pricing-box-items .pricing-header h2 sup {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  top: -1.5em;
  margin-right: -10px;
}
.pricing-box-items .pricing-header h2 sub {
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  font-weight: "Rubik", sans-serif;
  margin-left: -10px;
}
.pricing-box-items .pricing-btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.pricing-box-items .pricing-btn .theme-btn {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--header);
  width: 100%;
  padding-right: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricing-box-items .pricing-btn .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn::before, .pricing-box-items .pricing-btn .theme-btn::after {
  background-color: var(--theme-color);
}
.pricing-box-items .pricing-btn .theme-btn:hover {
  color: var(--white);
}
.pricing-box-items .pricing-btn .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}
.pricing-box-items h5 {
  font-size: 16px;
  font-weight: 600;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li {
  color: rgba(30, 32, 35, 0.8);
}
.pricing-box-items .pricing-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-box-items.active {
  border: 2px solid #1E2023;
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  position: relative;
}
.pricing-box-items.active .professional {
  background: #FF792D;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1;
  display: inline-block;
  padding: 9px 20px;
  position: absolute;
  right: 47px;
  top: -18px;
  z-index: 9;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

.swiper-dot3 {
  text-align: center;
}
.swiper-dot3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--header);
  border: 1px solid var(--text);
  border-radius: 0;
  opacity: 1;
  position: relative;
}
.swiper-dot3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 0;
}
.swiper-dot3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-color);
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.array-button {
  display: flex;
  align-items: center;
  gap: 18px;
}
.array-button .array-prev, .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-button.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-button.style-2 .array-next:hover {
  background-color: var(--header);
}

@media (max-width: 575px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.box-shadow {
  box-shadow: var(---box-shadow);
}

.custom-container {
  max-width: 1560px;
  margin: 0 auto;
}

.custom-container-33 {
  max-width: 1319px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1568px;
  margin: 0 auto;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.footer-info-container {
  max-width: 1436px;
}

@media (max-width: 991px) {
  .lg-center {
    justify-content: center;
    text-align: center;
  }
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background-color: rgb(129, 129, 129);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}
.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color);
  transition: 0.6s;
  position: relative;
  width: 30px;
  border-radius: 30px;
}

.custom-container-3 {
  max-width: 1768px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .style-center {
    text-align: center;
  }
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
}
.array-buttons .array-prev, .array-buttons .array-next {
  width: 55px;
  height: 55px;
  height: 55px;
  line-height: 60px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
}
.array-buttons .array-prev:hover, .array-buttons .array-next:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-prev {
  border: 1px solid var(--border);
}
.array-buttons.style-2 .array-next {
  border: 1px solid var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white);
}
.array-buttons.style-2 .array-next:hover {
  background-color: var(--header);
}
.array-buttons.news-buttons .array-prev {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background-color: transparent;
  color: var(--theme-color-2);
}
.array-buttons.news-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}
.array-buttons.news-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}
.array-buttons.news-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  text-align: center;
  line-height: 54px;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid var(--header);
  background: transparent;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
  border: 1px solid var(--theme-color);
}

.team-box-items {
  margin-top: 30px;
}
.team-box-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-box-items .team-image::after {
  background: linear-gradient(90deg, rgba(var(--white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--white-rgb, 255, 255, 255), 0.3) 92%, rgba(var(--white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.5s ease 0s;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 200%;
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  clip-path: polygon(0 0, 87% 0, 100% 15%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.team-box-items .team-content {
  margin-top: 30px;
  position: relative;
}
.team-box-items .team-content h3 {
  margin-bottom: 5px;
}
.team-box-items .team-content h3 a:hover {
  color: var(--theme-color);
}
.team-box-items .team-content p {
  color: var(--text);
}
.team-box-items .team-content .social-profile {
  position: absolute;
  right: 30px;
  bottom: 74px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-box-items .team-content .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: grid;
  gap: 10px;
  align-items: center;
}
.team-box-items .team-content .social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  display: block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  border-radius: 50%;
}
.team-box-items .team-content .social-profile ul li a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.team-box-items .team-content .social-profile .plus-btn {
  z-index: 99;
  cursor: pointer;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  border: 1px solid transparent;
  margin-top: 10px;
}
.team-box-items .team-content .social-profile .plus-btn:hover {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  color: var(--header);
}
.team-box-items .team-content .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items:hover .team-image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.5s, 0.5s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}

.team-card-items {
  margin-top: 30px;
  position: relative;
  z-index: 9;
}
.team-card-items .team-image {
  position: relative;
  overflow: hidden;
}
.team-card-items .team-image::after {
  background: linear-gradient(90deg, rgba(var(--white-rgb, 255, 255, 255), 0.13) 0px, rgba(var(--white-rgb, 255, 255, 255), 0.13) 77%, rgba(var(--white-rgb, 255, 255, 255), 0.3) 92%, rgba(var(--white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.5s ease 0s;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 200%;
}
.team-card-items .team-image .social-profile {
  position: absolute;
  right: 0px;
  bottom: 0px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-card-items .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-card-items .team-image .social-profile ul li a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  display: block;
  background: var(--white);
  color: var(--theme-color-2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  margin-bottom: 10px;
}
.team-card-items .team-image .social-profile ul li a:hover {
  background: var(--theme-color-2);
  color: var(--white);
}
.team-card-items .team-image .social-profile .plus-btn {
  z-index: 9;
  cursor: pointer;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  background-color: var(--white);
  color: var(--theme-color-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  font-size: 16px;
  margin-top: 20px;
}
.team-card-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.team-card-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-card-items .team-image img {
  width: 100%;
  height: 100%;
}
.team-card-items .team-content {
  margin-top: 30px;
  position: relative;
}
.team-card-items .team-content h3 {
  margin-bottom: 5px;
}
.team-card-items .team-content h3 a:hover {
  color: var(--theme-color-2);
}
.team-card-items .team-content span {
  color: var(--text);
}
.team-card-items .team-content p {
  border-top: 1px solid rgba(0, 0, 0, 0.13);
  padding-top: 20px;
  margin-top: 25px;
}
.team-card-items:hover .team-image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.5s, 0.5s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.team-card-items.style-2 .team-image .social-profile ul li a {
  background: var(--white);
  color: var(--theme-color);
}
.team-card-items.style-2 .team-image .social-profile ul li a:hover {
  background: var(--theme-color);
  color: var(--white);
}
.team-card-items.style-2 .team-image .social-profile .plus-btn {
  color: var(--theme-color);
}
.team-card-items.style-2 .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.team-card-items.style-2 .team-content h3 a:hover {
  color: var(--theme-color);
}

.team-section-5 {
  position: relative;
  margin: 0 100px;
  background-attachment: fixed;
}
@media (max-width: 1600px) {
  .team-section-5 {
    margin: 0 40px;
  }
}
@media (max-width: 1399px) {
  .team-section-5 {
    margin: 0;
    margin-bottom: 120px;
  }
}
@media (max-width: 1199px) {
  .team-section-5 {
    margin: 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .team-section-5 {
    margin-bottom: 80px;
  }
}
.team-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.team-section-5::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--white);
  top: 55%;
}
@media (max-width: 1399px) {
  .team-section-5::after {
    display: none;
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content h3 a {
    color: var(--white);
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content span {
    color: var(--white);
  }
}
@media (max-width: 1399px) {
  .team-section-5 .team-card-items .team-content p {
    color: var(--white);
    border-top: 1px solid var(--white);
  }
}

.team-details-wrapper .thumb {
  max-width: 650px;
}
@media (max-width: 991px) {
  .team-details-wrapper .thumb {
    max-width: 800px;
  }
}
.team-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
}
.team-details-wrapper .details-content {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .details-content span {
  color: var(--theme-color);
  display: inline-block;
  margin-bottom: 20px;
}
.team-details-wrapper .details-content h2 {
  font-size: 38px;
  margin-bottom: 15px;
}
.team-details-wrapper .details-content ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 70px;
  border-top: 1px solid rgba(30, 32, 35, 0.12);
  border-bottom: 1px solid rgba(30, 32, 35, 0.12);
  padding: 20px 0 0;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content ul {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.team-details-wrapper .details-content ul li {
  color: var(--theme-color);
  font-weight: 600;
}
.team-details-wrapper .details-content ul li span {
  font-weight: 400;
  color: var(--text);
}
.team-details-wrapper .details-content .contact-info-wrap {
  margin-top: 45px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items {
    flex-wrap: wrap;
  }
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .content h6 {
  font-weight: 600;
  margin-bottom: 3px;
}
.team-details-wrapper .details-content .contact-info-wrap .contact-info-items .contact-items .content p a {
  color: var(--text);
}
.team-details-wrapper .details-info-items {
  margin-top: 50px;
}
.team-details-wrapper .details-info-items .info-content h3 {
  margin-bottom: 30px;
}
.team-details-wrapper .details-info-items .progress-area {
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .team-details-wrapper .details-info-items .progress-area {
    margin-left: 0;
  }
}
.team-details-wrapper .details-info-items .progress-area h4 {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap {
  margin-top: 30px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
  color: #1C1D20;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress {
  background: var(--bg);
  justify-content: flex-start;
  border-radius: 0px;
  align-items: center;
  position: relative;
  display: flex;
  height: 6px;
  width: 100%;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme-color);
  height: 10px;
  width: 0;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}

@media (max-width: 1199px) {
  .team-section .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.faq-wrapper .faq-image {
  max-width: 570px;
}
@media (max-width: 1199px) {
  .faq-wrapper .faq-image {
    max-width: 800px;
  }
}
.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 43%, 100% 100%, 68% 100%, 0 99%, 0 77%, 0 12%, 14% 0);
}
.faq-wrapper .faq-content .section-title {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .faq-wrapper .faq-content .section-title {
    text-align: left;
  }
}
.faq-wrapper .faq-content .faq-items {
  position: relative;
  z-index: 9;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 29px 30px;
  font-family: "Unbounded", sans-serif;
  color: var(--header);
  cursor: pointer;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 20px 30px;
  padding-top: 0;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  color: var(--text);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  display: none;
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 29px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--theme-color);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.faq-wrapper .faq-content .faq-items .accordion .accordion-button.collapsed::before {
  content: "\f067";
}
.faq-wrapper.style-faq-page {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .faq-wrapper.style-faq-page {
    margin-top: 30px;
  }
}

.faq-section {
  position: relative;
  z-index: 9;
}
.faq-section .right-shape {
  position: absolute;
  right: 0;
  bottom: 0;
}
.faq-section .dot-shape {
  position: absolute;
  top: 108px;
  left: 268px;
  z-index: -1;
}

.cta-wrapper {
  background-color: var(--theme-color);
  padding: 75px;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .cta-wrapper {
    text-align: center;
    padding: 50px;
  }
}
.cta-wrapper .cta-content p {
  max-width: 435px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  margin-bottom: 30px;
}
.cta-wrapper .cta-image {
  margin-bottom: -75px;
  position: relative;
  z-index: 9;
}
.cta-wrapper .cta-shape-2 {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 70%;
  z-index: -1;
}
.cta-wrapper .cta-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media (max-width: 1199px) {
  .cta-wrapper .cta-shape {
    display: none;
  }
}
.cta-wrapper .cta-shape img {
  height: 100%;
}
.cta-wrapper.style-2 {
  padding: 0;
  background-color: transparent;
}
@media (max-width: 767px) {
  .cta-wrapper.style-2 .cta-content {
    text-align: center;
  }
}
.cta-wrapper.style-2 .cta-content p {
  max-width: 570px;
}
.cta-wrapper.style-2 .cta-content .theme-btn {
  background-color: var(--header);
}
.cta-wrapper.style-2 .cta-content .theme-btn::before {
  background-color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-content .theme-btn::after {
  background-color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-content .theme-btn i {
  background-color: var(--theme-color);
  color: var(--white);
}
.cta-wrapper.style-2 .cta-content .theme-btn:hover::before, .cta-wrapper.style-2 .cta-content .theme-btn:hover::after {
  width: 100%;
}
.cta-wrapper.style-2 .cta-content .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme-color);
}
.cta-wrapper.style-2 .cta-image {
  margin-bottom: -120px;
}
@media (max-width: 1199px) {
  .cta-wrapper.style-2 .cta-image {
    margin-bottom: -100px;
  }
}
@media (max-width: 991px) {
  .cta-wrapper.style-2 .cta-image {
    margin-bottom: -80px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper.style-2 .cta-image img {
    width: 100%;
    height: 100%;
  }
}
.cta-wrapper.style-theme-color-2 {
  background-color: var(--theme-color-2);
}
.cta-wrapper.style-theme-color-2 .cta-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
}
.cta-wrapper.style-theme-color-2 .cta-content .theme-btn i {
  background-color: var(--theme-color-2);
  color: var(--white);
}

.cta-section {
  position: relative;
  margin: 0 100px;
}
.cta-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  height: 50%;
}
@media (max-width: 1600px) {
  .cta-section {
    margin: 0 50px;
  }
}
@media (max-width: 1399px) {
  .cta-section {
    margin: 0 40px;
  }
}
@media (max-width: 1199px) {
  .cta-section {
    margin: 0 0;
  }
}
.cta-section.style-5 {
  margin: 0;
}
.cta-section.style-new-padding {
  margin-bottom: -240px;
}
.cta-section.style-new-padding::before {
  background: rgba(86, 109, 251, 0.1);
}
.cta-section.remove-blue-none::before {
  display: none;
}

.counter-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper-2 {
    justify-content: center;
  }
}
.counter-wrapper-2 .counter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .counter-wrapper-2 .counter-item {
    display: grid;
    gap: 12px;
    justify-content: center;
    text-align: center;
  }
}
.counter-wrapper-2 .counter-item h2 {
  color: var(--theme-color);
  font-size: 55px;
}
.counter-wrapper-2 .counter-item h5 {
  font-size: 16px;
  font-weight: 600;
}

.cta-bg-section {
  position: relative;
}
.cta-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--bg);
  top: -50%;
}

.cta-bg-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper {
    padding: 40px 30px;
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.cta-bg-wrapper .content {
  z-index: 1;
}
.cta-bg-wrapper .content h2 {
  color: var(--theme-color);
  font-size: 56px;
}
.cta-bg-wrapper .content p {
  color: var(--white);
}
.cta-bg-wrapper h4 {
  color: var(--white);
  z-index: 1;
}

.cta-bg-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-2 .cta-item {
    justify-content: center;
    text-align: center;
  }
}
.cta-bg-wrapper-2 .cta-item .cta-image {
  border: 4px solid var(--white);
}
.cta-bg-wrapper-2 .cta-item .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-2 .cta-item .content h4 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-bg-wrapper-2 .cta-item .content p {
  color: var(--white);
}

.cta-bg-section-2 {
  position: relative;
}
.cta-bg-section-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}

@media (max-width: 1399px) {
  .cta-bg-wrapper-3 {
    padding: 120px 0;
  }
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .cta-bg-wrapper-3 {
    padding: 80px 0;
  }
}
.cta-bg-wrapper-3 .cta-image {
  margin-left: -310px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-image {
    display: none;
  }
}
.cta-bg-wrapper-3 .cta-image img {
  width: 100%;
  height: 100%;
}
.cta-bg-wrapper-3 .cta-content {
  margin-left: 50px;
  max-width: 640px;
}
@media (max-width: 1399px) {
  .cta-bg-wrapper-3 .cta-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .section-title {
    text-align: left;
  }
}
.cta-bg-wrapper-3 .cta-content h4 {
  margin-bottom: 15px;
}
.cta-bg-wrapper-3 .cta-content .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item {
    margin-top: 30px;
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item ul li {
  font-weight: 500;
  color: var(--header);
}
.cta-bg-wrapper-3 .cta-content .list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}
.cta-bg-wrapper-3 .cta-content .list-item ul li i {
  color: var(--theme-color-2);
  margin-right: 5px;
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 767px) {
  .cta-bg-wrapper-3 .cta-content .list-item .icon-item {
    display: grid;
  }
}
.cta-bg-wrapper-3 .cta-content .list-item .icon-item h6 {
  line-height: 175%;
}
.cta-bg-wrapper-3 .cta-right .caller-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.cta-bg-wrapper-3 .cta-right .caller-button .icon {
  width: 55px;
  height: 55px;
  line-height: 67px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme-color-2);
  font-size: 30px;
  color: var(--white);
}
.cta-bg-wrapper-3 .cta-right .caller-button .content span {
  font-size: 14px;
  font-weight: 500;
}
.cta-bg-wrapper-3 .cta-right .caller-button .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.counter-box-item {
  position: relative;
  padding: 60px 0;
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  text-align: center;
  z-index: 9;
}
.counter-box-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/hover-bg.jpg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.counter-box-item .icon {
  font-size: 62px;
  color: var(--theme-color-2);
  margin-bottom: 10px;
}
.counter-box-item .icon i {
  display: block;
}
.counter-box-item .content h2 {
  font-family: "Unbounded", sans-serif;
  text-decoration: none;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--theme-color-2);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .counter-box-item .content h2 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .counter-box-item .content h2 {
    font-size: 42px;
  }
}
.counter-box-item .content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.counter-box-item:hover .icon i {
  animation: icon-bounce 0.8s 1;
}
.counter-box-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.counter-box-item:hover .content h2 {
  color: var(--theme-color-2) !important;
  -webkit-text-stroke: initial !important;
}
.counter-box-item:hover .content p {
  color: var(--white);
}

.counter-section-5 {
  position: relative;
}
.counter-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(86, 109, 251, 0.1);
  top: 77%;
}

.testimonial-box-items {
  margin-top: 30px;
  padding: 0 70px;
  position: relative;
  z-index: 9;
  text-align: center;
  clip-path: polygon(0 0, 84% 0, 100% 22%, 100% 70%, 100% 100%, 0 100%, 0% 70%, 0% 30%);
}
.testimonial-box-items .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  background-color: var(--theme-color);
  margin: 0 auto 30px;
}
.testimonial-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  top: 45px;
  height: initial;
  bottom: 28px;
}
.testimonial-box-items .star {
  color: var(--theme-color);
  margin-bottom: 10px;
}
.testimonial-box-items h4 {
  margin-bottom: 10px;
}
.testimonial-box-items .client-info {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  padding-top: 30px;
}
.testimonial-box-items .client-info h5 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-box-items .client-info .client-img {
  margin-top: 20px;
}

.testimonial-section {
  position: relative;
  z-index: 9;
  margin: 0 100px;
}
@media (max-width: 1600px) {
  .testimonial-section {
    margin: 0;
  }
}
.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: rgba(30, 32, 35, 0.96);
}
.testimonial-section .line-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.testimonial-section .line-shape img {
  width: 100%;
  height: 100%;
}
.testimonial-section .circle-shape {
  position: absolute;
  right: 0;
  top: 0;
}
.testimonial-section .dot-shape {
  position: absolute;
  top: 160px;
  right: 160px;
}
.testimonial-section .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section .array-buttons {
    display: none;
  }
}
.testimonial-section .array-buttons .array-prev {
  position: absolute;
  bottom: 36%;
  left: 7%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next {
  position: absolute;
  bottom: 36%;
  right: 7%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.testimonial-box-item-2 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: #fdfdfd;
  padding: 50px 50px 15px 108px;
  position: relative;
  margin-left: 30px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 {
    margin-left: 0;
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 {
    text-align: center;
    padding: 30px;
  }
}
.testimonial-box-item-2 .icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  left: -20px;
  top: 10px;
}
@media (max-width: 1199px) {
  .testimonial-box-item-2 .icon {
    position: static;
  }
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .icon {
    margin: 0 auto 25px;
  }
}
.testimonial-box-item-2 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}
.testimonial-box-item-2 .test-content h5 {
  margin-bottom: 10px;
}
.testimonial-box-item-2 .test-content p {
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding-bottom: 25px;
  margin-bottom: 20px;
}
.testimonial-box-item-2 .test-content .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item {
    display: grid;
    gap: 20px;
    justify-content: center;
  }
}
.testimonial-box-item-2 .test-content .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .testimonial-box-item-2 .test-content .client-info-item .client-info {
    display: grid;
  }
}

.testimonial-section-2 {
  position: relative;
}
.testimonial-section-2 .left-shape {
  position: absolute;
  left: -20;
  bottom: -144px;
}
.testimonial-section-2 .array-buttons {
  position: initial;
}
@media (max-width: 1199px) {
  .testimonial-section-2 .array-buttons {
    display: none;
  }
}
.testimonial-section-2 .array-buttons .array-prev {
  position: absolute;
  bottom: 34%;
  left: 13%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}
.testimonial-section-2 .array-buttons .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next {
  position: absolute;
  bottom: 34%;
  right: 12%;
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-section-2 .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
@media (max-width: 991px) {
  .testimonial-section-2 .section-title-area {
    text-align: left;
  }
}
.testimonial-section-2 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section-2 .section-title-area .client-info .text .title {
  margin-bottom: 5px;
}
.testimonial-section-2 .section-title-area .client-info .text h6 {
  font-weight: 700;
  font-size: 16px;
}

.testimonial-box-item-3 {
  border: 1px solid rgba(30, 32, 35, 0.12);
  margin-top: 60px;
  padding: 40px 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 575px) {
  .testimonial-box-item-3 {
    padding: 25px;
    margin-bottom: 5px;
  }
}
.testimonial-box-item-3 .quate-icon {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  right: 40px;
  top: -30px;
}
.testimonial-box-item-3 .test-content .star {
  color: var(--theme-color);
  margin-bottom: 5px;
}
.testimonial-box-item-3 .test-content p {
  font-size: 22px;
  font-weight: 500;
  color: var(--header);
}
.testimonial-box-item-3 .test-content .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-box-item-3 .test-content .client-info .info-image img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.testimonial-box-item-3 .test-content .client-info .text h5 {
  font-size: 18px;
  font-weight: 600;
}

.testimonial-section-3 {
  position: relative;
}
.testimonial-section-3 .bottom-shape {
  position: absolute;
  right: 0;
  bottom: -30px;
}
@media (max-width: 1199px) {
  .testimonial-section-3 .bottom-shape {
    display: none;
  }
}

.testimonial-bg-section {
  position: relative;
}
.testimonial-bg-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.95);
}
.testimonial-bg-section::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: 84%;
}

.testimonial-wrapper {
  position: relative;
  margin-right: -44%;
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    margin-right: 0;
  }
}
.testimonial-wrapper .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .testimonial-wrapper .array-buttons {
    display: none;
  }
}
.testimonial-wrapper .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color-2);
}
.testimonial-wrapper .array-buttons.style-22 .array-prev {
  color: var(--theme-color);
}
.testimonial-wrapper .array-buttons.style-22 .array-prev:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-wrapper .array-buttons.style-22 .array-next {
  background-color: var(--theme-color);
  color: var(--white);
}
.testimonial-wrapper .array-buttons.style-22 .array-next:hover {
  background-color: var(--white);
  color: var(--theme-color);
}
.testimonial-wrapper .testimonial-box-item-3 {
  padding: 50px 45px;
  border: 1px solid rgba(30, 32, 35, 0.12);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
  background-color: var(--white);
  position: relative;
}
.testimonial-wrapper .testimonial-box-item-3 .quate-icon {
  position: absolute;
  background-color: transparent;
  right: 20px;
  top: 20px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .star {
  color: var(--theme-color-2);
  margin-bottom: 20px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content p {
  font-size: 20px;
  font-weight: 600;
  font-family: "Unbounded", sans-serif;
  color: var(--header);
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-wrapper .testimonial-box-item-3 .test-content .client-info .text h5 {
  font-size: 18px;
  font-weight: 600;
}
.testimonial-wrapper .testimonial-box-item-3.style-about .test-content .star {
  color: var(--theme-color);
}

.testimonial-section-4 {
  position: relative;
}
.testimonial-section-4 .right-shape {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 1199px) {
  .testimonial-section-4 .right-shape {
    display: none;
  }
}

.testimonial-wrapper-2 {
  margin-top: 60px;
}
.testimonial-wrapper-2 .testimonial-item {
  max-width: 569px;
}
.testimonial-wrapper-2 .testimonial-item .image-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 470px) {
  .testimonial-wrapper-2 .testimonial-item .image-item .image img {
    width: 100px;
    height: 100px;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-item .testimonial-button {
    display: none;
  }
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons {
  position: relative;
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev {
  color: var(--theme-color-2);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-item .testimonial-button .array-buttons .array-next:hover {
  background-color: var(--header);
  color: var(--white);
}
.testimonial-wrapper-2 .testimonial-content .star {
  color: var(--theme-color-2);
  margin-bottom: 15px;
}
.testimonial-wrapper-2 .testimonial-content p {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  font-family: "Unbounded", sans-serif;
}
.testimonial-wrapper-2 .testimonial-content .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.testimonial-wrapper-2 .testimonial-content .info-item .content h5 {
  font-size: 18px;
  font-weight: 600;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  position: relative;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
}
.news-card-items .news-image .post-date {
  width: 78px;
  height: 78px;
  padding: 8px;
  text-align: center;
  background-color: var(--theme-color);
  position: absolute;
  top: 20px;
  left: 20px;
}
.news-card-items .news-image .post-date h4 {
  color: var(--white);
}
.news-card-items .news-image .post-date p {
  color: var(--white);
  font-weight: 400;
}
.news-card-items .news-content {
  margin-top: 30px;
}
.news-card-items .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-card-items .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-card-items .news-content .news-meta li b {
  font-weight: 500;
}
.news-card-items .news-content .news-meta li img {
  margin-right: 5px;
}
.news-card-items .news-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.news-card-items .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-section {
  margin: -200px 100px 0;
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .news-section {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 1399px) {
  .news-section {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .news-section {
    margin-left: 0;
    margin-right: 0;
  }
}

.news-wrapper-2 .news-box-items-2 {
  margin-top: 25px;
}
.news-wrapper-2 .news-box-items-2 .news-image {
  position: relative;
}
.news-wrapper-2 .news-box-items-2 .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat {
  width: 78px;
  height: 78px;
  position: absolute;
  bottom: -25px;
  right: 25px;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat .date {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  display: block;
}
.news-wrapper-2 .news-box-items-2 .news-image .post-cat .date-name {
  text-transform: uppercase;
  display: inline-block;
  margin-top: -20px;
}
.news-wrapper-2 .news-box-items-2 .news-content {
  margin-top: 25px;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li b {
  font-weight: 500;
}
.news-wrapper-2 .news-box-items-2 .news-content .news-meta li img {
  margin-right: 5px;
}
.news-wrapper-2 .news-box-items-2 .news-content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-2 .news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-wrapper-2 .news-box-items-3 {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .news-wrapper-2 .news-box-items-3 {
    display: grid;
  }
}
@media (max-width: 1199px) {
  .news-wrapper-2 .news-box-items-3 {
    display: flex;
  }
}
@media (max-width: 767px) {
  .news-wrapper-2 .news-box-items-3 {
    display: block;
  }
}
.news-wrapper-2 .news-box-items-3 .news-image {
  position: relative;
}
.news-wrapper-2 .news-box-items-3 .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat {
  width: 78px;
  height: 78px;
  position: absolute;
  bottom: 10px;
  right: 17px;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat .date {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  display: block;
}
.news-wrapper-2 .news-box-items-3 .news-image .post-cat .date-name {
  text-transform: uppercase;
  display: inline-block;
  margin-top: -20px;
}
.news-wrapper-2 .news-box-items-3 .news-content {
  max-width: 425px;
}
@media (max-width: 767px) {
  .news-wrapper-2 .news-box-items-3 .news-content {
    margin-top: 30px;
    max-width: initial;
  }
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 15px;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li {
  font-size: 15px;
  color: #505050;
  font-weight: 400;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li b {
  font-weight: 500;
}
.news-wrapper-2 .news-box-items-3 .news-content .news-meta li img {
  margin-right: 5px;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 a {
  color: var(--header);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-2 .news-box-items-3 .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-wrapper-2 .news-box-items-3 .news-content p {
  margin-bottom: 0;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn {
  display: inline-block;
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 2px solid var(--theme-color);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--header);
  transition: 0.5s;
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn:hover {
  color: var(--theme-color);
}
.news-wrapper-2 .news-box-items-3 .news-content .link-btn:hover::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid var(--theme-color);
  transition: 0.5s;
}
.news-wrapper-2.style-2 .news-box-items-2 .news-image .post-cat {
  background-color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-3 .news-image .post-cat {
  background-color: var(--theme-color);
}
.news-wrapper-2.style-2 .news-box-items-3 .news-content h3 a:hover {
  color: var(--theme-color);
}

.news-section-3 {
  position: relative;
}
.news-section-3 .left-shape {
  position: absolute;
  left: -8%;
  top: -35%;
}
@media (max-width: 1199px) {
  .news-section-3 .left-shape {
    display: none;
  }
}
.news-section-3 .right-shape {
  position: absolute;
  right: 122px;
  top: 152px;
}
@media (max-width: 1199px) {
  .news-section-3 .right-shape {
    display: none;
  }
}
@media (max-width: 991px) {
  .news-section-3 .array-buttons {
    display: none;
  }
}

.news-card-items-2 {
  margin-top: 30px;
}
.news-card-items-2 .news-thumb {
  position: relative;
}
.news-card-items-2 .news-thumb img {
  width: 100%;
  height: 100%;
}
.news-card-items-2 .news-thumb .number {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  color: var(--theme-color);
  width: 78px;
  height: 78px;
  line-height: 1;
  text-align: center;
  background-color: var(--white);
  padding: 12px 14px;
}
.news-card-items-2 .news-thumb .number span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
.news-card-items-2 .news-content {
  margin-top: 30px;
}
.news-card-items-2 .news-content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(100, 105, 112, 0.13);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.news-card-items-2 .news-content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 1;
}
.news-card-items-2 .news-content .post-meta li b {
  font-weight: 500;
}
.news-card-items-2 .news-content .post-meta li i {
  margin-right: 8px;
  font-size: 22px;
  color: var(--theme-color);
}
.news-card-items-2 .news-content .post-meta li.style-2 {
  border-left: 1px solid rgba(100, 105, 112, 0.23);
  padding-left: 20px;
}
.news-card-items-2 .news-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.news-card-items-2 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-2 .news-content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}
.news-card-items-2 .news-content p {
  margin-bottom: 20px;
}

.news-wrapper {
  margin-top: 60px;
  margin-right: -78%;
}
@media (max-width: 1199px) {
  .news-wrapper {
    margin-right: 0;
  }
}
.news-wrapper .news-box-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 15px;
  border: 1px solid rgba(30, 32, 35, 0.12);
}
@media (max-width: 1199px) {
  .news-wrapper .news-box-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .news-wrapper .news-box-item .news-image {
    flex-basis: 100%;
  }
  .news-wrapper .news-box-item .news-image img {
    width: 100%;
    height: 100%;
  }
}
.news-wrapper .news-box-item .content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-wrapper .news-box-item .content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 1;
}
.news-wrapper .news-box-item .content .post-meta li b {
  font-weight: 500;
}
.news-wrapper .news-box-item .content .post-meta li i {
  margin-right: 5px;
  font-size: 22px;
  color: var(--theme-color-2);
}
.news-wrapper .news-box-item .content h4 {
  margin-bottom: 15px;
}
.news-wrapper .news-box-item .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper .news-box-item .content h4 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color-2), var(--theme-color-2));
}
.news-wrapper .news-box-item.style-2 {
  background-color: var(--white);
}
.news-wrapper .news-box-item.style-2 .content .post-meta li i {
  color: var(--theme-color);
}
.news-wrapper .news-box-item.style-2 .content h4 {
  margin-bottom: 15px;
}
.news-wrapper .news-box-item.style-2 .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper .news-box-item.style-2 .content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
}

.news-wrapper-3 {
  margin-top: 60px;
  margin-right: -25%;
}
@media (max-width: 991px) {
  .news-wrapper-3 {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news-wrapper-3 {
    margin-top: 30px;
  }
}
.news-wrapper-3 .news-box-item {
  border: 1px solid rgba(30, 32, 35, 0.12);
  background: var(--white);
  box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}
.news-wrapper-3 .news-box-item .news-image {
  padding: 12px 12px 0px;
}
.news-wrapper-3 .news-box-item .news-image img {
  width: 100%;
  height: 100%;
}
.news-wrapper-3 .news-box-item .content {
  padding: 30px 40px;
}
.news-wrapper-3 .news-box-item .content .post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.news-wrapper-3 .news-box-item .content .post-meta li {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  display: flex;
  align-items: center;
  line-height: 0;
}
.news-wrapper-3 .news-box-item .content .post-meta li b {
  font-weight: 500;
}
.news-wrapper-3 .news-box-item .content .post-meta li i {
  margin-right: 10px;
  font-size: 22px;
  color: var(--theme-color-2);
}
.news-wrapper-3 .news-box-item .content h4 {
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .news-wrapper-3 .news-box-item .content h4 {
    font-size: 17px;
  }
}
.news-wrapper-3 .news-box-item .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-wrapper-3 .news-box-item .content h4 a:hover {
  color: var(--theme-color-2);
  background-size: 100% 2px;
  background-image: linear-gradient(var(--theme-color-2), var(--theme-color-2));
}
.news-wrapper-3 .news-box-item .content .link-btn {
  display: inline-block;
  margin-top: 25px;
  color: var(--theme-color-2);
}

.news-section-5 .section-title-area .array-buttons {
  position: relative;
}
@media (max-width: 991px) {
  .news-section-5 .section-title-area .array-buttons {
    display: none;
  }
}
.news-section-5 .section-title-area .array-buttons .array-prev {
  color: var(--theme-color-2);
  border: 1px solid rgba(30, 32, 35, 0.12);
}
.news-section-5 .section-title-area .array-buttons .array-prev:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}
.news-section-5 .section-title-area .array-buttons .array-next {
  background-color: var(--header);
  color: var(--white);
}
.news-section-5 .section-title-area .array-buttons .array-next:hover {
  background-color: var(--theme-color-2);
}

.news-section-3 .section-title-area.style-theme-color-1 .array-buttons .array-next {
  background-color: var(--theme-color);
  color: var(--white);
}
.news-section-3 .section-title-area.style-theme-color-1 .array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}
.blog-wrapper .single-blog-post .video__button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .video__button .video__btn__wrp {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}
.blog-wrapper .single-blog-post.post-details .post-content img {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
}
.blog-wrapper .single-blog-post.post-details .post-content h1 {
  font-size: 36px;
  line-height: 1.4;
}
.blog-wrapper .single-blog-post.post-details .post-content h1, .blog-wrapper .single-blog-post.post-details .post-content h2, .blog-wrapper .single-blog-post.post-details .post-content h3, .blog-wrapper .single-blog-post.post-details .post-content h4, .blog-wrapper .single-blog-post.post-details .post-content h5, .blog-wrapper .single-blog-post.post-details .post-content h6 {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }
  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 26px;
  line-height: 1.4;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  padding: 60px;
  text-align: center;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}
.blog-wrapper .single-blog-post.post-details blockquote a, .blog-wrapper .single-blog-post.post-details .wp-block-quote a {
  color: var(--white);
}
.blog-wrapper .single-blog-post.post-details blockquote a:hover, .blog-wrapper .single-blog-post.post-details .wp-block-quote a:hover {
  color: var(--text);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details blockquote, .blog-wrapper .single-blog-post.post-details .wp-block-quote {
    padding: 30px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
}
.blog-wrapper .single-blog-post.post-details blockquote::before, .blog-wrapper .single-blog-post.post-details .wp-block-quote::before {
  right: 30px;
  font-size: 110px;
  line-height: 1;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  content: "\f10d";
  bottom: -20px;
  color: var(--white);
  z-index: -1;
  opacity: 0.1;
  font-weight: 900;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}
.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before, .blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: 0.3;
  z-index: -1;
}
.blog-wrapper .single-blog-post.quote-post .post-content, .blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme-color);
  border: none;
  padding-top: 0;
}
.blog-wrapper .single-blog-post.quote-post .post-content::before, .blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content, .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 585px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content .icon, .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text, .blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}
.blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.quote-post .quote-content h2, .blog-wrapper .single-blog-post.format-quote .quote-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span, .blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span, .blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}
.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 462px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme-color);
  text-align: center;
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}
.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}
@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.blog-wrapper .single-blog-post .post-featured-thumb .video-play-btn .play-video {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 18px;
}
.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 {
  line-height: 1.4;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}
.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme-color);
}
.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}
@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme-color);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: "League Spartan", sans-serif;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--header);
}
.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 30px;
}
.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
  color: var(--text);
  position: relative;
  font-size: 18px;
  padding-left: 30px;
}
.blog-wrapper .single-blog-post .post-content ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  color: var(--theme-color);
}
.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}
.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}
.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}
.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}
.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  display: inline-block;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-meta span {
    font-size: 15px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme-color);
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content h3 {
  font-size: 26px;
}
.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}
.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}
.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}
.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}
.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme-color);
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}
.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}
@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}
.news-area .main-sidebar .single-sidebar-widget {
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
  background-color: var(--bg);
}
.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}
.news-area .main-sidebar .single-sidebar-widget ul > li {
  margin-bottom: 10px;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.news-area .main-sidebar .single-sidebar-widget ul > li a:hover {
  color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}
.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}
.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 45px;
  position: relative;
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 18px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title::after {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  background-color: var(--theme-color);
}
.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 16px;
  font-weight: 600;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}
.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--header);
}
.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.search_widget form button:hover {
  background-color: var(--header);
}

.popular-posts .single-post-item, .popular_posts .single-post-item {
  overflow: hidden;
}
.popular-posts .single-post-item:not(:last-child), .popular_posts .single-post-item:not(:last-child) {
  margin-bottom: 35px;
}
.popular-posts .single-post-item .thumb, .popular_posts .single-post-item .thumb {
  height: 95px;
  width: 95px;
  background-color: #f2f2f2;
  float: left;
  overflow: hidden;
  margin-right: 20px;
}
.popular-posts .single-post-item .post-content, .popular_posts .single-post-item .post-content {
  overflow: hidden;
}
.popular-posts .single-post-item .post-content h5, .popular_posts .single-post-item .post-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content h5 a:hover, .popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-color);
}
.popular-posts .single-post-item .post-content .post-date, .popular_posts .single-post-item .post-content .post-date {
  margin-top: 10px;
  color: var(--theme-color);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
.popular-posts .single-post-item .post-content .post-date i, .popular_posts .single-post-item .post-content .post-date i {
  margin-right: 7px;
}

.widget_categories ul li {
  display: block;
}
.widget_categories ul li:last-child a {
  margin-bottom: 0;
}
.widget_categories ul li a {
  position: relative;
  background: var(--white);
  padding: 17px 20px;
  line-height: 1;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.widget_categories ul li a:hover {
  color: var(--theme-color);
}
.widget_categories ul li a i {
  margin-right: 10px;
}
.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  background-color: var(--theme-color);
  right: 0;
  top: 0;
  text-align: center;
  color: var(--white);
}

.tagcloud a {
  display: inline-block;
  padding: 12px 22px;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.tagcloud a:last-child {
  margin-right: 0;
}
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme-color);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: #f6f6f6;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme-color);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

.social-share a {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
}
.social-share a:hover {
  color: var(--theme-color);
}

.tag-share-wrap {
  padding-bottom: 50px;
}
.tag-share-wrap h4 {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
  font-size: 26px;
}
@media (max-width: 767px) {
  .comments-heading h3, .related-post-wrap h3, .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}
.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}
.comments-item-list .single-comment-item p, .comments-item-list .single-comment-item span {
  font-size: 16px;
}
.comments-item-list .single-comment-item .author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .comments-item-list .single-comment-item .author-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
}
@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}
.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
  border-bottom: 1px solid #e2e2e2;
}
.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
  padding: 10px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--text);
  border: 1px solid #ebebeb;
  background: transparent;
  border-radius: 0;
  transition: all 0.4s ease-in-out;
  box-shadow: inherit;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn i {
  margin-right: 10px;
  margin-left: 0px !important;
  transition: all 0.4s ease-in-out;
  width: initial;
  height: initial;
  line-height: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::before, .comments-item-list .single-comment-item .author-info-comment .info .theme-btn.minimal-btn::after {
  background-color: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover {
  background-color: var(--theme-color);
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover a {
  color: var(--white) !important;
}
.comments-item-list .single-comment-item .author-info-comment .info .theme-btn:hover i {
  transform: translate(0);
  width: initial;
  height: initial;
  line-height: initial;
}
.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}
.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--theme-color);
  font-weight: 500;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}
.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}
.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: var(--white);
  width: 100%;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comment-form {
    padding: 30px;
  }
}
@media (max-width: 585px) {
  .comment-form {
    padding: 30px 15px;
  }
}
.comment-form label {
  margin-bottom: 4px;
}
.comment-form input, .comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--text);
  background-color: var(--bg);
}
@media (max-width: 585px) {
  .comment-form input, .comment-form textarea {
    padding: 15px;
  }
}
.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}
@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}
.comment-form .theme-btn {
  display: inline-block;
  line-height: 1.2;
  padding: 24px 60px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .comment-form .theme-btn {
    padding: 20px 40px;
  }
}
@media (max-width: 585px) {
  .comment-form .theme-btn {
    padding: 15px 40px;
    font-size: 14px;
  }
}
.comment-form .theme-btn i {
  margin-right: 10px;
  width: initial;
  height: initial;
  line-height: initial;
  background-color: transparent;
  color: var(--white);
  margin-left: 0;
  margin-right: 10px;
}
.comment-form .theme-btn:hover i {
  transform: translate(0);
}

.comment ul {
  list-style-type: disc;
}
.comment ul ol {
  margin-bottom: 0;
}
.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}
.comment ol ul {
  margin-bottom: 0;
}
.comment ol ol {
  margin-bottom: 0;
}
.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}
.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme-color);
}
.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme-color);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}
.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme-color);
}
.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme-color);
}
.site_info_widget .social-link {
  margin-top: 35px;
}
.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.contact-section {
  position: relative;
  z-index: 9;
}
.contact-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(30, 32, 35, 0.96);
  z-index: -1;
}

.contact-wrapper {
  padding-bottom: 200px;
}
.contact-wrapper .contact-text {
  margin-top: 35px;
  color: var(--white);
}
.contact-wrapper .contact-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper .contact-items {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}
.contact-wrapper .contact-items .icon {
  width: 60px;
  height: 60px;
  line-height: 72px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 25px;
}
.contact-wrapper .contact-items .content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.contact-wrapper .contact-items .content p {
  color: var(--white);
}
.contact-wrapper .contact-items .content p a {
  color: var(--white);
}
.contact-wrapper .contact-form-items {
  background-color: var(--theme-color);
  padding: 35px;
}
.contact-wrapper .contact-form-items h3 {
  color: var(--white);
}
.contact-wrapper .contact-form-items .contact-form {
  margin-top: 30px;
}
.contact-wrapper .contact-form-items .contact-form .form-clt input, .contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
}
.contact-wrapper .contact-form-items .contact-form .form-clt textarea {
  padding-bottom: 245px;
}
@media (max-width: 767px) {
  .contact-wrapper .section-title {
    text-align: left;
  }
}

.contact-wrapper-3 .man-image {
  margin-bottom: -140px;
  text-align: center;
  max-width: 460px;
}
@media (max-width: 1199px) {
  .contact-wrapper-3 .man-image {
    margin-bottom: 0;
  }
}
.contact-wrapper-3 .man-image img {
  width: 100%;
  height: 100%;
}
.contact-wrapper-3 .contact-form-items {
  padding: 35px;
  background-color: var(--theme-color);
}
.contact-wrapper-3 .contact-form-items .section-title span {
  color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title span::before {
  background-color: var(--white);
}
.contact-wrapper-3 .contact-form-items .section-title h2 {
  color: var(--white);
}
@media (max-width: 767px) {
  .contact-wrapper-3 .contact-form {
    margin-top: 30px;
  }
}
.contact-wrapper-3 .contact-form .form-clt input, .contact-wrapper-3 .contact-form .form-clt textarea {
  border: none;
  outline: none;
  width: 100%;
  background-color: var(--white);
  color: var(--text);
  padding: 21px 20px;
  line-height: 1;
  text-transform: capitalize;
}
.contact-wrapper-3 .contact-form .form-clt textarea {
  padding-bottom: 145px;
}

@media (max-width: 767px) {
  .contact-wrapper-2 .contact-left-item .section-title {
    text-align: left;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-item .contact-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contact-icon {
  width: 60px;
  height: 60px;
  line-height: 70px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 32px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content span {
  font-size: 18px;
  font-weight: 700;
  color: var(--header);
  font-family: "Unbounded", sans-serif;
  display: inline-block;
  margin-bottom: 5px;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 {
  font-weight: 400;
  color: #555;
}
.contact-wrapper-2 .contact-left-item .contact-item .contect-icon-item .contect-content h6 a {
  color: #555;
}
.contact-wrapper-2 .contact-content {
  padding: 34px;
  background-color: var(--theme-color);
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-content {
    margin-left: 0;
  }
}
.contact-wrapper-2 .contact-content h3 {
  margin-bottom: 30px;
  color: var(--white);
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--white);
  color: #555;
  border: 1px solid #D1D1D1;
  padding: 12px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575px) {
  .contact-wrapper-2 .contact-content .contact-form-items .form-clt input, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder, .contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: #555;
}
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 240px;
  resize: none;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 666px;
}
@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 300px;
  }
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 400;
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--text);
  position: relative;
  padding-left: 20px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li a {
  color: var(--text);
}
.footer-widget-wrapper .single-footer-widget .footer-contact li span {
  display: block;
}
.footer-widget-wrapper .single-footer-widget .footer-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper .single-footer-widget .social-list {
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list h4 {
  font-size: 20px;
  font-weight: 800;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon {
  gap: 20px;
  font-size: 24px;
  color: var(--header);
  margin-top: 20px;
}
.footer-widget-wrapper .single-footer-widget .social-list .social-icon a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items:not(:last-child) {
  margin-bottom: 25px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
  width: 98px;
  height: 95px;
  object-fit: cover;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
  margin-bottom: 4px;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
  color: var(--theme-color);
  font-size: 15px;
  font-weight: 500;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 162%;
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
  color: var(--header);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area.style-white-text .recent-post-items .content h6 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .recent-post-area.style-white-text .recent-post-items .content h6 a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a::before {
  background-color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .list-area li a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn {
  background-color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn i {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .theme-btn:hover i {
  background-color: var(--theme-color-2);
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .footer-content .social-icon a:hover {
  color: var(--theme-color-2) !important;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .recent-post-area .recent-post-items .content .post-date li {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .icon {
  width: 50px;
  height: 50px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 25px;
  color: var(--theme-color-2);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content span {
  color: #fff;
  font-weight: 500;
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.style-color-2 .contact-list-2 li .content h3 a {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget.theme-color-2 .contact-list-2 li .icon {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .widget-head h3 {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li {
  position: relative;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content p {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon {
  gap: 20px;
  font-size: 20px;
  margin-top: 20px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-color);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input {
  margin-top: 30px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input input {
  width: 100%;
  border: none;
  background-color: var(--white);
  position: relative;
  border: 1px solid var(--border);
  padding: 16px 22px;
  color: var(--text);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn {
  margin-top: 12px;
  width: 100%;
  padding: 22px 22px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn i {
  position: absolute;
  top: 5px;
  bottom: 5px;
  right: 5px;
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn::before, .footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn::after {
  background-color: var(--white);
}
.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn:hover {
  color: var(--header);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.09);
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  padding: 16px 0;
}
.footer-bottom.footer-bottom-2 {
  border: none;
  background: #27292C;
  padding: 30px 0;
}
.footer-bottom.footer-bottom-2 p {
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom.style-3 {
  padding: 16px 0;
}

.footer-bottom-wrapper.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom-wrapper.style-2 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.footer-bottom-wrapper.style-2 .footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-bottom-wrapper.style-2 .footer-menu li a {
  color: rgba(255, 255, 255, 0.75);
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.footer-bottom-wrapper.style-2 .footer-menu li a:hover {
  background-size: 100% 1px;
}

.footer-info-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
.footer-info-area.style-new {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-info-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 0 50px;
}
@media (max-width: 1199px) {
  .footer-info-wrapper-2 {
    flex-wrap: wrap;
    padding: 30px 30px;
    border: none;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 {
    display: grid;
    justify-content: center;
  }
}
.footer-info-wrapper-2 .info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding-right: 50px;
  height: 150px;
}
@media (max-width: 991px) {
  .footer-info-wrapper-2 .info-items {
    height: initial;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items {
    display: grid;
    justify-content: center;
  }
}
.footer-info-wrapper-2 .info-items.border-none {
  border-right: none;
  padding-right: 0;
}
.footer-info-wrapper-2 .info-items .icon {
  width: 60px;
  height: 60px;
  line-height: 65px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white);
  text-align: center;
  font-size: 30px;
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items .icon {
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-info-wrapper-2 .info-items .content {
    text-align: center;
  }
}
.footer-info-wrapper-2 .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-info-wrapper-2 .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.footer-info-wrapper-2 .info-items .content h6 a {
  color: var(--white);
}
.footer-info-wrapper-2.style-4 .info-items .icon {
  background-color: var(--theme-color-2);
}
@media (max-width: 575px) {
  .footer-info-wrapper-2.style-4 .info-items .content {
    text-align: center;
  }
}
.footer-info-wrapper-2.style-4 .info-items .content h5 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 5px;
}
.footer-info-wrapper-2.style-4 .info-items .content h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
  color: var(--white);
}
.footer-info-wrapper-2.style-4 .info-items .content h6 a {
  color: var(--white);
}

.footer-cta-content-3 {
  padding-top: 120px;
}
@media (max-width: 1199px) {
  .footer-cta-content-3 {
    padding-top: 100px;
  }
}
@media (max-width: 991px) {
  .footer-cta-content-3 {
    padding-top: 80px;
  }
}
.footer-cta-content-3 .section-title .theme-btn {
  margin-top: 40px;
}

.footer-name {
  padding-top: 20px;
}
.footer-name h2 {
  text-align: center;
  font-size: 250px;
  font-weight: 800;
  letter-spacing: -7.5px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(30, 32, 35, 0.51);
}
@media (max-width: 1899px) {
  .footer-name h2 {
    font-size: 200px;
  }
}
@media (max-width: 1600px) {
  .footer-name h2 {
    letter-spacing: 2px;
  }
}
@media (max-width: 1600px) {
  .footer-name h2 {
    font-size: 170px;
  }
}
@media (max-width: 1399px) {
  .footer-name h2 {
    font-size: 150px;
  }
}
@media (max-width: 1199px) {
  .footer-name h2 {
    font-size: 120px;
  }
}
@media (max-width: 991px) {
  .footer-name h2 {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .footer-name h2 {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .footer-name h2 {
    font-size: 40px;
  }
}

.footer-section {
  position: relative;
}
.footer-section .frame-shape {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  left: 70px;
}
@media (max-width: 1399px) {
  .footer-section .frame-shape {
    display: none;
  }
}

.footer-newsletter-5 {
  padding-top: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 80px;
}
@media (max-width: 1199px) {
  .footer-newsletter-5 {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.footer-newsletter-5 .newsletter-content {
  max-width: 720px;
  width: 100%;
}
.footer-newsletter-5 .newsletter-content h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-newsletter-5 .newsletter-content .newsletter {
  position: relative;
}
.footer-newsletter-5 .newsletter-content .newsletter input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding: 19px 30px;
  line-height: 1;
  color: var(--text);
}
.footer-newsletter-5 .newsletter-content .newsletter .paper-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 57px;
  height: 58px;
  background-color: var(--theme-color-2);
  text-align: center;
  color: var(--white);
}
.footer-newsletter-5 .newsletter-content .newsletter.theme-color-bg .paper-icon {
  background-color: var(--theme-color);
}

.header-logo-2 img{
  width: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-logo img{
  width: 200px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer-logo img{
  width: 200px;
  margin-bottom:1px;
}

.about-content h2{
  font-size: 34px !important;
}

.choose-us-content h2{
  font-size: 34px !important;
}

.service-box-item .service-header .header .icon {
    width: 62px;
    height: 62px;
    line-height: 68px;
    text-align: center;
    background-color: var(--theme-color);
    margin-bottom: 28px;
    margin-top: -20px;
    font-size: 28px;
    color: var(--white);
}

.service-box-item .service-header .header h2 {
    font-size: 40px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 121, 45, 0.2588235294);
    -webkit-text-fill-color: transparent;
}

.service-box-item .service-header h4 {
    margin-bottom: 10px;
    font-size: 18px !important;
    font-weight: 400 !important;

}

.hero-2 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /*content: "";
  background: rgba(4, 2, 0, 0.53);*/
}

.fa-chevron-down{
  font-weight: 400 !important;
  font-size: 15px;
}

.theme-btn i {
    width: 32px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background-color: var(--white);
    color: var(--theme-color);
    margin-left: 35px;
    transition: all 0.4s ease-in-out;
}

.shop-box-items {
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgba(30, 32, 35, 0.12);
    background: var(--white);
    padding: 34px 22px;
}

.shop-box-items .content {
    margin-top:8px;
}

.footer-widget-wrapper.footer-style-2 .single-footer-widget .footer-content .footer-input .theme-btn {
    margin-top: 12px;
    width: 100%;
    padding: 17px 22px;
}

.shop-box-items {
    text-align: center;
    margin-top: 30px;
    border: 2px solid rgb(0 0 0 / 14%);
    background: var(--white);
    padding: 34px 22px;
    border-radius: 10px;
    box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
}

.shop-box-items .thumb .theme-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

/* Sliders */
.MultiCarousel {
    float: left;
    overflow: hidden;
    padding: 15px;
    width: 100%;
    position: relative;
}

.MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
    float: left;
    padding: 5px;
}

/* .MultiCarousel .MultiCarousel-inner .item>article {
    padding: 10px;
} */

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
    position: absolute;
    border-radius: 50%;
    top: calc(50% - 20px);
}

.MultiCarousel .leftLst {
    left: 0;
}

.MultiCarousel .rightLst {
    right: 0;
}

.MultiCarousel .leftLst.over,
.MultiCarousel .rightLst.over {
    pointer-events: none;
    background: #ccc;
}
/* Product Images */

figure.product-img img{
    cursor: pointer;
}

.mr-2{
  margin-right:10px;
}

.product-details-content p{
  margin-bottom: 18px;
}

.product-details-content table{
  margin-bottom:28px;
}

.checkout-single-wrapper .checkout-single .checkout-single-form .input-single textarea, .checkout-single-wrapper .checkout-single .checkout-single-form .input-single .country-select, .checkout-single-wrapper .checkout-single .checkout-single-form .input-single input
 {
    width: 100%;
    outline: none;
    box-shadow: none;
    border: 1px solid #b3b4b7;
    padding: 12px 24px;
    color: var(--header);
    text-transform: capitalize;
    font-weight: 500;
}

.service-box-item .service-content .service-list {
    margin-top: 15px;
    margin-bottom: 14px;
}

.shop-box-items .thumb img{
  width: 100%;
}

.shop-box-items .content {
    margin-top: 30px;
}