:root {
  --H1_FontSize: 52px;
  --H2_FontSize: 44px;
  --H3_FontSize: 32px;
  --H4_FontSize: 24px;
  --H5_FontSize: 20px;
  --H6_FontSize: 16px;
  --Text_Metrics:44px;
  --Primary-White: #F3F4FA;
  --Font-Size-BodyLg_FontSize: 20px;
  --Primary-Red:#ED1B3B;
  --Primary-Black: #05040F;
  --Text-Colour-text-body-on-dark: #C0C4CC;
  --Grey-Grey-100:#1A1D25;
  --Text-Colour-text-color-black:#05040F;
  --Space-space-7:96px;
  --section-outer-padding-vertical-md: 80px;
  --Card-Padding-padding-xl:48px;
}

@media (max-width: 768px) {
  :root {
    --H1_FontSize: 40px;
    --H2_FontSize: 32px;
    --H3_FontSize: 24px;
    --H4_FontSize: 20px;
    --H5_FontSize: 16px;
    --Font-Size-BodyLg_FontSize: 16px;
    --Text_Metrics:36px;
    --Space-space-7:48px;
    --section-outer-padding-vertical-md: 48px;
    --Card-Padding-padding-xl:20px;
  }
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  overflow: hidden;
}

ul {
  list-style: disc;
  margin-bottom: 0;
  padding-left: 20px;
}

