@font-face {
  font-family: "QuicksandSemiBold";
  src: url("../fonts/QuicksandSemiBold.woff2") format("truetype");
  font-display: swap;
  /* Legacy iOS */
}
@font-face {
  font-family: "QuicksandRegular";
  src: url("../fonts/QuicksandRegular.woff2") format("truetype");
  font-display: swap;
  /* Legacy iOS */
}
@font-face {
  font-family: "QuicksandMedium";
  src: url("../fonts/QuicksandMedium.woff2") format("truetype");
  font-display: swap;
  /* Legacy iOS */
}
body {
  margin: 0px;
  padding: 0px;
  font-family: "QuicksandRegular", "lato", sans-serif;
  background-position: top center;
  background-repeat: no-repeat;
  font-weight: normal;
  font-size: 16px;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  color: #111;
  letter-spacing: 0.1px;
  overflow-x: hidden;
}

@media screen and (max-width: 1080px) {
  body {
    padding: 10px;
  }
}
a:hover {
  text-decoration: none;
}

:root {
  --orange-color: rgba(255, 110, 1, 1);
  --Green-color: #11c27f;
  --blue-color: rgba(0, 142, 206, 1);
  --light-blue-color: rgba(58, 130, 254, 1);
  --white-color: rgba(255, 255, 255, 1);
  --yellow-color: rgba(245, 166, 1, 1);
  --light-green-color: rgba(7, 171, 177, 1);
  --dark-blue--color: #070a3d;
  --black-color: rgba(61, 61, 61, 1);
  --light-blackColor: #7d7f80;
  --red-color: rgba(228, 60, 92, 1);
  --light-red-color: rgba(253, 239, 242);
  --darkBlack-color: #111;
  --purple-color: #6959a1;
  --dark-purple-color: #4822ce;
  --light-purple-color: #6959a1;
  --purple-color-100: rgba(230, 224, 236, 1);
  --purple-color-200: rgba(229, 223, 236, 1);
  --main-color: #6959a1;
  --light-main-color: #968ac4;
  --main-dark-color: #4d3a94;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

a[href]:hover {
  color: var(--Green-color);
  transition: color 0.3s;
}

a[href] {
  color: var(--purple-color);
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "QuicksandSemiBold";
  font-weight: bold;
}

h4,
h5,
h6 {
  font-family: "QuicksandSemiBold";
  margin: 1em 0;
  font-weight: bold;
}
h4 {
  font-size: 1.07rem;
}
p {
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 1080px) {
  p {
    line-height: 1.6em;
  }
}
img {
  max-width: 100%;
  height: auto;
}

sub,
sup {
  position: relative;
  font-size: 50%;
  line-height: 0;
}

.clear {
  clear: both;
}

p a[href],
li > a[href] {
  color: var(--purple-color);
  transition: all ease-in-out 0.4s;
}

p a[href]:hover,
li > a[href]:hover {
  color: var(--Green-color);
}

.row-layout {
  display: flex;
}

@media screen and (max-width: 1080px) {
  .row-layout {
    flex-direction: column;
  }
}
@media screen and (min-width: 1081px) {
  .row-layout {
    flex-direction: row;
  }
}
.gotop {
  position: fixed;
  border: 1px solid white;
  background: none;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  bottom: 140px;
  right: 10px;
  z-index: 100;
  box-shadow: 1px 0 20px rgba(126, 126, 126, 0.5);
  cursor: pointer;
  outline: none;
  display: none;
  background: var(--purple-color);
}

.gotop > span {
  font-size: 24px;
  color: #d4d0d0;
}

.headLayout {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white-color);
  z-index: 1000;
}

