/*----------------------------------------*/
/* Color setup
/*----------------------------------------*/

:root {
  --primary: #c9f31d;
  --secondary: #2c2c2c;
  --black: #000;
  --black-2: #121212;
  --black-3: #555;
  --black-4: #1d1d1d;
  --black-5: #343434;
  --black-6: #262626;
  --black-7: #555555;
  --black-13: #666;
  --white: #fff;
  --white-2: #efefef;
  --white-3: #e9e9e9;
  --white-4: #f0f0f0;
  --white-5: #fbfbfb;
  --white-6: #d7d7d7;
  --gray: #c2c2c2;
  --gray-2: #999;
  --gray-3: #a8a8a8;
  --gray-4: #f6f6f6;
  --gray-5: #bbb;
  --gray-6: #2b2b2b;
  --gray-7: #b9b9b9;
  --gray-8: #8e8e8e;
  --gray-9: #aaa;
  --gray-10: #7c7c7c;
  --gray-11: #d9d9d9;
  --gray-12: #383838;
  --gray-13: #ccc;
  --gray-14: #dfdfdf;
  --gray-15: #c0c0c0;
  --white-6: #d7d7d7;
  --white-7: #b7b7c5;
  --black-14: #323438;
  --black-15: #2c2c2c;
  --lime: #745eff;
  --lime-2: #5547f5;
  --gray-24: #ececf4;
  --pink: #faede9;
  --pink-2: #ff9776;
  --pink-3: #f3ecec;
  --pink-4: #fffaf0;
  --pink-5: #e0e3cc;
  --bg-line: #1e1e1e;
  --d-gray: #6a6a6a;
  --d-black: #1a1a1a;
  --d-black-2: #171717;
  --d-black-3: #1a1a1a;
  --swiper-theme-color: #007aff;
}

/*----------------------------------------*/
/* Keyframe setup
/*----------------------------------------*/

@keyframes wcSlideBottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes wcSpinner {
  from {
    -webkit-transform: rotate(0turn);
    transform: rotate(0turn);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes wcLoading {
  0% {
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
    background: var(--white);
  }

  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    background: var(--primary);
  }

  100% {
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
    background: transparent;
  }
}

@keyframes wcLoading {
  0% {
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
    background: var(--white);
  }

  50% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    background: var(--primary);
  }

  100% {
    -webkit-transform: scaleY(0.1);
    transform: scaleY(0.1);
    background: transparent;
  }
}

/* @keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
} */

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }

  20% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -webkit-animation-timing-function: ease-out;
  }

  40% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes imageAnimation {
  0% {
    opacity: 0;
    -moz-animation-timing-function: ease-in;
  }

  20% {
    opacity: 1;
    -moz-transform: scale(1.05);
    -moz-animation-timing-function: ease-out;
  }

  40% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }

  50% {
    opacity: 0;
    -moz-transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes imageAnimation {
  0% {
    opacity: 0;
    -o-animation-timing-function: ease-in;
  }

  20% {
    opacity: 1;
    -o-transform: scale(1.05);
    -o-animation-timing-function: ease-out;
  }

  40% {
    opacity: 1;
    -o-transform: scale(1.1);
  }

  50% {
    opacity: 0;
    -o-transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@-ms-keyframes imageAnimation {
  0% {
    opacity: 0;
    -ms-animation-timing-function: ease-in;
  }

  20% {
    opacity: 1;
    -ms-transform: scale(1.05);
    -ms-animation-timing-function: ease-out;
  }

  40% {
    opacity: 1;
    -ms-transform: scale(1.1);
  }

  50% {
    opacity: 0;
    -ms-transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  20% {
    opacity: 1;
    transform: scale(1.05);
    animation-timing-function: ease-out;
  }

  40% {
    opacity: 1;
    transform: scale(1.1);
  }

  50% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes wcBubble {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.5;
  }

  100% {
    scale: 1;
  }
}

@keyframes wcBubble {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.5;
  }

  100% {
    scale: 1;
  }
}

.preloader {
  width: 100%;
  height: 100vh;
  background-color: var(--black-2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99999;
}

.loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.loading .bar {
  width: 6px;
  height: 60px;
  background: var(--white);
  display: inline-block;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-animation: wcLoading 1.5s ease-in-out infinite;
  animation: wcLoading 1.5s ease-in-out infinite;
}

.loading .bar1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading .bar2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading .bar3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading .bar4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading .bar5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading .bar6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading .bar7 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.loading .bar8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

/*----------------------------------------*/
/* Font import
/*----------------------------------------*/

@font-face {
  font-family: nuto;
  font-display: swap;
  src: url("../fonts/nuto/NunitoSans.ttf");
  font-weight: 400;
}

@font-face {
  font-family: jtbold;
  font-display: swap;
  src: url("../fonts/jt/jtbold.woff2");
}

@font-face {
  font-family: jtregular;
  font-display: swap;
  src: url("../fonts/jt/jtregular.woff2");
}

@font-face {
  font-family: hankenm;
  font-display: swap;
  src: url("../fonts/hanken/hanken-medium.woff2");
}

@font-face {
  font-family: hankenr;
  font-display: swap;
  src: url("../fonts/hanken/hanken-regular.woff2");
}

@font-face {
  font-family: playsemi;
  font-display: swap;
  src: url("../fonts/playfair/playsemi.woff2");
  font-weight: 400;
}

@font-face {
  font-family: gilroy-l;
  font-display: swap;
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/gilroy/Gilroy-Light.woff2");
}

@font-face {
  font-family: gilroy;
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gilroy/Gilroy.woff2");
}

@font-face {
  font-family: gilroy;
  font-display: swap;
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/gilroy/Gilroy-Medium.woff2");
}

@font-face {
  font-family: gilroy;
  font-display: swap;
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/gilroy/Gilroy-SemiBold.woff2");
}

@font-face {
  font-family: gilroy;
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gilroy/Gilroy-Bold.woff2");
}

/*----------------------------------------*/
/* Main config
/*----------------------------------------*/
*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.body-bg {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  top: 0;
  opacity: 1;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: repeat;
  background-position: top left;
  background-image: url(../imgs/bg/bg-paper-150.png);
}

body {
  font-family: gilroy;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

main {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  position: relative;
  z-index: 1;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

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

p {
  padding: 0;
  margin: 0;
  font-style: normal;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  color: var(--black-3);
  position: relative;
  z-index: 1;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.line {
  position: relative;
}

.line::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--white-4);
}

.line::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: calc(50% - 1px);
  top: 0;
  background: var(--white-4);
}

.line-3 {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--white-4);
}

.shape {
  position: absolute;
  left: -90px;
  bottom: -350px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shape {
    left: 200%;
    bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .shape {
    left: 70%;
    bottom: 0;
  }
}

.shape .primary {
  width: 54px;
  height: 56px;
  background-color: var(--primary);
  margin-top: -37px;
  margin-left: 24px;
}

.shape .secondary {
  width: 53px;
  height: 56px;
  background-color: var(--secondary);
}

.pos-inherit {
  position: inherit;
}

@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }

  br {
    display: none;
  }
}

.sec-title-wrapper {
  position: relative;
  z-index: 9;
}

.footer-line {
  position: relative;
}

.footer-line::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 500px;
  left: 0;
  bottom: -400px;
  background: var(--white-4);
}

@media (max-width: 1023px) {
  .footer-line::after {
    height: 0;
  }
}

.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9991;
  border-radius: 100px;
  color: var(--white);
  background: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: none;
  mix-blend-mode: exclusion;
}

.scroll-top i {
  font-size: 18px;
  color: var(--black-2);
}

.scroll-top:hover {
  color: var(--gray-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .scroll-top {
    bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .scroll-top {
    right: 10px;
    bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .scroll-top {
    right: 5px;
    bottom: 55px;
  }
}

.logo-light {
  display: none;
}

.logo-dark {
  display: block;
}

.font-20 {
  font-size: 20px !important;
}

.tna {
  background-color: #ffcd00 !important;
}

.tna-background-img {
  background-color: rgba(0, 0, 0, 12%) !important;
}

.tna-title-font {
  font-family: jtbold;
  font-size: 42px;
  line-height: 1.5;
}

h2.tna-project-title {
  font-family: hankenm;
  letter-spacing: normal;
  line-height: 1.3em;
  font-size: 20px;
}

h3.tna-project-title {
  font-family: hankenm;
  letter-spacing: normal;
  line-height: 1.3em;
  font-size: 45px;
}

h2.tna-blog-title {
  font-family: hankenm;
  letter-spacing: normal;
  line-height: 1.3em;
  font-size: 45px;
}

/*----------------------------------------*/
/* Header-HomePage
/*----------------------------------------*/

.header__area-7 {
  padding: 3px 0;
  position: fixed;
  width: 100%;
  top: 0;
  border-bottom: solid rgba(255, 255, 255, 0.6) 1px;
  z-index: 99;
}

.header__area-7.sticky-7 {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--white-2);
}

.dark .header__area-7.sticky-7 {
  border-color: var(--secondary);
}

.dark .header__area-7.sticky-7 {
  background: var(--black-2);
}

.header__inner-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px auto 150px;
  grid-template-columns: 150px auto 150px;
  padding: 0 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__inner-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__inner-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .header__inner-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 15px;
  }
}

.header__logo-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-light {
  display: none;
}

.logo-dark {
  display: block;
}

.header__nav-2 {
  text-align: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header__nav-2 {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header__nav-2 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .header__nav-2 {
    display: none;
  }
}

/*----------------------------------------*/
/* Menu CSS
/*----------------------------------------*/
.main-menu-4 > li {
  display: inline-block;
  margin: 0 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-4 > li {
    margin: 0 19px;
  }
}

.main-menu-4 > li > a {
  font-family: playsemi;
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  color: var(--white);
  padding: 29px 0;
  outline: none;
  text-transform: uppercase;
  -webkit-transform: translateY(var(--y)) translateZ(0);
  transform: translateY(var(--y)) translateZ(0);
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.main-menu-4 > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--white);
}

.main-menu-4 > li > a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.main-menu-4 > li > a:hover {
  --y: -4px;
}

.main-menu-4 > li > a:hover span {
  --m: calc(16px * -1);
}

.main-menu-4 > li > a {
  color: var(--white);
}

.main-menu-4 > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--white);
}

.main-menu-4 > li > a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.main-menu-4 > li > a:hover {
  --y: -4px;
}

.main-menu-4 > li > a:hover span {
  --m: calc(16px * -1);
}

.header__nav-icon-7 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

