@font-face {
  font-family: Trade Gothic LT Std;
  src: url("../fonts/TradeGothic.eot");
  src: url("../fonts/TradeGothic.eot?#iefix") format("embedded-opentype"), url("../fonts/TradeGothic.woff2") format("woff2"), url("../fonts/TradeGothic.woff") format("woff"), url("../fonts/TradeGothic.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  vertical-align: text-bottom;
}

@media (width >= 991px) {
  .animate {
    opacity: 0;
  }

  .animate.active.fadeIn {
    animation: 1.5s forwards fadeIn;
  }

  .animate.active.fadeUp {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeUp;
  }

  .animate.active.fadeDown {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeDown;
  }

  .animate.active.fadeRight {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeRight;
  }

  .animate.active.fadeLeft {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeLeft;
  }

  .animate.active.fadeUpSmall {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeUpSmall;
  }

  .animate.active.fadeDownSmall {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeDownSmall;
  }

  .animate.active.fadeRightSmall {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeRightSmall;
  }

  .animate.active.fadeLeftSmall {
    animation: 1.5s cubic-bezier(.175, .885, .32, 1.275) forwards fadeLeftSmall;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(.5);
  }

  50% {
    opacity: .5;
    transform: scale(1.75);
  }

  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@keyframes pulse2 {
  0% {
    opacity: 1;
    transform: scale(.5);
  }

  50% {
    opacity: .5;
    transform: scale(1.5);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(300px);
  }

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

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-300px);
  }

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

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-300px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(300px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUpSmall {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

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

@keyframes fadeDownSmall {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }

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

@keyframes fadeRightSmall {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftSmall {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

html {
  font-family: Roboto, sans-serif;
  font-size: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}

body {
  background-color: #f9fcfc;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

p, span, a, table, div, article, figcaption {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Trade Gothic LT Std, sans-serif;
  line-height: 1.4;
}

h1, .h1 {
  font-size: 4.6rem;
}

h2, .h2 {
  font-size: 3.5rem;
}

h3, .h3 {
  font-size: 3rem;
}

h4, .h4 {
  font-size: 2.5rem;
}

h5, .h5 {
  font-size: 2.25rem;
}

h6, .h6 {
  font-size: 2rem;
}

a {
  font-size: inherit;
  -o-transition: all ease .35s;
  transition: all .35s;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

@media (width <= 1199px) {
  .container {
    max-width: 100%;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.row.align-center {
  align-items: center;
}

.row.justify-center {
  justify-content: center;
}

.row.align-bottom {
  align-items: flex-end;
}

.row.align-top {
  align-items: flex-start;
}

.row.align-self-start {
  align-self: flex-start;
}

[class^="col"] {
  -moz-box: 0;
  flex: 0 0 100%;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width >= 992px) {
  .col1 {
    -moz-box: 0;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col2 {
    -moz-box: 0;
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col3 {
    -moz-box: 0;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col4 {
    -moz-box: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .col4md {
    -moz-box: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

@media (width >= 992px) {
  .col5 {
    -moz-box: 0;
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col6 {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width >= 768px) and (width <= 991px) {
  .col6md {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width <= 767px) {
  .col6sm {
    -moz-box: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (width >= 992px) {
  .col7 {
    -moz-box: 0;
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col8 {
    -moz-box: 0;
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

@media (width >= 992px) and (width <= 1199px) {
  .col8lg {
    -moz-box: 0;
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

@media (width >= 992px) {
  .col9 {
    -moz-box: 0;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col10 {
    -moz-box: 0;
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col11 {
    -moz-box: 0;
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }
}

@media (width <= 575px) {
  .colxs12 {
    -moz-box: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (width >= 1200px) {
  .offsetxl1 {
    margin-left: 8.33333%;
  }
}

@media (width >= 992px) {
  .order-lg-1 {
    order: 1;
  }

  .order-lg-12 {
    order: 12;
  }
}

.clearfix {
  clear: both;
  display: block;
}

.header {
  z-index: 9;
  background: #f3efeb;
  border-bottom: .75px solid #c7c3bc;
  padding: 20px 0;
  position: relative;
}

.header .menu-logo-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header .menu-logo-wrap .menu .handbruger-menu {
  display: none;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu .handbruger-menu {
    display: block;
  }
}

.header .menu-logo-wrap .menu .menu-main-link {
  display: flex;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu .menu-main-link {
    background: #f3efeb;
    border-bottom: 1px solid #c7c3bc;
    width: 280px;
    height: calc(100vh - 48px);
    padding-bottom: 10px;
    display: block;
    position: fixed;
    top: 48px;
    right: -280px;
  }
}

.header .menu-logo-wrap .menu ul {
  list-style: none;
}

.header .menu-logo-wrap .menu ul li a {
  color: #111;
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.header .menu-logo-wrap .menu ul li a .arrow {
  display: none;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li a .arrow {
    float: right;
    margin: 3px 0 0;
    display: inline-block;
  }

  .header .menu-logo-wrap .menu ul li a {
    display: block;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap {
  opacity: 0;
  pointer-events: none;
  -o-transition: all ease .35s;
  background: #f3efeb;
  border: 1px solid #f3efeb;
  width: 580px;
  margin: auto;
  transition: all .35s;
  position: absolute;
  top: 20px;
  left: 0;
  right: -300px;
}

@media (width <= 1199px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap {
    right: -100px;
  }
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap {
    width: 100%;
    top: 0;
    right: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content {
  min-height: 215px;
  padding: 40px;
  display: flex;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap .content {
    min-height: inherit;
    padding: 20px;
    display: block;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content .left-wrap {
  border-right: 1px solid #c7c3bc;
  width: 30%;
  padding-right: 40px;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap .content .left-wrap {
    border: 0;
    border-bottom: 1px solid #c7c3bc;
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content .right-wrap {
  width: 70%;
  padding-left: 40px;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap .content .right-wrap {
    width: 100%;
    padding: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .sub-menu {
  display: block;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .sub-menu li {
  margin: 0 0 15px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .sub-menu li a {
  text-transform: none;
  -o-transition: all ease .35s;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all .35s;
  display: inline-block;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .sub-menu li + li {
  margin-left: 0;
}

@media (width >= 1200px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap .sub-menu li:hover a {
    transform: translateX(10px);
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min .tag {
  color: #f05b72;
  margin: 0 0 5px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 11px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min img {
  margin: 0 0 5px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min p {
  color: #111;
  margin: 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 24px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min .ctaLink svg.expandingArrow {
  width: 20px;
  height: 20px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min .ctaLink svg.expandingArrow path {
  -o-transition: all ease .35s;
  transition: all .35s;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .content-min .ctaLink:hover svg.expandingArrow path {
  d: path("M45.7 14.2 33.1 26.8c-.2.2-.4.3-.7.3s-.4-.1-.6-.3c-.4-.4-.4-1 0-1.3l10.9-10.9H1c-.5 0-1-.4-1-1s.5-1 1-1h41.7l-10.9-11c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l12.6 12.6c.4.3.4.9 0 1.3z");
  d: "M45.7 14.2 33.1 26.8c-.2.2-.4.3-.7.3s-.4-.1-.6-.3c-.4-.4-.4-1 0-1.3l10.9-10.9H1c-.5 0-1-.4-1-1s.5-1 1-1h41.7l-10.9-11c-.4-.4-.4-1 0-1.3.4-.4 1-.4 1.3 0l12.6 12.6c.4.3.4.9 0 1.3z";
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list {
  columns: 2;
  width: 100%;
  display: inline-block;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li {
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li .img-wrap {
  background: #111;
  border: 1px solid #111;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  width: 106px;
  height: 32px;
  display: flex;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li .img-wrap img {
  max-width: 100px;
  max-height: 20px;
  transition: all .35s;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li .img-wrap img.originalVersion {
  opacity: 0;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li:hover .img-wrap {
  background-color: #0000;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li:hover .img-wrap img.originalVersion {
  opacity: 1;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .our-work-list li + li {
  margin: 0 0 10px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap {
  width: 680px;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap {
    width: 100%;
    top: 0;
    right: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap .left-wrap {
  width: 46%;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap .left-wrap {
    border: 0;
    border-bottom: 1px solid #c7c3bc;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap .right-wrap {
  width: 48%;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-work-wrap .right-wrap {
    width: 100%;
    padding: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap {
  width: 870px;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap {
    width: 100%;
    top: 0;
    right: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap {
  width: 58%;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap {
    border: 0;
    border-bottom: 1px solid #c7c3bc;
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 10px;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap ul {
  float: left;
  width: 50%;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap ul {
    float: none;
    width: 100%;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap ul li {
  margin: 0 0 15px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .left-wrap ul li a {
  text-transform: none;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .right-wrap {
  width: 42%;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap.dropdown-investor-wrap .right-wrap {
    width: 100%;
    padding: 0;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .back-wrap {
  display: none;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li .dropdown-wrap .back-wrap {
    display: block;
  }
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .back-wrap a {
  border: 0;
  border-bottom: 1px solid #c7c3bc;
  padding: 10px 20px;
  display: block;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .back-wrap a span {
  color: #111;
  opacity: .5;
  font-size: 14px;
}

.header .menu-logo-wrap .menu ul li .dropdown-wrap .back-wrap a svg {
  opacity: .5;
  margin: 0 10px -2px 0;
  display: inline-block;
}

.header .menu-logo-wrap .menu ul li + li {
  margin-left: 35px;
}

@media (width <= 991px) {
  .header .menu-logo-wrap .menu ul li + li {
    margin: 0;
  }
}

.header .menu-logo-wrap .menu ul li:hover .dropdown-wrap {
  opacity: 1;
  pointer-events: all;
}

.footer-wrap {
  background: radial-gradient(75.35% 113.02%, #111 0% 21%, #111 34%, #040172 100%);
  padding: 30px 0;
}

@media (width <= 767px) {
  .footer-wrap {
    padding: 20px 0;
  }
}

.footer-wrap .top-wrap {
  border-bottom: 1px solid #f3efeb;
  display: flex;
}

@media (width <= 767px) {
  .footer-wrap .top-wrap {
    display: block;
  }
}

.footer-wrap .top-wrap h2 {
  text-transform: uppercase;
  color: #f3efeb;
  font-family: Bellota Text, cursive;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
}

@media (width <= 991px) {
  .footer-wrap .top-wrap h2 {
    font-size: 26px;
  }
}

@media (width <= 575px) {
  .footer-wrap .top-wrap h2 {
    font-size: 22px;
    line-height: 30px;
  }
}

.footer-wrap .top-wrap .left-wrap {
  border-right: 1px solid #f3efeb;
  width: 60%;
  padding: 0 20px 30px 0;
}

@media (width <= 767px) {
  .footer-wrap .top-wrap .left-wrap {
    border: 0;
    border-bottom: 1px solid #f3efeb;
    width: 100%;
    padding: 0 0 20px;
  }
}

.footer-wrap .top-wrap .right-wrap {
  flex-direction: column;
  align-items: end;
  width: 40%;
  padding: 0 0 30px 20px;
  display: flex;
}

@media (width <= 767px) {
  .footer-wrap .top-wrap .right-wrap {
    align-items: start;
    width: 100%;
    padding: 20px 0;
  }
}

.footer-wrap .top-wrap .right-wrap h2 {
  margin-bottom: 10px;
}

.footer-wrap .top-wrap .right-wrap .btn svg {
  margin: 0 0 0 10px;
}

.footer-wrap .top-wrap .right-wrap .btn a {
  color: #fff;
  text-transform: uppercase;
  align-items: center;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer-wrap .link-wrap {
  justify-content: space-between;
  padding: 20px 0 0;
  display: flex;
}

@media (width <= 767px) {
  .footer-wrap .link-wrap {
    display: block;
  }
}

.footer-wrap .link-wrap ul {
  display: flex;
}

@media (width <= 767px) {
  .footer-wrap .link-wrap ul {
    border-bottom: 1px solid #f3efeb;
    margin: 0 0 20px;
    padding: 0 0 20px;
    display: block;
  }
}

.footer-wrap .link-wrap ul li {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 300;
  list-style: none;
}

@media (width <= 991px) {
  .footer-wrap .link-wrap ul li {
    font-size: 14px;
  }
}

@media (width <= 767px) {
  .footer-wrap .link-wrap ul li {
    margin: 0 0 10px;
  }
}

.footer-wrap .link-wrap ul li a {
  color: #f3efeb;
  font-weight: 400;
}

.footer-wrap .link-wrap ul li + li {
  border-left: 1px solid #f3efeb;
  margin-left: 25px;
  padding-left: 25px;
}

@media (width <= 991px) {
  .footer-wrap .link-wrap ul li + li {
    margin-left: 15px;
    padding-left: 15px;
  }
}

@media (width <= 767px) {
  .footer-wrap .link-wrap ul li + li {
    border: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .footer-wrap .link-wrap ul.social-links {
    border: 0;
    margin: 0;
    padding: 0;
  }
}

.footer-wrap .link-wrap ul.social-links li a {
  color: #ffd400;
  font-size: 16px;
  text-decoration: none;
}

@media (width <= 991px) {
  .footer-wrap .link-wrap ul.social-links li a {
    font-size: 14px;
  }
}

.footer-wrap .join-us-wrap {
  text-align: center;
  border-bottom: 1px solid #f3efeb;
  margin-bottom: 30px;
  padding: 40px 0 70px;
}

@media (width <= 767px) {
  .footer-wrap .join-us-wrap {
    margin-bottom: 20px;
    padding: 20px 0 40px;
  }
}

.footer-wrap .join-us-wrap .btn-wrap {
  display: inline-block;
}

.footer-wrap .join-us-wrap .join-us-head {
  color: #f3efeb;
  text-transform: uppercase;
  padding: 0 0 20px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .footer-wrap .join-us-wrap .join-us-head {
    font-size: 2.8rem;
  }
}

.btn {
  display: inline-block;
}

.btn.btn-fill {
  all: unset;
  color: #111;
  cursor: pointer;
  text-transform: uppercase;
  background: #ffd400;
  border-radius: 30px;
  align-items: center;
  gap: 20px;
  height: 46px;
  padding: 7px 20px 0;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  text-decoration: none;
  display: inline-flex;
}

.btn.btn-fill svg {
  margin: -4px 0 0;
}

.btn.btn-fill span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

@media (width <= 767px) {
  .btn.btn-fill {
    height: 40px;
    padding: 7px 20px 0;
    font-size: 16px;
  }
}

@media (width <= 575px) {
  .btn.btn-fill {
    padding: 7px 20px 0;
  }
}

.btn.btn-arrow {
  color: #111;
  text-transform: uppercase;
  align-items: center;
  height: 46px;
  padding: 7px 0 0;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 18px;
  text-decoration: none;
  display: flex !important;
}

@media (width <= 767px) {
  .btn.btn-arrow {
    height: 40px;
    font-size: 16px;
  }
}

.btn.btn-arrow svg {
  margin: -4px 0 0 10px;
}

@media (width <= 767px) {
  .btn.btn-arrow svg {
    max-width: 40px;
  }
}

.btn.btn-arrow.min {
  font-size: 12px !important;
}

.btn.btn-arrow.min svg {
  width: 22px;
  height: 23px;
  margin: 0 0 0 10px;
}

.btn.btnArrow {
  all: unset;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  display: inline-flex;
}

.btn.btnArrow span {
  aspect-ratio: 1;
  -o-transition: all ease .35s;
  background-color: #ffd400;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  transition: all .35s;
  display: inline-flex;
}

.btn.btnArrow span svg {
  -o-transition: all ease .35s;
  height: 18px;
  transition: all .35s;
  transform: translateX(5px);
}

.btn.btnArrow span svg path {
  -o-transition: all ease .35s;
  transition: all .35s;
}

.btn.btnArrow:hover span {
  width: 56px;
}

.btn.btnArrow:hover span svg {
  transform: translateX(0);
}

.btn.btnArrow:hover span svg path {
  d: path("M28.2 10.8 18.9 20c-.1.1-.2.2-.4.2-.1 0-.2 0-.3-.2-.2-.2-.2-.5 0-.7l8.7-8.7H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5H27L18.3.9c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l9.2 9.2c.3.4.3 1 0 1.4z");
  d: "M28.2 10.8 18.9 20c-.1.1-.2.2-.4.2-.1 0-.2 0-.3-.2-.2-.2-.2-.5 0-.7l8.7-8.7H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5H27L18.3.9c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l9.2 9.2c.3.4.3 1 0 1.4z";
}

.btn.btn-round {
  color: #f3efeb;
  text-transform: uppercase;
  border: 1.3px solid #ffd400;
  border-radius: 30px;
  align-items: center;
  padding: 12px 20px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

@media (width <= 767px) {
  .btn.btn-round {
    padding: 10px 20px;
    font-size: 16px;
  }
}

@media (width <= 575px) {
  .btn.btn-round {
    padding: 8px 20px;
  }
}

.btn.btn-round svg {
  margin: -4px 0 0 20px;
}

@media (width <= 767px) {
  .btn.btn-round svg {
    max-width: 22px;
  }
}

.btn + .btn {
  margin-left: 15px;
}

@media (width <= 575px) {
  .btn + .btn {
    margin-top: 15px;
  }
}

.sitebanner {
  position: relative;
}

@media (width <= 1199px) {
  .sitebanner {
    max-height: calc(100vh - 70px);
  }
}

.sitebanner .container {
  z-index: 3;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.sitebanner .container .bnrTxt {
  max-width: 1016px;
  font-size: 6.8rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .sitebanner .container .bnrTxt {
    font-size: 5rem;
  }
}

@media (width <= 767px) {
  .sitebanner .container .bnrTxt {
    font-size: 4rem;
  }
}

#bannerAnimations {
  display: flex;
}

.banner-stat {
  background-blend-mode: normal, overlay;
  text-align: center;
  color: #f3efeb;
  background: linear-gradient(0deg, #f3efeb47 0% 100%), #04017294;
  width: 100%;
  padding: 25px 15px;
  font-family: Roboto, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (width <= 991px) {
  .banner-stat {
    font-size: 1.6rem;
  }
}

.banner-stat span {
  width: auto;
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  list-style: circle;
  display: inline-block;
  position: relative;
}

.banner-stat span:before {
  content: "";
  background: #f3efeb;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

.banner-stat .color {
  color: #ffd400;
  font-weight: 700;
}

.banner-stat svg {
  width: 8px;
  height: 12px;
  margin-right: 5px;
}

.whyus-wrap {
  z-index: 1;
  background: #f3efeb;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

@media (width <= 991px) {
  .whyus-wrap {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .whyus-wrap {
    padding: 40px 0;
  }
}

.whyus-wrap:before {
  content: "";
  z-index: -1;
  background: url("../images/glob.jpg") 0 0 / 100% no-repeat;
  width: 370px;
  height: 370px;
  position: absolute;
  bottom: -60px;
  right: -180px;
}

@media (width <= 991px) {
  .whyus-wrap:before {
    bottom: inherit;
    top: 260px;
  }
}

@media (width <= 767px) {
  .whyus-wrap:before {
    width: 270px;
    height: 270px;
    top: 240px;
  }
}

.whyus-wrap .left-content {
  padding-right: 50px;
}

@media (width <= 991px) {
  .whyus-wrap .left-content {
    padding: 0 0 50px;
  }
}

.whyus-wrap .left-content .heading {
  text-transform: uppercase;
  margin: 0 0 15px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .whyus-wrap .left-content .heading {
    font-size: 4.6rem;
  }
}

@media (width <= 767px) {
  .whyus-wrap .left-content .heading {
    margin: 0 0 10px;
    font-size: 2.8rem;
    line-height: 1;
  }
}

.whyus-wrap .left-content .para {
  padding: 0 0 25px;
}

@media (width <= 767px) {
  .whyus-wrap .left-content .para {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.whyus-wrap .left-content .btn-wrap {
  display: flex;
}

@media (width <= 575px) {
  .whyus-wrap .left-content .btn-wrap {
    display: block;
  }
}

.whyus-wrap .right-content .content {
  border-left: 1px solid #111;
  max-width: 280px;
  padding: 0 0 0 15px;
}

.whyus-wrap .right-content .content .num {
  color: #000;
  font-family: Bellota, cursive;
  font-size: 10.4rem;
  line-height: 1;
}

@media (width <= 767px) {
  .whyus-wrap .right-content .content .num {
    font-size: 6.4rem;
    line-height: .8;
  }
}

.whyus-wrap .right-content .content .num span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #f05b72;
}

@media (width <= 767px) {
  .whyus-wrap .right-content .content p {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.whyus-wrap .right-content .content.second-content {
  float: right;
  margin: 35px 0;
}

@media (width <= 991px) {
  .whyus-wrap .right-content .content.second-content {
    float: inherit;
  }
}

.whyus-wrap .right-content .content.second-content span {
  color: #5927ba;
}

.whyus-wrap .right-content .content.third-content span {
  color: #c040b1;
}

.syncSliderModule {
  background: radial-gradient(87.61% 131.42%, #111 0% 21%, #111 34%, #040172 100%);
  padding-top: 118px;
  padding-bottom: 126px;
}

@media (width <= 767px) {
  .syncSliderModule {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.brandSLider {
  margin-top: 60px;
}

@media (width <= 767px) {
  .brandSLider {
    margin-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
  }
}

.brandLogo {
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 100px;
  min-height: 54px;
  margin: 0 10px;
  transition: all .35s;
  position: relative;
}

.brandLogo img {
  max-width: 100px;
  transition: all .35s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brandLogo img.originalVersion {
  opacity: 0;
}

.brandLogo img:hover {
  background-color: #fff;
}

.brandLogo img:hover img.originalVersion {
  opacity: 1;
}

.slick-current .brandLogo {
  background-color: #fff;
}

.slick-current .brandLogo img.originalVersion {
  opacity: 1;
}

.brandSliderSingle {
  margin-top: 42px;
  margin-left: -130px;
  margin-right: -130px;
}

@media (width <= 991px) {
  .brandSliderSingle {
    margin-left: 0;
    margin-right: 0;
  }
}

.grid {
  opacity: .4;
  gap: 30px;
  margin-left: 15px;
  margin-right: 15px;
  transition: all .35s;
  display: flex;
}

.grid .block.double {
  flex-direction: column;
  gap: 30px;
  display: flex;
}

.grid .block.triple {
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
}

.grid .block.triple > .ele {
  flex-basis: calc(50% - 15px);
}

.grid .block.triple > .ele:first-child {
  flex-basis: 100%;
}

@media (width <= 767px) {
  .grid {
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
  }

  .grid .block {
    flex-basis: calc(33.3333% - 5px);
  }

  .grid .block.double, .grid .block.triple {
    flex-basis: calc(66.6667% - 5px);
    gap: 10px;
  }

  .grid .block:first-child.double {
    flex-basis: calc(33.3333% - 5px);
  }

  .grid .block:last-child {
    flex-basis: 100%;
  }

  .grid .block:last-child.double {
    flex-direction: row;
  }

  .grid .block:last-child.double img {
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.slick-current .grid {
  opacity: 1;
}

.latest-resource-wrap {
  background: #f3efeb;
  padding: 100px 0;
}

@media (width <= 991px) {
  .latest-resource-wrap {
    padding: 40px 0;
  }
}

.latest-resource-wrap .head {
  text-transform: uppercase;
  margin: 0 0 35px;
  font-family: Bellota Text, cursive;
  font-size: 54px;
  font-weight: 300;
  line-height: 54px;
}

@media (width <= 991px) {
  .latest-resource-wrap .head {
    margin: 0 0 20px;
    font-size: 46px;
  }
}

@media (width <= 767px) {
  .latest-resource-wrap .head {
    font-size: 28px;
    line-height: 35px;
  }
}

.latest-resource-wrap .content-wrap {
  border-top: 1px solid #111;
  display: flex;
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap {
    display: block;
  }
}

.latest-resource-wrap .content-wrap .left-wrap {
  border-right: 1px solid #111;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 28%;
  display: flex;
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .left-wrap {
    border: 0;
    border-bottom: 1px solid #111;
    width: 100%;
    margin: 0 0 40px;
  }
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .left-wrap {
    justify-content: space-between;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.latest-resource-wrap .content-wrap .left-wrap .share-price-wrap {
  border: 0;
  margin: 0;
  padding: 0;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .left-wrap .share-price-wrap {
    max-width: 135px;
  }
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .left-wrap .graph {
    margin: 0 0 0 50px;
  }
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .left-wrap .graph {
    margin: 0;
  }
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .left-wrap .graph img {
    display: none;
  }
}

.latest-resource-wrap .content-wrap .left-wrap .graph .graph-min {
  display: none;
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .left-wrap .graph .graph-min {
    display: block;
  }
}

.latest-resource-wrap .content-wrap .right-wrap {
  width: 72%;
  padding: 0;
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .right-wrap {
    width: 100%;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .card-wrap {
  justify-content: space-between;
  padding: 40px 0 40px 40px;
  display: flex;
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list {
  width: 49%;
}

@media (width <= 991px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list {
    padding: 0 20px 0 0;
  }
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 396px;
  padding: 20px;
  position: relative;
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content {
    min-height: 266px;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content .tag {
  color: #111;
  text-transform: uppercase;
  background: #f3efeb;
  border-radius: 30px;
  align-items: center;
  height: 36px;
  padding: 0 20px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 14px;
  line-height: 1.15;
  display: inline-flex;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content .tag {
    height: 23px;
    font-size: 1.1rem;
    line-height: 1;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content .title {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .card-wrap .card-list .card-content .title {
    font-size: 18px;
    line-height: 1.2;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap {
  -o-transition: all ease .35s;
  background: none;
  border-top: 1px solid #111;
  align-items: center;
  min-height: 220px;
  padding: 35px 15px 35px 35px;
  transition: all .35s;
  display: flex;
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap {
    min-height: inherit;
    padding: 30px 20px;
    display: block;
  }
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap {
    padding: 20px;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content {
  flex: 0 0 620px;
  padding: 0 40px 0 0;
}

@media (width <= 1199px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content {
    flex: 0 0 470px;
  }
}

@media (width <= 767px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content {
    flex: inherit;
    margin: 0 0 20px;
    padding: 0;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content .tag {
  color: #111;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 18px;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content .tag {
    font-size: 14px;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content h3 {
  color: #111;
  margin: 0 0 10px;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 200;
  line-height: 35px;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content h3 {
    font-size: 18px;
    line-height: 23px;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content .date {
  color: #111;
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 14px;
}

@media (width <= 575px) {
  .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .left-content .date {
    font-size: 11px;
  }
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap .right-content {
  flex: 0 0 170px;
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap:hover {
  background: linear-gradient(#040172 0%, #111 100%);
}

.latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap:hover .tag, .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap:hover h3, .latest-resource-wrap .content-wrap .right-wrap .latestnews-wrap .latestnews-list-wrap:hover .date {
  color: #fff;
}

.share-price-wrap {
  border-bottom: 1px solid #c7c3bc;
  margin: 0 0 15px;
  padding: 0 0 15px;
}

.share-price-wrap .txt {
  color: #111;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 18px;
}

@media (width <= 575px) {
  .share-price-wrap .txt {
    font-size: 14px;
  }
}

.share-price-wrap .txt.fullcaps {
  text-transform: uppercase;
}

.share-price-wrap .txt.small {
  color: #111;
  margin: 0 0 10px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.share-price-wrap .num {
  color: #040172;
  letter-spacing: -.324rem;
  margin: 0 0 5px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 5.4rem;
  line-height: 5.4rem;
}

@media (width <= 575px) {
  .share-price-wrap .num {
    font-size: 4.4rem;
  }
}

.share-price-wrap .num.small {
  letter-spacing: -.184rem;
  margin: 0;
  font-size: 4.6rem;
}

@media (width <= 575px) {
  .share-price-wrap .num.small {
    font-size: 3.6rem;
  }
}

.banner-wrap {
  background: radial-gradient(75.35% 113.02%, #111 0% 21%, #111 34%, #040172 100%);
}

@media (width <= 991px) {
  .banner-wrap {
    padding: 40px 0;
  }
}

.banner-wrap .row {
  align-items: center;
}

.banner-wrap .head {
  color: #f3efeb;
  text-transform: uppercase;
  font-family: Bellota Text, cursive;
  font-size: 6.5rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 1199px) {
  .banner-wrap .head {
    font-size: 5.4rem;
  }
}

@media (width <= 991px) {
  .banner-wrap .head {
    padding: 0 0 40px;
  }
}

@media (width <= 767px) {
  .banner-wrap .head {
    font-size: 4rem;
  }
}

.banner-wrap figure {
  float: right;
}

@media (width <= 991px) {
  .banner-wrap figure {
    float: inherit;
  }
}

.banner-wrap figure img {
  display: block;
}

@media (width <= 991px) {
  .banner-wrap figure img {
    margin: auto;
    display: none;
  }
}

.banner-wrap figure .mob {
  display: none;
}

@media (width <= 991px) {
  .banner-wrap figure .mob {
    display: block;
  }
}

@media (width <= 767px) {
  .banner-wrap .img-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.about-image-content-wrap {
  padding: 120px 0;
}

@media (width <= 991px) {
  .about-image-content-wrap {
    padding: 40px 0;
  }
}

.about-image-content-wrap .row {
  align-items: center;
}

.about-image-content-wrap .left-wrap {
  order: 1;
  position: relative;
}

@media (width <= 991px) {
  .about-image-content-wrap .left-wrap {
    order: inherit;
  }
}

.about-image-content-wrap .left-wrap .main-img {
  padding-bottom: 35px;
}

.about-image-content-wrap .left-wrap .main-img img {
  max-width: 393px;
  display: block;
}

@media (width <= 767px) {
  .about-image-content-wrap .left-wrap .main-img img {
    max-width: 320px;
  }
}

@media (width <= 575px) {
  .about-image-content-wrap .left-wrap .main-img img {
    max-width: 190px;
  }
}

.about-image-content-wrap .left-wrap .secondary-img {
  position: absolute;
  bottom: 0;
  left: 313px;
}

@media (width <= 1199px) {
  .about-image-content-wrap .left-wrap .secondary-img {
    left: 250px;
  }
}

@media (width <= 575px) {
  .about-image-content-wrap .left-wrap .secondary-img {
    left: 150px;
  }
}

.about-image-content-wrap .left-wrap .secondary-img img {
  max-width: 210px;
  display: block;
}

@media (width <= 575px) {
  .about-image-content-wrap .left-wrap .secondary-img img {
    max-width: 100px;
  }
}

.about-image-content-wrap .content {
  order: 12;
}

@media (width <= 991px) {
  .about-image-content-wrap .content {
    order: inherit;
    padding-bottom: 30px;
  }
}

.about-image-content-wrap .content .head {
  color: #111;
  text-transform: uppercase;
  padding: 0 0 10px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .about-image-content-wrap .content .head {
    font-size: 5rem;
  }
}

@media (width <= 767px) {
  .about-image-content-wrap .content .head {
    font-size: 2.8rem;
  }
}

.about-image-content-wrap .content .para {
  color: #111;
  padding: 0 0 30px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
}

@media (width <= 767px) {
  .about-image-content-wrap .content .para {
    padding: 0 0 20px;
    font-size: 1.5rem;
  }
}

.about-image-content-wrap .content .btn {
  margin: 0 0 40px;
}

@media (width <= 767px) {
  .about-image-content-wrap .content .btn {
    margin: 0 0 20px;
  }
}

.about-image-content-wrap .content .threecol-wrap {
  display: flex;
}

@media (width <= 575px) {
  .about-image-content-wrap .content .threecol-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    display: grid;
  }
}

.about-image-content-wrap .content .threecol-wrap > div {
  border-left: 1px solid #000;
  padding: 0 30px 0 10px;
}

@media (width <= 1199px) {
  .about-image-content-wrap .content .threecol-wrap > div {
    padding: 0 20px 0 10px;
  }
}

@media (width <= 575px) {
  .about-image-content-wrap .content .threecol-wrap > div {
    padding-right: 0;
  }
}

.about-image-content-wrap .content .threecol-wrap > div:last-child {
  padding-right: 0;
}

.about-image-content-wrap .content .threecol-wrap .num {
  color: #111;
  font-family: Bellota Text, cursive;
  font-size: 9rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 1199px) {
  .about-image-content-wrap .content .threecol-wrap .num {
    font-size: 7rem;
  }
}

@media (width <= 767px) {
  .about-image-content-wrap .content .threecol-wrap .num {
    font-size: 4rem;
  }
}

.about-image-content-wrap .content .threecol-wrap .num span {
  color: #f05b72;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
  display: inline-block;
}

.about-image-content-wrap .content .threecol-wrap p {
  color: #111;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.4;
}

@media (width <= 767px) {
  .about-image-content-wrap .content .threecol-wrap p {
    font-size: 1.5rem;
  }
}

.about-image-content-wrap .quote-wrap {
  background: radial-gradient(75.35% 113.02%, #111 0% 21%, #111 34%, #040172 100%);
  border-radius: 6px;
  width: 100%;
  max-width: 422px;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 135px;
}

@media (width <= 1199px) {
  .about-image-content-wrap .quote-wrap {
    left: 40px;
  }
}

@media (width <= 991px) {
  .about-image-content-wrap .quote-wrap {
    left: 135px;
  }
}

@media (width <= 767px) {
  .about-image-content-wrap .quote-wrap {
    max-width: 370px;
  }
}

@media (width <= 575px) {
  .about-image-content-wrap .quote-wrap {
    position: inherit;
    max-width: 240px;
    margin: -150px 0 0;
    padding: 20px;
    left: 40px;
  }
}

.about-image-content-wrap .quote-wrap svg {
  margin: 0 0 20px;
}

@media (width <= 575px) {
  .about-image-content-wrap .quote-wrap svg {
    max-width: 31px;
  }
}

.about-image-content-wrap .quote-wrap .para {
  color: #fff;
  padding: 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 575px) {
  .about-image-content-wrap .quote-wrap .para {
    font-size: 1.5rem;
  }
}

.about-image-content-wrap .quote-wrap .des-wrap {
  align-items: center;
  gap: 15px;
  display: flex;
}

.about-image-content-wrap .quote-wrap .des-wrap img {
  border-radius: 6px;
  width: 100%;
  max-width: 60px;
}

@media (width <= 575px) {
  .about-image-content-wrap .quote-wrap .des-wrap img {
    max-width: 50px;
  }
}

.about-image-content-wrap .quote-wrap .des-wrap p {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.about-image-content-wrap .quote-wrap .des-wrap p b {
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  display: block;
}

@media (width <= 575px) {
  .about-image-content-wrap .quote-wrap .des-wrap p b {
    font-size: 1.5rem;
  }
}

.about-image-content-wrap.gradient-wrap {
  background: radial-gradient(75.35% 113.02%, #111 0% 21%, #111 34%, #040172 100%) !important;
}

.about-image-content-wrap.gradient-wrap .content .head, .about-image-content-wrap.gradient-wrap .content .para, .about-image-content-wrap.gradient-wrap .content .btn {
  color: #f3efeb;
}

.about-image-content-wrap.gradient-wrap .content .threecol-wrap > div {
  border-color: #f3efeb;
}

.about-image-content-wrap.gradient-wrap .content .threecol-wrap .num, .about-image-content-wrap.gradient-wrap .content .threecol-wrap p {
  color: #f3efeb;
}

.card-wrap {
  background: #f3efeb;
  padding: 100px 0;
}

@media (width <= 991px) {
  .card-wrap {
    padding: 40px 0;
  }
}

.card-wrap .head-wrap {
  max-width: 750px;
  padding: 0 0 40px;
}

@media (width <= 991px) {
  .card-wrap .head-wrap {
    max-width: 100%;
  }
}

@media (width <= 767px) {
  .card-wrap .head-wrap {
    padding: 0 0 30px;
  }
}

.card-wrap .head-wrap .head {
  color: #111;
  text-transform: uppercase;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .card-wrap .head-wrap .head {
    font-size: 5rem;
  }
}

@media (width <= 767px) {
  .card-wrap .head-wrap .head {
    font-size: 2.8rem;
  }
}

.card-wrap .head-wrap .para {
  color: #111;
  padding: 20px 0 0;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 575px) {
  .card-wrap .head-wrap .para {
    font-size: 1.5rem;
  }
}

.card-wrap .card-inner-wrap {
  background: linear-gradient(#040172 0%, #111 100%);
  border-radius: 6px;
  flex: 0 0 380px;
  width: 380px;
  min-height: 337px;
  padding: 30px;
}

@media (width <= 991px) {
  .card-wrap .card-inner-wrap {
    flex: 0 0 355px;
    width: 355px;
    padding: 20px 20px 25px;
  }
}

@media (width <= 575px) {
  .card-wrap .card-inner-wrap {
    flex: 0 0 280px;
    width: 280px;
    min-height: 230px;
  }
}

.card-wrap .card-inner-wrap h2 {
  text-transform: uppercase;
  color: #f3efeb;
  padding: 0 0 30px;
  font-family: Bellota Text, cursive;
  font-size: 6.8rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .card-wrap .card-inner-wrap h2 {
    padding: 0 0 20px;
    font-size: 4rem;
  }
}

.card-wrap .card-inner-wrap h3 {
  color: #f3efeb;
  padding: 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .card-wrap .card-inner-wrap h3 {
    padding: 0 0 15px;
    font-size: 2.2rem;
  }
}

.card-wrap .card-inner-wrap h3 b {
  color: #f3efeb;
  padding: 15px 0 10px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}

@media (width <= 767px) {
  .card-wrap .card-inner-wrap h3 b {
    padding: 10px 0 5px;
    font-size: 1.5rem;
  }
}

.card-wrap .card-inner-wrap p {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
}

@media (width <= 767px) {
  .card-wrap .card-inner-wrap p {
    padding: 0;
    font-size: 1.5rem;
  }
}

.card-wrap .card-inner-wrap + .card-inner-wrap {
  margin-left: 30px;
}

@media (width <= 991px) {
  .card-wrap .card-inner-wrap + .card-inner-wrap {
    margin-left: 20px;
  }
}

@media (width <= 575px) {
  .card-wrap .card-inner-wrap + .card-inner-wrap {
    margin-left: 10px;
  }
}

.card-wrap .card-image-wrap {
  flex: 0 0 380px;
  width: 380px;
  min-height: 401px;
  position: relative;
}

@media (width <= 991px) {
  .card-wrap .card-image-wrap {
    flex: 0 0 355px;
    width: 355px;
    min-height: 375px;
  }
}

@media (width <= 575px) {
  .card-wrap .card-image-wrap {
    flex: 0 0 280px;
    width: 280px;
    min-height: 230px;
  }
}

.card-wrap .card-image-wrap img {
  display: block;
}

.card-wrap .card-image-wrap h2 {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  position: absolute;
  bottom: 40px;
  left: 30px;
}

@media (width <= 991px) {
  .card-wrap .card-image-wrap h2 {
    font-size: 2.8rem;
    bottom: 20px;
    left: 20px;
  }
}

@media (width <= 575px) {
  .card-wrap .card-image-wrap h2 {
    font-size: 2.2rem;
  }
}

.card-wrap .card-image-wrap + .card-image-wrap {
  margin-left: 30px;
}

@media (width <= 991px) {
  .card-wrap .card-image-wrap + .card-image-wrap {
    margin-left: 20px;
  }
}

@media (width <= 575px) {
  .card-wrap .card-image-wrap + .card-image-wrap {
    margin-left: 10px;
  }
}

.card-wrap .enro-scroll-x {
  overflow: hidden;
}

.card-wrap .enro-scroll-wrap {
  display: flex;
}

.card-wrap.gradient {
  background: linear-gradient(#040172 0%, #111 100%);
  position: relative;
  overflow: hidden;
}

@media (width <= 991px) {
  .card-wrap.gradient {
    padding-bottom: 110px;
  }
}

.card-wrap.gradient .head-wrap .head, .card-wrap.gradient .head-wrap .para {
  color: #f3efeb;
}

.card-wrap.gradient .card-inner-wrap {
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background: linear-gradient(0deg, #04017229 0% 100%), #ffffff14;
}

@media (width <= 1199px) {
  .card-wrap.gradient .card-inner-wrap {
    flex: 0 0 310px;
    width: 310px;
  }
}

@media (width <= 991px) {
  .card-wrap.gradient .card-inner-wrap {
    min-height: inherit;
    flex: 0 0 100%;
    width: 100%;
  }
}

@media (width <= 1199px) {
  .card-wrap.gradient .card-inner-wrap + .card-inner-wrap {
    margin-left: 15px;
  }
}

@media (width <= 991px) {
  .card-wrap.gradient .card-inner-wrap + .card-inner-wrap {
    margin-top: 10px;
    margin-left: 0;
  }
}

.card-wrap.gradient svg {
  content: "";
  width: 703px;
  height: 796px;
  position: absolute;
  bottom: -30px;
  right: -370px;
}

@media (width <= 1199px) {
  .card-wrap.gradient svg {
    right: -430px;
  }
}

@media (width <= 991px) {
  .card-wrap.gradient svg {
    width: 493px;
    height: 626px;
    right: -270px;
  }
}

@media (width <= 767px) {
  .card-wrap.gradient svg {
    width: 310px;
    height: 426px;
    bottom: -170px;
    right: -160px;
  }
}

@media (width <= 991px) {
  .card-wrap.gradient .enro-scroll-wrap {
    display: block;
  }
}

.more-about-content {
  background: #f3efeb;
  padding: 120px 0;
}

@media (width <= 991px) {
  .more-about-content {
    padding: 70px 0;
  }
}

@media (width <= 767px) {
  .more-about-content {
    padding: 40px 0;
  }
}

.more-about-content .content {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 100%;
  max-width: 995px;
  margin: 0 auto;
  padding: 80px 10px;
}

@media (width <= 991px) {
  .more-about-content .content {
    padding: 60px 10px;
  }
}

@media (width <= 767px) {
  .more-about-content .content {
    text-align: left;
    padding: 40px 10px;
  }
}

.more-about-content .content .head {
  color: #111;
  text-transform: uppercase;
  padding: 0 0 10px;
  font-family: Bellota Text, cursive;
  font-size: 6.5rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 1199px) {
  .more-about-content .content .head {
    font-size: 5.4rem;
  }
}

@media (width <= 767px) {
  .more-about-content .content .head {
    font-size: 2.8rem;
  }
}

.more-about-content .content .para {
  color: #111;
  max-width: 540px;
  margin: 0 auto;
  padding: 0 0 30px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  line-height: 1.4;
}

@media (width <= 767px) {
  .more-about-content .content .para {
    padding: 0 0 20px;
    font-size: 1.5rem;
  }
}

.scrolling-logo-wrap {
  text-align: center;
  background: #f3efeb;
  padding: 100px 0;
  overflow: hidden;
}

@media (width <= 767px) {
  .scrolling-logo-wrap {
    padding: 40px 0;
  }
}

.scrolling-logo-wrap .head {
  color: #111;
  text-transform: uppercase;
  padding: 0 0 50px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .scrolling-logo-wrap .head {
    padding: 0 0 30px;
    font-size: 4rem;
  }
}

@media (width <= 575px) {
  .scrolling-logo-wrap .head {
    font-size: 2.8rem;
  }
}

.scrolling-logo-wrap .scroll-wrap .owl-scrollingLogo {
  justify-content: center;
  width: 100%;
  display: flex;
}

.scrolling-logo-wrap .scroll-wrap .owl-scrollingLogo .content {
  color: #000;
  border: 1px solid #000;
  border-radius: 40px;
  min-width: 140px;
  padding: 27px 30px 24px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  list-style: none;
}

@media (width <= 575px) {
  .scrolling-logo-wrap .scroll-wrap .owl-scrollingLogo .content {
    min-width: 80px;
    padding: 15px 10px 13px;
    font-size: 1.1rem;
  }
}

.scrolling-logo-wrap .scroll-wrap + .scroll-wrap {
  margin: 30px 0 0;
}

@media (width <= 767px) {
  .scrolling-logo-wrap .scroll-wrap + .scroll-wrap {
    margin: 15px 0 0;
  }
}

.who-we-are-wrap {
  background: #f3efeb;
  padding: 120px 0;
}

@media (width <= 767px) {
  .who-we-are-wrap {
    padding: 40px 0;
  }
}

.who-we-are-wrap .head {
  color: #111;
  text-transform: uppercase;
  padding: 0 0 45px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .who-we-are-wrap .head {
    padding: 0 0 30px;
    font-size: 4rem;
  }
}

@media (width <= 575px) {
  .who-we-are-wrap .head {
    font-size: 2.8rem;
  }
}

.who-we-are-wrap .full-width-card {
  margin-bottom: 30px;
}

@media (width <= 767px) {
  .who-we-are-wrap .full-width-card {
    margin-bottom: 20px;
  }
}

.who-we-are-wrap .listing-card {
  justify-content: space-between;
  gap: 30px;
  display: flex;
}

@media (width <= 767px) {
  .who-we-are-wrap .listing-card {
    flex-direction: column;
    gap: 20px;
  }
}

.who-we-are-wrap .listing-card .who-we-are-card-wrap {
  padding: 20px;
}

@media (width <= 991px) {
  .who-we-are-wrap .listing-card .who-we-are-card-wrap {
    padding: 20px 15px;
  }
}

.who-we-are-wrap .listing-card .who-we-are-card-wrap .tag {
  font-size: 1.4rem;
}

.who-we-are-wrap .listing-card .who-we-are-card-wrap .content {
  width: 100%;
}

.who-we-are-wrap .listing-card .who-we-are-card-wrap .content .seond-head {
  font-size: 3rem;
}

@media (width <= 991px) {
  .who-we-are-wrap .listing-card .who-we-are-card-wrap .content .seond-head {
    font-size: 2.8rem;
  }
}

.who-we-are-wrap .who-we-are-card-wrap {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 380px;
  padding: 30px;
  display: flex;
}

@media (width <= 575px) {
  .who-we-are-wrap .who-we-are-card-wrap {
    height: 310px;
  }
}

@media (width <= 767px) {
  .who-we-are-wrap .who-we-are-card-wrap {
    padding: 20px 15px;
  }
}

@media (width <= 575px) {
  .who-we-are-wrap .who-we-are-card-wrap {
    padding: 15px 10px !important;
  }
}

.who-we-are-wrap .who-we-are-card-wrap .tag {
  color: #111;
  text-transform: uppercase;
  background: #f3efeb;
  border-radius: 30px;
  padding: 14px 20px 8px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  display: inline-block;
}

@media (width <= 767px) {
  .who-we-are-wrap .who-we-are-card-wrap .tag {
    font-size: 1.4rem;
  }
}

@media (width <= 575px) {
  .who-we-are-wrap .who-we-are-card-wrap .tag {
    font-size: 1.1rem !important;
  }
}

.who-we-are-wrap .who-we-are-card-wrap .content {
  max-width: 510px;
}

@media (width <= 767px) {
  .who-we-are-wrap .who-we-are-card-wrap .content {
    max-width: 100%;
  }
}

.who-we-are-wrap .who-we-are-card-wrap .content .date {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.4rem;
  line-height: 1;
}

.who-we-are-wrap .who-we-are-card-wrap .content .seond-head {
  color: #f2eee8;
  padding: 0 0 10px;
  font-family: Bellota Text, cursive;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.1;
}

@media (width <= 767px) {
  .who-we-are-wrap .who-we-are-card-wrap .content .seond-head {
    font-size: 2.8rem;
  }
}

@media (width <= 575px) {
  .who-we-are-wrap .who-we-are-card-wrap .content .seond-head {
    font-size: 2.2rem !important;
  }
}

.who-we-are-wrap .who-we-are-card-wrap .content .btn {
  color: #fff;
  font-size: 1.4rem;
}

.who-we-are-wrap .who-we-are-card-wrap .content .btn svg {
  max-width: 32px;
  max-height: 32px;
}

.work-culture-wrap {
  background: linear-gradient(#040172 0%, #111 100%);
  padding: 120px 0;
}

@media (width <= 991px) {
  .work-culture-wrap {
    padding: 70px 0;
  }
}

@media (width <= 767px) {
  .work-culture-wrap {
    padding: 40px 0;
  }
}

.work-culture-wrap .colwrap {
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  display: flex;
}

.work-culture-wrap .colwrap .btn {
  color: #fff;
  font-size: 1.4rem;
}

.work-culture-wrap .colwrap .btn svg {
  max-width: 32px;
  max-height: 32px;
}

.work-culture-wrap .head-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 45px;
}

@media (width <= 991px) {
  .work-culture-wrap .head-wrap {
    max-width: 100%;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .head-wrap {
    padding: 0 0 30px;
  }
}

.work-culture-wrap .head-wrap .head {
  color: #f3efeb;
  text-transform: uppercase;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .work-culture-wrap .head-wrap .head {
    font-size: 4.8rem;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .head-wrap .head {
    font-size: 2.8rem;
  }
}

.work-culture-wrap .head-wrap .para {
  color: #f3efeb;
  padding: 10px 0 0;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 767px) {
  .work-culture-wrap .head-wrap .para {
    font-size: 1.5rem;
  }
}

.work-culture-wrap .img-wrap img {
  display: block;
}

@media (width <= 767px) {
  .work-culture-wrap .img-wrap {
    display: none;
  }
}

.work-culture-wrap .culture-quote-wrap {
  background: url("../images/culture-gradient-1.jpg") top / cover no-repeat;
  width: 100%;
  padding: 30px;
}

@media (width <= 1199px) {
  .work-culture-wrap .culture-quote-wrap {
    padding: 15px;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .culture-quote-wrap {
    display: none;
  }
}

@media (width <= 575px) {
  .work-culture-wrap .culture-quote-wrap {
    padding: 20px;
  }
}

.work-culture-wrap .culture-quote-wrap .svg {
  margin: 0 0 20px;
}

@media (width <= 575px) {
  .work-culture-wrap .culture-quote-wrap .svg {
    max-width: 31px;
  }
}

.work-culture-wrap .culture-quote-wrap .para {
  color: #f3efeb;
  padding: 0 0 20px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 1199px) {
  .work-culture-wrap .culture-quote-wrap .para {
    font-size: 1.6rem;
  }
}

@media (width <= 575px) {
  .work-culture-wrap .culture-quote-wrap .para {
    font-size: 1.5rem;
  }
}

.work-culture-wrap .culture-quote-wrap .des-wrap {
  align-items: center;
  gap: 15px;
  margin: 0 0 50px;
  display: flex;
}

.work-culture-wrap .culture-quote-wrap .des-wrap img {
  border-radius: 6px;
  width: 100%;
  max-width: 60px;
}

@media (width <= 991px) {
  .work-culture-wrap .culture-quote-wrap .des-wrap img {
    max-width: 50px;
  }
}

.work-culture-wrap .culture-quote-wrap .des-wrap p {
  color: #f3efeb;
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
}

.work-culture-wrap .culture-quote-wrap .des-wrap p b {
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 700;
  display: block;
}

@media (width <= 575px) {
  .work-culture-wrap .culture-quote-wrap .des-wrap p b {
    font-size: 1.5rem;
  }
}

.work-culture-wrap .culture-quote-wrap.second-quote {
  background-image: url("../images/culture-gradient-2.jpg");
}

.work-culture-wrap .our-value-wrap {
  background: url("../images/culture-gradient-3.jpg") top / cover no-repeat;
  width: 100%;
  padding: 30px;
}

@media (width <= 1199px) {
  .work-culture-wrap .our-value-wrap {
    padding: 15px;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap {
    padding: 20px;
  }
}

.work-culture-wrap .our-value-wrap .sub-head {
  text-transform: uppercase;
  color: #f3efeb;
  padding: 0 0 30px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap .sub-head {
    padding: 0 0 20px;
    font-size: 1.4rem;
  }
}

.work-culture-wrap .our-value-wrap ul {
  margin: 0 0 40px;
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap ul {
    margin: 0 0 20px;
  }
}

.work-culture-wrap .our-value-wrap ul li {
  color: #f3efeb;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  list-style: none;
  display: flex;
}

@media (width <= 1199px) {
  .work-culture-wrap .our-value-wrap ul li {
    font-size: 1.8rem;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap ul li {
    font-size: 1.5rem;
  }
}

.work-culture-wrap .our-value-wrap ul li svg {
  flex: 0 0 35px;
  margin: 0 20px 0 0;
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap ul li svg {
    flex: 0 0 29px;
    max-width: 29px;
    margin: 0 10px 0 0;
  }
}

.work-culture-wrap .our-value-wrap ul li + li {
  margin-top: 10px;
}

@media (width <= 767px) {
  .work-culture-wrap .our-value-wrap ul li + li {
    margin-top: 5px;
  }
}

.work-culture-wrap .culture-strip-wrap {
  background: linear-gradient(0deg, #04017229 0% 100%), #ffffff21;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0;
  padding: 30px 60px;
  display: flex;
}

@media (width <= 1199px) {
  .work-culture-wrap .culture-strip-wrap {
    padding: 30px;
  }
}

@media (width <= 991px) {
  .work-culture-wrap .culture-strip-wrap {
    flex-direction: column;
    align-items: start;
  }
}

@media (width <= 767px) {
  .work-culture-wrap .culture-strip-wrap {
    gap: 15px;
    padding: 20px;
  }
}

.work-culture-wrap .culture-strip-wrap p {
  color: #f2f2f2;
  font-family: Roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (width <= 767px) {
  .work-culture-wrap .culture-strip-wrap p {
    font-size: 1.7rem;
  }
}

.work-culture-wrap .owl-carousel.owl-culture {
  margin: 10px 0 0;
  display: none;
}

@media (width <= 767px) {
  .work-culture-wrap .owl-carousel.owl-culture {
    display: block;
  }
}

.work-culture-wrap .owl-carousel.owl-culture .owl-item img {
  width: auto;
  max-width: 100%;
  min-height: 127px;
  max-height: 127px;
}

.work-culture-wrap .owl-carousel.owl-culture .owl-dots {
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  display: flex;
}

.work-culture-wrap .owl-carousel.owl-culture .owl-dots .owl-dot {
  border: 1px solid #f3efeb;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}

.work-culture-wrap .owl-carousel.owl-culture .owl-dots .owl-dot.active {
  background: #ffd400;
  border-color: #ffd400;
}

.banner-asx {
  background: var(--radieal-gradient, radial-gradient(113.05% 75.4% at 50% 50%, #111 0%, #111 21%, #111 34%, #040172 100%));
  text-align: center;
  flex-direction: column;
  align-items: center;
  min-height: 510px;
  display: flex;
  position: relative;
}

@media (width <= 767px) {
  .banner-asx {
    min-height: 365px;
  }
}

.banner-asx .content {
  max-width: 790px;
  margin: 0 auto;
  padding: 120px 0 0;
}

@media (width <= 991px) {
  .banner-asx .content {
    max-width: 740px;
  }
}

@media (width <= 767px) {
  .banner-asx .content {
    max-width: 100%;
    padding: 50px 15px 0;
  }
}

.banner-asx .content .head {
  color: #f3efeb;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: Bellota Text, cursive;
  font-size: 6.8rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 991px) {
  .banner-asx .content .head {
    font-size: 6.2rem;
  }
}

@media (width <= 767px) {
  .banner-asx .content .head {
    margin: 0 0 10px;
    font-size: 4rem;
  }
}

.banner-asx .content .price {
  color: #ffd400;
  margin: 0 0 15px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (width <= 767px) {
  .banner-asx .content .price {
    margin: 0 0 10px;
  }
}

.banner-asx .content .price ul {
  display: inline-block;
}

.banner-asx .content .price ul li {
  margin: 0 0 0 10px;
  padding: 0 0 0 10px;
  list-style: outside;
  display: inline-block;
  position: relative;
}

.banner-asx .content .price ul li:before {
  content: "";
  background: #ffd400;
  border-radius: 100%;
  width: 4px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.banner-asx .content .time {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3;
}

.banner-asx.latest-news {
  min-height: 310px;
}

@media (width <= 767px) {
  .banner-asx.latest-news {
    min-height: 160px;
  }

  .banner-asx.latest-news .content {
    padding: 40px 15px 0;
  }
}

.banner-asx .content-repo-wrap {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(0deg, #04017214 0% 100%), #f3efeb29;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (width <= 991px) {
  .banner-asx .content-repo-wrap {
    display: none;
  }
}

.banner-asx .content-repo-wrap ul {
  justify-content: space-between;
  display: flex;
}

@media (width <= 991px) {
  .banner-asx .content-repo-wrap ul {
    width: 991px;
  }
}

@media (width <= 767px) {
  .banner-asx .content-repo-wrap ul {
    width: 700px;
  }
}

.banner-asx .content-repo-wrap ul li {
  text-transform: uppercase;
  padding: 30px 0;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  list-style: none;
}

@media (width <= 1199px) {
  .banner-asx .content-repo-wrap ul li {
    font-size: 2.2rem;
  }
}

@media (width <= 991px) {
  .banner-asx .content-repo-wrap ul li {
    padding: 30px 20px;
  }
}

@media (width <= 767px) {
  .banner-asx .content-repo-wrap ul li {
    padding: 20px 15px;
    font-size: 1.4rem;
  }
}

.banner-asx .content-repo-wrap ul li a {
  color: #f3efeb;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.banner-asx .content-repo-wrap ul li.current-menu-item a {
  border-bottom: 2px solid #ffd400;
}

.about-subpage-wrap {
  background: #f3efeb;
  padding: 120px 0;
}

@media (width <= 991px) {
  .about-subpage-wrap {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .about-subpage-wrap {
    padding: 40px 0;
  }
}

.about-subpage-wrap .head-wrap {
  margin: 0 0 50px;
}

.about-subpage-wrap .head-wrap .head {
  color: #000;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .about-subpage-wrap .head-wrap .head {
    margin: 0 0 10px;
    font-size: 2.8rem;
  }
}

.about-subpage-wrap .head-wrap .para {
  color: #000;
  max-width: 690px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 767px) {
  .about-subpage-wrap .head-wrap .para {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.card-list-wrap {
  justify-content: space-between;
  gap: 30px;
  padding: 0 0 30px;
  display: flex;
}

@media (width <= 767px) {
  .card-list-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.card-list-wrap.listing {
  flex-wrap: wrap;
  gap: 23px;
}

@media (width <= 1199px) {
  .card-list-wrap.listing {
    gap: 19px;
  }
}

@media (width <= 991px) {
  .card-list-wrap.listing {
    gap: 13px;
  }
}

.card-list-wrap.listing .card-list {
  flex: 0 0 32%;
  width: 32%;
}

@media (width <= 991px) {
  .card-list-wrap.listing .card-list {
    flex: 0 0 100%;
    width: 100%;
  }
}

.card-list-wrap.single .card-list {
  flex: 0 0 100%;
  width: 100%;
}

.card-list-wrap.double .card-list:first-child {
  flex: 0 0 65.5%;
  width: 65%;
}

@media (width <= 767px) {
  .card-list-wrap.double .card-list:first-child {
    flex: 0 0 100%;
    width: 100%;
  }
}

.card-list-wrap.double .card-list:nth-child(2) {
  flex: 0 0 32%;
  width: 32%;
}

@media (width <= 767px) {
  .card-list-wrap.double .card-list:nth-child(2) {
    flex: 0 0 100%;
    width: 100%;
  }
}

.card-list-wrap .card-list {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 397px;
  padding: 30px;
  display: flex;
  position: relative;
  background-repeat: no-repeat !important;
  background-size: 0 !important;
}

@media (width <= 991px) {
  .card-list-wrap .card-list {
    min-height: 320px;
    padding: 15px;
    background-position: top !important;
    background-size: cover !important;
  }
}

.card-list-wrap .card-list figure {
  z-index: -1;
  -o-transition: all ease .35s;
  width: 100%;
  height: 100%;
  transition: all .35s;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.card-list-wrap .card-list figure img {
  object-fit: cover;
  object-position: top center;
  -o-transition: all ease .35s;
  width: 100%;
  height: 100%;
  transition: all .35s;
}

.card-list-wrap .card-list .tag {
  color: #000;
  text-transform: uppercase;
  background: #f3efeb;
  border-radius: 30px;
  padding: 14px 20px 8px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.card-list-wrap .card-list .tag a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  line-height: inherit;
  font-weight: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

@media (width <= 991px) {
  .card-list-wrap .card-list .tag a {
    padding: 12px 20px 8px;
    font-size: 1.4rem;
  }
}

@media (width <= 575px) {
  .card-list-wrap .card-list .tag a {
    font-size: 1.1rem !important;
  }
}

.card-list-wrap .card-list .content {
  max-width: 510px;
}

@media (width <= 767px) {
  .card-list-wrap .card-list .content {
    max-width: 100%;
  }
}

.card-list-wrap .card-list .content .date {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

@media (width <= 991px) {
  .card-list-wrap .card-list .content .date {
    font-size: 1.2rem;
  }
}

.card-list-wrap .card-list .content .seond-head {
  color: #f2eee8;
  padding: 0 0 10px;
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
}

@media (width <= 991px) {
  .card-list-wrap .card-list .content .seond-head {
    font-size: 2.8rem;
  }
}

@media (width <= 575px) {
  .card-list-wrap .card-list .content .seond-head {
    font-size: 2.2rem !important;
  }
}

.card-list-wrap .card-list .content .btn {
  color: #fff;
  font-size: 1.4rem;
}

.card-list-wrap .card-list .content .btn svg {
  max-width: 32px;
  max-height: 32px;
}

.card-list-wrap .card-list:hover figure {
  border-radius: 20px;
}

.card-list-wrap .card-list:hover figure img {
  transform: scale(1.15);
}

.announcemen-wrap .announcement-list-wrap {
  -o-transition: all ease .35s;
  background: none;
  border-top: 1px solid #111;
  justify-content: space-between;
  align-items: center;
  min-height: 220px;
  padding: 40px;
  transition: all .35s;
  display: flex;
  position: relative;
}

@media (width <= 991px) {
  .announcemen-wrap .announcement-list-wrap {
    min-height: inherit;
    flex-direction: column;
    align-items: start;
    padding: 40px 20px;
  }
}

@media (width <= 767px) {
  .announcemen-wrap .announcement-list-wrap {
    padding: 20px;
  }
}

.announcemen-wrap .announcement-list-wrap .left-content {
  flex: 0 0 560px;
}

@media (width <= 991px) {
  .announcemen-wrap .announcement-list-wrap .left-content {
    flex: none;
    margin: 0 0 20px;
  }
}

@media (width <= 767px) {
  .announcemen-wrap .announcement-list-wrap .left-content {
    flex: none;
    padding: 0;
  }
}

.announcemen-wrap .announcement-list-wrap .left-content .tag {
  color: #111;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (width <= 767px) {
  .announcemen-wrap .announcement-list-wrap .left-content .tag {
    font-size: 1.4rem;
  }
}

.announcemen-wrap .announcement-list-wrap .left-content h3 {
  color: #111;
  margin: 0 0 10px;
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 200;
  line-height: 35px;
}

@media (width <= 767px) {
  .announcemen-wrap .announcement-list-wrap .left-content h3 {
    font-size: 2.2rem;
    line-height: 26px;
  }
}

.announcemen-wrap .announcement-list-wrap .left-content .date {
  color: #111;
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (width <= 575px) {
  .announcemen-wrap .announcement-list-wrap .left-content .date {
    font-size: 1.1rem;
  }
}

.announcemen-wrap .announcement-list-wrap:hover {
  background: linear-gradient(#040172 0%, #111 100%);
}

.announcemen-wrap .announcement-list-wrap:hover .tag, .announcemen-wrap .announcement-list-wrap:hover h3, .announcemen-wrap .announcement-list-wrap:hover .date {
  color: #fff;
}

.pagination {
  text-align: center;
  margin: 50px 0 0;
}

@media (width <= 991px) {
  .pagination {
    margin: 30px 0 0;
  }
}

.pagination ul {
  justify-content: center;
  align-items: center;
  display: flex;
}

.pagination ul li {
  text-transform: uppercase;
  color: #111;
  margin: 0 10px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  list-style: none;
}

@media (width <= 767px) {
  .pagination ul li {
    margin: 0 5px;
    font-size: 1.8rem;
  }
}

.pagination ul li a {
  color: #111;
  line-height: 1;
  text-decoration: none;
  display: block;
}

.pagination ul li a:hover {
  color: #ffd400;
}

.pagination ul li svg {
  display: block;
}

@media (width <= 767px) {
  .pagination ul li svg {
    width: 31px;
  }
}

.vertical-tab-wrap {
  background: #f3efeb;
  width: 100%;
  padding: 0 0 120px;
  display: inline-block;
}

@media (width <= 991px) {
  .vertical-tab-wrap {
    padding: 0 0 60px;
  }
}

@media (width <= 767px) {
  .vertical-tab-wrap {
    padding: 0 0 40px;
  }
}

.vertical-tab-wrap .content-wrap {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 80px 0;
}

@media (width <= 991px) {
  .vertical-tab-wrap .content-wrap {
    padding: 60px 0;
  }
}

@media (width <= 767px) {
  .vertical-tab-wrap .content-wrap {
    padding: 40px 0;
  }
}

.vertical-tab-wrap .title {
  color: #000;
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

@media (width <= 991px) {
  .vertical-tab-wrap .title {
    font-size: 1.8rem;
  }
}

.vertical-tab-wrap .head-wrap {
  margin: 0 0 40px;
}

@media (width <= 767px) {
  .vertical-tab-wrap .head-wrap {
    margin: 0 0 30px;
  }
}

.vertical-tab-wrap .head-wrap .head {
  color: #000;
  text-transform: uppercase;
  font-family: Bellota Text, cursive;
  font-size: 5.4rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .vertical-tab-wrap .head-wrap .head {
    font-size: 2.8rem;
  }
}

.vertical-tab-wrap .head-wrap .para {
  color: #111;
  max-width: 690px;
  margin: 10px auto 0;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 767px) {
  .vertical-tab-wrap .head-wrap .para {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.vertical-tab-wrap #verticalTab {
  width: 100% !important;
  display: inline-block !important;
}

.vertical-tab-wrap #verticalTab .resp-arrow {
  display: none;
}

.vertical-tab-wrap #verticalTab .content p {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

.vertical-tab-wrap #verticalTab .content .btn {
  margin: 20px 0 0;
  font-size: 1.4rem;
}

.vertical-tab-wrap #verticalTab .content .btn svg {
  width: 32px;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-list {
  width: 50%;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-list li {
  background: none;
  border: 0;
  border-left: 2px solid #c7c3bc;
  margin: 0 !important;
  padding: 15px 0 15px 30px !important;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-list li .content {
  padding: 15px 0 0;
  display: none;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-list li.resp-tab-active {
  border-color: #ffd400;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-list li.resp-tab-active .content {
  display: block;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container {
  min-height: inherit;
  background: none;
  border: 0;
  width: 50%;
  padding: 0;
}

@media (width <= 991px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container {
    width: 100%;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content {
  padding: 0 0 0 100px;
}

@media (width <= 1199px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content {
    padding: 0 0 0 45px;
  }
}

@media (width <= 991px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content {
    border: 1px solid #111;
    margin: 0 0 -1px;
    padding: 20px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content {
  padding: 0 0 25px;
  position: relative;
}

@media (width <= 991px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content {
    padding: 0;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .content {
  display: none;
}

@media (width <= 991px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .content {
    padding: 0 0 20px;
    display: block;
  }

  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap {
    margin: 0 0 0 45px;
    position: relative;
  }
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap {
    margin: 0 0 0 15px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap {
  max-width: 442px;
  min-height: 417px;
  position: relative;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap {
    max-width: 203px;
    min-height: 192px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap img {
  position: absolute;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap img.img1 {
  max-width: 276px;
  left: 0;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap img.img1 {
    max-width: 125px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap img.img2 {
  max-width: 225px;
  bottom: 0;
  right: 0;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .img-wrap img.img2 {
    max-width: 115px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content {
  background: var(--radieal-gradient, radial-gradient(113.05% 75.4% at 50% 50%, #111 0%, #111 21%, #111 34%, #040172 100%));
  border-radius: 6px;
  width: 300px;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: -45px;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content {
    max-width: 132px;
    padding: 13px;
    left: -15px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div {
  border-left: 1px solid #fff;
  padding: 15px 0 10px 15px;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div {
    padding: 7px 0 5px 7px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div .title-sub {
  text-transform: uppercase;
  color: #fff;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div .title-sub {
    font-size: 2.4rem;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div .title-sub span {
  color: #ffd400;
  font-size: inherit;
  line-height: inherit;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div p {
  color: #fff;
  margin: -5px 0 0;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .resp-tab-content .tab-content .img-content-wrap .box-content > div p {
    font-size: .8rem;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap {
  position: relative;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block {
  border-radius: 6px;
  padding: 30px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -120px;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .txt {
  color: #fff;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .txt {
    font-size: 14px;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .txt.fullcaps {
  text-transform: uppercase;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .txt.small {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .num {
  color: #ffd400;
  letter-spacing: -.324rem;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 5.4rem;
  line-height: 1;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .num svg {
  fill: #ffd400;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .num {
    font-size: 4.4rem;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .num.small {
  letter-spacing: -.184rem;
  margin: 0;
  font-size: 4.6rem;
}

@media (width <= 575px) {
  .vertical-tab-wrap #verticalTab.resp-vtabs .resp-tabs-container .glob-wrap .share-price-wrap-block .num.small {
    font-size: 3.6rem;
  }
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-accordion {
  background: none !important;
}

.vertical-tab-wrap #verticalTab.resp-vtabs .resp-accordion .content {
  display: none;
}

.vertical-tab-wrap #verticalTab.resp-vtabs h2.resp-accordion {
  border: 1px solid #111;
  margin: 0 0 -1px;
  padding: 15px 20px !important;
}

.vertical-tab-wrap #verticalTab.resp-vtabs h2.resp-accordion:first-child {
  border-top-color: #111 !important;
}

.vertical-tab-wrap #verticalTab.resp-vtabs h2.resp-tab-active {
  border-bottom: 0 solid #111 !important;
}

.vertical-tab-wrap.media-contact-wrap {
  text-align: center;
}

@media (width <= 767px) {
  .vertical-tab-wrap.media-contact-wrap {
    text-align: left;
  }
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap {
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  display: flex;
}

@media (width <= 767px) {
  .vertical-tab-wrap.media-contact-wrap .media-contact-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap {
  align-items: center;
  gap: 10px;
  display: flex;
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap img {
  border-radius: 3px;
  flex: 0 0 60px;
  max-width: 60px;
}

@media (width <= 767px) {
  .vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap img {
    flex: 0 0 60px;
    max-width: 50px;
  }
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap .txt {
  text-align: left;
  flex-shrink: 0;
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap .txt .position {
  color: #111;
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (width <= 767px) {
  .vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap .txt .position {
    font-size: 1.4rem;
  }
}

.vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap .txt a {
  color: #111;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
}

@media (width <= 767px) {
  .vertical-tab-wrap.media-contact-wrap .media-contact-wrap .content-outer-wrap .txt a {
    font-size: 1.5rem;
  }
}

.resetList {
  list-style: none;
}

.dflex {
  display: flex;
}

.dflex.align-center {
  align-items: center;
}

.dflex.justify-center {
  justify-content: center;
}

.dflex.column {
  flex-direction: column;
}

.gradient-radial {
  background: radial-gradient(75.35% 113.02%, #111 0% 21%, #111 34%, #040172 100%);
}

.gradient-radial * {
  color: #fff;
}

.belotta-txt {
  font-family: Bellota Text, cursive;
}

.text-transfomr-upper {
  text-transform: uppercase;
}

.white {
  color: #fff !important;
}

.dark {
  color: #111 !important;
}

.sectionTitle h2 {
  color: #fff;
  text-transform: uppercase;
  font-family: Bellota Text, cursive;
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
}

.sectionTitle h2 a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
}

@media (width <= 767px) {
  .sectionTitle h2 {
    font-size: 2.8rem;
  }
}

.sectionTitle p {
  margin-top: 10px;
  font-family: Roboto, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (width <= 767px) {
  .sectionTitle p {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

.sectionTitle.center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.stretched-link:after {
  content: "";
  opacity: 0;
  pointer-events: all;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.workBanner .bannerWrap {
  height: 550px;
}

.workBanner .bannerWrap h1 {
  text-align: center;
  max-width: 650px;
  font-size: 6.8rem;
  font-weight: 300;
  line-height: 1;
}

@media (width <= 767px) {
  .workBanner .bannerWrap {
    align-items: start;
    height: 70vh;
    padding-top: 40px;
  }

  .workBanner .bannerWrap h1 {
    font-size: 4rem;
  }
}

.workBanner .logoWrap img {
  object-fit: scale-down;
  opacity: 0;
  width: 150px;
  height: 30px;
  animation: 1s infinite forwards logo-animation;
  position: absolute;
  transform: scale(0);
}

@media (width <= 1199px) {
  .workBanner .logoWrap {
    display: none;
  }
}

.filterWrap .leftWrap {
  gap: 15px;
}

.filterWrap .leftWrap .filterSelectWrap {
  position: relative;
}

.filterWrap .leftWrap .filterSelectWrap select {
  appearance: none;
  background-color: #0000;
  border: 1px solid #111;
  border-radius: 12px;
  min-width: 180px;
  height: 48px;
  padding-left: 15px;
  padding-right: 30px;
  font-family: Roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.3;
}

.filterWrap .leftWrap .filterSelectWrap svg {
  pointer-events: none;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.filterWrap .txtWrap {
  text-transform: uppercase;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.listingWrap {
  background-color: #f3efeb;
  padding-top: 120px;
}

.listingWrap ul {
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
}

.listingWrap ul li {
  flex-direction: column;
  flex-basis: 672px;
  min-height: 507px;
  display: inline-flex;
  position: relative;
}

.listingWrap ul li .featuredWrap {
  pointer-events: none;
  z-index: 2;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.listingWrap ul li .featuredWrap img {
  object-fit: cover;
  object-position: center top;
  -o-transition: all ease .35s;
  width: 100%;
  height: 500px;
  transition: all .35s;
}

@media (width <= 767px) {
  .listingWrap ul li .featuredWrap img {
    object-position: center;
    height: 265px;
  }
}

.listingWrap ul li:after {
  content: "";
  -o-transition: all ease .35s;
  background-color: #000;
  width: 0;
  height: 1px;
  transition: all .35s;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (width <= 767px) {
  .listingWrap ul li:after {
    width: 100%;
  }
}

.listingWrap ul li:hover .featuredWrap {
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}

.listingWrap ul li:hover .featuredWrap img {
  height: 257px;
}

.listingWrap ul li:hover:after {
  width: 100%;
}

.listingWrap ul li:nth-child(4n+2), .listingWrap ul li:nth-child(4n+3) {
  flex-basis: 468px;
}

.listingWrap ul li:nth-child(4n+4) {
  flex-basis: 672px;
}

.listingWrap ul li .contentWrap {
  padding-top: 300px;
}

.listingWrap ul li .contentWrap .logoWrapper {
  align-items: center;
  display: flex;
}

.listingWrap ul li .contentWrap .logoWrapper .agencylogo {
  border: 1px solid #111;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  min-width: 155px;
  padding: 10px 20px;
  display: inline-flex;
}

.listingWrap ul li .contentWrap .logoWrapper .agencylogo img {
  height: 30px;
}

@media (width <= 767px) {
  .listingWrap ul li .contentWrap .logoWrapper .agencylogo {
    min-width: 125px;
    padding: 10px 15px;
  }

  .listingWrap ul li .contentWrap .logoWrapper .agencylogo img {
    max-width: 55%;
  }
}

.listingWrap ul li .contentWrap .logoWrapper svg {
  width: 23px;
  height: 23px;
  margin-left: 20px;
  margin-right: 20px;
}

.listingWrap ul li .contentWrap p {
  max-width: calc(100% - 30px);
  margin-top: 17px;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
}

@media (width <= 767px) {
  .listingWrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .listingWrap ul {
    gap: 20px;
  }

  .listingWrap ul li {
    padding-bottom: 15px;
  }
}

@keyframes logo-animation {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  25% {
    opacity: .9;
    transform: scale(1);
  }

  75% {
    opacity: .9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.portfolioBanner {
  position: relative;
}

.portfolioBanner .bannerWrap {
  height: 550px;
}

.portfolioBanner .bannerWrap h1 {
  text-align: center;
  max-width: 790px;
  font-size: 6.8rem;
  font-weight: 300;
  line-height: 1;
}

.portfolioBanner .bannerWrap .rotater {
  text-align: center;
  width: 100%;
  min-height: 68px;
}

.portfolioBanner .bannerWrap .rotater span {
  color: #ffd400;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-family: Bellota Text, cursive;
  font-size: 6.8rem;
  animation: 6s linear infinite rotateWord;
  position: absolute;
  left: 0;
  overflow: hidden;
}

@media (width <= 767px) {
  .portfolioBanner .bannerWrap {
    align-items: start;
    height: 70vh;
    padding-top: 40px;
  }

  .portfolioBanner .bannerWrap h1 {
    font-size: 4rem;
  }

  .portfolioBanner .bannerWrap .rotater {
    min-height: 48px;
  }

  .portfolioBanner .bannerWrap .rotater span {
    font-size: 4rem;
  }
}

.portfolioBanner .logoWrap img {
  object-fit: scale-down;
  opacity: 0;
  width: 150px;
  height: 30px;
  animation: 1s infinite forwards logo-animation;
  position: absolute;
  transform: scale(0);
}

@media (width <= 1199px) {
  .portfolioBanner .logoWrap {
    display: none;
  }
}

.portfolioAnchor {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: linear-gradient(0deg, #04017214 0% 100%), #f3efeb29;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.portfolioAnchor .portfolioList .brandLogo {
  -o-transition: all ease .35s;
  min-width: 160px;
  transition: all .35s;
}

.portfolioAnchor .portfolioList .brandLogo .originalVersion {
  -o-transition: all ease .35s;
  transition: all .35s;
}

.portfolioAnchor .portfolioList .brandLogo:hover {
  background-color: #fff;
}

.portfolioAnchor .portfolioList .brandLogo:hover .originalVersion {
  opacity: 1;
}

@media (width <= 767px) {
  .portfolioAnchor .portfolioList {
    display: none;
  }
}

.portfolioListSection {
  background-color: #f3efeb;
  padding-top: 120px;
}

.portfolioListSection .portfolioListWrapper {
  gap: 30px;
  display: flex;
}

.portfolioListSection .portfolioListWrapper .blockWrap {
  flex-basis: calc(50% - 15px);
  gap: 50px;
}

.portfolioListSection .portfolioListWrapper .blockWrap .sectionTitle {
  margin-bottom: 81px;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card {
  position: relative;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .featuredWrapper {
  pointer-events: none;
  -o-transition: all ease .35s;
  height: 595px;
  margin-bottom: 30px;
  transition: all .35s;
  overflow: hidden;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .featuredWrapper .featuredImage {
  -o-transition: all ease .35s;
  transition: all .35s;
  transform: scale(1);
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .eyebrow {
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Trade Gothic LT Std, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .title {
  margin-bottom: 20px;
  font-family: Bellota Text, cursive;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.1;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .cta svg {
  height: 25px;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .cta svg path {
  -o-transition: all ease .35s;
  transition: all .35s;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card .cta:hover svg path {
  d: path("M28.2 10.8 18.9 20c-.1.1-.2.2-.4.2-.1 0-.2 0-.3-.2-.2-.2-.2-.5 0-.7l8.7-8.7H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5H27L18.3.9c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l9.2 9.2c.3.4.3 1 0 1.4z");
  d: "M28.2 10.8 18.9 20c-.1.1-.2.2-.4.2-.1 0-.2 0-.3-.2-.2-.2-.2-.5 0-.7l8.7-8.7H.5c-.3 0-.5-.2-.5-.5s.2-.5.5-.5H27L18.3.9c-.2-.2-.2-.5 0-.7.2-.2.5-.2.7 0l9.2 9.2c.3.4.3 1 0 1.4z";
}

.portfolioListSection .portfolioListWrapper .blockWrap .card:hover .featuredWrapper {
  border-radius: 20px;
}

.portfolioListSection .portfolioListWrapper .blockWrap .card:hover .featuredWrapper .featuredImage {
  transform: scale(1.15);
}

@media (width <= 767px) {
  .portfolioListSection {
    padding-top: 40px;
  }

  .portfolioListSection .portfolioListWrapper {
    flex-wrap: wrap;
  }

  .portfolioListSection .portfolioListWrapper .blockWrap {
    flex-basis: 100%;
    gap: 30px;
  }

  .portfolioListSection .portfolioListWrapper .blockWrap .sectionTitle {
    margin-bottom: 0;
  }

  .portfolioListSection .portfolioListWrapper .blockWrap .card .featuredWrapper {
    height: 293px;
  }

  .portfolioListSection .portfolioListWrapper .blockWrap .card .eyebrow {
    font-size: 1.4rem;
  }

  .portfolioListSection .portfolioListWrapper .blockWrap .card .title {
    font-family: Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.15;
  }
}

@keyframes rotateWord {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 0;
    transform: translateY(30px);
  }

  8% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  29% {
    opacity: 0;
    transform: translateY(-30px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=main.css.map */