@media screen and (min-width: 1081px) {
  .headLayout {
    width: 100%;
    background: none;
  }
  .header-shell {
    position: relative;
    width: 100%;
    z-index: 100;
  }
  .header-shell .naviBlock {
    padding: 15px 0;
  }
  .header-shell .naviBlock > .row-layout {
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 1080px) {
  .header-shell .naviBlock {
    padding-bottom: 20px;
  }
}
.logo {
  position: relative;
  width: 300px;
  transition: all ease-in-out 0.4s;
  display: block;
}

/**************************************************mobile-menu****************************************************/
@media screen and (max-width: 1080px) {
  .mobile-menu svg {
    height: 60px;
    position: absolute;
    width: 60px;
  }
  .mobile-menu {
    height: 60px;
    width: 60px;
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 200;
  }
  /*    .burger {
          filter: url(#gooeyness);
      }*/
  .mobile-menu .x {
    transform: scale(0);
    transition: transform 400ms;
  }
  .mobile-menu .line {
    fill: none;
    stroke: white;
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform-origin: 50%;
    transition: stroke-dasharray 500ms 200ms, stroke-dashoffset 500ms 200ms, transform 500ms 200ms;
  }
  .x .line {
    stroke-width: 5.5px;
  }
  .mobile-menu .line2 {
    stroke-dasharray: 40 200;
    stroke-dashoffset: 0px;
  }
  .mobile-menu .line3 {
    stroke-dasharray: 40 179;
    stroke-dashoffset: 0px;
  }
  .active .line {
    transition: stroke-dasharray 500ms, stroke-dashoffset 500ms, transform 500ms;
  }
  .active.mobile-menu .line1 {
    transform: scale(0, 1);
    transition: transform 500ms 100ms;
  }
  .active.mobile-menu .line2 {
    stroke-dasharray: 5px 200;
    stroke-dashoffset: -164px;
  }
  .active.mobile-menu .line3 {
    stroke-dasharray: 5px 179;
    stroke-dashoffset: -142px;
  }
  .active.mobile-menu .x {
    transform: scale(1);
    transition: transform 400ms 350ms;
  }
}
@media screen and (min-width: 1081px) {
  .mobile-menu {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .header-contact {
    display: none;
  }
}
/**************************************************mobile-menu****************************************************/
/*.navigation_title {
  font-family: "AileronSemiBold"; }*/
nav {
  position: relative;
}

nav > ul {
  position: relative;
}

nav > ul > li {
  position: relative;
}

nav > ul > li > a {
  position: relative;
}

nav > ul > li span {
  position: relative;
  color: #111;
}

nav > ul > li > ul {
  position: relative;
  display: none;
}

nav > ul > li ul a {
  color: #111;
}

nav > ul > li ul li {
  line-height: 1.5em;
}

nav > ul > li ul li > a {
  line-height: 1.8em;
  display: block;
}

nav > ul > li ul li > a:hover {
  color: var(--yellow-color) !important;
}

nav .nav-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  nav {
    min-height: 50px;
    background: var(--purple-color);
  }
  nav::before {
    position: relative;
    content: "Menu";
    left: 10px;
    top: 10px;
    color: #fff;
    font-weight: bold;
    font-size: 1.4em;
    height: 100%;
  }
  nav > ul {
    display: none;
    padding: 0.2em 0.7em;
    margin-top: 1.5em;
    z-index: 1000;
  }
  nav > ul > li {
    position: relative;
    margin: 0.3em 0;
  }
  nav > ul > li > a {
    font-size: 1.2em;
  }
  nav > ul > li li {
    position: relative;
  }
  nav > ul > li ul {
    position: relative;
    padding-left: 0.8em;
    background: none;
  }
  nav > ul > li span {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
    z-index: 1000;
  }
  nav > ul > li span::before {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  nav .nav-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 2px;
    width: 34px;
    height: 44px;
    overflow: hidden;
    white-space: nowrap;
    color: transparent;
    z-index: 100;
  }
  nav .nav-btn i,
  nav .nav-btn i::before,
  nav .nav-btn i::after {
    position: absolute;
    display: inline-block;
    height: 3px;
    width: 24px;
    background: #ffffff;
  }
  nav .nav-btn i {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px;
    transition: background 0.2s;
  }
  nav .nav-btn i::after,
  nav .nav-btn i::before {
    content: "";
    right: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
    transform-origin: 0% 50%;
    transition: transform 0.2s;
  }
  nav .nav-btn i::after {
    top: 6px;
  }
  nav .nav-btn i::before {
    top: -6px;
  }
  nav.visible .nav-btn i {
    /* hide line in the center */
    background: rgba(255, 255, 255, 0);
  }
  nav.visible .nav-btn i::after,
  nav.visible .nav-btn i::before {
    background: white;
  }
  nav.visible .nav-btn i::after {
    transform: translateX(4px) translateY(2px) rotate(-45deg);
  }
  nav.visible .nav-btn i::before {
    transform: translateX(4px) translateY(-3px) rotate(45deg);
  }
  nav.visible > ul {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  nav {
    position: unset;
  }
  nav > ul {
    display: flex;
    justify-content: flex-end;
    position: unset;
  }
  nav > ul > li {
    position: unset;
    margin: 0 1.5em;
    padding: 1.1em 0.2em;
  }
  nav > ul > li.normal > a {
    position: relative;
  }
  /* nav > ul > li.normal > a::after {
    position: absolute;
    content: "\e90e";
    font-family: "icomoon";
    color: var(--purple-color);
    right: -20px;
    top: 0px;
    font-weight: normal;
  }*/
  nav > ul > li > a {
    font-size: 1.2em;
    font-family: "QuicksandMedium";
    text-transform: uppercase;
    color: #111 !important;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul .naviView > li {
    position: relative;
    padding-left: 0.8em;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul .naviView > li::before {
    position: absolute;
    content: "\e923";
    left: 0;
    font-family: "icomoon";
    color: #111;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul .naviView > li span {
    display: none;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul ul {
    position: relative;
    /*  display: block; */
    left: 0;
    padding-top: 0;
    padding-left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul ul::-webkit-scrollbar {
    width: 10px;
    height: 1px;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #d6b007;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul ul::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(21, 21, 21, 0.2);
    border-radius: 10px;
    background: #ededed;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul > li > a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 1em;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul > li a {
    color: var(--white-color) !important;
    transition: all ease-in-out 0.4s;
  }
  nav > ul > li.normal .full-screen > div > ul > li > ul > li a:hover {
    color: var(--yellow-color) !important;
  }
  nav > ul > li a {
    transition: all ease-in-out 0.4s;
    color: var(--white-color);
  }
  /*   nav > ul > li a:hover {
      color: #D8AD15 !important;
    } */
  nav > ul > li span {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    display: none;
  }
  nav > ul > li > span {
    right: -1.5em;
  }
  nav > ul > li > ul {
    padding: 1em 1.5em;
  }
  nav > ul > li > ul > li {
    white-space: nowrap;
    margin-bottom: 1em;
  }
  nav > ul > li > ul > li > ul ul {
    display: none;
  }
  nav > ul > li > ul > li > a {
    position: relative;
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
    font-family: "QuicksandSemiBold";
    font-size: 1.2em;
  }
  /*   nav > ul > li > ul > li:hover > ul {
      display: block;
      position: absolute;
      left: 100%;
      top: 0;
    } */
  nav > ul > li .full-screen {
    position: absolute;
    top: 80px;
    right: 0;
    padding-top: 1.5em;
    display: none;
    height: calc(100vh - 82px);
  }
  nav > ul > li .full-screen .logo-nav {
    position: absolute;
    bottom: 3em;
    right: 2em;
    width: 12em;
  }
  /*   nav > ul > li .full-screen::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 2em;
      left: 0;
      top: -1.9em;
      display: block;
    } */
  nav > ul > li .full-screen > div {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.5em 0;
    display: flex;
    justify-content: flex-end;
    padding-left: 17vw;
  }
  nav > ul > li .full-screen > div > ul {
    position: relative;
    display: grid;
    height: 100%;
    width: -moz-max-content;
    width: max-content;
    grid-template-columns: repeat(3, 1fr);
    align-content: flex-start;
  }
  nav > ul > li .full-screen > div > ul > li {
    border-right: 1px solid var(--white-color);
    margin-right: 2em;
  }
  nav > ul > li .full-screen > div > ul > li:first-child {
    grid-row-start: 1;
    grid-row-end: 3;
  }
  nav > ul > li .full-screen > div > ul > li:nth-child(3n + 3) {
    border: none;
  }
  nav > ul > li .full-screen > div > ul::before {
    content: "";
    position: absolute;
    top: -100vh;
    left: -10vw;
    border-radius: 2000px;
    width: 160vw;
    aspect-ratio: 1;
    background-color: var(--purple-color);
    z-index: -1;
  }
  nav > ul > li .full-screen > div > ul::after {
    content: "";
    position: absolute;
    top: -110vh;
    left: -12vw;
    border-radius: 2000px;
    width: 160vw;
    aspect-ratio: 1;
    background-color: rgba(230, 224, 236, 0.6);
    z-index: -2;
  }
  nav > ul > li .full-screen > div > ul > li {
    padding: 0.8em 1em;
    width: 22em;
  }
  nav > ul > li .full-screen > div > ul > li > a {
    color: var(--white-color);
    font-size: 1.4em;
  }
  nav > ul > li .full-screen > div > ul > li ul li {
    position: relative;
  }
  nav > ul > li .full-screen > div > ul > li > span {
    display: none;
  }
  nav > ul > li .full-screen > div > ul > li .angle-down::before {
    position: absolute;
    content: "\e90e";
    font-family: "icomoon";
    right: 0.5em;
  }
  nav > ul > li:hover > ul {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, 31%);
    background-color: #dbd8f0;
    width: 100%;
    justify-content: space-between;
  }
  /*   nav>ul>li:hover>ul>li:nth-child(2) {
     grid-row-start: 1;
     grid-row-end: 3;
    } */
  nav > ul > li:hover > ul::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 4em;
    top: -2em;
    left: 0;
  }
  /*  nav > ul > li:hover .full-screen {
    display: block;
  } */
}
/* .fixed_header-shell .logo {
  width: 280px;
} */
.head-contact {
  display: flex;
}
.head-contact.contact-data > li {
  color: var(--purple-color) !important;
  margin-left: 2em;
  font-size: 0.9em;
}
.head-contact > li::before {
  color: var(--purple-color) !important;
}
.head-contact > li a {
  color: var(--purple-color) !important;
}
.rotate-angle {
  transform: rotateZ(90deg);
}

.header-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.header-search input[type="checkbox"] {
  transition: all ease-in-out 0.3s;
  cursor: pointer;
  width: 0;
}
.header-search input[type="checkbox"]:hover {
  color: var(--main-color);
}
.header-search input[type="checkbox"]::before {
  position: absolute;
  content: "\e989";
  font-family: "icomoon";
  font-size: 1.1em;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-search input[type="checkbox"]:checked::before {
  content: "\e93f";
}
.header-search input[type="checkbox"]:checked ~ form {
  display: flex;
}
.header-search form {
  display: none;
}

.search-platform {
  position: absolute;
  padding: 6px 15px;
  background: var(--white-color);
  border-radius: 4px;
  box-shadow: 1px 1px 4px 2px #b5b5b6;
  display: flex;
  justify-content: center;
  top: 60px;
  right: 0;
}

@media screen and (min-width: 1081px) {
  .header-search > input {
    width: 300px;
  }
}
@media screen and (max-width: 1080px) {
  .header-search > span {
    display: none;
  }
  .search-platform {
    position: relative;
    box-shadow: none;
    border: 1px solid rgba(21, 21, 21, 0.1);
    width: 100%;
    margin-top: 10px;
    display: flex !important;
    top: 0;
  }
  .search-platform > input {
    width: 100%;
  }
}
.search-platform > input {
  position: relative;
  padding: 10px 20px;
  border: 1px solid var(--purple-color);
  outline: none;
}

.search-platform > button {
  position: relative;
  margin-left: 10px;
  outline: none;
  border-radius: 4px;
  background: var(--purple-color);
  border: 1px solid var(--purple-color);
  color: var(--white-color);
  cursor: pointer;
}
.headLayout {
  position: sticky !important;
  top: 0;
  width: 100%;
  background-color: var(--white-color) !important;
  z-index: 1000;
  box-shadow: 1px 0 20px rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 100vw;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1320px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}

/*.row:after{
  display: table;
  content: " ";
}
.row:after{
  clear: both;
}*/
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/*.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}*/
.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

@media (min-width: 768px) {
  /* .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
     float: left;
   }*/
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  /*  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
      float: left;
    }*/
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  /*  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
      float: left;
    }*/
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}
@media screen and (min-width: 1081px) {
  .row-layout {
    display: flex;
  }
  .row {
    display: flex;
    flex-flow: wrap;
  }
  .rowCenter {
    align-items: center;
  }
}
/**********************************************************************new-nuka-btn*********************************************************************************/
/* Nuka */
.new-nuka-btn {
  position: relative;
  max-width: 200px;
  width: 160px;
  height: 40px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  text-transform: uppercase;
  --bordercolor: var(--yellow-color);
  border: 1px solid var(--bordercolor);
  background: none;
  --bckgroundHeight: 100%;
  z-index: 10;
  border-radius: 40px;
  overflow: hidden;
}

.new-nuka-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  height: var(--bckgroundHeight);
  background: var(--yellow-color);
  transition: all ease-in-out 0.2s;
  z-index: -1;
}

.new-nuka-btn:hover {
  --bckgroundHeight: 0;
  --bordercolor: var(--white-color);
  color: var(--white-color);
}

/**********************************************************************new-nuka-btn*********************************************************************************/
/************************************btnWord****************************************/
.btnWord {
  border: none;
  outline: none;
  border-radius: 40px;
  padding: 5px 30px;
  /*height: 40px;*/
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--white-color);
}

.btnWord > span {
  color: white;
  display: block;
  position: relative;
}

.btnWord:hover > span:nth-child(odd) {
  animation: word_to_up cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
}

.btnWord:hover > span:nth-child(even) {
  animation: wordtodown cubic-bezier(0.85, 0.2, 0.25, 1.2) 0.4s;
}
@keyframes word_to_up {
  0% {
    transform: translate3d(0, -100px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wordtodown {
  0% {
    transform: translate3d(0, 100px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.btnWord:hover > span:nth-child(2) {
  animation-delay: 0.01s;
}

.btnWord:hover > span:nth-child(3) {
  animation-delay: 0.1s;
}

.btnWord:hover > span:nth-child(4) {
  animation-delay: 0.15s;
}

.btnWord:hover > span:nth-child(5) {
  animation-delay: 0.2s;
}

.btnWord:hover > span:nth-child(6) {
  animation-delay: 0.25s;
}

.btnWord:hover > span:nth-child(7) {
  animation-delay: 0.3s;
}

.btnWord:hover > span:nth-child(8) {
  animation-delay: 0.35s;
}

.btnWord:hover > span:nth-child(9) {
  animation-delay: 0.4s;
}

.btnWord:hover > span:nth-child(10) {
  animation-delay: 0.45s;
}

.btnWord:hover > span:nth-child(11) {
  animation-delay: 0.5s;
}

.btnWord:hover > span:nth-child(12) {
  animation-delay: 0.55s;
}

.btnWord:hover > span:nth-child(13) {
  animation-delay: 0.6s;
}

.btnWord:hover > span:nth-child(14) {
  animation-delay: 0.65s;
}

.btnWord:hover > span:nth-child(15) {
  animation-delay: 0.7s;
}

.btnWord:hover > span:nth-child(16) {
  animation-delay: 0.75s;
}

.btnWord:hover > span:nth-child(17) {
  animation-delay: 0.8s;
}

.btnWord:hover > span:nth-child(18) {
  animation-delay: 0.85s;
}

.btnWord:hover > span:nth-child(19) {
  animation-delay: 0.9s;
}

/************************************btnWord****************************************/
/************************************footer****************************************/
.footerLayout {
  position: relative;
  width: 100%;
  background: #dbd9f1;
  font-family: "QuicksandMedium";
}

.bottom_message {
  position: relative;
  display: grid;
  padding: 10px;
  margin: auto;
  grid-gap: 20px;
}
.bottom_message .header-contact {
  width: -moz-max-content;
  width: max-content;
  margin: 20px 0;
}
.bottom_message .newFont {
  font-size: 1.4rem;
}
.bottom_message .row-layout {
  align-items: center;
}

.bottom_message a:hover {
  color: var(--blue-color);
}

@media screen and (min-width: 1081px) {
  .bottom_message {
    padding: 50px 0;
  }
}
.footer-data {
  color: var(--black-color);
  position: relative;
}
.footer-data > .logo {
  margin-bottom: 10px;
}
.footer-data * {
  position: relative;
  z-index: 10;
}
.contact-data {
  position: relative;
}

.contact-data > li {
  position: relative;
  margin: 10px 0 10px 0;
}

.contact-data > li {
  position: relative;
  padding-left: 35px;
  margin: 10px 0 10px 0;
  color: var(--black-color);
}

.contact-data > li a {
  color: var(--black-color);
}

.contact-data > li a:hover {
  color: var(--yellow-color);
}

.contact-data a:hover {
  color: var(--yellow-color);
}

.contact-address::before,
.contact-email::before,
.contact-call::before,
.contact-fax::before,
.contact-globe::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  font-family: "icomoon";
  width: 30px;
  height: 30px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  font-size: 1.2rem;
  /*background:var(--red-color);*/
  color: var(--light-purple-color);
}

.contact-address::before {
  content: "\e904";
}

.contact-email::before {
  content: "\e931";
}

.contact-call::before {
  content: "\e97b";
}

.contact-fax::before {
  content: "\e942";
}
.contact-globe::before {
  content: "\e958";
}
@media screen and (min-width: 1081px) {
  .header-contact {
    justify-content: space-between;
  }
}
.header-contact {
  position: relative;
  display: flex;
}

.header-contact > li {
  margin: 0 10px;
}

.header-contact > li:nth-child(1) > a {
  background: url(../images/facebook.svg) no-repeat center center transparent;
  background-size: 20px;
}
.header-contact > li:nth-child(1) > a:hover {
  background: url(../images/facebook.svg) no-repeat center center rgba(255, 110, 1, 1) !important;
  background-size: 20px !important;
  border: 1px solid rgba(255, 110, 1, 1);
}

.header-contact > li:nth-child(2) > a {
  background: url(../images/twiter.svg) no-repeat center center transparent;
  background-size: 19px;
}
.header-contact > li:nth-child(2) > a:hover {
  background: url(../images/twiter.svg) no-repeat center center rgba(255, 110, 1, 1) !important;
  background-size: 19px !important;
  border: 1px solid rgba(255, 110, 1, 1);
}

.header-contact > li:nth-child(3) > a {
  background: url(../images/linkedin.svg) no-repeat 6px 5px transparent;
  background-size: 16px;
}
.header-contact > li:nth-child(3) > a:hover {
  background: url(../images/linkedin.svg) no-repeat 6px 5px rgba(255, 110, 1, 1) !important;
  background-size: 16px !important;
  border: 1px solid rgba(255, 110, 1, 1);
}

.header-contact > li > a {
  color: var(--white-color) !important;
  transition: all ease 0.6s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  width: 30px;
  height: 30px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
}

.header-contact > li > a:hover {
  background: var(--orange-color) !important;
}

.bottom_median {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.8em 0;
  font-size: 0.9em;
  background: #dbd9f1;
  border-top: 1px solid rgba(21, 21, 21, 0.2);
}
.footer-link {
  position: relative;
  align-items: center;
  margin: 20px 0;
}
.footer-link li {
  position: relative;
  margin-right: 10px;
  margin: 10px 0;
}
.footer-link li a {
  position: relative;
  color: var(--black-color) !important;
  display: block;
  line-height: 1.5em;
  padding-left: 20px;
}
.footer-link li a::before {
  position: absolute;
  content: ">";
  left: 0;
  color: var(--light-purple-color);
}

.footer-link a:hover {
  color: var(--light-purple-color) !important;
}

/* .footer-link li a::before {
  position: absolute;
  content: ">";
  left: 0;
} */

@media screen and (max-width: 1080px) {
  .footer-link li a {
    line-height: 2.2em;
  }
}

.footer-link a[href]:hover {
  color: #ad9bec !important;
}

.cap-title {
  position: relative;
  width: 100%;
  font-family: "QuicksandSemiBold";
  font-size: 1.4rem;
  padding-bottom: 10px;
  color: var(--light-purple-color);
}
.cap-title::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 20%;
  height: 2px;
  background: var(--light-purple-color);
}

.cap-title > a {
  transition: all ease-in-out 0.5s;
  color: var(--white-color);
}

.cap-title > a:hover {
  color: var(--blue-color);
}

.contact-data {
  position: relative;
}

.contact-data > li {
  position: relative;
  margin: 10px 0 10px 0;
}

.contact-data a[href]:hover {
  color: #ad9bec !important;
}

.listBtn {
  position: relative;
  padding: 10px 30px;
  border-radius: 6px;
  color: var(--white-color);
  transition: all ease-in-out 0.4s;
}

/************************************footer****************************************/
.bannerBtn {
  position: relative;
  color: var(--white-color) !important;
  padding: 8px 20px;
  --width: 50%;
  width: -moz-max-content;
  width: max-content;
  margin: 30px 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  z-index: 1;
}

.bannerBtn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: var(--width);
  transition: all ease-in-out 0.4s;
  top: 0;
  left: 0;
  background: var(--orange-color);
  z-index: -1;
}

.bannerBtn:hover {
  --width: 100%;
}

.center-layout {
  position: relative;
  display: flex;
  justify-content: center;
}

/*****************************************************slideHorizontal**************************************************************/
.slideHorizontal {
  position: relative;
  margin: 60px -50px;
  display: flex;
  align-items: center;
}

.slideHorizontal .operateLeft,
.slideHorizontal .operateRight {
  position: absolute;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  font-size: 2em;
  cursor: pointer;
}

.slideHorizontal .operateLeft {
  left: 10px;
}

.slideHorizontal .operateRight {
  right: 10px;
}

.slideHorizontal .border_ {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slideHorizontal .border_ .moveCurrent {
  transition: all linear 0.4s;
}

.slideHorizontal .border_ > ul {
  position: relative;
  display: flex;
  width: 9000px;
}

.slideHorizontal .border_ > ul li {
  position: relative;
  margin: 0 10px;
}

/*****************************************************slideHorizontal**************************************************************/
.categoriesList {
  position: relative;
  color: var(--black-color);
}

.categoriesList li {
  position: relative;
  background: var(--white-color);
  box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
}

.categoriesList li a {
  position: relative;
  color: var(--black-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categoriesList li a h4 {
  font-size: 1.4em;
  font-family: GALANOGROTESQUEDEMOBOLD;
  text-align: center;
}

.categoriesList li a p {
  text-align: center;
}

.newBtn {
  position: relative;
  display: block;
  color: var(--white-color) !important;
  padding: 8px 30px;
  --width: 100%;
  width: -moz-max-content;
  width: max-content;
  margin: 30px 0;
  font-size: 1rem;
  text-transform: uppercase;
  background: var(--black-color);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}

.newBtn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: var(--width);
  transition: all ease-in-out 0.4s;
  top: 0;
  left: 0;
  background: var(--purple-color);
  z-index: -1;
}

.newBtn:hover {
  --width: 50%;
}

.boldFont {
  font-weight: bold;
}

.pc-list {
  position: relative;
  margin: 30px 0;
}

.pc-list li {
  position: relative;
  margin: 20px 0;
  transition: all ease-in-out 0.4s;
}

.pc-list li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--black-color);
}

.pc-list li a h4 {
  font-size: 1.2rem;
  margin: 6px 0;
}

.pc-list li .listBtn {
  color: var(--light-blue-color);
  padding: 0;
  font-weight: bold;
  transition: all ease-in-out 0.4s;
}

.pc-list li:hover .listBtn {
  color: var(--orange-color);
}

@media screen and (min-width: 1081px) {
  .pc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 22%);
    justify-content: space-between;
  }
}
.grecaptcha-badge {
  opacity: 0;
}

/****************************************card*******************************************/
.card-box {
  position: relative;
  margin: 20px 0;
}

.nav-tabs {
  position: relative;
  --child-width: 23%;
  margin: 20px 0;
  background-color: #f2f1f4;
}

@media screen and (max-width: 1080px) {
  .nav-tabs {
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .nav-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--child-width));
    justify-content: space-between;
    border-top: 1px solid rgba(21, 21, 21, 0.2);
  }
}
.nav-tabs > li {
  position: relative;
  padding: 0.5em 1em;
  transition: all ease-in-out 0.3s;
  --borderColor: rgba(222, 222, 222, 1);
  /*  border-bottom: 1px solid var(--borderColor);*/
  cursor: pointer;
  font-size: 1.2em;
  text-align: center;
  color: rgba(21, 21, 21, 0.5);
  z-index: 1;
}

.nav-tabs > li:first-child {
  padding-left: 0;
}

.nav-tabs > li.active {
  color: rgb(105, 89, 161);
  background: none;
  font-weight: bold;
}

.nav-tabs > li.liCurrent {
  position: absolute !important;
  content: "";
  height: 3px;
  top: -1.5px;
  left: 0;
  background-color: #6959a1;
  padding: 0 !important;
  z-index: 0 !important;
  color: var(--white-color);
}

.tab-pane {
  position: relative;
  display: none;
}

.tab-pane .pathMap {
  max-width: 1000px;
  width: 100%;
}

.tab-pane.active {
  display: block;
}

/****************************************card*******************************************/

.square-info {
  position: relative;
  --child-width: 32%;
  --aspect-ratio: auto;
  --display-flex: block;
}
.square-info a {
  position: relative;
  display: block;
}
.square-info .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.square-info > li {
  position: relative;
  --img-src: url(../images/by-rare-diseases-pic1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 2px solid rgba(209, 199, 246, 0.6);
  padding: 0.3em;
  margin-bottom: 1.5em;
  aspect-ratio: var(--aspect-ratio);
  --translate: 100%;
  --opacity: 0;
  --title-color: var(--purple);
}
.square-info > li:hover {
  --translate: 0;
  --opacity: 1;
  --title-color: rgba(75, 50, 161, 1);
}
.square-info .img-content {
  position: relative;
  background-image: var(--img-src);
  height: 100%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}
.square-info .img-content .text {
  position: relative;
  opacity: 1;
  overflow: hidden;
  height: 100%;
}
.square-info .img-content .text::before,
.square-info .img-content .text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(75, 50, 161, 0.8);
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.square-info .img-content .text::before {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  transform: translate3d(calc(-1 * var(--translate)), calc(-1 * var(--translate)), 0);
}
.square-info .img-content .text::after {
  -webkit-clip-path: polygon(100% 100%, 0% 100%, 99.9% 0);
  clip-path: polygon(100% 100%, 0% 100%, 99.9% 0);
  transform: translate3d(var(--translate), var(--translate), 0);
}
.square-info .img-content .text div {
  position: relative;
  padding: 1.2em 1em;
  z-index: 2;
  opacity: var(--opacity);
  color: var(--white-color);
  /* color: #4B20EE; */
  line-height: 1.5em;
  transition: all 0.5s ease-in-out;
  height: 100%;
  min-height: 264px;
  display: var(--display-flex);
  justify-content: center;
  align-items: center;
}
.square-info .content {
  text-align: center;
}
.square-info .content .title {
  font-size: 1.1em;
  color: var(--title-color);
  transition: all 0.4s ease-in-out;
}

@media screen and (min-width: 1081px) {
  .square-info {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--child-width));
    justify-content: space-between;
  }
}

.check-list {
  position: relative;
}
.check-list > li {
  padding-left: 1.8em;
}
.check-list > li::before {
  position: absolute;
  content: "\e9dd";
  font-family: "icomoon";
  left: 0;
  color: var(--light-purple-color);
  font-weight: bold;
  font-size: 1.2em;
}

/****************************************inquiryForm*******************************************/
.inquiry-form {
  position: relative;
  width: 100%;
}

.inquiry-form .row > div {
  margin: 10px 0;
}
.inquiry-form .row > div label {
  position: relative;
  font-family: "QuicksandMedium";
}
.inquiry-form .row > div p {
  font-family: "QuicksandBold";
}

.inquiry-form > div {
  position: relative;
}

.inquiry-form img {
  height: 40px;
  width: -moz-max-content;
  width: max-content;
}

.inquiry-form input,
.inquiry-form textarea {
  position: relative;
  padding: 15px;
  outline: none;
  /* border: 1px solid rgba(18, 18, 18, 0.1); */
  width: 100%;
  border-radius: 4px;
  outline: none;
  border: none;
  font-family: "QuicksandMedium";
}

.inquiry-form button {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  cursor: pointer;
  padding: 0.8em 3em;
  font-size: 1.1em;
  margin-bottom: 0;
  border: none;
}

.inquiry-form input::-webkit-input-placeholder,
.inquiry-form textarea::-webkit-input-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "QuicksandMedium";
}

.inquiry-form input::-moz-placeholder,
.inquiry-form textarea::-moz-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "QuicksandMedium";
}

.inquiry-form input::-ms-input-placeholder,
.inquiry-form textarea::-ms-input-placeholder {
  color: #bebebe;
  font-size: 1em;
  font-family: "QuicksandMedium";
}

/****************************************inquiryForm*******************************************/
.flex-item {
  --width-child: 48%;
}

@media screen and (min-width: 1081px) {
  .flex-item {
    display: flex !important;
    gap: 1em;
  }
  .flex-item > * {
    width: var(--width-child);
  }
}
.ml-auto {
  margin-left: auto;
}

.w-max-content {
  width: -moz-max-content;
  width: max-content;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-1 {
  padding-top: 1em;
  padding-bottom: 1em;
}
.px-1 {
  padding-left: 1em;
  padding-right: 1em;
}
.px-2 {
  padding-left: 2em;
  padding-right: 2em;
}

.rounded-md {
  border-radius: 1em;
}

.text-lg {
  font-size: 1.1em;
}

.text-main {
  color: var(--purple-color);
}
.grid {
  --rate: 70% 25%;
}

.grid .banner-btn {
  font-size: 1rem;
  padding: 0.5em 1.5em;
  border-radius: 8px;
  margin-top: 30px;
  background-color: #ef4929;
  display: inline-block;
  color: #dabf78;
  transition: all ease-in-out 0.3s;
}
.grid .banner-btn:hover {
  background-color: #ef3530;
}

@media screen and (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: var(--rate);
    justify-content: space-between;
  }
}
.main-section h2 {
  position: relative;
  font-size: 2.6em;
  line-height: 1.2em;
}

.img-cover,
.img-contain {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img-cover img,
.img-contain img {
  position: absolute;
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-contain img {
  -o-object-fit: contain;
  object-fit: contain;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.py-8 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-8-20241214 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.m-0 {
  margin: 0 !important;
}

.w-500 {
  width: 500px;
}
.bg-fixed {
  position: relative;
  background-image: url(../images/about-fixedBg.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.my-6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.px-3 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.text-white {
  color: var(--white-color);
}

.text-center {
  text-align: center;
}
.py-12 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.bg-gray {
  background-color: rgba(181, 181, 181, 0.2);
  padding: 2em 1.5em;
  margin: 1.5em 0 2em 0;
}
.bg-gray h2,
.bg-gray h3 {
  margin-top: 0;
}

.grid-item {
  --width-child: 32%;
  row-gap: 1em;
}

@media screen and (min-width: 768px) {
  .grid-item {
    display: grid;
    grid-template-columns: repeat(auto-fill, var(--width-child));
    justify-content: space-between;
  }
}
.border-gray {
  border: 1px solid rgba(18, 18, 18, 0.1);
}

.horizontal-scrolling {
  position: relative;
}
.horizontal-scrolling .scrolling-oprate {
  position: absolute;
  bottom: 0;
  left: 48%;
  z-index: 10;
}
.horizontal-scrolling .scrolling-oprate > li {
  display: inline-flex;
  border-radius: 100px;
  width: 0.6em;
  height: 0.6em;
  border: 1px solid rgba(21, 21, 21, 0.5);
  margin: 0.6em;
  transition: all ease-in-out 0.6s;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.horizontal-scrolling .scrolling-oprate > li::before {
  position: absolute;
  content: "";
  width: 1.2em;
  aspect-ratio: 1;
}
.horizontal-scrolling .scrolling-oprate > li:hover {
  border: 1px solid var(--light-purple-color);
  background-color: var(--light-purple-color);
}
.horizontal-scrolling .scrolling-oprate > li.current {
  border: 1px solid var(--light-purple-color);
  background-color: var(--light-purple-color);
  width: 1.6em;
}
.horizontal-scrolling .scrolling-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.horizontal-scrolling .scrolling-content > div {
  position: relative;
  display: flex;
}
.horizontal-scrolling .scrolling-content > div > * {
  min-width: 100%;
}
.horizontal-scrolling .scrolling-content > div > ul {
  position: relative;
  width: 100%;
  min-width: 100%;
}

/* ----------------------------------------------------------------------------- */
.resource-pdf img {
  box-shadow: -1px 0px 5px 2px rgba(0, 0, 0, 0.25);
}

.collapsing {
  width: 100%;
  cursor: pointer;
  text-align: left;
  background-repeat: no-repeat;
  color: #333;
  padding: 5px 30px 5px 10px;
  background: #f8f8f8;
  margin-bottom: 10px;
  position: relative;
  font-size: 16px;
}
.collapsing:hover {
  color: #6959a1;
}
.collapsing:hover:before {
  color: #6959a1;
}
.collapsing:before {
  content: "+";
  font-family: "FontAwesome";
  padding: 0px 10px 0 0;
  color: #555;
  position: absolute;
  font-weight: bold;
  right: 10px;
}

.current:before {
  content: "-";
}
.collapsing span {
  color: #333;
  font-size: 0.875rem;
  float: right;
  padding: 8px;
  border: 2px #333 solid;
}
.coll_body {
  display: none;
  padding: 10px 10px 0 10px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin: 30px 0;
  position: relative;
  overflow: visible !important;
}
.coll_body:after,
.coll_body:before {
  bottom: 100%;
  left: 6%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.coll_body:after {
  border-color: transparent;
  border-bottom-color: #fff;
  border-width: 15px;
  margin-left: -15px;
}
.coll_body:before {
  border-color: transparent;
  border-bottom-color: #ccc;
  border-width: 17px;
  margin-left: -17px;
}

.single-box:hover,
.single-box:focus,
.single-box:active {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.single-box {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
}
.single-box h3,
.single-box p {
  padding-left: 20px;
}

.solutions-diseases {
  background: url(../images/solutions-img.jpg);
  width: 880px;
  height: 566px;
  margin-top: 30px;
  background-size: 100%;
  position: relative;
  margin: 0 auto;
  font-weight: bold;
}
.list01 {
  position: absolute;
  top: 50px;
  left: 45px;
}
.list02 {
  position: absolute;
  top: 140px;
  left: 45px;
}
.list03 {
  position: absolute;
  top: 255px;
  left: 45px;
}
.list04 {
  position: absolute;
  top: 370px;
  left: 45px;
}
.list05 {
  position: absolute;
  top: 470px;
  left: 45px;
}

.list06 {
  position: absolute;
  top: 40px;
  right: 50px;
}
.list07 {
  position: absolute;
  top: 115px;
  right: 50px;
}
.list08 {
  position: absolute;
  top: 190px;
  right: 50px;
}
.list09 {
  position: absolute;
  top: 280px;
  right: 50px;
  text-align: right;
}
.list10 {
  position: absolute;
  top: 425px;
  right: 50px;
}
.shdow-md {
  box-shadow: 1px 0 20px rgba(21, 21, 21, 0.1);
}
.flex-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.border-2 {
  border: 2px solid var(--main-color);
}

.tank-nav {
  margin-right: 1em;
}
.tank-nav *[anchor-point] {
  cursor: pointer;
  font-size: 1.2em;
  font-family: "QuicksandMedium";
  margin: 0;
  padding: 1em;
  transition: all ease-in-out 0.3s;
}
.tank-nav *[anchor-point]:hover {
  color: var(--main-color);
}
.tank-nav *[anchor-point].active {
  border-bottom: 1px solid var(--main-color);
}
.tank-nav a {
  text-transform: unset !important;
  font-size: 1.1em;
}
.back-btn {
  position: fixed;
  bottom: 30px;
  left: 1em;
  z-index: 10;
}
.back-btn > * {
  cursor: pointer;
  font-size: 0.9em;
  text-transform: unset;
  border-radius: 4em;
  font-weight: 100;
  padding: 0.2em 1em;
}

/*************************************bannerCarousel**************************************/
.banner-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* height: 600px;*/
  --y: -1;
}

.banner-carousel .operate {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100px;
  background: none;
  z-index: 100;
  cursor: pointer;
  transition: all ease 0.4s;
  font-size: 1.4em;
  --backColor: var(--white-color);
  --borderColor: var(--light-purple-color);
}

.banner-carousel .operate span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-purple-color);
}

.banner-carousel .operate span::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: var(--backColor);
  z-index: -1;
  transition: all ease 0.4s;
  border-radius: 2px;
}

.banner-carousel .operate.left {
  left: 100px;
}

.banner-carousel .operate.right {
  right: 100px;
}

@media screen and (max-width: 1601px) {
  .banner-carousel .operate.left {
    left: 0;
  }
  .banner-carousel .operate.right {
    right: 0;
  }
  .banner-carousel .operate {
    width: 50px;
  }
  .banner-carousel .operate span::after {
    width: 40px;
    height: 40px;
  }
}
.banner-carousel .operate:hover {
  --backColor: rgba(255, 255, 255, 0.6);
  --borderColor: var(--purple-color);
}
.new-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.new-banner > ul {
  display: flex;
  width: 800vw;
  padding: 0;
}
.new-banner > ul > li {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: block;
}

.banner-carousel ul.carousel-content > li {
  display: flex;
  justify-content: center;
  --imgSrc: "";
  --imgSrcwebp: "";
}

.banner-carousel ul.carousel-content > li .imgData {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

@media screen and (max-width: 1140px) and (min-width: 1081px) {
  .new-banner > ul > li {
    height: 100vh;
  }
}
.banner-carousel ul.carousel-content li img {
  vertical-align: top;
}

.banner-carousel ul.carousel-content > li .carousel-contentMess {
  position: absolute;
  /* width:88%;*/
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*z-index: 10;*/
  /*  left: 0;*/
  top: 0;
  /* max-width: 1320px;*/
}

@media screen and (max-width: 1080px) {
  .banner-carousel ul.carousel-content > li .carousel-contentMess {
    padding: 50px;
  }
}

.banner-carousel ul.carousel-content li .carousel-contentMess > div {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.banner-carousel ul.carousel-content li h2,
.banner-carousel ul.carousel-content li h1,
.banner-carousel ul.carousel-content li .banner-title {
  position: relative;
  font-weight: bold;
  margin: 2rem 0;
  font-size: 2em;
  font-family: "QuicksandSemiBold";
}

@media screen and (min-width: 1081px) {
  .banner-carousel ul.carousel-content li .carousel-contentMess > div {
    padding-right: 40%;
    font-size: 1.2em;
  }

  .banner-carousel ul.carousel-content li h2,
  .banner-carousel ul.carousel-content li h1,
  .banner-carousel ul.carousel-content li .banner-title {
    font-size: 2.8rem;
    /*  text-align: center;*/
    line-height: 1.2em;
  }
}
.titleCurrent {
  animation: simpleAn 2.6s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}

.imgCurrent {
  animation: simpleAn 2s cubic-bezier(0.13, 0.95, 0, 0.99) forwards;
}

@keyframes simpleAn {
  0% {
    transform: translateX(calc(50% * var(--y)));
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.banner-carousel ul.carousel-content li.after {
  animation: simplyAn 0.6s ease forwards;
  /* position: relative;*/
}

@keyframes simplyAn {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(calc(-100% * var(--y)));
    opacity: 1;
  }
}
.banner-carousel ul.scrollOperate {
  position: absolute;
  bottom: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /*    background:rgba(88,88,88,0.8);*/
  z-index: 10;
}

.banner-carousel ul.scrollOperate li {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  margin: 10px;
  transition: all ease 0.4s;
  cursor: pointer;
  background-color: var(--light-purple-color);
}

.banner-carousel ul.scrollOperate li.current {
  width: 30px;
}

.banner-carousel ul.scrollOperate li:hover {
  background: var(--yellow-color);
}

.banner-carousel .new-nuka-btn {
  margin: 3rem 0;
  padding: 20px 120px;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  white-space: nowrap;
}

@media screen and (max-width: 1320px) {
  .banner-carousel .new-nuka-btn {
    margin: 2em 0;
  }
}
.sideCarousel .operate {
  display: none;
}
.sideCarousel h2 {
  font-size: 1.4em;
}

.sideCarousel.banner-carousel ul.carousel-content {
  position: relative;
  width: 100%;
  height: auto;
}

.sideCarousel.banner-carousel ul.scroll {
  bottom: 5px;
  display: none;
}
.sideCarousel.banner-carousel ul.scroll > li {
  --color: var(--black-color);
  border: 1px solid var(--color);
}
.sideCarousel.banner-carousel ul.scroll > li:hover {
  --color: var(--light-purple-color);
}

.sideCarousel {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 6px;
}
.sideCarousel ul.carousel-content li .carousel-contentMess {
  background: var(--white-color);
  position: relative;
  height: auto;
}
.sideCarousel ul.carousel-content li .carousel-contentMess p {
  font-size: 1em;
  color: var(--black-color);
}
.sideCarousel ul.carousel-content li {
  flex-direction: column;
}
.sideCarousel ul.carousel-content li .imgData {
  height: 100%;
  position: relative;
  background: var(--imgSrc) no-repeat;
  width: 100%;
  background-size: cover;
}
.banner-carousel .new-banner {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.banner-carousel .new-banner > ul.carousel-content {
  display: flex;
  width: 800vw;
  padding: 0;
}
.banner-carousel .new-banner > ul.carousel-content > li {
  position: relative;
  width: 100vw;
  height: 100vh;
  opacity: 1;
}
.banner-carousel .new-banner > ul.carousel-content > li:first-child {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.newFont {
  font-family: "GALANOGROTESQUEDEMOBOLD";
}

/*************************************bannerCarousel**************************************/

*[fullscreen-handle] {
  cursor: pointer;
}
.mt-4 {
  margin-top: 2rem !important;
}
.pt-2 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 2rem !important;
}
.mt-12 {
  margin-top: 6rem !important;
}
.h-full {
  height: 100%;
}
.bg-img {
  background-repeat: no-repeat;
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.mb-6 {
  margin-bottom: 2rem !important;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 3rem;
}
.max-w-full {
  max-width: 100%;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.text-xl {
  font-size: 1.25rem;
}
.bg-main {
  background-color: var(--main-color);
}
.p-2 {
  padding: 1rem;
}
.p-1 {
  padding: 0.5rem;
}
.rounded-full {
  border-radius: 50%;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.pb-3 {
  padding-bottom: 1.5rem;
}
.p-3 {
  padding: 1.5rem;
}
.pb-6 {
  padding-bottom: 3rem;
}
.flex {
  display: flex;
}
.ml-1 {
  margin-left: 0.5rem;
}

.shadow-sm {
  box-shadow: 1px 0 20px rgba(0, 0, 0, 0.1);
}

.aspect-2 {
  aspect-ratio: 2/1;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.h-auto {
  height: auto;
}
.flex-col {
  flex-direction: column;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.mt-6 {
  margin-top: 3rem;
}
.block {
  display: block;
}
.mb-2 {
  margin-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 1rem;
}
dt {
  font-weight: 100;
}

.font-bold {
  font-weight: bold;
}

.absolute {
  position: absolute;
}

.right-0 {
  right: 0;
}

.top-1 {
  top: 0.5rem;
}

.hidden {
  display: none;
}

.w-12 {
  width: 3rem;
}

.w-10 {
  width: 2.5rem;
}

.text-main-dark {
  color: var(--main-dark-color);
}

.hover\:text-main-dark:hover {
  color: var(--main-dark-color);
}

.hover\:bg-main-dark:hover {
  background-color: var(--main-dark-color);
}

.align-center {
  align-items: center;
}

.bg-gradient {
  background: linear-gradient(to right, #ad9bea, #dbd9f1);
}
.min-w-full {
  min-width: 100%;
}
.text-xl {
  font-size: 1.25rem;
}
.\!text-xl {
  font-size: 1.25rem !important;
}
.text-3xl {
  font-size: 1.875rem;
}
.leading-6 {
  line-height: 1.5em;
}
.leading-8 {
  line-height: 2em;
}
.text-gray {
  color: var(--gray-color);
}
.mb-0 {
  margin-bottom: 0;
}

.bottom-3 {
  bottom: 0.75rem;
}
.bottom-6 {
  bottom: 1.5rem;
}
.relative {
  position: relative;
}
.left-\[\-50\%\] {
  left: -50%;
}
.left-\[\-3em\] {
  left: -3em;
}
.inline-block {
  display: inline-block;
}
.\!inline-block {
  display: inline-block !important;
}
.align-center {
  align-items: center;
}
.\!before-top-auto::before {
  top: auto !important;
}
.self-center {
  align-self: center;
}

@media screen and (min-width: 768px) {
  .md\:h-4\/5vh {
    height: 80vh;
  }
  .md\:flex {
    display: flex;
  }
  .md\:w-3\/5 {
    width: 60%;
  }
}
.items-end {
  align-items: flex-end;
}

.place-items-end {
  place-items: flex-end;
}

.left-shape {
  background-color: var(--main-color);
  height: 13px;
  width: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) skew(-15deg);
}

.left-shape:after {
  background-color: var(--main-color);
  content: "";
  height: 100%;
  width: 4px;
  position: absolute;
  top: 0;
  right: -8px;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-8 {
  padding-left: 2rem;
}

.fixed-img {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.py-24 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.py-16 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.bg-light-gray {
  background-color: #f7f7f7;
}

.bg-white {
  background-color: white;
}

.shadow-lg {
  box-shadow: 0 10px 15px -1px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.pt-6 {
  padding-top: 3rem;
}

.pb-12 {
  padding-bottom: 6rem;
}

.justify-end {
  justify-content: flex-end;
}

.rounded-tl-3xl {
  border-top-left-radius: 1.5rem;
}

.rounded-tr-3xl {
  border-top-right-radius: 1.5rem;
}

.rounded-bl-3xl {
  border-bottom-left-radius: 1.5rem;
}

.rounded-br-3xl {
  border-bottom-right-radius: 1.5rem;
}
.rounded-tl-6xl {
  border-top-left-radius: 3rem;
}
.rounded-tr-6xl {
  border-top-right-radius: 3rem;
}
.rounded-bl-6xl {
  border-bottom-left-radius: 3rem;
}
.rounded-br-6xl {
  border-bottom-right-radius: 3rem;
}
.rounded-3xl {
  border-radius: 3em;
}
.w-full {
  width: 100%;
}

.\!w-full {
  width: 100% !important;
}

.font-title {
  font-family: "QuicksandSemiBold";
}

.text-4xl {
  font-size: 2.25rem;
}

.\!text-4xl {
  font-size: 2.25rem !important;
}

.\!py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.\!py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.\!py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.\!py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.\!text-white {
  color: white !important;
}
.hover\:bg-main-dark:hover {
  background-color: var(--main-dark-color);
}
.transition-all {
  transition: all 0.3s ease-in-out;
}
.border-left-2 {
  border-left: 2px solid;
}
.border-left-4 {
  border-left: 4px solid;
}
.border-left-8 {
  border-left: 8px solid;
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.new-grid {
  --width-child: 0.32;
  --max-width: 1300px;
  gap: 1em;
  display: grid;
}

@media screen and (min-width: 768px) {
  .new-grid {
    grid-template-columns: repeat(auto-fit, minmax(calc(var(--width-child) * var(--max-width)), 1fr));
    justify-content: space-between;
  }
}
.w-1\/2 {
  width: 50%;
}
.h-1\/2 {
  height: 50%;
}
.top-0 {
  top: 0;
}
.left-0 {
  left: 0;
}

@media screen and (min-width: 768px) {
  .md\:translate-xy {
    --x: 0;
    --y: 0;
    transform: translate3d(var(--x), var(--y), 0);
  }
}
.bg-gray-color {
  --bg-color: #7d7f80;
  background-color: var(--bg-color);
}
.bottom-0 {
  bottom: 0;
}
.items-center {
  align-items: center;
}
.bg-opacity-white {
  --opacity: 0.8;
  background-color: rgba(255, 255, 255, var(--opacity));
}
img {
  vertical-align: top;
}
.\!px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.\!py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.z-10 {
  z-index: 10;
}
.border {
  --border-color: #234f8d;
  border: 1px solid var(--border-color);
}
.\!my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.rounded-xs {
  border-radius: 0.5em;
}
.aspect-5\/4 {
  aspect-ratio: 5 / 4;
}
.w-3\/5 {
  width: 60%;
}
.h-3\/5 {
  height: 60%;
}
.h-4\/5 {
  height: 80%;
}
.\!text-white {
  color: #fff !important;
}
.hover\:\!text-yellow:hover {
  color: VAR(--yellow-color) !important;
}
.\!fixed {
  position: fixed !important;
}
.\!bg-transparent {
  background-color: transparent !important;
}

.bg-light-main {
  background-color: var(--light-main-color);
}
.\!shadow-none {
  box-shadow: none !important;
}
.\!border-white {
  border-color: #fff !important;
}
.\!before-white::before {
  color: var(--white-color) !important;
}
.\!border-opacity-white {
  --opacity: 0.5;
  border-color: rgba(255, 255, 255, var(--opacity)) !important;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.\!my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.\!my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}