.header__nav-icon-7 .menu-icon-2::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border: 0px solid var(--gray);
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sticky-7 .header__nav-icon-7 .menu-icon-2::after {
  width: 100px;
  height: 100px;
  right: -20px;
  top: -30px;
}

/*----------------------------------------*/
/* Header-OtherPage
/*----------------------------------------*/

.header__area-7-other {
  padding: 3px 0;
  position: fixed;
  width: 100%;
  top: 0;
  border-bottom: 1px solid rgb(63 63 63 / 15%);
  z-index: 99;
}

.header__area-7-other.sticky-7 {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--white-2);
}

/*----------------------------------------*/
/* Menu CSS Other
/*----------------------------------------*/
.main-menu-4-other > li {
  display: inline-block;
  margin: 0 13px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu-4-other > li {
    margin: 0 19px;
  }
}

.main-menu-4-other > li > a {
  font-family: playsemi;
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  color: var(--white);
  padding: 29px 0;
  outline: none;
  text-transform: uppercase;
  -webkit-transform: translateY(var(--y)) translateZ(0);
  transform: translateY(var(--y)) translateZ(0);
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.main-menu-4-other > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--white);
}

.main-menu-4-other > li > a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.main-menu-4-other > li > a:hover {
  --y: -4px;
}

.main-menu-4-other > li > a:hover span {
  --m: calc(16px * -1);
}

.main-menu-4-other > li > a {
  color: #000;
}

.main-menu-4-other > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--white);
}

.main-menu-4-other > li > a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.main-menu-4-other > li > a:hover {
  --y: -4px;
}

.main-menu-4-other > li > a:hover span {
  --m: calc(16px * -1);
}

.header__nav-icon-7-other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
  filter: invert(1);
}

.header__nav-icon-7-other .menu-icon-2::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border: 0px solid var(--gray);
  border-radius: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sticky-7 .header__nav-icon-7-other .menu-icon-2::after {
  width: 100px;
  height: 100px;
  right: -20px;
  top: -30px;
}

/*----------------------------------------*/
/* FROM bootstrap
/*----------------------------------------*/

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }

  br {
    display: none;
  }
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-100 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}

.pb-110 {
  padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-110 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-110 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-110 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-130 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-140 {
  padding-bottom: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-140 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-140 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-140 {
    padding-bottom: 60px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-150 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-150 {
    padding-bottom: 60px;
  }
}

.pb-200 {
  padding-bottom: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pb-200 {
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pb-200 {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .pb-200 {
    padding-bottom: 60px;
  }
}

.pt-42 {
  padding-top: 40px;
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-100 {
    padding-top: 90px;
  }
}

.pt-110 {
  padding-top: 110px;
}

@media only screen and (max-width: 767px) {
  .pt-110 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-110 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-110 {
    padding-top: 90px;
  }
}

.pt-120 {
  padding-top: 120px;
}

@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-120 {
    padding-top: 90px;
  }
}

.pt-130 {
  padding-top: 130px;
}

@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-130 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-130 {
    padding-top: 90px;
  }
}

.pt-140 {
  padding-top: 140px;
}

@media only screen and (max-width: 767px) {
  .pt-140 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-140 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-140 {
    padding-top: 90px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767px) {
  .pt-150 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pt-150 {
    padding-top: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-150 {
    padding-top: 90px;
  }
}

.sp-x {
  padding-left: 100px;
  padding-right: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sp-x {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sp-x {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .sp-x {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.mt-60 {
  margin-top: 60px;
}

.ht-200 {
  padding-top: 200px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .ht-200 {
    padding-top: 180px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ht-200 {
    padding-top: 160px;
  }
}

@media only screen and (max-width: 767px) {
  .ht-200 {
    padding-top: 130px;
  }
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[role="button"] {
  cursor: pointer;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

/*----------------------------------------*/
/* Offcanvas
/*----------------------------------------*/

.offcanvas__area {
  background-color: var(--black-2);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.offcanvas__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.9fr 3fr 1.3fr;
  grid-template-columns: 0.9fr 3fr 1.3fr;
  height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 3fr 1.5fr;
    grid-template-columns: 1.2fr 3fr 1.5fr;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 2fr 1.5fr;
    grid-template-columns: 1.2fr 2fr 1.5fr;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 2.3fr 1.8fr;
    grid-template-columns: 1.2fr 2.3fr 1.8fr;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.offcanvas__left {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0.5fr 2.1fr 1fr;
  grid-template-rows: 0.5fr 2.1fr 1fr;
  border-right: 1px solid var(--black-4);
}

@media only screen and (max-width: 767px) {
  .offcanvas__left {
    display: none;
  }
}

.offcanvas__mid {
  overflow: hidden;
  overflow-y: auto;
}

@media only screen and (max-width: 767px) {
  .offcanvas__mid {
    margin-top: 75px;
  }
}

.offcanvas__mid::-webkit-scrollbar {
  width: 5px;
}

.offcanvas__mid::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px var(--black);
  box-shadow: inset 0 0 5px var(--black);
  border-radius: 10px;
}

.offcanvas__mid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.offcanvas__right {
  background-color: var(--black-4);
  padding: 0 50px;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__right {
    display: none;
  }
}

.offcanvas__right .shape-1 {
  position: absolute;
  bottom: 0;
  left: 125px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__right .shape-1 {
    left: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

.offcanvas__right .shape-2 {
  position: absolute;
  bottom: 90px;
  right: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right .shape-2 {
    right: 30px;
  }
}

.offcanvas__logo {
  padding: 55px 0 55px 50px;
  border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__logo {
    padding: 30px 0 30px 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

.offcanvas__social {
  padding-left: 50px;
  padding-top: 220px;
  border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__social {
    padding-left: 50px;
    padding-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__social {
    padding-left: 30px;
    padding-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social {
    padding-left: 15px;
    padding-top: 50px;
  }
}

.offcanvas__social .social-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social .social-title {
    font-size: 20px;
  }
}

.offcanvas__social ul li {
  padding-bottom: 2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social ul li {
    padding-bottom: 5px;
  }
}

.offcanvas__social ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.offcanvas__social ul li a:hover {
  color: var(--gray-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social ul li a {
    font-size: 16px;
  }
}

.offcanvas__links {
  padding-left: 50px;
  padding-top: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__links {
    padding-left: 30px;
    padding-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__links {
    padding-left: 30px;
    padding-top: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__links {
    padding-left: 15px;
    padding-top: 40px;
  }
}

.offcanvas__links ul li {
  padding-bottom: 2px;
}

.offcanvas__links ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.offcanvas__links ul li a:hover {
  color: var(--gray-2);
}

.offcanvas__close {
  position: absolute;
  right: 40px;
  top: 30px;
}

@media only screen and (max-width: 767px) {
  .offcanvas__close {
    right: 15px;
    top: 15px;
  }
}

.offcanvas__close button {
  font-size: 30px;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #232323;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.offcanvas__close button:hover {
  color: var(--gray-2);
}

@media only screen and (max-width: 767px) {
  .offcanvas__close button {
    font-size: 24px;
    width: 48px;
    height: 48px;
  }
}

.offcanvas__search {
  padding-top: 190px;
  padding-bottom: 140px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

.offcanvas__search form {
  position: relative;
}

.offcanvas__search input {
  color: #585858;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 20px 45px 20px 20px;
  border-radius: 30px;
  border: 1px solid #3c3c3c;
  background-color: transparent;
  outline: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__search input {
    padding: 15px 40px 15px 15px;
  }
}

.offcanvas__search input::-webkit-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::-moz-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input:-ms-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::-ms-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search button {
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  border-radius: 0 100% 100% 0;
}

.offcanvas__contact h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__contact h3 {
    font-size: 20px;
  }
}

.offcanvas__contact li {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 7px;
  max-width: 260px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__contact li {
    font-size: 16px;
  }
}

.offcanvas__contact li a {
  color: var(--white);
}

.offcanvas__contact li a:hover {
  color: var(--gray-2);
}

/* offcanvas logo */
.offcanvas__logo {
  padding: 55px 0 55px 50px;
  border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__logo {
    padding: 30px 0 30px 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

/* offcanvas body */
.offcanvas__area {
  background-color: var(--black-2);
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.offcanvas__body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.9fr 3fr 1.3fr;
  grid-template-columns: 0.9fr 3fr 1.3fr;
  height: 100%;
}

/*1400*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 3fr 1.5fr;
    grid-template-columns: 1.2fr 3fr 1.5fr;
  }
}

/*1200*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 2fr 1.5fr;
    grid-template-columns: 1.2fr 2fr 1.5fr;
  }
}

/*990*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__body {
    -ms-grid-columns: 1.2fr 2.3fr 1.8fr;
    grid-template-columns: 1.2fr 2.3fr 1.8fr;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* offcanvas left */

.offcanvas__left {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0.5fr 2.1fr 1fr;
  grid-template-rows: 0.5fr 2.1fr 1fr;
  border-right: 1px solid var(--black-4);
}

@media only screen and (max-width: 767px) {
  .offcanvas__left {
    display: none;
  }
}

/* offcanvas logo */

.offcanvas__logo {
  padding: 55px 0 55px 50px;
  border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__logo {
    padding: 30px 0 30px 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__logo {
    padding: 30px 0 30px 15px;
  }
}

/* offcanvas logo */
.offcanvas__social {
  padding-left: 50px;
  padding-top: 220px;
  border-bottom: 1px solid var(--black-4);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__social {
    padding-left: 50px;
    padding-top: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__social {
    padding-left: 30px;
    padding-top: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social {
    padding-left: 15px;
    padding-top: 50px;
  }
}

.offcanvas__social .social-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social .social-title {
    font-size: 20px;
  }
}

.offcanvas__social ul li {
  padding-bottom: 2px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social ul li {
    padding-bottom: 5px;
  }
}

.offcanvas__social ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}

.offcanvas__social ul li a:hover {
  color: var(--gray-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__social ul li a {
    font-size: 16px;
  }
}

/* offcanvas mid */

.offcanvas__mid {
  overflow: hidden;
  overflow-y: auto;
}

@media only screen and (max-width: 767px) {
  .offcanvas__mid {
    margin-top: 75px;
  }
}

.offcanvas__mid::-webkit-scrollbar {
  width: 5px;
}

.offcanvas__mid::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px var(--black);
  box-shadow: inset 0 0 5px var(--black);
  border-radius: 10px;
}

.offcanvas__mid::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* offcanvas menu */
.offcanvas__menu-wrapper.mean-container {
  padding-top: 160px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__menu-wrapper.mean-container {
    padding-top: 142px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__menu-wrapper.mean-container {
    padding-top: 93px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__menu-wrapper.mean-container {
    padding-top: 93px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container {
    padding-top: 40px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.offcanvas__menu-wrapper.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--black-4);
}

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

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 20px 0 20px 100px;
  font-family: playsemi;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  border-top: 1px solid var(--black-4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  outline: none;
  -webkit-transform: translateY(var(--y)) translateZ(0);
  transform: translateY(var(--y)) translateZ(0);
  -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.4s ease, box-shadow 0.4s ease,
    -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 80px 0 var(--white);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(1) {
  -webkit-transition-delay: 0.0333333333s;
  transition-delay: 0.0333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(2) {
  -webkit-transition-delay: 0.0666666667s;
  transition-delay: 0.0666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(4) {
  -webkit-transition-delay: 0.1333333333s;
  transition-delay: 0.1333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(5) {
  -webkit-transition-delay: 0.1666666667s;
  transition-delay: 0.1666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(6) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(7) {
  -webkit-transition-delay: 0.2333333333s;
  transition-delay: 0.2333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(8) {
  -webkit-transition-delay: 0.2666666667s;
  transition-delay: 0.2666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(9) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(10) {
  -webkit-transition-delay: 0.3333333333s;
  transition-delay: 0.3333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(11) {
  -webkit-transition-delay: 0.3666666667s;
  transition-delay: 0.3666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(12) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(13) {
  -webkit-transition-delay: 0.4333333333s;
  transition-delay: 0.4333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(14) {
  -webkit-transition-delay: 0.4666666667s;
  transition-delay: 0.4666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(15) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(16) {
  -webkit-transition-delay: 0.5333333333s;
  transition-delay: 0.5333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(17) {
  -webkit-transition-delay: 0.5666666667s;
  transition-delay: 0.5666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(18) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(19) {
  -webkit-transition-delay: 0.6333333333s;
  transition-delay: 0.6333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(20) {
  -webkit-transition-delay: 0.6666666667s;
  transition-delay: 0.6666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(21) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(22) {
  -webkit-transition-delay: 0.7333333333s;
  transition-delay: 0.7333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(23) {
  -webkit-transition-delay: 0.7666666667s;
  transition-delay: 0.7666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(24) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(25) {
  -webkit-transition-delay: 0.8333333333s;
  transition-delay: 0.8333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(26) {
  -webkit-transition-delay: 0.8666666667s;
  transition-delay: 0.8666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(27) {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(28) {
  -webkit-transition-delay: 0.9333333333s;
  transition-delay: 0.9333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(29) {
  -webkit-transition-delay: 0.9666666667s;
  transition-delay: 0.9666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(30) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(31) {
  -webkit-transition-delay: 1.0333333333s;
  transition-delay: 1.0333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(32) {
  -webkit-transition-delay: 1.0666666667s;
  transition-delay: 1.0666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(33) {
  -webkit-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(34) {
  -webkit-transition-delay: 1.1333333333s;
  transition-delay: 1.1333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(35) {
  -webkit-transition-delay: 1.1666666667s;
  transition-delay: 1.1666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(36) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(37) {
  -webkit-transition-delay: 1.2333333333s;
  transition-delay: 1.2333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(38) {
  -webkit-transition-delay: 1.2666666667s;
  transition-delay: 1.2666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(39) {
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(40) {
  -webkit-transition-delay: 1.3333333333s;
  transition-delay: 1.3333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(41) {
  -webkit-transition-delay: 1.3666666667s;
  transition-delay: 1.3666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(42) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(43) {
  -webkit-transition-delay: 1.4333333333s;
  transition-delay: 1.4333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(44) {
  -webkit-transition-delay: 1.4666666667s;
  transition-delay: 1.4666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(45) {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(46) {
  -webkit-transition-delay: 1.5333333333s;
  transition-delay: 1.5333333333s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(47) {
  -webkit-transition-delay: 1.5666666667s;
  transition-delay: 1.5666666667s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(48) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.offcanvas__menu-wrapper.mean-container
  .mean-nav
  ul
  li
  a
  .menu-text
  span:nth-child(49) {
  -webkit-transition-delay: 1.6333333333s;
  transition-delay: 1.6333333333s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a:hover {
  --y: -0px;
  background-color: transparent;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a:hover span {
  --m: calc(80px * -1);
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 60px;
    padding-left: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 48px;
    padding-left: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 40px;
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 30px;
    padding-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 20px;
    padding-left: 15px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  width: 60px;
  height: 96px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 76px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 64px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 57px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 46px;
    width: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 36px;
    width: 36px;
    padding: 11px 12px 13px !important;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--secondary);
  opacity: 1;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
  font-size: 24px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 20px 0 20px 150px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a:hover {
  letter-spacing: 1px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    padding-left: 90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    padding-left: 60px;
    font-size: 24px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 20px;
    padding: 15px 0 15px 30px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 18px;
    padding: 15px 0 15px 30px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
  height: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 23px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--black-4);
}

.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
  padding-left: 180px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 120px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
    padding-left: 30px;
  }
}

.offcanvas__menu-wrapper.mean-container .mean-bar {
  padding: 0;
  background: none;
}

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

/* offcanvas right */

.offcanvas__right {
  background-color: var(--black-4);
  padding: 0 50px;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__right {
    padding: 0 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .offcanvas__right {
    display: none;
  }
}

.offcanvas__right .shape-1 {
  position: absolute;
  bottom: 0;
  left: 125px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .offcanvas__right .shape-1 {
    left: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right .shape-1 {
    left: 0;
  }
}

.offcanvas__right .shape-2 {
  position: absolute;
  bottom: 90px;
  right: 110px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__right .shape-2 {
    right: 30px;
  }
}

/* offcanvas contact */

.offcanvas__contact h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__contact h3 {
    font-size: 20px;
  }
}

.offcanvas__contact li {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  padding-bottom: 7px;
  max-width: 260px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__contact li {
    font-size: 16px;
  }
}

.offcanvas__contact li a {
  color: var(--white);
}

.offcanvas__contact li a:hover {
  color: var(--gray-2);
}

/* offcanvas close */

.offcanvas__close {
  position: absolute;
  right: 40px;
  top: 30px;
}

@media only screen and (max-width: 767px) {
  .offcanvas__close {
    right: 15px;
    top: 15px;
  }
}

.offcanvas__close button {
  font-size: 30px;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #232323;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.offcanvas__close button:hover {
  color: var(--gray-2);
}

@media only screen and (max-width: 767px) {
  .offcanvas__close button {
    font-size: 24px;
    width: 48px;
    height: 48px;
  }
}

.offcanvas__search {
  padding-top: 190px;
  padding-bottom: 140px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__search {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}

/* offcanvas search */

.offcanvas__search form {
  position: relative;
}

.offcanvas__search input {
  color: #585858;
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  padding: 20px 45px 20px 20px;
  border-radius: 30px;
  border: 1px solid #3c3c3c;
  background-color: transparent;
  outline: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__search input {
    padding: 15px 40px 15px 15px;
  }
}

.offcanvas__search input::-webkit-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::-moz-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input:-ms-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::-ms-input-placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search input::placeholder {
  opacity: 1;
  color: #585858;
}

.offcanvas__search button {
  color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  border-radius: 0 100% 100% 0;
}

/*! #######################################################################
  
      MeanMenu 2.0.7
      --------
  
      To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)
  
  ####################################################################### */
a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: relative;
  background: #0c1923;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}

.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #fff;
  height: 3px;
  margin-top: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: #0c1923;
  margin-top: 44px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: #fff;
  border-top: 1px solid #383838;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  opacity: 0.75;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
}

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

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: rgba(255, 255, 255, 0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  padding: 12px !important;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(0, 0, 0, 0.9);
}

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.mean-remove {
  display: none !important;
}

/*----------------------------------------*/
/* Homepage Hero Slider
/*----------------------------------------*/
.service__hero-2 {
  padding-top: 150px;
  background-color: #000;
  padding-bottom: 150px;
  width: 100%;
  min-height: 80vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.service__hero-2 > figure {
  width: 100%;
  min-height: 80vh;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 18s linear infinite 0s;
  -moz-animation: imageAnimation 18s linear infinite 0s;
  -o-animation: imageAnimation 18s linear infinite 0s;
  -ms-animation: imageAnimation 18s linear infinite 0s;
  animation: imageAnimation 18s linear infinite 0s;
}

.service__hero-2 > figure:nth-child(1) {
  background-image: url(../imgs/bg/mahattan_tiny_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service__hero-2 > figure:nth-child(2) {
  background-image: url(../imgs/bg/brooklyn_bridge_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}

.service__hero-2 > figure:nth-child(3) {
  background-image: url(../imgs/bg/taxi_newyork_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service__hero-2 {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service__hero-2 {
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .service__hero-2 {
    padding-bottom: 60px;
  }
}

.service__hero-2 .shape-1 {
  position: absolute;
  width: 132px;
  height: auto;
  right: 150px;
  top: 200px;
}

@media (max-width: 1440px) {
  .service__hero-2 .shape-1 {
    right: 120px;
    top: 680px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service__hero-2 .shape-1 {
    right: 120px;
    top: 680px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service__hero-2 .shape-1 {
    right: 200px;
    top: 670px;
    width: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service__hero-2 .shape-1 {
    max-width: 80px;
    right: 100px;
    top: 670px;
  }
}

@media only screen and (max-width: 767px) {
  .service__hero-2 .shape-1 {
    width: 75px;
    right: 70px;
    top: 653px;
  }
}

@media (max-width: 430px) {
  .service__hero-2 .shape-1 {
    display: none;
  }
}

.textoverimg_top {
  position: absolute;
  margin: auto;
  top: 250px;
  padding-left: 630px;
  height: 45px;
  overflow: visible;
  width: 100%;
}

.textoverimg_mid {
  margin: auto;
  letter-spacing: -0.5px;
  position: absolute;
  top: 370px;
  padding-left: 1200px;
  overflow: visible;
  width: 100%;
}

.textoverimg_mid img {
  display: flex;
  justify-content: flex-end;
  margin-top: -30px;
  -webkit-animation: wcSpinner 3s infinite linear;
  animation: wcSpinner 3s infinite linear;
  vertical-align: middle;
  z-index: 1;
  position: relative;
  padding: 0;
  margin: 0;
  filter: invert(1);
}

.textoverimg_bottom {
  margin: auto;
  position: absolute;
  top: 320px;
  padding-left: 630px;
  z-index: 200;
  height: 25px;
  line-height: 25px;
  overflow: visible;
  width: 70%;
}

.textoverimg__item {
  display: flex;
  padding-right: 30px;
  flex-wrap: wrap;
  position: absolute;
}

.textoverimg_top > .textoverimg__item p {
  font-family: playsemi;
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  line-height: 45px;
  letter-spacing: 0.5px;
}

.textoverimg_bottom > .textoverimg__item p {
  font-family: hankenm;
  text-transform: none;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.5px;
}

@media (max-width: 1440px) {
  .textoverimg_top {
    top: 150px;
    padding-left: 80px;
  }

  .textoverimg_mid {
    top: 220px;
    padding-left: 650px;
  }

  .textoverimg_bottom {
    top: 220px;
    padding-left: 80px;
    width: 40%;
  }
}

@media (max-width: 1366px) {
  .textoverimg_top {
    padding-left: 40px;
  }

  .textoverimg_bottom {
    padding-left: 40px;
  }
}

@media (max-width: 1360px) {
  .textoverimg_top {
    padding-left: 0px;
  }

  .textoverimg_top > .textoverimg__item p {
    font-size: 30px;
  }

  .textoverimg_mid {
    top: 220px;
    padding-left: 620px;
  }

  .textoverimg_bottom {
    top: 190px;
    padding-top: 30px;
    padding-left: 0px;
    width: 50%;
  }
}

@media (max-width: 767px) {
  .textoverimg_top {
    margin: auto;
    padding-left: unset;
    top: 150px;
  }

  .textoverimg_top > .textoverimg__item {
    text-align: center;
  }

  .textoverimg_top > .textoverimg__item p {
    font-size: 25px;
  }

  .textoverimg_mid {
    top: 220px;
    padding-left: 340px;
  }

  .textoverimg_bottom {
    top: unset;
    padding-left: 30px;
    bottom: 150px;
    width: 80%;
  }
}

@media (max-width: 500px) {
  .textoverimg_mid {
    padding-left: 240px;
  }
}

@media (max-width: 430px) {
  .textoverimg_mid {
    top: 280px;
    padding-left: 190px;
  }

  .textoverimg_bottom {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .textoverimg_top {
    margin: auto;
    top: 120px;
    font-size: 28px;
    padding-left: unset;
    padding-right: unset;
  }

  .textoverimg_top > .textoverimg__item p {
    line-height: 1.5;
    font-size: 18px;
  }

  .textoverimg_mid {
    top: 280px;
    padding-left: 120px;
  }

  .textoverimg_bottom {
    margin: auto;
    padding-left: unset;
    width: 100%;
  }

  .textoverimg_bottom > .textoverimg__item {
    padding-right: 24px;
    padding-left: unset;
  }

  .textoverimg_bottom > .textoverimg__item p {
    font-size: 18px;
  }
}

.arrowpoint {
  position: absolute;
  left: 30%;
  top: 41%;
  max-width: 41%;
  overflow: hidden;
}

/*----------------------------------------*/
/* Tagline Below Slider
/*----------------------------------------*/
.contain__tagline {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 80px 0px;
  position: relative;
  z-index: 10;
  letter-spacing: -3;
  color: #171818;
  font-size: 22px;
  line-height: 1.3em;
  font-family: playsemi;
}

.tagline__left {
  width: 80%;
}

.tagline__right {
  width: 20%;
}

.contain__tagline h2 {
  font-family: jtbold;
  font-size: 35pt;
  font-weight: 400;
  line-height: 56pt;
  letter-spacing: -1px;
}

.moreaboutus {
  text-align: right;
}

.moreaboutus a {
  color: #000;
  font-family: jtregular;
  font-size: 20px;
  letter-spacing: -1;
  position: relative;
  text-decoration: underline 1px;
  text-underline-offset: 2px;
}

.moreaboutus a::after {
  content: "";
  background: url(../imgs/icon/double_arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  width: 30px;
  height: 13px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
  text-rendering: auto;
}

.moreaboutus__contain {
  display: flex;
  justify-content: center;
  padding-left: 10px;
}

.moreaboutus__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  opacity: 1;
  align-items: flex-start;
}

.circlelink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -1;
  color: #000;
  border: 1px solid var(--gray);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: jtregular;
  letter-spacing: -1;
  text-decoration: underline 1px;
  text-underline-offset: 2px;
}

.circlelink::after {
  content: "";
  background: url(../imgs/icon/arrow_outward.svg);
  background-position: top center;
  background-repeat: no-repeat;
  width: 30px;
  height: 38px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  line-height: 1;
  text-rendering: auto;
}

@media (max-width: 1440px) {
  .contain__tagline {
    padding: 80px;
  }
}

@media (max-width: 1366px) {
}

@media (max-width: 1360px) {
  .contain__tagline {
    padding: 60px;
  }

  .contain__tagline h2 {
    font-size: 31pt;
    line-height: 48pt;
  }
}

@media (max-width: 767px) {
  .contain__tagline {
    padding: 30px;
    letter-spacing: -1;
  }

  .contain__tagline h2 {
    font-size: 26pt;
    line-height: 39pt;
  }

  .moreaboutus {
    text-align: left;
    margin-top: 10px;
  }

  .moreaboutus a {
    font-size: 18px;
  }

  .moreaboutus__contain {
    display: flex;
    justify-content: center;
  }

  .tagline__left {
    width: 100%;
  }

  .tagline__right {
    width: 100%;
  }

  .moreaboutus__circle {
    align-items: center;
  }
}

@media (max-width: 430px) {
  .contain__tagline {
    padding: 30px;
    letter-spacing: -2;
  }

  .contain__tagline h2 {
    font-size: 24pt;
    line-height: 35pt;
  }
}

@media (max-width: 375px) {
}

/*----------------------------------------*/
/*  Rolling text
/*----------------------------------------*/

.roll__area-2 {
  padding: 31px 10px;
  background-color: var(--black-2);
}

.roll__area-2 .roll__slide h2 {
  color: var(--white);
}

.roll__area-3 {
  padding: 31px 10px;
  background-color: var(--pink-2);
}

.roll__area-3 .roll__slide h2 {
  color: var(--black-2);
}

.roll__wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.roll__slide {
  text-align: center;
}

.roll__slide h2 {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
}

.contact_wrap {
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact_wrap {
    margin-top: 60px;
  }
}

.contact_wrap:hover .link {
  opacity: 1;
  visibility: visible;
}

.contact_wrap .link {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 18px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: var(--black-2);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  text-transform: capitalize;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media (max-width: 1365px) {
  .contact_wrap .link {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1365px) {
  .contact_wrap .link {
    opacity: 1;
    visibility: visible;
  }
}

.rollslide_wrap {
  text-align: center;
  overflow: hidden;
  margin-bottom: -10px;
}

.rollslide_title {
  color: var(--black-2);
  font-size: 250px;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}

.rollslide_title-1 {
  color: var(--black-2);
  font-size: 245px;
  line-height: 0.75;
  text-transform: uppercase;
}

.rollslide_title-1 span {
  font-family: "newYork";
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .rollslide_title-1 {
    font-size: 160px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rollslide_title-1 {
    font-size: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .rollslide_title-1 {
    font-size: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rollslide_title-1 {
    font-size: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .rollslide_title-1 {
    font-size: 48px;
  }
}

.rollslide_title:hover {
  color: var(--black-3);
}

.rollslide_title span {
  font-weight: 400;
  font-family: "newYork";
}

@media only screen and (max-width: 767px) {
  .rollslide_title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rollslide_title {
    font-size: 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .rollslide_title {
    font-size: 120px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .rollslide_title {
    font-size: 180px;
  }
}

@media only screen and (max-width: 767px) {
  footer .contact_wrap {
    margin-top: 40px;
  }
}

.dark .rollslide_title-1 {
  color: var(--white);
}

.dark .contact_wrap:hover .link {
  color: var(--black-2);
  background-color: var(--white);
}

@media (max-width: 1365px) {
  .dark .contact_wrap .link {
    color: var(--black-2);
    background-color: var(--white);
  }
}

/*----------------------------------------*/
/* Services
/*----------------------------------------*/

.servicescontain {
  background-image: url(../imgs/bg/sh-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 80px 0px;
  position: relative;
  z-index: 10;
  letter-spacing: -1;
  color: #171818;
  font-size: 22px;
  line-height: 1.3em;
  font-family: jtregular;
}

.services__left {
  display: flex;

  flex-direction: column;
  justify-content: center;
  width: 30%;
}

.services__left h2 {
  font-family: hankenm;
  letter-spacing: normal;
  line-height: 1.3em;
  font-size: 20px;
  padding-bottom: 15px;
}

.services__left h3 {
  font-family: hankenm;
  letter-spacing: normal;
  line-height: 1.3em;
  font-size: 45px;
}

.services__mid {
  display: flex;
  align-items: center;
  width: 50%;
  font-family: gilroy;
  line-height: 1.6em;
  font-size: 24px;
  padding: 0 5% 0;
}

.services__right {
  display: flex;
  align-items: center;
  width: 20%;
  justify-content: center;
}

.moreservices__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  opacity: 1;
  align-items: center;
}

.serviceslist {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 80px 40px;
  position: relative;
}

.serviceslist a {
  text-decoration: none;
  color: #171818;
}

.serviceslist a:hover {
  color: #171818;
}

.services__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.7fr 1.3fr 2.5fr 1fr;
  grid-template-columns: 0.7fr 1.3fr 2.5fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid var(--secondary);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.services__number {
  font-family: hankenm;
  font-size: 30px;
}

.services__title {
  padding-right: 30px;
  font-family: hankenm;
  font-size: 35px;
  line-height: 2.7rem;
}

.services__info {
  max-width: 620px;
}

.services__info p {
  padding-bottom: 20px;
  font-family: gilroy;
  font-size: 18px;
  font-weight: 500;
}

.services__link {
  text-align: right;
  overflow: hidden;
}

@media (max-width: 1440px) {
  .servicescontain {
    padding: 80px;
  }

  .serviceslist {
    padding: 80px 0px;
  }
}

@media (max-width: 1366px) {
}

@media (max-width: 1360px) {
  .servicescontain {
    padding: 60px;
  }

  .serviceslist {
    padding: 80px 0px;
  }
}

@media (max-width: 1023px) {
  .services__left {
    width: 100%;
    padding-left: 0px;
  }

  .services__mid {
    margin-top: 30px;
    width: 100%;
  }

  .services__right {
    width: 100%;
  }

  .moreservices__circle {
    justify-content: flex-start;
  }

  .serviceslist {
    padding: 0px;
  }

  .services__item {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 25px 0 10px;
  }

  .services__number {
    padding-bottom: 20px;
  }

  .services__title {
    padding-bottom: 20px;
  }

  .services__info {
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .servicescontain {
    padding: 30px;
  }

  .services__info {
    max-width: 420px;
  }
}

@media (max-width: 430px) {
  .services__info {
    max-width: 320px;
  }
}

@media (max-width: 375px) {
}

/*----------------------------------------*/
/* Porfolio
/*----------------------------------------*/
/* @media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-v5 .pt-100 {
    padding-top: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-v5 .pt-100 {
    padding-top: 130px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-v5 .pt-100 {
    padding-top: 130px;
  }
}
.portfolio-v5 .pb-100 {
  padding-bottom: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio-v5 .pb-100 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-v5 .pb-100 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-v5 .pb-100 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-v5 .pb-100 {
    padding-bottom: 0;
  }
}
.portfolio-v5.portfolio__project {
  padding: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio-v5.portfolio__project .line {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio-v5.portfolio__project .line {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-v5.portfolio__project .line {
    padding-top: 60px;
  }
}
.portfolio-v5.portfolio__project .pp-slider-wrapper,
.portfolio-v5.portfolio__project .pp-slide-thumb,
.portfolio-v5.portfolio__project .pp-next,
.portfolio-v5.portfolio__project .pp-prev {
  opacity: 1;
}

.portfolio__project {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project {
    padding-top: 120px;
  }
}
.portfolio__project::after {
  position: absolute;
  content: "work";
  width: 200px;
  height: 100%;
  right: 0px;
  top: -100px;
  font-family: playsemi;
  font-size: 250px;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.03);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project::after {
    top: -60px;
    font-size: 230px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__project::after {
    font-size: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project::after {
    font-size: 180px;
    top: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project::after {
    font-size: 180px;
  }
}
.portfolio__project .pp-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0;
}
.portfolio__project .pp-slider-wrapper {
  padding-left: 200px;
  padding-right: 100px;
  position: relative;
  opacity: 0;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project .pp-slider-wrapper {
    padding-left: 160px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__project .pp-slider-wrapper {
    padding-left: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project .pp-slider-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project .pp-slider-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.portfolio__project .pp-slide {
  overflow: hidden;
  padding: 80px 0 80px 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project .pp-slide {
    padding: 80px 0 80px 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__project .pp-slide {
    padding: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project .pp-slide {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project .pp-slide {
    padding: 60px;
  }
}
.portfolio__project .pp-slide-img {
  background-color: var(--green);
  max-width: 470px;
  max-height: 650px;
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .portfolio__project .pp-slide-img {
    max-width: 430px;
    max-height: 600px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project .pp-slide-img {
    max-width: 330px;
    max-height: 450px;
  }
}
.portfolio__project .pp-slide-img img {
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  max-width: 100%;
}
.portfolio__project .swipper-btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--black-2);
  position: relative;
}
.portfolio__project .pp-prev {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  z-index: 9;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .portfolio__project .pp-prev {
    top: 95%;
  }
}
.portfolio__project .pp-prev::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  top: 13px;
  left: -55px;
  background-color: var(--black-2);
}
.portfolio__project .pp-next {
  position: absolute;
  top: calc(50% - 12px);
  left: 60px;
  z-index: 9;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project .pp-next {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project .pp-next {
    top: 95%;
    left: 0;
  }
}
.portfolio__project .pp-next::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  top: 13px;
  left: 45px;
  background-color: var(--black-2);
}
.portfolio__project .pp-slide-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 1.3;
  text-align: right;
  text-transform: uppercase;
  font-family: gilroy;
  color: var(--black-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__project .pp-slide-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project .pp-slide-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project .pp-slide-title {
    font-size: 24px;
  }
}
.portfolio__project .pp-slide-thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 300px;
  margin-left: auto;
  opacity: 0;
}
.portfolio__project .pp-slide-thumb p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  color: var(--black-3);
  padding-top: 15px;
}
.portfolio__project-thumbs {
  height: 100%;
  margin-right: -150px;
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .portfolio__project-thumbs {
    margin-right: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__project-thumbs {
    margin-right: -50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__project-thumbs {
    margin-right: -20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__project-thumbs {
    margin-right: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__project-thumbs {
    margin-right: 0;
    margin-top: 30px;
  }
}

.blog__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.blog__text p {
  font-size: 18px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .blog__text p {
    padding-top: 30px;
  }
} */

/*----------------------------------------*/
/* Alternative Portfolio
/*----------------------------------------*/
/* .portfolio_showcase {  
  position: relative;
  z-index: 9999;    
  opacity: 1;
}

.showcase__area-16 {
  overflow: hidden;     
}

.sec-title-16 {
  font-weight: 500;
  font-size: 120px;
  line-height: 0.9;
  color: var(--black-2);
  text-indent: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sec-title-16 {
    font-size: 100px;
    text-indent: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-title-16 {
    font-size: 90px;
    text-indent: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-title-16 {
    text-indent: 60px;
    font-size: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-title-16 {
    text-indent: 20px;
    font-size: 48px;
  }
}
.sec-title-16 span {
  color: var(--black-2);
  font-family: "newYork";
  position: relative;
}
.sec-title-16 span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: var(--black-2);
}
@media only screen and (max-width: 767px) {
  .sec-title-16 span::after {
    bottom: 0;
  }
}

.showcase_16_hover {
  width: 300px;
  height: 400px;
  position: absolute;
  top: 100px;
  left: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
}
.showcase_16_hover.active {
  opacity: 1;
}
@media (max-width: 1365px) {
  .showcase_16_hover {
    display: none;
  }
}

.showcase__top-16 .title-right {
  max-width: 296px;
  margin-left: auto;
  padding-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .showcase__top-16 .title-right {
    padding-top: 40px;
  }
}
.showcase__top-16 .title-right p {
  font-size: 18px;
}

.showcase__content-16 a {
  position: relative;
  display: inline-block;
}


.showcase__content-16 img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}




.showcase__video_fit {
  width: 100%;
  height: 100%;
}

.showcase__content-16 {
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.showcase__content-16 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}


.showcase__image-16 {
  overflow: hidden;  
}

.showcase__info-16 {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase__info-16 {
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__info-16 {
    bottom: 20px;
    left: 20px;
  }
}

.showcase__info-16 {
  position: absolute;
  bottom: 30%;
  left: 50px;
}

.showcase__sub-title-16 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding-left: 100px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .showcase__sub-title-16 {
    padding-left: 30px;
  }
}

.showcase_info {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 9999;
  background-repeat: repeat;
  background-position: top left;
  background:#ffcd00 !important;
  margin-bottom: -3px;
}

.showcase__title-16 {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .showcase__title-16 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase__title-16 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase__title-16 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .showcase__title-16 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .showcase__title-16 br {
    display: block;
  }
}
.showcase__title-16 span {
  display: inline-block;
  text-indent: 100px;
  font-family: "playsemi";
  position: relative;
}
@media only screen and (max-width: 767px) {
  .showcase__title-16 span {
    text-indent: 30px;
  }
}
.showcase__title-16 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 70px;
  background-color: var(--white);
}
@media only screen and (max-width: 767px) {
  .showcase__title-16 span::before {
    width: 20px;
  }
}

.showcase5__content {
  text-align: center;
}

.taolao {
  width: 100%;  
  -o-object-fit: cover;
  object-fit: cover;
}

.showcase5__content img {
  margin-bottom: 35px;
}
.showcase5__content p {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: var(--black-3);
  position: relative;
  padding-bottom: 190px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase5__content p {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase5__content p {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .showcase5__content p {
    font-size: 20px;
    padding-bottom: 100px;
  }
}
.showcase5__content p::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  bottom: 0px;
  left: 50%;
  background-color: var(--black-2);
}
@media only screen and (max-width: 767px) {
  .showcase5__content p::after {
    height: 50px;
  }
}

.showcase5__content img {
  -webkit-animation: wcSpinner 5s infinite linear;
          animation: wcSpinner 5s infinite linear;
}
 */

/*----------------------------------------*/
/* Second alternative Portfolio
/*----------------------------------------*/

.portfolio_tna {
  position: relative;
  overflow: hidden;
  background-color: #ffcd00 !important;
}

.section_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 130px 50px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title_wrapper {
    padding: 110px 30px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title_wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 767px) {
  .section_title_wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 120px 15px 0;
  }
}

.section_title_wrapper .title_right {
  padding-top: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title_wrapper .title_right {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title_wrapper .title_right {
    padding-top: 50px;
  }
}

.section_title_wrapper .title_right__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section_title_wrapper .title_right__inner__left {
  margin-right: 0px;
}

.section_title_wrapper .title_right__inner__left span::before {
  content: "";
  position: absolute;
  right: 120px;
  top: 50%;
  background-color: #000;
  width: 900px;
  height: 1px;
}

.section_title_wrapper .title_right__inner__left span {
  font-weight: 400;
  font-size: 12px;
  text-align: right;
  color: var(--black-3);
  display: inline-block;
  position: relative;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .section_title_wrapper .title_right__inner__left span::before {
    width: 600px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section_title_wrapper .title_right__inner__left span::before {
    width: 500px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section_title_wrapper .title_right__inner__left span::before {
    width: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_title_wrapper .title_right__inner__left span::before {
    width: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .section_title_wrapper .title_right__inner__left span::before {
    display: none;
  }
}

.showcase__area-4 {
  padding: 130px 50px 110px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .showcase__area-4 {
    padding: 120px 50px 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .showcase__area-4 {
    padding: 90px 50px 100px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase__area-4 {
    padding: 80px 30px 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase__area-4 {
    padding: 80px 20px 60px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__area-4 {
    padding: 60px 15px 80px;
  }
}

.showcase__area-4 .row {
  --bs-gutter-x: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase__area-4 .row {
    --bs-gutter-x: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase__area-4 .row {
    --bs-gutter-x: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__area-4 .row {
    --bs-gutter-x: 30px;
  }
}

.showcase4 {
  margin-bottom: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase4 {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase4 {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase4 {
    margin-bottom: 40px;
  }
}

.showcase__video_fit {
  width: 100%;
  height: 100%;
}

.showcase4__thumb {
  position: relative;
  display: inline-block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 412px;
}

.showcase4__thumb img {
  position: absolute;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 120%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .showcase4__thumb {
    height: 400px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .showcase4__thumb {
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase4__thumb {
    height: unset;
  }

  .showcase4__thumb img {
    position: unset;
    height: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase4__thumb {
    height: unset;
  }

  .showcase4__thumb img {
    position: unset;
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .showcase4__thumb {
    height: unset;
  }

  .showcase4__thumb img {
    position: unset;
    height: auto;
  }
}

.showcase4__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

@media only screen and (max-width: 767px) {
  .showcase4__content br {
    display: block;
  }
}

.showcase4__content h2 {
  color: var(--black-2);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.showcase4__content h2 span {
  color: var(--black-2);
  padding-left: 35px;
  font-family: "playsemi";
  position: relative;
}

.showcase4__content h2 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 1px;
  width: 30px;
  background-color: var(--black-13);
}

.showcase4__content h2 span.before_content_two {
  padding-left: 65px;
  color: var(--white);
}

.showcase4__content h2 span.before_content_two::before {
  width: 55px;
  background-color: var(--white);
}

.showcase4__content span {
  text-transform: uppercase;
  color: var(--black-13);
}

.work8__btn {
  text-align: center;
  margin-top: 115px;
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work8__btn {
    margin-top: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work8__btn {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .work8__btn {
    margin-top: 50px;
  }
}

.about_btn {
  font-size: 20px !important;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .about_btn {
    font-size: 18px !important;
  }
}

.about_btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: var(--black-7);
}

.showcase_info {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 9999;
  background-color: #ffcd00 !important;
  margin-bottom: -3px;
  text-align: center;
}

.showcase5__content img {
  -webkit-animation: wcSpinner 5s infinite linear;
  animation: wcSpinner 5s infinite linear;
}

.showcase5__content img {
  margin-bottom: 35px;
}

.showcase5__content p {
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: var(--black-3);
  position: relative;
  padding-bottom: 190px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .showcase5__content p {
    font-size: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .showcase5__content p {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase5__content p {
    font-size: 20px;
    padding-bottom: 100px;
  }
}

.showcase5__content p::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100px;
  bottom: 0px;
  left: 50%;
  background-color: var(--black-2);
}

@media only screen and (max-width: 767px) {
  .showcase5__content p::after {
    height: 50px;
  }
}

/*----------------------------------------*/
/* Blog
/*----------------------------------------*/

.blog__area-7 {
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 9999;
  background-color: var(--white);
  margin-bottom: -3px;
}

.blog__area-7 .sec-title-wrapper {
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .blog__area-7 .sec-title-wrapper {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .blog__area-7 .pb-140 {
    padding-bottom: 20px;
  }
}

.blog__item {
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 767px) {
  .blog__item {
    padding-bottom: 50px;
  }
}

.blog__item:hover .blog__img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.blog__img-wrapper {
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
  z-index: 9;
}

.img-box {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .img-box {
    height: 425px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .img-box {
    height: 340px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .img-box {
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .img-box {
    height: auto;
  }
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-size: cover;
}

@media (max-width: 1023px) {
  .img-box img {
    position: unset;
    width: 100%;
    height: auto;
  }
}

/* @media (max-width: 1023px) {
  .img-box img:nth-child(1) {
    display: none;
  }
}
.img-box:hover img:nth-child(2) {
  -webkit-transform: translatex(-50%) scalex(2);
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}
@media (max-width: 1023px) {
  .img-box:hover img:nth-child(2) {
    opacity: 1;
  }
}
.img-box:hover img:nth-child(1) {
  -webkit-transform: translatex(0) scalex(1);
  transform: translatex(0) scalex(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}
*/

.blog__meta {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.3;
  color: var(--black-3);
  margin-bottom: 10px;
}

.blog__meta a {
  color: var(--black-3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.blog__meta a:hover {
  color: var(--secondary);
}

.blog__title {
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  min-height: 120px;
  color: var(--black-2);
  border-bottom: 1px solid var(--gray-5);
  margin-bottom: 10px;
  padding-bottom: 20px;
}

.blog__title:hover {
  color: var(--black-3);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog__title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__title {
    font-size: 20px;
  }
}

.dark .blog__btn {
  color: var(--gray-2);
}

.dark .blog__btn:hover {
  color: var(--white);
}

.blog__btn {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black-3);
  text-transform: capitalize;
}

.blog__btn span {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: -28px;
}

.blog__btn span i {
  -webkit-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.blog__btn span::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  left: -20px;
  bottom: -20px;
  -webkit-transform: translate(0, 0) rotate(-45deg);
  transform: translate(0, 0) rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.blog__btn:hover {
  color: var(--secondary);
}

.blog__btn:hover i {
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
  transform: translate(20px, -20px) rotate(-45deg);
}

.blog__btn:hover span::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(20px, -20px) rotate(-45deg);
  transform: translate(20px, -20px) rotate(-45deg);
}

/*----------------------------------------*/
/* Footer
/*----------------------------------------*/

.footer__area-6 {
  border-top: solid 7px #ffcd00;
  overflow: hidden;
  background-color: #f5f5f7;
}

li.footer_company {
  margin-bottom: 5px !important;
  font-weight: 700;
}

li.footer_mst {
  margin-bottom: 5px !important;
  font-style: italic;

  font-weight: 500;
}

.footer__top-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .footer__top-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__top-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 5px;
  }
}

.dark .footer__area-6 {
  background-color: var(--d-black-2);
}

@media only screen and (max-width: 767px) {
  .footer__item-6 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6 {
    margin-bottom: 50px;
  }
}

.footer__item-6:nth-child(1) {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(1) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(1) {
    width: 50%;
    padding-right: 30px;
  }
}

.footer__item-6:nth-child(2) {
  width: 14%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(2) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(2) {
    width: 50%;
  }
}

.footer__item-6:nth-child(3) {
  width: 20%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(3) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(3) {
    width: 50%;
    padding-right: 30px;
  }
}

.footer__item-6:nth-child(4) {
  width: 28%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(4) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(4) {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__item-6:nth-child(4) {
    width: 33%;
  }
}

.footer__item-6 p {
  padding-bottom: 20px;
  color: var(--gray-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__item-6 p br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer__item-6 p br {
    display: none;
  }
}

.footer__item-6-social a:hover {
  color: var(--black-2);
}

.footer__logo {
  margin-bottom: 10px;
}

.footer__social-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__social-6 li a {
  color: var(--gray-2);
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__social-6 li a:hover {
  color: var(--black-2);
}

@media only screen and (max-width: 767px) {
  .footer__item-6 {
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6 {
    margin-bottom: 50px;
  }
}

.footer__item-6:nth-child(1) {
  width: 25%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(1) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(1) {
    width: 50%;
    padding-right: 30px;
  }
}

.footer__item-6:nth-child(2) {
  width: 14%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(2) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(2) {
    width: 50%;
  }
}

.footer__item-6:nth-child(3) {
  width: 20%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(3) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(3) {
    width: 50%;
    padding-right: 30px;
  }
}

.footer__item-6:nth-child(4) {
  width: 28%;
}

@media only screen and (max-width: 767px) {
  .footer__item-6:nth-child(4) {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__item-6:nth-child(4) {
    width: 50%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__item-6:nth-child(4) {
    width: 33%;
  }
}

.footer__item-6 p {
  padding-bottom: 20px;
  color: var(--gray-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer__item-6 p br {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer__item-6 p br {
    display: none;
  }
}

.footer__item-6-social a:hover {
  color: var(--black-2);
}

.footer__item-title {
  font-size: 20px;
  color: var(--black-2);
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.dark .sec-subtile-6,
.dark .sec-title-6,
.dark .workflow__title-4,
.dark .feature__content-item h5,
.dark .service__item-title,
.dark .service__right-4 p span,
.dark .portfolio__title-4,
.dark .portfolio__icon-4,
.dark .testimonial__name-4,
.dark .footer__item-title,
.dark .footer__newsletter-6 button {
  color: var(--white);
}

.dark .title-wrapper-6 p,
.dark .workflow__item-4 p,
.dark .feature__content-item p,
.dark .service__right-4 p,
.dark .portfolio__subtitle-4,
.dark .portfolio__sec-title p,
.dark .testimonial__sec-title p,
.dark .blog__area-4 .sec-title-wrapper p,
.dark .testimonial__info-4 p,
.dark .testimonial__role-4,
.dark .footer__info-6 li,
.dark .footer__chekbox label {
  color: var(--gray-2);
}

.footer__info-6 li {
  color: var(--black-13);
  font-size: 16px;
  margin-bottom: 15px;
}

.footer__info-6 li a {
  color: var(--black-13);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__info-6 li a:hover {
  color: var(--black-2);
}

.footer__info-6 li a.phone {
  color: var(--black-2);
  position: relative;
}

.footer__info-6 li a.phone::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0px;
  background-color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__info-6 li a.phone:hover::after {
  width: 0%;
}

.footer__info-6 li a.phone::after {
  background-color: var(--black-2);
}

.dark .footer__info-6 li a {
  color: var(--gray-2);
}

.dark .footer__info-6 li a:hover {
  color: var(--white);
}

.dark .footer__info-6 li a.phone {
  color: var(--white);
}

.dark .footer__info-6 li a.phone::after {
  background-color: var(--white);
}

.footer__contact li a.phone {
  color: var(--white);
  position: relative;
}

.footer__contact li a.phone::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0px;
  background-color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__contact li a.phone:hover::after {
  width: 0%;
}

.footer__chekbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 18px;
}

.footer__chekbox input {
  width: 30px;
  height: 30px;
}

.footer__chekbox label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black-3);
}

.footer__btm-6 {
  border-top: 1px solid var(--gray-24);
  padding-top: 40px;
  padding-bottom: 43px;
}

.dark .footer__btm-6 {
  border-color: var(--bg-line);
}

.footer__copyright-6 {
  color: var(--black-13);
}

.footer__copyright-6 p a {
  color: var(--black-2);
}

.footer__copyright-6 p a:hover {
  color: var(--lime);
}

.dark .footer__copyright-6 p a {
  color: var(--white);
}

.dark .footer__copyright-6 p a:hover {
  color: var(--lime);
}

footer__nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
  .footer__nav {
    margin-top: 15px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
}

.footer__nav-2 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__nav-2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .footer__nav-2 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.dark .footer-menu li a {
  color: var(--white);
}

.dark .footer-menu li a .menu-text {
  text-shadow: 0 16px 0 var(--white);
}

.footer-menu {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .footer-menu {
    text-align: left;
  }
}

.footer-menu li {
  display: inline-block;
  padding-left: 80px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .footer-menu li {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-menu li {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-menu li {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-menu li {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.footer-menu li a {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--black-2);
  text-transform: capitalize;
}

.footer-menu li a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--black-2);
}

.footer-menu li a .menu-text span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translateY(var(--m)) translateZ(0);
  transform: translateY(var(--m)) translateZ(0);
}

.footer-menu li a:hover {
  --y: -4px;
}

.footer-menu li a:hover span {
  --m: calc(16px * -1);
}

.footer__newsletter-6 {
  background-color: var(--gray-24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  position: relative;
}

.footer__newsletter-6 input {
  font-family: gilroy;
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 16px 50px 16px 20px;
}

.footer__newsletter-6 input::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--white-7);
  font-weight: 400;
}

.footer__newsletter-6 input::-moz-placeholder {
  font-size: 14px;
  color: var(--white-7);
  font-weight: 400;
}

.footer__newsletter-6 input:-ms-input-placeholder {
  font-size: 14px;
  color: var(--white-7);
  font-weight: 400;
}

.footer__newsletter-6 input::-ms-input-placeholder {
  font-size: 14px;
  color: var(--white-7);
  font-weight: 400;
}

.footer__newsletter-6 input::placeholder {
  font-size: 14px;
  color: var(--white-7);
  font-weight: 400;
}

.footer__newsletter-6 button {
  color: var(--black);
  position: absolute;
  right: 20px;
  top: 15px;
}

.dark .footer__newsletter-6 input {
  color: var(--white-2);
  background-color: var(--black-2);
}

.footer__link-6 li {
  margin-bottom: 8px;
}

.footer__link-6 li a {
  color: var(--black-13);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer__link-6 li a:hover {
  color: var(--black-2);
}

.footer__item-title {
  font-size: 20px;
  color: var(--black-2);
  font-weight: 600;
  line-height: 1.3;
  padding-bottom: 20px;
  text-transform: capitalize;
}

.dark .footer__link-6 li a {
  color: var(--gray-2);
}

.dark .footer__link-6 li a:hover {
  color: var(--white);
}

/*----------------------------------------*/
/*  Section Title
/*----------------------------------------*/
.sec-title {
  font-family: playsemi;
  font-weight: 500;
  font-size: 60px;
  line-height: 1;
  color: var(--black-2);
  padding-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sec-title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-title {
    font-size: 32px;
  }
}

/*----------------------------------------*/
/*  Swiper Bundle
/*----------------------------------------*/

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*----------------------------------------*/
/*  Button Circle Animation
/*----------------------------------------*/
.wc-btn-primary,
.wc-btn-black,
.wc-btn-light,
.wc-btn-pink,
.wc-btn-secondary {
  font-family: gilroy;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  text-transform: capitalize;
  color: var(--black-3);
  border: 1px solid var(--gray);
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .wc-btn-primary,
  .wc-btn-black,
  .wc-btn-light,
  .wc-btn-pink,
  .wc-btn-secondary {
    padding: 30px;
  }
}

.wc-btn-primary:hover,
.wc-btn-black:hover,
.wc-btn-light:hover,
.wc-btn-pink:hover,
.wc-btn-secondary:hover {
  color: var(--black-2);
  border: 1px solid #303030;
}

.wc-btn-primary:hover span,
.wc-btn-black:hover span,
.wc-btn-light:hover span,
.wc-btn-pink:hover span,
.wc-btn-secondary:hover span {
  width: 350px;
  height: 350px;
}

.wc-btn-primary i,
.wc-btn-black i,
.wc-btn-light i,
.wc-btn-pink i,
.wc-btn-secondary i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  padding-left: 5px;
}

.wc-btn-primary span,
.wc-btn-black span,
.wc-btn-light span,
.wc-btn-pink span,
.wc-btn-secondary span {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background-color: #ffcd00;
  z-index: -1;
  border-radius: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn_wrapper,
#btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 100%;
  margin-left: -40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 220px;
    height: 220px;
    margin-left: -25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 190px;
    height: 190px;
    margin-left: -10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn_wrapper,
  #btn_wrapper {
    width: 180px;
    height: 180px;
    margin-left: -5px;
  }
}

@media only screen and (max-width: 767px) {
  .btn_wrapper,
  #btn_wrapper {
    height: 175px;
    width: 175px;
    margin-left: -2.5px;
  }
}

/*----------------------------------------*/
/*  Other Page CSS HERE---------------------------------------------------------------->
/*----------------------------------------*/

/*----------------------------------------*/
/*  Contact Page
/*----------------------------------------*/
.contact__area-6 {
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact__area-6 .line {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .contact__area-6 .line {
    padding-top: 130px;
  }
}

.contact__text {
  max-width: 330px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .contact__text {
    margin-left: 0px;
    padding-top: 30px;
  }
}

.contact__text p {
  font-size: 18px;
  line-height: 1.4;
}

.contact__btm {
  padding-top: 65px;
}

@media only screen and (max-width: 767px) {
  .contact__btm {
    padding-top: 50px;
  }
}

.contact__info {
  padding-top: 15px;
}

@media only screen and (max-width: 767px) {
  .contact__info {
    padding-bottom: 50px;
  }
}

.contact__info h3 {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  color: var(--black-2);
  padding-bottom: 5px;
}

.contact__info ul li a {
  text-decoration-line: underline;
}

.contact__info ul li a,
.contact__info ul li span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-2);
  display: block;
  margin-bottom: 10px;
}

.contact__form {
  position: relative;
  z-index: 9;
}

.contact__form input,
.contact__form textarea {
  font-family: gilroy;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  border: none;
  border-bottom: 1px solid var(--gray);
  padding: 15px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  outline: 0;
  position: relative;
  z-index: 1;
  background: transparent;
  margin-bottom: 35px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact__form input,
  .contact__form textarea {
    padding: 10px 0;
    margin-bottom: 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact__form input,
  .contact__form textarea {
    padding: 10px 0;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .contact__form input,
  .contact__form textarea {
    margin-bottom: 20px;
  }
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-bottom: 1px solid var(--black-2);
}

.contact__form input::-webkit-input-placeholder,
.contact__form textarea::-webkit-input-placeholder {
  color: var(--black-2);
  opacity: 1;
}

.contact__form input::-moz-placeholder,
.contact__form textarea::-moz-placeholder {
  color: var(--black-2);
  opacity: 1;
}

.contact__form input:-ms-input-placeholder,
.contact__form textarea:-ms-input-placeholder {
  color: var(--black-2);
  opacity: 1;
}

.contact__form input::-ms-input-placeholder,
.contact__form textarea::-ms-input-placeholder {
  color: var(--black-2);
  opacity: 1;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--black-2);
  opacity: 1;
}

.contact__form textarea {
  height: 55px;
}

.contact__form #btn_wrapper,
.contact__form .btn_wrapper {
  margin-top: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact__form #btn_wrapper,
  .contact__form .btn_wrapper {
    margin-top: -10px;
  }
}

@media (max-width: 1200px) {
  .contact__form #btn_wrapper,
  .contact__form .btn_wrapper {
    margin-top: 10px;
  }
}

.sec-title-2 {
  font-weight: 400;
  font-size: 80px;
  line-height: 0.9;
  color: var(--black-2);
  font-family: "playsemi";
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .sec-title-2 {
    font-size: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sec-title-2 {
    font-size: 90px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-title-2 {
    font-size: 72px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-title-2 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-title-2 {
    font-size: 45px;
  }
}

/*----------------------------------------*/
/* Other Hero Slider
/*----------------------------------------*/
.service__hero-2-other {
  padding-top: 150px;
  background-color: #000;
  padding-bottom: 150px;
  width: 100%;
  min-height: 50vh;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.service__hero-2-other > figure {
  width: 100%;
  min-height: 50vh;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 18s linear infinite 0s;
  -moz-animation: imageAnimation 18s linear infinite 0s;
  -o-animation: imageAnimation 18s linear infinite 0s;
  -ms-animation: imageAnimation 18s linear infinite 0s;
  animation: imageAnimation 18s linear infinite 0s;
}

.service__hero-2-other > figure:nth-child(1) {
  background-image: url(../imgs/bg/mahattan_tiny_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service__hero-2-other > figure:nth-child(2) {
  background-image: url(../imgs/bg/brooklyn_bridge_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  -webkit-animation-delay: 6s;
  -moz-animation-delay: 6s;
  -o-animation-delay: 6s;
  -ms-animation-delay: 6s;
  animation-delay: 6s;
}

.service__hero-2-other > figure:nth-child(3) {
  background-image: url(../imgs/bg/taxi_newyork_low.webp);
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  -webkit-animation-delay: 12s;
  -moz-animation-delay: 12s;
  -o-animation-delay: 12s;
  -ms-animation-delay: 12s;
  animation-delay: 12s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service__hero-2-other {
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service__hero-2-other {
    padding-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .service__hero-2-other {
    padding-bottom: 60px;
  }
}

/*----------------------------------------*/
/* AboutUs
/*----------------------------------------*/
.story__area {
  background-image: url(../imgs/about/about-bg.png);
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 120px;
  overflow: hidden;
}

.story__area .sec-title-wrapper {
  padding-bottom: 40px;
}

.counter__area {
  overflow: hidden;
}

.counter__wrapper-2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
  .counter__wrapper-2 {
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

.counter__item-2 {
  text-align: center;
}

.counter__item-2 p {
  font-size: 20px;
  line-height: 1.3;
}

.counter__number {
  font-weight: 300;
  font-size: 100px;
  line-height: 1.1;
  color: var(--secondary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter__number {
    font-size: 72px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter__number {
    font-size: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .counter__number {
    font-size: 40px;
  }
}

.hero__about-award {
  position: relative;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 60px;
  padding-right: 50px;
}

@media only screen and (max-width: 767px) {
  .hero__about-award {
    top: 20px;
    justify-content: flex-start;
  }
}

.story__img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 700px;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .story__img-wrapper {
    height: 650px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .story__img-wrapper {
    height: 580px;
  }
}

@media (max-width: 1200px) {
  .story__img-wrapper {
    height: 100%;
  }
}

.story__img-wrapper img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 30px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .story__img-wrapper img {
    margin-bottom: 20px;
  }
}

.sec-sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--black-3);
  padding-bottom: 15px;
  text-transform: capitalize;
  padding-left: 2px;
}

.story__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-3);
  padding-bottom: 20px;
}

.story__text p:first-of-type {
  padding-top: 0px;
}

@media (max-height: 1365px) {
  .story__text p {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.team__detail {
  background-color: #fff4c8;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .team__detail .pb-140 {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team__detail .pb-140 {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__detail {
    padding-top: 120px;
    position: relative;
  }

  .team__detail .pb-140 {
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__detail {
    text-align: center;
  }

  .team__detail .pb-140 {
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .team__detail {
    text-align: center;
  }

  .team__detail .pb-140 {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team__detail .pt-120 {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__detail .pt-120 {
    padding-top: 10px;
  }
}

.team__detail p {
  font-family: gilroy;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 20px;
  text-align: left;
}

.team__detail p:first-of-type {
  padding-top: 20px;
}

.team__detail .work-title {
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-2);
}

.team__detail .founder-name {
  margin-top: 10px;
  text-align: left;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black-2);
}

.team__detail .job-title {
  text-align: left;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--black-2);
}

.team__member-img {
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .team__member-img {
    left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team__member-img {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__member-img {
    position: unset;
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__member-img {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    z-index: 1;
    margin-top: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .team__member-img {
    position: relative;
    width: 100%;
    height: auto;
    left: 0;
    z-index: 1;
    margin-top: 150px;
  }
}

.team__member-img img {
  position: relative;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 102%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .team__member-img img {
    left: 0;
    max-width: 80%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team__member-img img {
    left: 0;
    max-width: 70%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__member-img img {
    position: unset;
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__member-img img {
    position: unset;
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .team__member-img img {
    position: unset;
    max-width: 100%;
  }
}

.team__member-name-7 {
  font-weight: bold;
  font-family: playsemi;
  font-size: 60px;
  line-height: 1;
  color: var(--black-2);
  padding-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team__member-name-7 {
    font-size: 60px;
    padding-bottom: 20px;
  }

  .team__member-name-7 br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__member-name-7 {
    font-size: 60px;
    padding-bottom: 20px;
  }

  .team__member-name-7 br {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__member-name-7 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__member-name-7 {
    font-size: 48px;
  }

  .team__member-name-7 br {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .team__member-name-7 {
    font-size: 36px;
    padding-bottom: 20px;
  }
}

.team__member-role-7 {
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: var(--black-3);
  font-style: italic;
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team__member-role-7 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__member-role-7 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .team__member-role-7 {
    font-size: 18px;
  }
}

.team__member-role-7::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: var(--black-2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team__member-role-7::after {
    left: calc(50% - 75px);
  }
}

@media only screen and (max-width: 767px) {
  .team__member-role-7::after {
    left: calc(50% - 75px);
  }
}

.team__member-role-7 span {
  color: var(--black-2);
  font-weight: 500;
}

.quote__contain {
  display: flex;
  align-items: center;
}

blockquote {
  position: relative;
  width: 95%;
  background-color: rgb(255 255 255 / 59%);
  border-radius: 15px;
  padding: 28px 28px 28px 28px;
  box-shadow: 15px 20px #ffcd00;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  blockquote {
    width: 95%;
  }
}

.symbol {
  text-align: left;
  width: 100px;
}

.quote {
  padding-top: 0px !important;
  font-size: 18px !important;
  text-align: left;
  letter-spacing: -0.5px;
  padding-bottom: 20px !important;
}

hr {
  border: 1px solid #ffcd00;
}

.avatar__contain {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: 0;
  border-radius: 50%;
  margin-top: 10px;
}

.name {
  font-family: Playsemi;
  font-weight: bold;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 20px !important;
}

.name br {
  display: unset !important;
}

.detail {
  font-family: gilroy;
  font-weight: 500;
  font-size: 14px;
}

/*----------------------------------------*/
/* CTA AREA
/*----------------------------------------*/

.cta__area {
  overflow: hidden;
}

.cta__content {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta__content {
    width: 80%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta__content {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .cta__content {
    width: 100%;
  }
}

.cta__content #btn_wrapper,
.cta__content .btn_wrapper {
  margin: 0 auto;
}

.cta__sub-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--black-3);
  border: 1px solid var(--gray);
  display: inline-block;
  padding: 5px 17px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.cta__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  color: var(--black-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta__title {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta__title {
    padding-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta__title {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .cta__title {
    font-size: 30px;
    padding-bottom: 40px;
  }
}

/*----------------------------------------*/
/* SERVICE
/*----------------------------------------*/
.portfolio__service {
  background-color: #fff4c8;
  background-image: url(../imgs/service/shape.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.portfolio__service .sec-title {
  max-width: 350px;
  text-indent: 80px;
  text-transform: uppercase;
  opacity: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__service .sec-title {
    text-indent: 40px;
    max-width: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service .sec-title {
    text-indent: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service .sec-title {
    text-indent: 20px;
  }
}

.portfolio__service .sec-text {
  background-image: url(../imgs/service/14.png);
  background-repeat: no-repeat;
  background-position: 0 80px;
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__service .sec-text {
    background-position: 0 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__service .sec-text {
    background-size: 100%;
    background-position: 0 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service .sec-text {
    background-position: 0 30px;
    background-size: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service .sec-text {
    background-position: 0 30px;
    background-size: 100%;
  }
}

.portfolio__service .sec-text p {
  max-width: 320px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--black-13);
  padding-top: 150px;
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__service .sec-text p {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__service .sec-text p {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service .sec-text p {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service .sec-text p {
    padding-top: 70px;
  }
}

.portfolio__service-list {
  padding-top: 62px;
}

.portfolio__service-item {
  padding: 40px;
  border: 1.3px solid var(--black-2);
  border-radius: 21px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service-item {
    margin-bottom: 20px;
  }
}

.portfolio__service-item::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 76px;
  right: -2px;
  top: calc(50% - 38px);
  background: var(--black-2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 15px 0px 0px 15px;
}

.portfolio__service-item:hover .ps-title,
.portfolio__service-item:hover .ps-des,
.portfolio__service-item:hover ul li {
  color: var(--white);
}

.portfolio__service-item:hover::after {
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  right: -1px;
  top: 0;
  border-radius: 15px;
}

.portfolio__service-item .ps-title {
  font-family: playsemi;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--black-2);
  padding-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service-item .ps-title {
    font-size: 20px;
    line-height: 1.3;
  }
}

.portfolio__service-item .ps-des {
  padding-left: 50px;
}

.portfolio__service-item ul {
  padding-left: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .portfolio__service-item .ps-des {
    padding-left: 30px;
  }

  .portfolio__service-item ul {
    padding-left: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .portfolio__service-item .ps-des {
    padding-left: 10px;
  }

  .portfolio__service-item ul {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service-item .ps-des {
    padding-left: 20px;
  }

  .portfolio__service-item ul {
    padding-left: 20px;
  }
}

.portfolio__service-item .ps-des {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio__service-item ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.portfolio__service-item ul li:last-child {
  color: #515151;
  font-weight: 800;
}

.portfolio__service .ps-btn {
  text-align: center;
}

.portfolio__service .ps-btn a {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-2);
  border: 1.3px solid var(--black-2);
  border-radius: 35px;
  display: inline-block;
  padding: 10px 40px;
  margin-top: 70px;
  opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .portfolio__service .ps-btn a {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio__service .ps-btn a {
    margin-top: 30px;
  }
}

.portfolio__service .ps-btn a strong {
  font-weight: 400;
  text-transform: capitalize;
}

.service-v5 .portfolio__service-item,
.service-v5.portfolio__service .sec-title,
.service-v5.portfolio__service .sec-text,
.service-v5.portfolio__service .sec-text p {
  opacity: 1;
}

.service-v5 .portfolio__service-item {
  margin-bottom: 25px;
  min-height: 44vh;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-v5.pt-140 {
    padding-top: 150px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-v5.pt-140 {
    padding-top: 130px;
  }
}

@media only screen and (max-width: 767px) {
  .service-v5.pt-140 {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

.service-v5.portfolio__service .sec-title {
  font-family: playsemi;
  text-indent: 0;
}

/*----------------------------------------*/
/* BRANDING
/*----------------------------------------*/
.development__area {
  overflow: hidden;
}

.branding__sec_img {
  overflow: hidden;
  border-top-left-radius: 80px 80px;
  border-bottom-right-radius: 80px 80px;
}

.branding__sec_img img {
  width: 100%;
  max-height: 320px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .development__area .pt-130 {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .development__area .pt-130 {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 767px) {
  .development__area .pb-150 {
    padding-bottom: 40px;
  }
}

.development__area br {
  display: unset;
}

.development__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px;
  grid-template-columns: 1fr;
  grid-gap: 80px;
  padding-bottom: 35px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--black-3);
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .development__content {
    grid-gap: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .development__content {
    grid-gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .development__content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .development__content {
    padding-top: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}

.development__content p {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  line-height: 1.7;
}

.development__wrapper {
  padding-bottom: 55px;
}

@media only screen and (max-width: 767px) {
  .development__wrapper {
    padding-bottom: 15px;
  }
}

.development__wrapper ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px auto;
  grid-template-columns: 240px auto;
  -ms-grid-columns: 310px auto;
  grid-template-columns: 310px auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .development__wrapper ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .development__wrapper ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding-bottom: 20px;
  }
}

.development__wrapper ul li {
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black-2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .development__wrapper ul li {
    font-size: 16px;
    padding-bottom: 5px;
  }
}

.development__img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  z-index: 9;
}

.development__img img {
  position: absolute;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 150%;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .development__img {
    padding-bottom: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
  }

  .development__img img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .development__img img {
    position: unset;
  }
}

@media only screen and (max-width: 767px) {
  .development__img {
    padding-bottom: 15px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
  }

  .development__img img {
    position: absolute;
    bottom: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .development__img img {
    position: unset;
  }
}

.development__img img {
  width: 100%;
}

.workflow__area-6 {
  overflow: hidden;
  padding-top: 5px;
  /* background-color: #fff4c8; */
  background-color: #f7f7f7;
  background-image: url(../imgs/service/18_1.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

@media only screen and (max-width: 767px) {
  .workflow__area-6 .pb-130 {
    padding-bottom: 20px;
  }
}

.workflow__wrapper-6 {
  border-top: 1px solid #000;
  padding-top: 50px;
}

.workflow__wrapper-6:nth-child(2) {
  margin-bottom: 110px;
}

@media only screen and (max-width: 767px) {
  .workflow__wrapper-6 {
    border-top: none;
    border-left: 1px solid #000;
    padding-top: 0;
    padding-left: 20px;
    position: relative;
  }

  .workflow__wrapper-6:nth-child(2) {
    margin-bottom: unset;
  }
}

.workflow__slide-6 {
  max-width: 270px;
  position: relative;
}

.workflow__slide-6 p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .workflow__slide-6 {
    max-width: 100%;
    padding-bottom: 40px;
    top: -7px;
  }
}

.workflow__slide-6::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  top: -56px;
  background-color: #000;
  border: 1px solid #fff4c8;
  border-radius: 100%;
  -webkit-animation: wcBubble 1.5s 1s infinite;
  animation: wcBubble 1.5s 1s infinite;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 767px) {
  .workflow__slide-6::before {
    width: 10px;
    height: 10px;
    left: -25.5px;
    top: 6px;
  }
}

.workflow__title-6 {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--black);
  padding-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .workflow__title-6 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .workflow__title-6 {
    padding-bottom: 10px;
  }
}

.sec-procedure {
  font-family: playsemi;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 60px;
  text-transform: none;
  padding-left: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sec-procedure {
    font-size: 50px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec-procedure {
    font-size: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec-procedure {
    font-size: 36px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-procedure {
    font-size: 32px;
  }
}