ol {
  list-style: decimal;
  margin-bottom: 0;
  padding-left: 20px;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

*:focus::-webkit-input-placeholder {
  color: transparent !important;
}

*:focus::-moz-placeholder {
  color: transparent !important;
}

*:focus:-moz-placeholder {
  color: transparent !important;
}

*:focus:-ms-input-placeholder {
  color: transparent !important;
}

p,
li {
  line-height: 1.4;
}

p {
  margin-bottom: 10px;
}

html {
  height: 100%;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  min-height: 100vh;
  background: var(--Primary-Black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

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

.col-12,
.col-md-3,
.col-md-7,
.col-md-9,
.col-md-10,
.col-md-11,
.col-sm-6,
.col-sm-7,
.col-sm-5,
.col-md-6,
.col-md-4,
.col-sm-3,
.col-xm-6,
.col-md-12,
.col-md-8,
.col-md-5,
.col-md-2,
.col-sm-4,
.col-sm-8 {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.col-12.no-pad,
.col-md-3.no-pad,
.col-md-7.no-pad,
.col-md-9.no-pad,
.col-md-10.no-pad,
.col-md-11.no-pad,
.col-sm-6.no-pad,
.col-sm-7.no-pad,
.col-sm-5.no-pad,
.col-md-6.no-pad,
.col-md-4.no-pad,
.col-sm-3.no-pad,
.col-xm-6.no-pad,
.col-md-12.no-pad,
.col-md-8.no-pad,
.col-md-5.no-pad,
.col-md-2.no-pad,
.col-sm-4.no-pad,
.col-sm-8.no-pad {
  padding-left: 0;
  padding-right: 0;
}

.color-white {
  color: #fff;
}
.color-white * {
  color: #fff !important;
}
.color-white a {
  color: #fff;
}
.color-white .label,
.color-white .read-more {
  color: #fff;
}

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

.main-block {
  flex: 1 0 auto;
  height: 100%;
  overflow: hidden;
}
.main-block.overflow_vis {
  overflow: visible;
}

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

.main-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s ease;
  z-index: 1000;
}
.main-header.scroll {
  background: var(--Blue-Blue-100, #05040f);
  backdrop-filter: blur(20px);
}
.main-header.scroll .main_nav > li ul {
  background: linear-gradient(180deg, rgba(5, 4, 15, 0.5) 55.72%, var(--Blue-Blue-100, #05040f) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(243, 244, 250, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.main-header.hide {
  transform: translateY(-100%);
}
.main-header > .container {
  display: flex;
  justify-content: space-between;
}
.main-header .main_nav {
  display: flex;
  list-style: none;
  padding: 0;
  border-radius: 50px;
  /* Glass effect */
  background: rgba(253, 253, 253, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(243, 244, 250, 0.6);
  border-radius: 100px;
  /* Optional subtle depth */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.main-header .main_nav > li {
  position: relative;
  flex: 1;
  white-space: nowrap;
}
.main-header .main_nav > li + li {
  background-image: url("../img/home/Divider.svg");
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 991px) {
  .main-header .main_nav > li + li {
    background-image: none;
    /*display: flex;
    align-items: center;
    justify-content: flex-start;*/
  }
}
.main-header .main_nav > li:before {
  position: absolute;
  right: 16px;
  top: 8px;
  left: 16px;
  bottom: 8px;
  content: "";
  display: block;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
}
.main-header .main_nav > li:hover:before {
  opacity: 1;
}
.main-header .main_nav > li:hover:after {
  transform: rotate(180deg);
}
.main-header .main_nav > li:hover ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition-delay: 0s;
}
.main-header .main_nav > li:focus-within:before {
  opacity: 1;
}
.main-header .main_nav > li:focus-within ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.main-header .main_nav > li ul:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.main-header .main_nav > li.menu-item-has-children > a {
  padding-right: 50px;
}
.main-header .main_nav > li.menu-item-has-children:after {
  top: 20px;
  position: absolute;
  right: 23px;
  content: "";
  width: 12px;
  height: 7px;
  background: url("../img/home/angle_d.svg") no-repeat, center;
}
.main-header .main_nav > li ul {
  list-style: none;
  padding: 8px;
  position: absolute;
  top: calc(100% - 0px);
  left: 0;
  border-radius: 16px;
  border: 1px solid var(--Primary-White);
  background: linear-gradient(180deg, rgba(5, 4, 15, 0.5) 55.72%, var(--Blue-Blue-100, #05040f) 100%);
  min-width: 192px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  backdrop-filter: blur(50px);
  margin-top: 5px;
}
.main-header .main_nav > li ul:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5px;
}
.main-header .main_nav > li ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  backdrop-filter: blur(20px);
  background: rgba(253, 253, 253, 0.08);
  z-index: -1;
  border-radius: 16px;
}
@media (max-width: 991px) {
  .main-header .main_nav > li ul:before {
    background: transparent;
  }
}
.main-header .main_nav > li ul li {
  margin: 0;
}
.main-header .main_nav > li ul li + li {
  margin-top: 8px;
}
.main-header .main_nav > li ul a {
  text-align: left;
  display: block;
  padding: 6px 12px;
  position: relative;
  outline: none;
}
.main-header .main_nav > li ul a:before {
  position: absolute;
  right: 16px;
  top: 0px;
  left: 0px;
  /* bottom: 8px; */
  content: "";
  display: block;
  border-radius: 16px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
}
.main-header .main_nav > li ul a:hover:before {
  opacity: 1;
}
.main-header .main_nav > li ul a:focus, .main-header .main_nav > li ul a:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -1px;
  border-radius: 8px;
}
.main-header .main_nav > li ul a:focus:before, .main-header .main_nav > li ul a:focus-visible:before {
  opacity: 1;
}
.main-header .main_nav > li > a {
  padding: 14px 28px;
  display: block;
  position: relative;
  outline: none;
}
.main-header .main_nav > li > a:focus {
  outline: 1px solid #fff;
  outline-offset: -1px;
  border-radius: 16px;
}
.main-header .main_nav > li > a:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -1px;
  border-radius: 16px;
}
.main-header .main_nav a {
  color: #fff;
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.28px;
  text-decoration: none;
}

.btn_nav {
  display: none !important;
}
@media (max-width: 991px) {
  .btn_nav {
    display: flex !important;
    justify-content: center;
    margin-top: 44px;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .btn_nav {
    margin-top: 44px;
    max-width: unset;
  }
}

.hero_section {
  padding: 260px 5px;
  background-image: var(--hero-bg-image, none);
  background-size: cover, cover, cover, cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 767px) {
  .hero_section {
    background-image: var(--hero-bg-image-mobile, var(--hero-bg-image));
  }
}
@media (min-width: 1441px) {
  .hero_section {
    background-position: center;
    background-size: auto 100%;
  }
  .hero_section:not(.video_in) {
    -webkit-mask-image: linear-gradient(to right, #010009 70%, transparent 100%);
    mask-image: linear-gradient(to right, #010009 70%, transparent 100%);
  }
  .hero_section .videobg {
    width: 70%;
  }
}
@media (min-width: 1600px) {
  .hero_section:not(.video_in) {
    -webkit-mask-image: linear-gradient(to right, #010009 71%, transparent 99%);
    mask-image: linear-gradient(to right, #010009 71%, transparent 99%);
  }
}
@media (min-width: 1650px) {
  .hero_section:not(.video_in) {
    -webkit-mask-image: linear-gradient(to right, #010009 71%, transparent 84%);
    mask-image: linear-gradient(to right, #010009 71%, transparent 84%);
  }
}
@media (min-width: 1441px) and (min-height: 800px) {
  .hero_section {
    min-height: 800px;
    padding: 80px 0;
    display: flex;
    align-items: center;
  }
}
.hero_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, var(--Red-Red-100, #010009) 11.03%, rgba(101, 0, 15, 0) 39.22%);
}
.hero_section.video_in:before {
  background: linear-gradient(90deg, var(--Red-Red-100, #010009) 29.03%, rgba(101, 0, 15, 0) 59.22%);
}
.hero_section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/home/Gradient.webp");
  background-size: 100% 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.hero_section {
  /*&:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;

    background: linear-gradient(90deg, #05040F 0%, rgba(5, 4, 15, 0) 100%);
    pointer-events: none;

    @media (min-width: 1441px) {
      left: calc((100vw - 1920px) - 30px);

    }
  }

  &:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(270deg, #05040F 0%, #05040F 20%, rgba(5, 4, 15, 0.7) 60%, rgba(5, 4, 15, 0) 100%);
    pointer-events: none;

    @media (min-width: 1441px) {
      right: calc((100vw - 1920px) - 30px);
      width: 500px;
    }

  }*/
}
.hero_section .h1_title {
  color: var(--Primary-White);
  margin-bottom: 12px;
  margin-top: 12px;
}
.hero_section p {
  color: #c8ccd3;
  font-size: var(--Font-Size-BodyLg_FontSize);
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.hero_section .container {
  position: relative;
  z-index: 2;
}
.hero_section .container > * {
  max-width: 550px;
}

.videobg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  /* Set video container element width here */
  height: 100%;
  /* Set video container element height here */
  overflow: hidden;
}

/* horizontally center the video */
.videobg-width {
  position: absolute;
  width: 100%;
  /* Change width value to cover more area*/
  height: 100%;
  left: -9999px;
  right: -9999px;
  margin: auto;
}

/* set video aspect ratio and vertically center */
.videobg-aspect {
  position: absolute;
  width: 100%;
  height: 0;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  overflow: hidden;
}

.videobg-make-height {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.videobg-hide-controls {
  box-sizing: content-box;
  position: relative;
  height: 100%;
  width: 100%;
  /* Vimeo timeline and play button are ~55px high */
  padding: 55px 97.7777px;
  /* 16:9 ratio */
  top: -55px;
  left: -97.7777px;
  /* 16:9 ratio */
}

.videobg iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0 none;
}

.main-sect {
  padding: 120px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main-sect.pad-md {
  padding: var(--section-outer-padding-vertical-md) 0;
}
.main-sect.pad-t-sm {
  padding-top: 45px;
}
.main-sect.pad-b-md {
  padding-bottom: 60px;
}
.main-sect p,
.main-sect li {
  font-size: var(--Font-Size-BodyLg_FontSize);
}

.section-service {
  position: relative;
}
.section-service .background_animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/home/section-service-bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transition: 0.7s ease;
}
.section-service .background_animated:nth-child(2) {
  background-image: url("../img/home/section-service-bg2.webp");
  z-index: 1;
  opacity: 0;
}
.section-service .background_animated:nth-child(3) {
  background-image: url("../img/home/section-service-bg3.webp");
  z-index: 2;
  opacity: 0;
}
.section-service .background_animated:nth-child(4) {
  background-image: url("../img/home/section-service-bg4.webp");
  z-index: 3;
  opacity: 0;
}
.section-service.main-sect {
  padding-bottom: 0;
}
.section-service .container {
  position: relative;
  z-index: 5;
}
.section-service:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg, #010009 13.32%, rgba(32, 29, 111, 0) 100%), rgba(5, 4, 15, 0);
}

.card_content {
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(214, 218, 224, 0.65) 0%, rgba(170, 176, 185, 0.65) 100%);
  box-shadow: 0 8px 24px 0 rgba(5, 4, 15, 0.2);
  backdrop-filter: blur(20px);
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  min-height: auto;
}
.card_content > div {
  flex: 0 0 50%;
  max-width: 50%;
}
@media (min-width: 768px) {
  .card_content .text {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  .card_content .img {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
.card_content h3 {
  color: var(--Text-Colour-text-color-black);
  font-size: var(--H3_FontSize);
  font-style: normal;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.6px;
  margin-bottom: 16px;
}
.card_content .text {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
}
.card_content .text p {
  color: var(--Text-Colour-text-color-black);
}
.card_content .text div {
  flex: 1 1 auto;
}
.card_content .img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 400px;
}
.card_content .img img {
  width: auto;
  height: 100%;
  max-height: none;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 16px 16px 0px;
}
@media (max-width: 500px) {
  .card_content .img img {
    border-radius: 0px 0px 16px 16px;
    min-height: 300px;
  }
}

.card_content_item-1 .card_content {
  background: linear-gradient(180deg, var(--Grey-Grey-20, rgba(214, 218, 224, 0.65)) 0%, var(--Grey-Grey-40, rgba(170, 176, 185, 0.65)) 100%);
}

.card_content_item-2 .card_content {
  background: linear-gradient(180deg, var(--Grey-Grey-10, rgba(238, 241, 243, 0.65)) 0%, var(--Grey-Grey-30, rgba(192, 196, 204, 0.65)) 100%);
}

.card_content_item-3 .card_content {
  background: linear-gradient(180deg, var(--Blue-Blue-10, rgba(230, 230, 243, 0.65)) 0%, var(--Blue-Blue-30, rgba(140, 140, 192, 0.65)) 100%);
}

.card_content_item-4 .card_content {
  background: linear-gradient(180deg, var(--Blue-Blue-30, rgba(140, 140, 192, 0.65)) 0%, var(--Blue-Blue-60, rgba(26, 23, 90, 0.65)) 100%);
}

.pin_card_animation {
  position: relative;
  z-index: 5;
  /* &:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, rgb(1 0 9) 0.32%, rgba(32, 29, 111, 0) 100%);
  }*/
}
.pin_card_animation:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 260px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 4, 15, 0) 16.5%, var(--Blue-Blue-100, #05040f) 100%);
}

.card_animation {
  height: 100vh;
  position: sticky;
  top: 0;
}
.card_animation .card_content_item {
  padding-top: 60px;
}
@media (max-width: 340px) {
  .card_animation .card_content_item:last-child {
    padding-top: 90px;
  }
}

.border_box {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(214, 218, 224, 0.2) 0%, rgba(170, 176, 185, 0.2) 100%), #f3f4fa;
  box-shadow: 0 1px 4px 0 rgba(5, 4, 15, 0.2);
  padding: 24px;
  height: 100%;
}
.border_box .border-box__title {
  color: var(--Primary-Red);
  font-family: "Montserrat";
  font-size: var(--Text_Metrics);
  font-style: normal;
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: -2.2px;
  margin-bottom: 10px;
}

.grey_rounded {
  padding: 96px 48px;
  border-radius: 32px;
  background: linear-gradient(0deg, rgba(184, 184, 217, 0.4) 0%, rgba(230, 230, 243, 0.4) 100%), #f3f4fa;
}

.section-case-study {
  background-image: -webkit-image-set(url("../img/home/section-case-study-bg.webp") type("image/webp"), url("../img/home/section-case-study-bg.png") type("image/png"));
  background-image: image-set(url("../img/home/section-case-study-bg.webp") type("image/webp"), url("../img/home/section-case-study-bg.png") type("image/png"));
  background-size: 100% 100%;
}

.posts_slider {
  max-width: 844px;
  margin: 48px auto;
  overflow: visible;
}
.posts_slider .item_sl.swiper-slide-active .item_post {
  transform: scale(1);
}
.posts_slider .item_sl .img img {
  border-radius: 8px;
}
.posts_slider .item_post {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  padding: var(--Card-Padding-padding-xl);
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(140, 140, 192, 0.2) 0%, rgba(230, 230, 243, 0.2) 100%);
  text-decoration: none;
  box-shadow: 0 8px 24px 0 rgba(5, 4, 15, 0.2);
  -moz-column-gap: 44px;
       column-gap: 44px;
  row-gap: 30px;
  transform: scale(0.9);
  min-height: 420px;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}
.posts_slider .item_post:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(140, 140, 192, 0.35) 0%, rgba(230, 230, 243, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.posts_slider .item_post:hover:before {
  opacity: 1;
}
.posts_slider .item_post .img {
  aspect-ratio: 552/380;
  align-self: center;
  overflow: hidden;
}
.posts_slider .item_post .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.posts_slider .item_post > div {
  flex-basis: calc(50% - 22px);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.posts_slider .item_post .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.posts_slider .item_post .text div {
  flex: 1 1 auto;
}
.posts_slider .item_post .card__title {
  color: var(--Primary-White);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.18;
  /* 118.182% */
  letter-spacing: -0.44px;
  margin: 16px 0;
}
.posts_slider .item_post p {
  color: var(--Text-Colour-text-body-on-dark);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  /* 150% */
}
.posts_slider .arows_posts_slider {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 80px;
}
.posts_slider .sw-button-next,
.posts_slider .sw-button-prev {
  display: flex;
  width: 52px;
  height: 52px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 1000px;
  background: var(--Primary-White);
  box-shadow: 0 8px 24px 0 rgba(5, 4, 15, 0.2);
}
.posts_slider .sw-button-next svg,
.posts_slider .sw-button-prev svg {
  transition: 0.3s ease;
}
.posts_slider .sw-button-next.swiper-button-lock,
.posts_slider .sw-button-prev.swiper-button-lock {
  display: none;
}
.posts_slider .sw-button-next:hover svg {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .posts_slider .sw-button-next:hover svg {
    transform: translateX(0px);
  }
}
.posts_slider .sw-button-prev:hover svg {
  transform: translateX(-4px);
}
@media (max-width: 767px) {
  .posts_slider .sw-button-prev:hover svg {
    transform: translateX(0px);
  }
}

.insight-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.insight-card .card-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}
.insight-card .card-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(5, 4, 15, 0) 40%, rgba(5, 4, 15, 0.65) 100%);
  background-blend-mode: multiply, normal, normal;
  transition: opacity 0.6s ease;
  z-index: 1;
  border-radius: 16px;
}
.insight-card .card-image:hover:before {
  opacity: 0.6;
}
.insight-card .card-image:hover {
  cursor: pointer;
}
.insight-card .card-image img {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  border-radius: 16px;
}
.insight-card .card-image:hover img {
  transform: scale(1.03);
}
.insight-card .card-image .card-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.insight-card .card-image .card-link:hover svg {
  transform: translateX(4px);
}
.insight-card .card-image .card-link svg {
  transition: 0.3s ease;
}
.insight-card .card-image .card-content {
  background: transparent;
  width: 100%;
  z-index: 3;
}
.btn_st {
  color: var(--Primary-White);
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.28px;
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  background: linear-gradient(180deg, #ed1b3b 0%, #b3152e 100%);
  text-decoration: none;
  max-height: 41px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.btn_st.bg_white {
  color: var(--Grey-Grey-100);
  background: linear-gradient(180deg, #eef1f3 0%, #c0c4cc 100%);
}
.btn_st.bg_transparent {
  border: 1px solid var(--Primary-White);
  background: transparent;
}
.btn_st:hover {
  opacity: 0.9;
}
.btn_st:hover svg {
  transform: translateX(4px);
}
.btn_st.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn_st svg {
  transition: 0.3s ease;
}
.btn_st.left_arrow:hover svg {
  transform: rotate(180deg) translateX(4px);
}
.btn_st.left_arrow svg {
  transform: rotate(180deg);
}

.mob-menu,
.toggle-menu {
  display: none;
}

.top_subtitle {
  color: var(--Primary-Red);
  font-size: var(--H6_FontSize);
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  /* 125% */
  margin-bottom: 12px;
  display: block;
}

.h1_title {
  font-size: var(--H1_FontSize);
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 52px */
  letter-spacing: -2.6px;
}

.h2_title {
  color: var(--Primary-White);
  font-family: "Montserrat";
  font-size: var(--H2_FontSize);
  font-style: normal;
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -2.2px;
}

.h3_title {
  font-family: "Montserrat";
  font-size: var(--H3_FontSize);
  font-style: normal;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.post-content__img + hr {
  display: none;
}

.text-body-on-dark p,
.text-body-on-dark li {
  color: var(--Text-Colour-text-body-on-dark);
}

.mar-b80 {
  margin-bottom: var(--section-outer-padding-vertical-md);
}

.mar-b50 {
  margin-bottom: 50px;
}

.mar-b16 {
  margin-bottom: 16px;
}

.mar-b40 {
  margin-bottom: 40px;
}

.mar-t64 {
  margin-top: 64px;
}

.mar-t60 {
  margin-top: 60px;
}

.bg_black {
  background-color: var(--Primary-Black);
}

.mar-t40 {
  margin-top: 40px;
}

.mar-t20 {
  margin-top: 20px;
}

.mar-t30 {
  margin-top: 30px;
}

.mar-t10 {
  margin-top: 10px;
}

.mar-t_space-7 {
  margin-top: var(--Space-space-7);
}

.pad-t-none {
  padding-top: 0 !important;
}

.pad-b-none {
  padding-bottom: 0 !important;
}

.text-right {
  text-align: right;
}

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

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
}
@media (min-width: 992px) {
  .offset-md1 {
    margin-left: 8.33333%;
  }
  .container {
    max-width: 960px;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-8 {
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .toggle_submenu {
    display: none;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  .grey_rounded .col-md-5 {
    flex: 0 0 488px;
    max-width: 488px;
  }
  .grey_rounded .col-md-7 {
    flex: 0 0 585px;
    max-width: 585px;
  }
  .grey_rounded .col-sm-5 {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .grey_rounded .col-sm-7 {
    flex: 0 0 674px;
    max-width: 674px;
  }
}
@media (max-width: 991px) {
  .menu-item-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .main-header {
    padding: 12px 0;
    background: rgba(5, 4, 15, 0.9);
  }
  .main-header .logo {
    max-width: 110px;
  }
  .main-header nav + .btn_st {
    display: none;
  }
  .main-header .container {
    position: relative;
    align-items: center;
  }
  .main-header nav {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    text-align: left;
    margin-top: 20px;
    transition: 0.3s ease;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    padding: 24px 20px;
  }
  .main-header nav.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    margin-top: 10px;
    background-color: var(--Primary-Black);
  }
  .main-header nav .toggle_submenu {
    cursor: pointer;
    /*position: absolute;
    width: 30px;
    height: 30px;*/
    width: 40px;
    height: 40px;
    right: 10px;
    top: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }
  .main-header nav .toggle_submenu.open {
    transform: rotate(180deg);
  }
  .main-header nav .main_nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 0px;
    background-color: var(--Primary-Black);
    min-width: 200px;
    border: none;
  }
  .main-header nav .main_nav a {
    text-align: left;
  }
  .main-header nav .main_nav li {
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    width: 200px;
  }
  .main-header nav .main_nav li > a {
    display: flex;
    align-items: center;
    height: 40px;
    position: relative;
    padding-right: 70px;
    font-size: 18px;
    padding: 8px 0;
  }
  .main-header nav .main_nav li:before {
    display: none;
  }
  .main-header nav .main_nav li:after {
    display: none;
  }
  .main-header nav .main_nav li ul {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    margin-top: 0 !important;
    background-color: transparent !important;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: blur(0px) !important;
    width: 100%;
  }
  .main-header nav .main_nav li ul li {
    height: auto;
  }
  .main-header nav .main_nav li ul li a {
    padding: 12px;
    color: var(--New-Grey-Grey-30, #c9cdd4);
    height: 43px;
    font-size: 16px;
  }
  .main-header nav .main_nav li.menu-item-has-children .toggle_submenu {
    position: absolute;
    top: 0;
    right: 0;
  }
  .main-header nav .main_nav li.menu-item-has-children.open ul {
    max-height: 500px;
    display: block !important;
    padding-top: 8px;
  }
  .main-sect {
    padding: 100px 0;
  }
  .card_content p {
    font-size: 16px;
  }
  .toggle-menu {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid var(--Primary-White);
    background: rgba(253, 253, 253, 0.05);
    flex: 0 0 40px;
  }
  .toggle-menu span {
    width: 100%;
    height: 2px;
    display: block;
    position: relative;
  }
  .toggle-menu span.open .before {
    transform: rotate(45deg);
    top: 0;
    transition: 0.3s all ease 0.4s, top 0.3s ease 0s;
  }
  .toggle-menu span.open .middle {
    opacity: 0;
    transition: 0.3s all ease 0s;
  }
  .toggle-menu span.open .after {
    bottom: 0;
    transform: rotate(-45deg);
    transition: 0.3s all ease 0.4s, bottom 0.3s ease 0s;
  }
  .toggle-menu span span {
    position: absolute;
    width: 100%;
    left: 0;
    border-radius: 2px;
    background-color: var(--Primary-Red);
  }
  .toggle-menu span span.before {
    top: -6px;
    width: 100%;
    left: 0;
    transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
  }
  .toggle-menu span span.after {
    bottom: -6px;
    width: 100%;
    left: 0;
    transition: 0.3s all ease 0s, bottom 0.3s ease 0.4s;
  }
  .posts_slider {
    margin-bottom: 0;
    margin-top: 25px;
  }
  .posts_slider .item_post {
    -moz-column-gap: 24px;
         column-gap: 24px;
    align-items: center;
    min-height: 374px;
    padding: 32px;
  }
  .posts_slider .item_post .img img {
    min-height: 310px;
  }
  .posts_slider .item_post > div {
    flex-basis: calc(50% - 12px);
    min-height: unset;
    max-height: unset;
  }
  .posts_slider .item_post .btn_st {
    margin-top: 20px;
  }
  .posts_slider .arows_posts_slider {
    margin-top: 30px;
  }
  .card_animation:after {
    height: 87px;
    background: linear-gradient(180deg, rgba(5, 4, 15, 0) 16.5%, var(--Blue-Blue-100, rgba(5, 4, 15, 0.73)) 100%);
  }
}
@media (max-width: 767px) {
  .hero_section.video_in {
    padding: 0 5px 80px 5px;
  }
  .hero_section.video_in .videobg {
    position: relative;
    margin: 0 -5px;
    width: auto;
    height: 350px;
    margin-bottom: 60px;
  }
  .hero_section:before {
    display: none;
  }
  .card_content {
    display: block;
    max-width: 470px;
    margin-left: auto;
    margin-right: auto;
  }
  .card_content > div {
    max-width: 100%;
  }
  .card_content .text {
    padding: 20px;
    min-height: 260px;
  }
  .card_content .text .btn_st {
    margin-top: 20px;
  }
  .card_content .img {
    height: 340px;
    min-height: 0;
  }
  .card_content .img img {
    border-radius: 16px;
    width: 100%;
  }
  .grey_rounded {
    padding: 40px 20px;
    border-radius: 16px;
  }
  .grey_rounded .h3_title {
    margin-bottom: 0;
  }
  .grey_rounded .border-radius {
    padding: 20px;
  }
  .posts_slider .item_post {
    min-height: 500px;
    max-height: 520px;
    row-gap: 12px;
  }
  .posts_slider .item_post > div {
    align-items: stretch;
  }
  .posts_slider .item_post .text {
    flex: 1;
  }
  .posts_slider .item_post .btn_st {
    margin-top: auto;
  }
  .posts_slider .item_post h3 {
    font-size: 18px;
    margin: 8px 0;
  }
}
@media (max-width: 550px) {
  .main-header nav .main_nav li {
    width: 100%;
  }
  .posts_slider {
    max-width: 280px;
  }
  .posts_slider .item_post {
    flex-direction: column;
    padding: 20px;
  }
  .posts_slider .item_post .img {
    margin-bottom: 20px;
  }
  .posts_slider .item_post .img img {
    min-height: unset;
  }
}
@media (max-width: 500px) {
  .card_content .img {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */