/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.accordion {
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(23, 20, 28, 0.5);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 1024px) {
  .accordion {
    margin-bottom: 16px;
  }
}

.accordion-header {
  color: #f9f9f9;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease-in-out;
  padding: 20px 40px;
  width: 100%;
  border: none;
}
@media only screen and (max-width: 768px) {
  .accordion-header {
    padding: 16px;
  }
}
.accordion-header h3 {
  font-size: 16px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .accordion-header h3 {
    width: 80%;
  }
}

.accordion-header:hover {
  color: #aed5ff;
}
.accordion-header:hover .plus:before, .accordion-header:hover .plus:after {
  background-color: #aed5ff;
}

.accordion-header.open {
  color: #7faddf;
}
.accordion-header.open .plus:before, .accordion-header.open .plus:after {
  background-color: #7faddf;
}

.plus {
  width: 24px;
  height: 24px;
}
.plus:before {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background-color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
.plus:after {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 24px;
  background-color: #f9f9f9;
  transform: rotate(90deg);
}

.plus.open:before {
  transform: rotate(90deg);
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 16px;
  padding: 0 40px;
}
@media only screen and (max-width: 576px) {
  .accordion-content {
    padding: 0 16px;
  }
}

.accordion-content.open {
  height: auto;
  padding: 0 40px 20px;
}
@media only screen and (max-width: 576px) {
  .accordion-content.open {
    padding: 0 16px 16px;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.main-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  width: 276px;
  height: 82px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/button-dark-3fad0dcb.png");
}
@media only screen and (max-width: 768px) {
  .main-button {
    width: 293px;
    height: 72px;
    background-image: url("/assets/button-dark-mobile-c37ba4e9.png");
  }
}
.main-button:hover {
  background-image: url("/assets/button-dark-hover-8356263f.png");
}
@media only screen and (max-width: 768px) {
  .main-button:hover {
    background-image: url("/assets/button-dark-mobile-hover-65442daa.png");
  }
}
.main-button p {
  font-family: "Inter";
  width: 100%;
  padding: 0;
  color: #f9f9f9;
  position: relative;
  z-index: 1;
}

.light-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  width: 276px;
  height: 82px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/button-a6f6a60a.svg");
  filter: drop-shadow(0px 0px 20px rgba(208, 255, 255, 0.25)) drop-shadow(0px 0px 30px rgba(208, 255, 255, 0.2)) drop-shadow(0px 0px 60px rgba(208, 255, 255, 0.2));
}
@media only screen and (max-width: 768px) {
  .light-button {
    width: 293px;
    height: 72px;
  }
}
.light-button:hover {
  background-image: url("/assets/button-hover-c7596972.svg");
}
.light-button p {
  font-family: "Inter";
  width: 100%;
  padding: 0;
  color: #151319;
  position: relative;
  z-index: 1;
}

.orange-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  width: 593px;
  height: 114px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/button-orange-6c341889.png");
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 0px 20px rgba(255, 233, 213, 0.25)) drop-shadow(0px 0px 30px rgba(255, 233, 213, 0.2)) drop-shadow(0px 0px 60px rgba(255, 233, 213, 0.2));
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .orange-button {
    background-image: url("/assets/button-orange-mobile-0a35198e.png");
  }
}
.orange-button:hover {
  background-image: url("/assets/button-orange-hover-39883f2f.png");
}
@media only screen and (max-width: 768px) {
  .orange-button:hover {
    background-image: url("/assets/button-orange-mobile-hover-b0031719.png");
  }
}
.orange-button p {
  font-family: "Inter";
  width: 100%;
  padding: 0;
  color: #151319;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange-small-button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/assets/button-orange-mobile-0a35198e.png");
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0px 0px 20px rgba(255, 233, 213, 0.25)) drop-shadow(0px 0px 30px rgba(255, 233, 213, 0.2)) drop-shadow(0px 0px 60px rgba(255, 233, 213, 0.2));
  margin: 40px 0;
}
@media only screen and (max-width: 768px) {
  .orange-small-button {
    width: 293px;
    height: 87px;
  }
}
.orange-small-button:hover {
  background-image: url("/assets/button-orange-mobile-hover-b0031719.png");
}
.orange-small-button p {
  font-family: "Inter";
  width: 100%;
  padding: 0;
  color: #151319;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}.age-modal {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 760px) {
  .age-modal {
    background-color: rgba(0, 0, 0, 0.9);
  }
}
.age-modal h3 {
  font-size: 40px;
  opacity: 0.9;
  font-family: "Inter", sans-serif;
  padding: 0 5px;
  margin: 10px 0;
}
@media screen and (max-width: 1250px) {
  .age-modal h3 {
    font-size: 30px;
  }
}
.age-modal .blur {
  position: absolute;
}

.attention-text {
  color: red;
  font-size: 50px !important;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
}

.modal-buttons-wrapper {
  display: flex;
  margin: 20px;
  z-index: 1;
  gap: 10px;
}
@media screen and (max-width: 760px) {
  .modal-buttons-wrapper {
    flex-direction: column;
  }
}

.age-modal-hide {
  display: none;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.divider {
  width: 100%;
  position: absolute;
  right: 0;
  z-index: 50;
}
.divider-top {
  top: 0;
}
.divider-top-m {
  display: none;
}
@media only screen and (max-width: 768px) {
  .divider-top {
    display: none;
  }
  .divider-top-m {
    display: block;
  }
}
.divider-bottom {
  bottom: 0;
}
.divider-bottom-m {
  bottom: 0;
  display: none;
}
@media only screen and (max-width: 768px) {
  .divider-bottom {
    display: none;
  }
  .divider-bottom-m {
    display: block;
  }
}.svg_social-icon {
  width: 50px;
}
.svg_social-icon svg {
  width: 100%;
  height: 100%;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.home-footer-img {
  display: none;
}

.footer {
  display: flex;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  background-image: url("/assets/footer-bg-00a7d74b.png");
}
@media only screen and (max-width: 576px) {
  .footer {
    background-image: url("/assets/footer-bg-m-ca853146.png");
  }
}
.footer_main-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/assets/testbg-3c20b0d4.png");
}
@media only screen and (max-width: 1920px) {
  .footer_main-page {
    background-position: top;
  }
}
@media (min-width: 1920px) {
  .footer_main-page {
    background-position: center;
    min-height: 120vh;
  }
}
.footer_main-page .img-roots {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 40%;
}
@media only screen and (max-width: 1024px) {
  .footer_main-page .img-roots {
    justify-content: flex-end;
    height: 250px;
  }
  .footer_main-page .img-roots img:nth-child(1) {
    display: none;
  }
}
.footer .footer_info {
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1920px) {
  .footer .footer_info {
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer .footer_info {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 576px) {
  .footer .footer_info {
    margin: 0 auto 30px;
  }
}
.footer .footer_info .logo-company {
  margin-top: 300px;
}
@media only screen and (max-width: 1920px) {
  .footer .footer_info .logo-company {
    margin-top: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .footer .footer_info .logo-company {
    margin-top: 72px;
  }
}

.footer_faq {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 950px;
}
@media only screen and (max-width: 768px) {
  .footer_faq {
    padding: 0 32px;
    min-height: 0;
  }
}
.footer_faq h2 {
  text-align: center;
  padding: 150px 0 60px;
  margin: 0;
}
@media only screen and (max-width: 1024px) {
  .footer_faq h2 {
    padding: 80px 0 32px;
    text-align: left;
  }
}
.footer_faq p {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .footer_faq p {
    margin-top: 16px;
  }
}

.logo-company {
  width: 90px;
  height: 90px;
  transition: all 0.3s ease-in-out;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 150px;
  margin-bottom: 60px;
  background-image: url("/assets/company-logo-6a213c98.svg");
}
.logo-company:hover {
  background-image: url("/assets/company-logo-hover-0beb7aa7.svg");
}
.logo-company:hover img {
  display: block;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .logo-company {
    margin-top: 60px;
    margin-bottom: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  .logo-company {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-company {
    width: 60px;
    height: 60px;
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.logo-company img {
  width: 90px;
  height: 90px;
  display: none;
}
@media only screen and (max-width: 768px) {
  .logo-company img {
    width: 60px;
    height: 60px;
  }
}

.footer-social_icons {
  display: flex;
  min-width: 296px;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .footer-social_icons {
    margin-bottom: 48px;
  }
}
.footer-social_icons svg {
  cursor: pointer;
}
.footer-social_icons svg path {
  transition: all 0.2s ease-in-out;
}
.footer-social_icons svg:hover path {
  fill: #7faddf;
}

.footer_info {
  max-width: 896px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 50px;
}
@media only screen and (max-width: 1920px) {
  .footer_info {
    margin: 0 auto 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer_info {
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 576px) {
  .footer_info {
    margin: 0 auto 30px;
  }
}

.footer-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 22px;
  margin-bottom: 60px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .footer-nav {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .footer-nav {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .footer-nav {
    width: 320px;
    font-size: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1250px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav .footer-nav-line {
  height: 26px;
  border: 1px #f9f9f9 solid;
}
.footer-nav .active_li {
  color: #aed5ff;
}
.footer-nav a {
  font-family: Inter, sans-serif;
  color: white;
  position: relative;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.2s linear;
  letter-spacing: 0.05em;
  margin: 0 25px;
  width: 110px;
}
.footer-nav a:hover {
  color: #7faddf;
}
.footer-nav a:last-child:after {
  display: none;
}
@media only screen and (max-width: 576px) {
  .footer-nav a {
    text-align: center;
    width: 75px;
    margin: 0 15px;
  }
}

@media screen and (max-width: 1250px) {
  .footer-nav-mobile {
    display: flex;
    margin: 0 auto 24px;
  }
}

.footer-trademark {
  font-family: Inter, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer-trademark {
    padding: 0 15px;
  }
}
.footer-trademark p {
  color: hsla(0, 0%, 100%, 0.7);
  font-size: 18px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .footer-trademark p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1440px) {
  .footer-trademark p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 576px) {
  .footer-trademark p {
    font-size: 12px;
  }
}.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0ms !important;
  transition-duration: 0ms !important;
}
.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  -o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}
.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -o-transition: -o-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
  transition: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
  transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
  transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
  transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  top: 50% !important;
  left: 0% !important;
  max-width: none !important;
  max-height: none !important;
}
.lg-icon.lg-zoom-in:after {
  content: "\e311";
}
.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 1;
  pointer-events: auto;
}
.lg-icon.lg-actual-size {
  font-size: 20px;
}
.lg-icon.lg-actual-size:after {
  content: "\e033";
}
.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}
.lg-icon.lg-zoom-out:after {
  content: "\e312";
}
.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}
.lg-outer[data-lg-slide-type=video] .lg-zoom-in,
.lg-outer[data-lg-slide-type=video] .lg-actual-size,
.lg-outer[data-lg-slide-type=video] .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,
.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none;
}@font-face {
  font-family: "lg";
  src: url("data:font/woff2;base64,d09GMgABAAAAAAkcAAsAAAAAEogAAAjNAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAABmAAgSQRCAqcLJZKCzoAATYCJANwBCAFgkoHIBupDgDm53Gzej8JpU0wqygVVyoWwphIsuuw60jpmBY6ppTa7mk7jtx57UQ0V2ulvfmteSIQji061T2HvfDEECASKizU5VUQXFjFRtgYTVg+woiYDVezOThR4tAvr/YYgOO/RZ+BAABzYtMA8Kl8Neg3UIDCoCkOyWBuLcCvSHycH78QvhFxmUCK03A0RwGSvXBAHgR8UB8DMvocJYAgbiZiJnqmYGbXjG3mz7P8nHhe8Uvxr0j+fzwPABAjWT1E83IJHh/x87G/jv1l7JtYR+y+WF2MKAai/qfDtfIRt7hBikI8D1IpipXqWqYSDgDBfwE7qDLw5EEALqFRDMKAsApNwchXAJgFL/WETMbKcDVSifR6QkjwkDaRTEugqlBtKVcL6Smi1dHlIqUmuii6Pic1JTIlFTX3uRenMNpiCiKOCZBm2ges0b/ScigDVgcb2MEHfloel7e1z208KrZUeQFjK0dIkbl6FOFczRhFE6zaRklPlz52tOXcKtmpdqisgHnbxRatg66vsZNHaWMPQ/eZmH6jaavlNASsipbKwVZSYrRm1mywI0670UEdhLy+yuscolSZJHKwg5IyNzRJQbKRZiicwnYiChjO1vSbKCBpkAgCjGIb6KCvA5GL0VHeUDwAQEHkSC2ToBJhKN9KAneim2ekLf1vENf3mjT3vAS295XY2MMgzRpSqTVWpt4ang+ksXynRUQPlkFOu+b6Yw0jBp8krbXbYbjc5mn6KpsNWKtqtcNz0D8xTTQKzthbZYAxLev3NkFgyYWsngBjGo8jg6a9Y3rKR9Pfqun10RvJi9X9foZGvrltMkJgWR7dhI7SSITEaBWIQQTMUSOJkTi5nlqpZUfNKcYD1Do/ZdkbR8UeVpKLSbMVgKLX0flzQYqCrLpll+/vus2IM9+lbdTgWWRLQJqvaq7eHKulgL2ssp7LrpxR2DBI/ja1zXvi7cS1E0Gr0uhy7PUGwPmdkkdjEYOjpGnQRXowC/GBq51eymLRXrsXsTzXX37VlXzeVxoI6m8Gy67oBnzsB6DoQYY7GHM2fbT4oS9zON45lPnwbmww2BL0G89EnfaVPi5eJ3NZFtjc277Wb9M1A+UWG2WZyrj6PMKmLHRoH04iZLuivlsHTmm9/qYJ1r2Z90DtuKYduK6SdNZ3dRRxHAoE+l4HGM6MyIe+0se+zHEfsP4s2sqqnVdSTE/8lCVYMRVsuBVEJOvT3fa1Xr4X2iDZflVFmxyDmpu1r8b9IsVzXUB9w1/l9ccf7WCszaI1ATtUx7oRztk1dtbBcciudJAi83Vv2yaTg9uON6toxLlIM2GVxClo2eVBt5gcOHRwHLIpptC92TeKRi3MjtBkTAOaoU+6P1q364+kdgt/+xh2fRvlOf2p5xR4ut7P4s0sPwY63OguajQWuYqMjUWaA9100ya6yHdHr/BMyxN9QmGa2zjPnbZr17KTy9weKwqXYtqjcMunRkgE9kP+Refvml14hAZw8WFQGmZnnaEi0eLUQTCc+tLSphVyaUH6lAJoXjF1MDiaFSOexNCRKYW8TOkhKzDEDjPDvHHI3c5hXbQLhujhUuPmBYd+N/EaktFsDqoDo4/G0yx70s3SSuXJDIvjMNsIQ7TDqb+/sv8NHGl6BvDAMOnsCpv9PQcP9tS6N294zEnwtNdt2tfTXSz7JGwAqALmbKpr90BaeqA9tlvduWP4/xa0thZcJMNDC6XqrFuy2xGF7YaiQkN7UfhEbMaNkOxQHezh7YVFBsP9TcoybgmzhaExmpxb/78Naf89LmVWthVvvSWh3rZUWtlMFStWENDf5uqEd2LiP/M/fvWEWUntjnTynpI2ainnLdjPUIvL2uGFJvoUQy0taZvPePLqxy0lK6mUo8yp6B+WtdyyTHivdrgLZrhbvAOlWMbQEJtJZ7JuXgRLC+hwe/kb90WvW4U4/PGGRUmLk995J1loWLRhQwVCKkve4JOS8YJASY+P8KQNe/vahGNU8TJRe/eCaaG7ozsrt6Ixu623v/ck0rvlG2EYBoAh6abIxoZ9UeHoNQAiMPKv/8pIi+47EAMHcfLh7dyX8q0Po+Iap94fFob+4fr/DXr96x+j1x2dhZ0dBfRqardjBIZ+M+S6Lo6ojE+4HKF7Kz7zG+eCOkwQ98UfOirDqrckKPVz3sR8srT/gsev3H0p3Rq7wkD1JLE/XZ+2Ze5pV5eqPiqqmBkc1PQYDBvlk5MdqQff21UyInvyhyjMsHXV33tD3zaQ7Us/NKfX44qLQ/8ffOtzXIjnymRNXampDWkGDR5yOyThG2/9UXC6liWEEz0hX+uR1Xg780i4eNOSig3Fk2pSkPpBqrrmx3/+TbB2ya9ePfrGJx98H8rvjKsRQoSh/G0s8cO6bhwwUI8vUz1c21B04cscrjVV1q8zzCVJkmv/T8y21/bLszJpxeqptculJZpleUyKrPX/X3QZBL+rl+hTWuR/2At7LhYVX9BBsULaqi9LWh+6xMDLW6V65dy2gsMbszemQ96XMDvrSfRM60ceo5R/oGDXB0KrxJsTACBhbV48S4Cd5IeyAVdU5Yg+2nPGKS+XAwmOljrwpIdMmdJPexI9ndnIXUIVgety83YzRdXD6E6YvF0gVGJRMhpOyQW6xGM0Zbq7zw8AoAcWAYa7cSOsARF+Fm8DBAAYgDUq07ZSWvm3UIoAAIAfde39SB7Hz+K/xR9vAkMBg0YE8PKEChkH47+9MDggitAdAEObxnBmZAFu5C4eyMxqN/2c3ZUK2qJ+tDUvrTR/BGHDbqZplsDNZVVQjIaim4XA6TE4YLCfEdweIwAKaArx8aN1JETYMNMDEWGYZdRjMJDAB4T7+EEiwAdiBKCBlRQCfnwjEgohbttG2AYb3yS+7tWIDW1rd/6mMedAM+yEHbAvWge0XgNevwdW20Cmdfb6NXBYqm+DtZHUyUW88R/abjA/OxeYpIa9sNmNGMqHbMgd2CAZPzVuOfQFg5H275pWwx73mQMODQAAAA==") format("woff2"), url("/assets/lg-22b72ba5.ttf?io9a6k") format("truetype"), url("/assets/lg-fefc5c0d.woff?io9a6k") format("woff"), url("/assets/lg-f2fe1c00.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}
.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}
.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}
.lg-single-item .lg-next,
.lg-single-item .lg-prev {
  display: none;
}
.lg-next {
  right: 20px;
}
.lg-next:before {
  content: "\e095";
}
.lg-prev {
  left: 20px;
}
.lg-prev:after {
  content: "\e094";
}
@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@-ms-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  -o-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}
.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  -o-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}
.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}
.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  box-shadow: none;
}
.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}
.lg-toolbar .lg-icon:hover {
  color: #fff;
}
.lg-toolbar .lg-close:after {
  content: "\e070";
}
.lg-toolbar .lg-maximize {
  font-size: 22px;
}
.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}
.lg-toolbar .lg-download:after {
  content: "\e0f2";
}
.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  -o-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}
.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}
.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}
.lg-sub-html a {
  color: inherit;
}
.lg-sub-html a:hover {
  text-decoration: underline;
}
.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}
.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.lg-error-msg {
  font-size: 14px;
  color: #999;
}
.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}
.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
  opacity: 0;
  -moz-transform: scale3d(0.5, 0.5, 0.5);
  -o-transform: scale3d(0.5, 0.5, 0.5);
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
  opacity: 1;
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}
.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}
.lg-group:after {
  content: "";
  display: table;
  clear: both;
}
.lg-container {
  display: none;
  outline: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-on {
  scroll-behavior: unset;
}
.lg-overlay-open {
  overflow: hidden;
}
.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}
.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}
.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}
.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}
.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.lg-outer * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lg-outer.lg-zoom-from-image {
  opacity: 1;
}
.lg-outer.lg-visible {
  opacity: 1;
}
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  -o-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}
.lg-outer .lg-item {
  display: none !important;
}
.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("/assets/loading-298ad3ff.gif") no-repeat scroll center center transparent;
}
.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}
.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}
.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}
.lg-outer .lg-item.lg-complete {
  background-image: none;
}
.lg-outer .lg-item.lg-current {
  z-index: 1060;
}
.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}
.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}
.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}
.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  transition: opacity 0.2s ease-out 0.15s;
}
.lg-outer .lg-media-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.lg-outer .lg-media-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}
.lg-outer .lg-has-iframe .lg-media-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}
.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  -o-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}
.lg-backdrop.in {
  opacity: 1;
}
.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  -moz-transition: none 0s ease 0s !important;
  -o-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
  opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.lg-container {
  display: none;
}
.lg-container.lg-show {
  display: block;
}
.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}
.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}
.lg-inline .lg-backdrop {
  z-index: 1;
}
.lg-inline .lg-outer {
  z-index: 2;
}
.lg-inline .lg-maximize:after {
  content: "\e909";
}
.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  -moz-transition: -moz-transform 0.35s ease-out 0s;
  -o-transition: -o-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.gallery_container .lg-react-element {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .gallery_container .lg-react-element {
    gap: 0;
  }
}
@media screen and (max-width: 329px) {
  .gallery_container .lg-react-element {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1024px) {
  .gallery_container {
    gap: 8px;
  }
}
.gallery_container .gallery_media-type {
  margin: 5px 0;
}
.gallery_container .gallery_media-title {
  margin: 5px 0 0px 0;
  font-weight: bold;
  color: #7faddf;
}
.gallery_container .gallery_item-wrapper {
  position: relative;
  max-width: 320px;
  filter: contrast(95%);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 650px) {
  .gallery_container .gallery_item-wrapper {
    max-width: 240px;
  }
}
@media screen and (max-width: 550px) {
  .gallery_container .gallery_item-wrapper {
    max-width: 210px;
  }
}
@media screen and (max-width: 429px) {
  .gallery_container .gallery_item-wrapper {
    max-width: 150px;
  }
}
@media screen and (max-width: 379px) {
  .gallery_container .gallery_item-wrapper {
    max-width: 140px;
  }
}
@media screen and (max-width: 329px) {
  .gallery_container .gallery_item-wrapper {
    max-width: 120px;
  }
}
.gallery_container .gallery_item-wrapper:hover {
  filter: contrast(102%);
}
.gallery_container .gallery_item-wrapper img {
  width: 100%;
  height: 100%;
}
.gallery_container .gallery_item-wrapper .gallery_item-img {
  max-width: 320px;
}
.gallery_container .gallery_item-wrapper .img-border-wrapper {
  top: -7px;
}
@media screen and (max-width: 769px) {
  .gallery_container .gallery_item-wrapper .img-border-wrapper {
    top: -5px;
  }
}
@media screen and (max-width: 414px) {
  .gallery_container .gallery_item-wrapper .img-border-wrapper {
    top: -3px;
  }
}

.lg-prev, .lg-next {
  background-color: #151319;
  border-radius: 100px;
}
.lg-prev:hover, .lg-next:hover {
  color: #f9f9f9;
}

.lg-on body::-webkit-scrollbar-thumb {
  background-color: black;
}@font-face {
  font-family: 'anticon';
  src: url('//at.alicdn.com/t/font_1434092639_4910953.eot');
  /* IE9*/
  src: url('//at.alicdn.com/t/font_1434092639_4910953.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('//at.alicdn.com/t/font_1434092639_4910953.woff') format('woff'), /* chrome、firefox */ url('//at.alicdn.com/t/font_1434092639_4910953.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('//at.alicdn.com/t/font_1434092639_4910953.svg#iconfont') format('svg');
  /* iOS 4.1- */
}
.rc-dropdown {
  position: absolute;
  left: -9999px;
  top: -9999px;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.rc-dropdown-hidden {
  display: none;
}
.rc-dropdown .rc-menu {
  outline: none;
  position: relative;
  list-style-type: none;
  padding: 0;
  margin: 2px 0 2px;
  text-align: left;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 5px #ccc;
  background-clip: padding-box;
  border: 1px solid #ccc;
}
.rc-dropdown .rc-menu > li {
  margin: 0;
  padding: 0;
}
.rc-dropdown .rc-menu:before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.01);
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item {
  position: relative;
  display: block;
  padding: 7px 10px;
  clear: both;
  font-size: 12px;
  font-weight: normal;
  color: #666666;
  white-space: nowrap;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:hover,
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-active,
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  background-color: #ebfaff;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected {
  position: relative;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-selected:after {
  content: '\e613';
  font-family: 'anticon';
  font-weight: bold;
  position: absolute;
  top: 6px;
  right: 16px;
  color: #3CB8F0;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-disabled:hover {
  color: #ccc;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.rc-dropdown .rc-menu > .rc-dropdown .rc-menu-item-divider {
  height: 1px;
  margin: 1px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  line-height: 0;
}
.rc-dropdown-slide-up-enter,
.rc-dropdown-slide-up-appear {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  display: block !important;
  opacity: 0;
  animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  animation-play-state: paused;
}
.rc-dropdown-slide-up-leave {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  transform-origin: 0 0;
  display: block !important;
  opacity: 1;
  animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  animation-play-state: paused;
}
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-bottomRight,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-bottomRight {
  animation-name: rcDropdownSlideUpIn;
  animation-play-state: running;
}
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-enter.rc-dropdown-slide-up-enter-active.rc-dropdown-placement-topRight,
.rc-dropdown-slide-up-appear.rc-dropdown-slide-up-appear-active.rc-dropdown-placement-topRight {
  animation-name: rcDropdownSlideDownIn;
  animation-play-state: running;
}
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomLeft,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomCenter,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-bottomRight {
  animation-name: rcDropdownSlideUpOut;
  animation-play-state: running;
}
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topLeft,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topCenter,
.rc-dropdown-slide-up-leave.rc-dropdown-slide-up-leave-active.rc-dropdown-placement-topRight {
  animation-name: rcDropdownSlideDownOut;
  animation-play-state: running;
}
@keyframes rcDropdownSlideUpIn {
  0% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideUpOut {
  0% {
    opacity: 1;
    transform-origin: 0% 0%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 0%;
    transform: scaleY(0);
  }
}
@keyframes rcDropdownSlideDownIn {
  0% {
    opacity: 0;
    transform-origin: 0% 100%;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform-origin: 0% 100%;
    transform: scaleY(1);
  }
}
@keyframes rcDropdownSlideDownOut {
  0% {
    opacity: 1;
    transform-origin: 0% 100%;
    transform: scaleY(1);
  }
  100% {
    opacity: 0;
    transform-origin: 0% 100%;
    transform: scaleY(0);
  }
}
.rc-dropdown-arrow {
  position: absolute;
  border-width: 8px / 2;
  border-color: transparent;
  box-shadow: 0 1px 5px #ccc;
  border-style: solid;
  transform: rotate(45deg);
}
.rc-dropdown-show-arrow.rc-dropdown-placement-top,
.rc-dropdown-show-arrow.rc-dropdown-placement-topLeft,
.rc-dropdown-show-arrow.rc-dropdown-placement-topRight {
  padding-bottom: 6px;
}
.rc-dropdown-show-arrow.rc-dropdown-placement-bottom,
.rc-dropdown-show-arrow.rc-dropdown-placement-bottomLeft,
.rc-dropdown-show-arrow.rc-dropdown-placement-bottomRight {
  padding-top: 6px;
}
.rc-dropdown-placement-top .rc-dropdown-arrow,
.rc-dropdown-placement-topLeft .rc-dropdown-arrow,
.rc-dropdown-placement-topRight .rc-dropdown-arrow {
  bottom: 4px;
  border-top-color: white;
}
.rc-dropdown-placement-top .rc-dropdown-arrow {
  left: 50%;
}
.rc-dropdown-placement-topLeft .rc-dropdown-arrow {
  left: 15%;
}
.rc-dropdown-placement-topRight .rc-dropdown-arrow {
  right: 15%;
}
.rc-dropdown-placement-bottom .rc-dropdown-arrow,
.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow,
.rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  top: 4px;
  border-bottom-color: white;
}
.rc-dropdown-placement-bottom .rc-dropdown-arrow {
  left: 50%;
}
.rc-dropdown-placement-bottomLeft .rc-dropdown-arrow {
  left: 15%;
}
.rc-dropdown-placement-bottomRight .rc-dropdown-arrow {
  right: 15%;
}
button {
  background: none;
  border: none;
  font-family: "Inter";
  font-size: 20px;
  color: #f9f9f9;
  cursor: pointer;
}

.rc-dropdown {
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  text-transform: uppercase;
  font-size: 20px;
  border-radius: 10px;
}
.rc-dropdown .rc-menu {
  border: none;
  background: none;
  box-shadow: none;
  text-align: center;
}
.rc-dropdown .rc-menu .rc-menu-item {
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.rc-dropdown .rc-menu .rc-menu-item-active {
  cursor: pointer;
  color: #aed5ff;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.navbar {
  height: 120px;
  max-height: 120px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1920px) {
  .navbar {
    height: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .navbar {
    height: 64px;
  }
}
.navbar-scrolled {
  height: 6rem;
  background-color: #151319;
}
@media only screen and (max-width: 768px) {
  .navbar-scrolled {
    height: 80px;
  }
}
.navbar__wrapper__desktop {
  width: 100%;
  margin: 20px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .navbar__wrapper__desktop {
    margin: 20px 100px;
  }
}
@media only screen and (max-width: 768px) {
  .navbar__wrapper__desktop {
    display: none;
  }
}
.navbar__wrapper__mobile {
  width: 100%;
  display: none;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .navbar__wrapper__mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
    position: relative;
  }
}
.navbar__logos__logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.navbar__logos__logo-company {
  width: 68px;
  height: 68px;
  background-image: url("/assets/company-logo-6a213c98.svg");
}
.navbar__logos__logo-company img {
  display: none;
}
.navbar__logos__logo-company:hover {
  background-image: url("/assets/company-logo-hover-0beb7aa7.svg");
}
.navbar__logos__logo-company:hover img {
  display: block;
}
@media only screen and (max-width: 768px) {
  .navbar__logos__logo-company {
    width: 40px;
    height: 40px;
  }
}
.navbar__logos__logo-company img {
  width: 68px;
  height: 68px;
}
@media only screen and (max-width: 768px) {
  .navbar__logos__logo-company img {
    width: 40px;
    height: 40px;
  }
}
.navbar__logos__logo-game {
  width: 194px;
  height: 56px;
  background-image: url("/assets/slut-craft-logo-625cfaec.svg");
}
@media only screen and (max-width: 768px) {
  .navbar__logos__logo-game {
    width: 165px;
    height: 48px;
  }
}
.navbar__logos__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
@media only screen and (max-width: 1024px) {
  .navbar__logos__wrapper {
    gap: 20px;
  }
}
.navbar .mobile-nav {
  position: absolute;
  width: 100%;
  height: 200vh;
  background-color: #151319;
  transform: translateX(-100%);
  transition: all 0.5s ease-in-out;
  top: 0;
  opacity: 0;
}
.navbar .mobile-nav nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px;
  margin-top: 60px;
}
.navbar .mobile-nav button {
  border: none;
  text-align: left;
}
.navbar .mobile-nav li,
.navbar .mobile-nav a,
.navbar .mobile-nav button {
  color: #f9f9f9;
  text-decoration: none;
  transition: all 0.1s linear;
  font-family: "Inter";
  font-weight: 500;
  cursor: pointer;
  background-color: #151319;
  width: 70%;
  font-size: 18px;
  border-radius: 16px;
  padding: 8px 16px;
  margin-bottom: 16px;
  -webkit-box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.2);
}
.navbar .mobile-nav li:hover,
.navbar .mobile-nav a:hover,
.navbar .mobile-nav button:hover {
  color: #7faddf;
  transform: scale(1.1);
}
.navbar .show-nav {
  opacity: 1;
  transform: translateX(0%);
}
.navbar .mobile-lang {
  padding-top: 32px;
}
.navbar__nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f9f9f9;
  font-size: 20px;
  width: 100%;
  margin: 0 120px;
}
@media only screen and (max-width: 768px) {
  .navbar__nav {
    display: none;
  }
}
.navbar__nav__link {
  color: #f9f9f9;
  text-decoration: none;
  transition: all 0.1s linear;
  font-family: Inter, sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.navbar__nav__link:hover {
  color: #7faddf;
  transform: scale(1.1);
}
.navbar__nav__links {
  display: flex;
  gap: 50px;
}
.navbar__nav .active_li {
  color: #aed5ff;
}

.mobile-icons {
  display: flex;
  align-items: center;
}

.hamburger-wrapper {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hamburger-wrapper {
    display: block;
  }
}

.active_li {
  color: #aed5ff;
}

.Dropdown-control {
  padding: 0;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.marquee {
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  width: 100%;
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .marquee {
    margin-top: 16px;
  }
}
.marquee-scrolled {
  height: 6rem;
  background-color: #151319;
  margin-top: -12px;
}
@media only screen and (max-width: 768px) {
  .marquee-scrolled {
    height: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .marquee {
    width: calc(100% - 16px);
    height: 40px;
    padding: 0;
  }
}
.marquee-text {
  color: #F9F9F9;
  z-index: 110;
}
.marquee-container {
  position: relative;
  height: 64px;
  overflow: hidden;
  z-index: 100;
  padding: 0 120px;
  background: rgba(44, 58, 74, 0.85);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 768px) {
  .marquee-container {
    padding: 8px 16px;
    height: 40px;
  }
}

.marquee1 {
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 120px;
  width: calc(100% - 240px);
}
@media only screen and (max-width: 768px) {
  .marquee1 {
    width: calc(100% - 16px);
    height: 40px;
    padding: 0;
  }
}

.close-button {
  position: absolute;
  top: 25px;
  right: 76px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .close-button {
    width: 12px;
    height: 12px;
    top: 20px;
    right: 10px;
  }
}
.close-button span {
  position: absolute;
  width: 14px;
  height: 2px;
  background-color: #f9f9f9;
}
.close-button span:first-child {
  transform: rotate(45deg);
}
.close-button span:last-child {
  transform: rotate(-45deg);
}.about-us_desktop .our-values_items-box,
.about-us_mobile .our-values_items-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1300px;
}
.about-us_desktop .our-values_items-box .our-values_item-wrapper,
.about-us_mobile .our-values_items-box .our-values_item-wrapper {
  position: relative;
  margin: 20px;
}
.about-us_desktop .our-values_items-box .our-values_item-img,
.about-us_mobile .our-values_items-box .our-values_item-img {
  max-width: 600px;
  position: relative;
}
.about-us_desktop .our-values_items-box .our-values_item-img:after,
.about-us_mobile .our-values_items-box .our-values_item-img:after {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s linear;
  background: linear-gradient(to bottom, transparent 25%, rgb(21, 19, 25) 65%);
}
.about-us_desktop .our-values_items-box .our-values_item-img img,
.about-us_mobile .our-values_items-box .our-values_item-img img {
  width: 100%;
}
.about-us_desktop .our-values_items-box .our-values_item-info,
.about-us_mobile .our-values_items-box .our-values_item-info {
  position: absolute;
  z-index: 100;
  left: 50%;
  bottom: 0;
  width: 100%;
  text-align: center;
  transition: all 0.3s linear;
  transform: translate(-50%, 70%);
  height: 300px;
}
.about-us_desktop .our-values_items-box h4,
.about-us_mobile .our-values_items-box h4 {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  width: 90%;
  margin: auto;
  margin-bottom: 25px;
}
.about-us_desktop .our-values_items-box hr,
.about-us_mobile .our-values_items-box hr {
  width: 300px;
  height: 0px;
  border: 1px #7faddf solid;
}
.about-us_desktop .our-values_items-box p,
.about-us_mobile .our-values_items-box p {
  transition: all 0.3s linear;
  opacity: 0;
  width: 80%;
  margin: auto;
}
.about-us_desktop .show-info .our-values_item-info,
.about-us_mobile .show-info .our-values_item-info {
  transform: translate(-50%, 0%);
}
.about-us_desktop .show-info .our-values_item-img:after,
.about-us_mobile .show-info .our-values_item-img:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 20%, rgb(21, 19, 25) 65%);
  z-index: 100;
}
.about-us_desktop .show-info h4,
.about-us_mobile .show-info h4 {
  min-height: auto;
}
.about-us_desktop .show-info p,
.about-us_mobile .show-info p {
  opacity: 1;
  display: block;
}
.about-us_desktop .our-values_item-info-wrapper,
.about-us_mobile .our-values_item-info-wrapper {
  position: absolute;
  width: 100%;
  height: 99%;
  top: 0;
  bottom: 0;
  overflow: hidden;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.downloads-changelog {
  background-color: #151319;
  background-image: url("/assets/bg-f1c7551e.png");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 2561px) {
  .downloads-changelog {
    background-size: cover;
    background-position: 0 190%;
  }
}
@media only screen and (max-width: 576px) {
  .downloads-changelog {
    background-image: url("/assets/bg-m-130e8fd5.png");
  }
}
.downloads-changelog__heading {
  display: flex;
  align-items: center;
  height: 1200px;
  padding: 0 60px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .downloads-changelog__heading {
    height: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .downloads-changelog__heading {
    padding: 0 64px;
    height: 900px;
  }
}
@media only screen and (max-width: 768px) {
  .downloads-changelog__heading {
    padding: 0 32px;
    height: 600px;
    align-items: flex-end;
    margin-bottom: 72px;
  }
}
@media only screen and (max-width: 576px) {
  .downloads-changelog__heading {
    min-height: 850px;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 1024px) {
  .downloads-changelog__heading {
    padding: 0 32px;
  }
}
.downloads-changelog__heading__title {
  max-width: 665px;
}
.downloads-changelog__heading__title h1 {
  margin-bottom: 40px;
}
.downloads-changelog__heading__title p {
  line-height: 160%;
}
.downloads-changelog__heading__title h1,
.downloads-changelog__heading__title p {
  text-align: left;
}
.downloads-changelog__heading__button-wrapper {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 576px) {
  .downloads-changelog__heading__button-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
.downloads-changelog__heading__button-wrapper p {
  text-align: center;
}
.downloads-changelog__accordion {
  display: flex;
  flex-direction: column;
  max-width: 1140px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .downloads-changelog__accordion {
    padding: 0 32px;
  }
}
.downloads-changelog .bold-p {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  padding: 30px 0 10px;
}
.downloads-changelog .changelog-p {
  font-size: 16px;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.downloads-header {
  background-color: #151319;
  background-image: url("/assets/bg-4e0d2911.png");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 2561px) {
  .downloads-header {
    background-size: cover;
    background-position: 0 190%;
  }
}
@media only screen and (max-width: 576px) {
  .downloads-header {
    background-image: url("/assets/bg-m-ab7f8bc8.png");
  }
}
.downloads-header__heading {
  height: 1200px;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .downloads-header__heading {
    height: 1100px;
  }
}
@media only screen and (max-width: 1440px) {
  .downloads-header__heading {
    height: 900px;
    padding: 0 64px;
  }
}
@media only screen and (max-width: 1024px) {
  .downloads-header__heading {
    height: 650px;
    padding: 0 32px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .downloads-header__heading {
    height: 100vh;
    align-items: flex-end;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 576px) {
  .downloads-header__heading {
    min-height: 900px;
    align-items: flex-end;
  }
}
.downloads-header__heading__title {
  max-width: 665px;
}
.downloads-header__heading__title p {
  line-height: 160%;
  margin: 50px 0;
}
@media only screen and (max-width: 576px) {
  .downloads-header__heading__title p {
    margin: 24px 0;
  }
}
.downloads-header__heading__title h1,
.downloads-header__heading__title p {
  text-align: left;
}
.downloads-header__heading__button-wrapper {
  display: flex;
  gap: 40px;
  max-width: 592px;
}
@media only screen and (max-width: 576px) {
  .downloads-header__heading__button-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-left: 0px;
  }
}
.downloads-header__heading__button-wrapper p {
  text-align: center;
  margin: 0;
}
.downloads-header__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 100px 60px 120px;
}
@media only screen and (max-width: 1920px) {
  .downloads-header__links {
    padding: 100px 60px 70px;
  }
}
@media only screen and (max-width: 1440px) {
  .downloads-header__links {
    padding: 100px 64px 70px;
  }
}
@media only screen and (max-width: 768px) {
  .downloads-header__links {
    padding: 72px 32px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .downloads-header__links {
    padding: 72px 32px 28px;
  }
}
.downloads-header__links-link {
  max-width: 640px;
  margin-bottom: 80px;
  color: #f9f9f9;
}
@media only screen and (max-width: 768px) {
  .downloads-header__links-link {
    margin-bottom: 48px;
  }
}
.downloads-header__links-link__title {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .downloads-header__links-link__title {
    gap: 16px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .downloads-header__links-link__title img {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .downloads-header__links-link__title h3 {
    font-size: 18px;
  }
}
.downloads-header__links-container {
  color: #cbcbcc;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.downloads-header__links-container a {
  color: #cbcbcc;
}

.downloads-page {
  background-color: #151319;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.chapter-section {
  position: relative;
  background-color: #21141b;
}
@media (min-width: 1920px) {
  .chapter-section {
    height: 1080px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .chapter-section {
    height: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .chapter-section {
    height: 900px;
  }
}
@media only screen and (max-width: 1024px) {
  .chapter-section {
    height: 100%;
  }
}
.chapter-section__one {
  background-image: url("/assets/bottom-layer-big-945c76f8.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__one {
    background-image: none;
    height: 100%;
  }
}
.chapter-section__one .chapter-section__description {
  padding: 0 0 0 60px;
}
@media only screen and (max-width: 1440px) {
  .chapter-section__one .chapter-section__description {
    padding: 0 0 0 64px;
  }
}
@media only screen and (max-width: 1024px) {
  .chapter-section__one .chapter-section__description {
    max-width: 100%;
    padding: 0 64px;
  }
}
@media only screen and (max-width: 576px) {
  .chapter-section__one .chapter-section__description {
    padding: 0 32px 32px;
  }
}
.chapter-section__one__video {
  height: 100%;
}
@media (min-width: 1920px) {
  .chapter-section__one__video {
    height: 1080px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .chapter-section__one__video {
    height: 900px;
  }
}
@media only screen and (max-width: 1440px) {
  .chapter-section__one__video {
    height: 900px;
  }
}
.chapter-section__one__video video {
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__one__video {
    display: none;
  }
}
.chapter-section__one .front-layer {
  background-image: url("/assets/top-layer-88d04bf8.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 100%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 49;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__one .front-layer {
    background-image: none;
  }
}
.chapter-section__content-desktop {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.chapter-section__mobile-content img {
  width: 100vw;
}
.chapter-section__description {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  z-index: 50;
  font-size: 22px;
  width: 682px;
  padding: 0 60px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .chapter-section__description {
    font-size: 20px;
    width: 665px;
  }
}
@media only screen and (max-width: 1440px) {
  .chapter-section__description {
    font-size: 20px;
    width: 665px;
    padding: 0 64px;
  }
}
@media only screen and (max-width: 1024px) {
  .chapter-section__description {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .chapter-section__description {
    width: 100%;
    padding: 0 32px 32px;
  }
}

.mobile-img-top {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .mobile-img-top {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.gallery_section {
  position: relative;
  display: flex;
  justify-content: center;
  background-image: url("/assets/bg-9a64c889.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gallery_section .gallery_section-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 150px 0;
}
@media only screen and (max-width: 1024px) {
  .gallery_section .gallery_section-content {
    min-width: auto;
    margin: 80px 0;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .gallery_section .gallery_section-content h2 {
    margin: 0;
  }
}
.gallery_section .gallery_nav {
  list-style: none;
  background-color: rgba(23, 20, 28, 0.8);
  width: 70%;
  margin: 0;
  padding: 20px 0;
  border-radius: 25px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .gallery_section .gallery_nav {
    background: none;
    width: 85%;
    margin-bottom: 32px;
  }
}
.gallery_section .gallery_nav-wrapper {
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}
@media only screen and (max-width: 576px) {
  .gallery_section .gallery_nav-wrapper {
    gap: 10px;
  }
}
.gallery_section li {
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-weight: 400;
  transition: 0.1s ease-in-out;
  font-size: 1.9em;
}
@media (min-width: 1920px) {
  .gallery_section li {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 1920px) {
  .gallery_section li {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 1024px) {
  .gallery_section li {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.react-tabs__tab:hover {
  color: #aed5ff;
  transform: scale(1.1);
}

.react-tabs__tab--selected {
  color: #7faddf;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.get-started__section {
  background-image: url("/assets/bg-ad686b4d.png");
  height: 1290px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .get-started__section {
    height: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .get-started__section {
    background-image: none;
    background-color: #1c1117;
  }
}
.get-started__section .container {
  margin-left: 50%;
}
@media only screen and (max-width: 1024px) {
  .get-started__section .container {
    margin-left: 0;
  }
}
.get-started__info {
  width: 100%;
}
.get-started__info-items {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .get-started__info-items {
    gap: 32px;
  }
}
@media only screen and (max-width: 576px) {
  .get-started__info-items {
    margin-bottom: 0;
    padding: 0 32px 32px;
  }
}
.get-started__button-wrapper {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 1024px) {
  .get-started__button-wrapper {
    display: none;
  }
}
.get-started__section {
  position: relative;
  display: flex;
}
.get-started__section__img {
  position: relative;
}
.get-started__section-content {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
}
.get-started__info {
  position: relative;
  margin: 150px 0;
}
@media only screen and (max-width: 1024px) {
  .get-started__info {
    margin: 0;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .get-started__info {
    width: 665px;
  }
}
@media (min-width: 1920px) {
  .get-started__info {
    width: 665px;
  }
}
.get-started__info h2 {
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .get-started__info h2 {
    margin-left: 32px;
    margin-bottom: 48px;
  }
}
.get-started__info-item P {
  font-size: 22px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .get-started__info-item P {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1440px) {
  .get-started__info-item P {
    font-size: 20px;
  }
}
@media only screen and (max-width: 576px) {
  .get-started__info-item P {
    font-size: 16px;
  }
}
.get-started__item-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 576px) {
  .get-started__item-title {
    margin-bottom: 16px;
  }
}
.get-started__item-title img {
  height: 40px;
}
.get-started__item-title h3 {
  margin-left: 30px;
  font-size: 28px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .get-started__item-title h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1440px) {
  .get-started__item-title h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .get-started__item-title h3 {
    margin-left: 16px;
    font-size: 18px;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.header {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background-color: black;
}
@media only screen and (max-width: 768px) {
  .header {
    background-color: #151319;
  }
}
@media (min-width: 1920px) {
  .header {
    height: 1080px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header {
    height: 863px;
  }
}
@media only screen and (max-width: 1440px) {
  .header {
    height: 863px;
  }
}
@media (min-width: 1920px) {
  .header__video {
    height: 1080px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header__video {
    height: 863px;
  }
}
@media only screen and (max-width: 1440px) {
  .header__video {
    height: 863px;
  }
}
.header .container {
  display: flex;
  align-items: center;
  width: 1400px;
}
@media only screen and (max-width: 576px) {
  .header__video {
    display: none;
  }
}
.header__title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header__title-wrapper > a:nth-child(3) {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__title-wrapper {
    margin: auto;
    width: 665px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .header__title-wrapper {
    width: 665px;
  }
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .header__title-wrapper {
    width: 665px;
  }
}
@media (min-width: 1920px) {
  .header__title-wrapper {
    width: 665px;
  }
}
@media only screen and (max-width: 768px) {
  .header__title-wrapper {
    margin: 60% auto 0;
    padding: 0 32px 40px;
  }
}
@media only screen and (max-width: 576px) {
  .header__title-wrapper {
    margin: 110% auto 0;
    padding: 0 5px 40px;
  }
  .header__title-wrapper > a:nth-child(2) {
    display: none;
  }
  .header__title-wrapper > a:nth-child(3) {
    display: block;
  }
}
.header__logo-wrapper {
  position: relative;
  max-width: 100%;
  transition: all 0.2s ease-in-out;
}
.header__logo-wrapper .game-logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  width: 570px;
  height: 165px;
  background-image: url("/assets/slut-craft-logo-625cfaec.svg");
}
@media only screen and (max-width: 768px) {
  .header__logo-wrapper .game-logo {
    width: 296px;
    height: 79px;
  }
}
.header__background {
  position: absolute;
  top: 0;
  right: 0;
}
.header-mobile__bg {
  background-image: url("/assets/header-bg-mobile-4db88a19.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  min-height: 815px;
  margin: -20px 0 0;
  display: none;
}
@media screen and (max-width: 769px) {
  .header-mobile__bg {
    display: block;
  }
}

.header-social_icons {
  display: flex;
  gap: 40px;
  margin: 50px auto 0;
}
@media only screen and (max-width: 768px) {
  .header-social_icons {
    margin: auto;
    padding: 0 32px;
  }
}
@media only screen and (max-width: 576px) {
  .header-social_icons {
    padding: 0 5px;
  }
}
.header-social_icons svg {
  cursor: pointer;
}
.header-social_icons svg path {
  transition: all 0.2s ease-in-out;
}
.header-social_icons svg:hover path {
  fill: #7faddf;
}
@media only screen and (max-width: 768px) {
  .header-social_icons {
    display: none;
  }
}

.header-section_button-wrapper {
  display: flex;
  gap: 75px;
}
@media only screen and (max-width: 576px) {
  .header-section_button-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.header-section_info-title {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  line-height: 100%;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.17);
  margin: 45px 0 60px;
}
@media only screen and (max-width: 1920px) {
  .header-section_info-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-section_info-title {
    margin: 24px 0;
  }
}
@media only screen and (max-width: 576px) {
  .header-section_info-title {
    font-size: 18px;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.logo-section {
  background-image: url("/assets/bg-3e15c229.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 888px;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .logo-section {
    height: 747px;
  }
}
@media only screen and (max-width: 1440px) {
  .logo-section {
    height: 747px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section {
    height: 100%;
  }
}
.logo-section__logo-game {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  background-image: url("/assets/slut-craft-logo-625cfaec.svg");
}
.logo-section__character {
  position: absolute;
  bottom: 0;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .logo-section__character {
    height: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section__character {
    height: 100%;
  }
}
.logo-section__character.left {
  left: 0;
}
.logo-section__character.right {
  right: 0;
}
.logo-section__title__text {
  text-align: center;
  margin: 0 0 40px;
  color: #f9f9f9;
}
@media (min-width: 1920px) {
  .logo-section__title__text {
    font-size: 22px;
    margin: 0 0 60px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section__title__text {
    margin: 0 32px 24px;
  }
}
.logo-section_desktop {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .logo-section_desktop {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section_desktop__character {
    display: none;
  }
}
.logo-section_desktop__title {
  width: 35vw;
  height: 888px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (min-width: 1440px) and (max-width: 1919px) {
  .logo-section_desktop__title {
    height: 747px;
  }
}
@media only screen and (max-width: 1440px) {
  .logo-section_desktop__title {
    height: 747px;
  }
}
@media only screen and (max-width: 1024px) {
  .logo-section_desktop__title {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section_desktop__title {
    height: 100%;
    width: 100%;
  }
}
.logo-section_desktop__logo-game {
  width: 35vw;
  height: 20vh;
  margin-bottom: 40px;
}
@media (min-width: 1920px) {
  .logo-section_desktop__logo-game {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section_desktop__logo-game {
    margin-top: 76px;
    margin-bottom: 24px;
    width: 296px;
    height: 80px;
  }
}
.logo-section_desktop__buttons {
  display: flex;
  gap: 40px;
}
@media (min-width: 1920px) {
  .logo-section_desktop__buttons {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section_desktop__buttons {
    flex-direction: column;
    gap: 10px;
  }
}
.logo-section_mobile-images {
  position: relative;
  width: 100%;
  height: 60vh;
  display: none;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .logo-section_mobile-images {
    height: 90vh;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .logo-section_mobile-images {
    height: 90vh;
  }
}
@media only screen and (max-width: 768px) {
  .logo-section_mobile-images {
    display: block;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.chapter-section__two {
  background-image: url("/assets/second-chapter-bg-99f99185.png");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__two {
    background-image: none;
    background-color: #1c1117;
  }
}
.chapter-section__mobile-content {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__mobile-content {
    display: block;
  }
}
.chapter-section__content-desktop {
  display: flex;
}
.chapter-section__content-desktop__two {
  justify-content: flex-end;
  height: 100%;
}
.chapter-section__content-desktop__two img {
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__content-desktop {
    background-image: none;
    justify-content: normal;
  }
}
.chapter-section__description {
  max-width: 682px;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.chapter-section__three {
  background-image: url("/assets/bg-dbcdf6c0.png");
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__three {
    background-image: none;
    background-color: #151319;
  }
}
.chapter-section__mobile-content {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__mobile-content {
    display: block;
  }
}
.chapter-section__content-desktop {
  display: flex;
}
.chapter-section__content-desktop__three {
  height: 100%;
  justify-content: flex-start;
}
.chapter-section__content-desktop__three img {
  width: 300px;
}
@media only screen and (max-width: 1024px) {
  .chapter-section__content-desktop {
    background-image: none;
    justify-content: normal;
  }
}
.chapter-section__description {
  max-width: 682px;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.about-page {
  background-color: #151319;
}

.about-us {
  background-color: #151319;
  background-image: url("/assets/bg-b3c02d85.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 20px;
  position: relative;
}
@media only screen and (max-width: 576px) {
  .about-us {
    background-image: url("/assets/bg-m-4fd56d26.png");
    background-size: contain;
    background-position: top;
  }
}
.about-us__heading {
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 576px) {
  .about-us__heading {
    text-align: left;
    min-height: 990px;
  }
}
.about-us__title {
  padding: 0 60px;
}
@media (min-width: 1920px) {
  .about-us__title {
    margin-bottom: 150px;
  }
}
@media only screen and (max-width: 1920px) {
  .about-us__title {
    margin-bottom: 45px;
  }
}
@media only screen and (max-width: 1440px) {
  .about-us__title {
    padding: 0 64px;
  }
}
@media only screen and (max-width: 768px) {
  .about-us__title {
    margin: 0 0 72px;
  }
}
@media only screen and (max-width: 576px) {
  .about-us__title {
    margin-top: 100%;
    padding: 0 32px;
  }
}.about-us_mobile .our-values_items-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1300px;
}
.about-us_mobile .our-values_items-box .arrow-wrapper {
  transition: all ease-in-out 0.2s;
}
.about-us_mobile .our-values_items-box .our-values_item-info-wrapper {
  -webkit-box-shadow: 0px 5px 14px 5px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 5px 14px 5px rgba(0, 0, 0, 0.24);
}
.about-us_mobile .our-values_items-box .our-values_item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 10px;
  position: relative;
  z-index: 100;
}
.about-us_mobile .our-values_items-box .our-values_item-title h4 {
  min-height: auto;
}
.about-us_mobile .our-values_items-box .our-values_item-wrapper {
  position: relative;
  margin: 0 0 16px;
  width: 100%;
}
.about-us_mobile .our-values_items-box .our-values_item-wrapper:first-of-type .our-values_item-img {
  background-color: #100d15;
}
@media screen and (max-width: 1250px) {
  .about-us_mobile .our-values_items-box .img-border-wrapper {
    display: none;
  }
}
.about-us_mobile .our-values_items-box .img-border-wrapper img {
  width: 100%;
}
.about-us_mobile .our-values_items-box .our-values_item-img {
  height: 80px;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.3s linear;
}
.about-us_mobile .our-values_items-box .our-values_item-img:after {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 100;
}
.about-us_mobile .our-values_items-box .our-values_item-img img {
  transform: scale(1.5);
}
.about-us_mobile .our-values_items-box .our-values_item-info {
  width: 100%;
  bottom: auto;
}
.about-us_mobile .our-values_items-box h4 {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  text-align: left;
  margin: 0;
}
.about-us_mobile .our-values_items-box h4:after {
  display: none;
}
.about-us_mobile .our-values_items-box p {
  opacity: 0;
  transition: all 0.1s linear;
  width: auto;
  padding: 0 10px;
  text-align: left;
}
@media screen and (max-width: 391px) {
  .about-us_mobile .our-values_items-box p {
    font-size: 14px;
  }
}
.about-us_mobile .show-info .our-values_item-info {
  display: block;
  width: 100%;
  bottom: auto;
}
.about-us_mobile .show-info .our-values_item-img {
  height: 360px;
  transition: all 0.3s linear;
}
.about-us_mobile .show-info img:after {
  display: none;
}
.about-us_mobile .show-info p {
  opacity: 1;
  display: block;
  padding: 0 10px;
  text-align: left;
}
.about-us_mobile .show-info .arrow-wrapper {
  transform: rotate(-180deg);
}
.about-us_mobile .our-values_item-info-wrapper {
  border-radius: 25px;
  position: absolute;
  width: 100%;
  height: 99%;
  top: 0;
  bottom: 0;
  overflow: hidden;
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.about-us__values {
  background-color: #151319;
  display: flex;
}
.about-us_mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .about-us_mobile {
    display: block;
  }
}
.about-us_mobile .our-values_section {
  padding: 0 32px;
}
@media only screen and (max-width: 768px) {
  .about-us_mobile .our-values_section h2 {
    margin: 0 auto 25px;
  }
}
.about-us_desktop h2 {
  margin-top: 150px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .about-us_desktop {
    display: none;
  }
}/*
sm  -  576 - 767  
md  -  768 - 1023
lg  -  1024 - 1439
xl  -  1440 - 1919
xxl -  >1920
*/
.width-100 {
  width: 100%;
}
.height-100 {
  height: 100%;
}
.position-relative {
  position: relative;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-move {
  cursor: move;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-nowrap {
  white-space: nowrap;
}
.fl {
  display: flex;
  flex-flow: row wrap;
}
.fl-inline {
  display: inline-flex;
}
.fl-grow-1 {
  flex-grow: 1;
}
.fl-shrink-0 {
  flex-shrink: 0;
}
.fl-basis-100 {
  flex-basis: 100%;
}
.fl-direction-column {
  flex-direction: column;
}
.fl-no-wrap {
  flex-wrap: nowrap;
}
.fl-justify-content-between {
  justify-content: space-between;
}
.fl-justify-content-stretch {
  justify-content: stretch;
}
.fl-justify-content-start {
  justify-content: flex-start;
}
.fl-justify-content-end {
  justify-content: flex-end;
}
.fl-justify-content-center {
  justify-content: center;
}
.fl-align-center {
  align-items: center;
}
.fl-align-stretch {
  align-items: stretch;
}
.fl-align-start {
  align-items: flex-start;
}
.fl-align-self-start {
  align-self: flex-start;
}
.fl-gap-30 {
  gap: 1.875rem;
}
.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}
.break-word {
  word-wrap: break-word;
  max-width: 100%;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-none {
  display: none;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0;
}
.mt-0 {
  margin-top: 0rem;
}
.ml-0 {
  margin-left: 0rem;
}
.mr-0 {
  margin-right: 0rem;
}
.mb-0 {
  margin-bottom: 0rem;
}
.pt-0 {
  padding-top: 0rem;
}
.pl-0 {
  padding-left: 0rem;
}
.pr-0 {
  padding-right: 0rem;
}
.pb-0 {
  padding-bottom: 0rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pl-1 {
  padding-left: 0.25rem;
}
.pr-1 {
  padding-right: 0.25rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.ml-3 {
  margin-left: 1rem;
}
.mr-3 {
  margin-right: 1rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.pt-3 {
  padding-top: 1rem;
}
.pl-3 {
  padding-left: 1rem;
}
.pr-3 {
  padding-right: 1rem;
}
.pb-3 {
  padding-bottom: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.ml-4 {
  margin-left: 1.5rem;
}
.mr-4 {
  margin-right: 1.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.pt-4 {
  padding-top: 1.5rem;
}
.pl-4 {
  padding-left: 1.5rem;
}
.pr-4 {
  padding-right: 1.5rem;
}
.pb-4 {
  padding-bottom: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}
.ml-5 {
  margin-left: 3rem;
}
.mr-5 {
  margin-right: 3rem;
}
.mb-5 {
  margin-bottom: 3rem;
}
.pt-5 {
  padding-top: 3rem;
}
.pl-5 {
  padding-left: 3rem;
}
.pr-5 {
  padding-right: 3rem;
}
.pb-5 {
  padding-bottom: 3rem;
}
.min-width-1 {
  min-width: 6rem;
}
.min-width-2 {
  min-width: 12rem;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v20/7cHmv4okm5zmbtYsK-4E4Q.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v20/7cHmv4okm5zmbtYoK-4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v20/7cHmv4okm5zmbtYsK-4E4Q.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v20/7cHmv4okm5zmbtYoK-4.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa0ZL7SUc.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v12/UcC73FwrK3iLTeHuS_fvQtMwCp50KnMa1ZL7.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html,
*,
**,
*** {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
*:focus {
  outline: none;
}
.overflow {
  overflow: hidden;
}
.container {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 100vw;
  }
}
body {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  color: #f9f9f9;
  background: black;
  margin: 0;
  overflow-x: hidden;
  width: 100vw;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.05em;
}
h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}
h1,
h2 {
  font-family: "Exo 2";
  font-weight: 900;
  font-size: 60px;
  line-height: 130%;
  text-transform: uppercase;
  color: #f9f9f9;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  h1,
  h2 {
    margin-top: 76px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 768px) {
  h1,
  h2 {
    font-size: 24px;
  }
}
h3 {
  font-family: "Inter";
  font-weight: 500;
  font-size: 25px;
  line-height: 160%;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}
p {
  font-family: "Inter";
  font-weight: 400;
  line-height: 160%;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar {
  width: 12px;
  position: absolute;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: black;
}
body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
/* modal */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 27, 27, 0.541);
  display: flex;
  align-items: center;
}
.overlay img {
  display: block;
  max-width: 60%;
  max-height: 80%;
  margin: 60px auto;
  box-shadow: 3px 5px 7px rgba(0, 0, 0, 0.5);
}
.overlay > span {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
}
.overlay-arrows_left {
  display: flex;
  background-color: #6d6d6d;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  left: 0;
}
.overlay-arrows_left svg {
  width: 50px;
  height: 50px;
}
.overlay-arrows_right svg {
  width: 50px;
  height: 50px;
}
.overlay-arrows_right {
  display: flex;
  background-color: #6d6d6d;
  justify-content: space-between;
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  top: 50%;
}
.img-border-wrapper {
  position: absolute;
  transform: scale(1.1);
  top: -10px;
  left: 0;
  z-index: 200;
}
.img-border-wrapper img {
  width: 100%;
}
.fslightbox-container {
  background-color: black;
}
.vivaldi-picture-in-picture-container {
  display: none;
}
img {
  user-select: none;
}
.underline {
  color: white;
  position: relative;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  border-bottom: 1px solid white;
}
.user-select {
  pointer-events: none;
}
.react-tabs__tab--disabled {
  color: #6d6d6d;
}
.react-tabs__tab--disabled:hover {
  transform: none;
  color: #6d6d6d;
  cursor: auto;
  user-select: none;
}