@import url("https://fonts.cdnfonts.com/css/proxima-nova-condensed");
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  background: white;
}

body {
  margin: 0px;
  font-family: "Proxima Nova Cn Th", sans-serif;
  overflow-x: hidden;
  border-radius: 0px;
}

a:active,
a:visited,
a:link,
a:hover {
  color: inherit;
  appearance: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0px 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0px 10px;
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  user-select: none;
}
.checkbox-item label {
  font-size: 14px;
  color: #4D4D4D;
  position: absolute;
  z-index: 10;
  padding-left: 50px;
  cursor: pointer;
}
.checkbox-item input {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.checkbox-item input:checked ~ .check {
  background: rgb(43, 161, 193);
  background: linear-gradient(90deg, rgb(30, 100, 119) 0%, rgb(51, 161, 144) 52%, rgb(56, 161, 112) 100%);
  border: none;
}
.checkbox-item input:checked ~ .check::after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-item .check {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 100px;
  background-color: #FFF;
  box-shadow: 0px 0px 0px 0px #00EA90 inset;
  transition: all 0.15s cubic-bezier(0, 1.05, 0.72, 1.07);
}
.checkbox-item .check::after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  position: absolute;
  transform: scale(0);
  background-size: 50%;
  background-image: url("https://s6.picofile.com/d/8392306668/bacc888c-bed7-41a9-bf24-f6ff0718f471/checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  transition-delay: 0.2s !important;
  transition: all 0.25s cubic-bezier(0, 1.05, 0.72, 1.07);
}

#notifications {
  cursor: pointer;
  position: fixed;
  right: 0px;
  z-index: 9999;
  bottom: 0px;
  margin-bottom: 22px;
  margin-right: 15px;
  max-width: 300px;
}

.heading {
  display: flex;
  flex-direction: row;
  place-content: space-between;
  align-items: center;
}
.heading h2 {
  font-size: 40px;
  text-transform: uppercase;
  background: radial-gradient(circle, #4d4d4d 0%, #2f2f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .heading h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .heading {
    flex-direction: column;
    align-items: baseline;
  }
  .heading span {
    width: 100%;
    max-width: 100% !important;
    text-align: left !important;
    font-size: 12px !important;
    margin-bottom: 20px;
  }
}
.heading span {
  max-width: 40%;
  font-size: 16px;
  text-align: right;
  color: #909090;
}

body {
  background: #141414;
}
body:not(.other-page) header .header-inner {
  padding-bottom: 100px;
}
body:not(.other-page) header .header-wrapper {
  height: 630px;
}
body:not(.other-page) header .header-inner-promo-block-detail-text {
  max-width: 450px;
}

header {
  position: relative;
  overflow: hidden;
}
header .header-wrapper {
  display: block;
  z-index: 3;
  position: relative;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.17);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-color: rgb(78, 78, 78);
  background-blend-mode: multiply;
}
header .header-inner {
  width: 100%;
  background: url("./img/headerbg.png");
  background-size: 100%;
}
@media screen and (max-width: 1024px) {
  header .header-inner {
    height: auto;
    padding-bottom: 20px;
  }
  header .header-inner:has(.header-inner-bottom-block) {
    padding-bottom: 0;
  }
}
header .header-inner .header-inner-promo-block {
  z-index: 3;
  padding: 20px 30px;
  max-width: 1024px;
}
header .header-inner .header-inner-promo-block .link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  color: white;
  fill: white;
  font-size: 18px;
}
header .header-inner .header-inner-promo-block .link:hover {
  cursor: pointer;
}
header .header-inner .header-inner-promo-block .location {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}
header .header-inner .header-inner-promo-block .block {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-promo-block {
    padding: 5px 10px;
  }
  header .header-inner .header-inner-promo-block .typing {
    display: block;
  }
  header .header-inner .header-inner-promo-block .block {
    display: block;
  }
}
header .header-inner .header-inner-promo-block .pre-text {
  display: none;
}
header .header-inner .header-inner-promo-block .header-inner-promo-block-actions {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-promo-block .header-inner-promo-block-actions {
    margin-top: 20px;
  }
}
header .header-inner .header-inner-promo-block .header-inner-promo-block-actions .socials {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-promo-block .header-inner-promo-block-actions {
    flex-direction: column;
    width: 100%;
  }
}
header .header-inner .header-inner-promo-block .header-inner-promo-block-detail-text {
  font-size: 24px;
  color: #37A176;
  line-height: 130%;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-promo-block .header-inner-promo-block-detail-text {
    font-size: 16px;
    margin: 20px 0px;
  }
}
header .header-inner .header-inner-promo-block h1 {
  color: white;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 1.8px;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-promo-block h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    margin: 4px 0px;
  }
}
header .header-inner .header-inner-promo-block h1 span {
  background: rgb(44, 161, 189);
  background: radial-gradient(circle, rgb(44, 161, 189) 0%, rgb(56, 161, 117) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
header .header-inner .header-inner-top-block {
  display: flex;
  flex-direction: row;
  place-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-top-block {
    padding: 15px 10px;
  }
}
header .header-inner .header-inner-top-block .header-inner-top-block-nav {
  width: 200px;
}
header .header-inner .header-inner-top-block .header-inner-top-block-nav button {
  background-image: linear-gradient(0deg, hsl(154, 48%, 43%) 0%, hsl(157, 49%, 42%) 8%, hsl(160, 50%, 42%) 17%, hsl(163, 50%, 42%) 25%, hsl(165, 51%, 42%) 33%, hsl(168, 51%, 42%) 42%, hsl(170, 52%, 42%) 50%, hsl(171, 51%, 39%) 58%, hsl(173, 51%, 36%) 67%, hsl(175, 50%, 33%) 75%, hsl(178, 48%, 29%) 83%, hsl(183, 47%, 26%) 92%, hsl(192, 47%, 23%) 100%);
  width: 50px;
  height: 50px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  border-radius: 100%;
  transition: 0.3s all;
}
header .header-inner .header-inner-top-block .header-inner-top-block-nav button:hover {
  cursor: pointer;
  width: 60px;
  height: 60px;
  transition: 0.1s all;
}
header .header-inner .header-inner-top-block .header-inner-top-block-logo {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-top-block .header-inner-top-block-logo img {
    width: 140px;
  }
}
header .header-inner .header-inner-top-block .header-inner-top-block-logo h4 {
  color: white;
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400;
  letter-spacing: 0.6px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-top-block .header-inner-top-block-logo h4 {
    display: none;
  }
}
header .header-inner .header-inner-top-block .header-inner-top-block-callback {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: end;
  place-content: flex-start;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  header .header-inner .header-inner-top-block .header-inner-top-block-callback {
    display: none;
  }
}
header .header-inner .header-inner-top-block .header-inner-top-block-callback .tel {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
}
header .header-inner .header-inner-top-block .header-inner-top-block-callback .form-link {
  font-size: 14px;
  font-weight: 300;
  color: #a8a8a8;
  text-decoration: none;
}
header .header-inner .header-inner-bottom-block {
  text-align: right;
}

.background-bounces {
  position: absolute;
  right: 5%;
  top: 10%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .background-bounces {
    right: -50%;
    top: -40%;
    display: none;
  }
}

.background-bounce.big {
  position: absolute;
  z-index: 1;
  width: 1500px;
  height: 1500px;
  background: radial-gradient(at center, #0e2bb1, #3e3edc);
  border-radius: 100%;
  opacity: 0.3;
  filter: blur(100px);
  -o-filter: blur(100px);
  -ms-filter: blur(100px);
  -moz-filter: blur(100px);
  -webkit-filter: blur(100px);
  top: -1000px;
  left: -400px;
  transition: 10s all;
}
@media screen and (max-width: 1024px) {
  .background-bounce.big {
    width: 350px;
    height: 350px;
    left: -150px;
    top: -50px;
    display: none;
  }
}
.background-bounce.footer {
  position: absolute;
  z-index: 9;
  width: 1500px;
  height: 1500px;
  background: radial-gradient(at center, #0e2bb1, #3e3edc);
  border-radius: 100%;
  opacity: 0.3;
  filter: blur(100px);
  -o-filter: blur(100px);
  -ms-filter: blur(100px);
  -moz-filter: blur(100px);
  -webkit-filter: blur(100px);
  top: 70%;
  left: -500px;
  transition: 10s all;
}
@media screen and (max-width: 1024px) {
  .background-bounce.footer {
    display: none;
  }
}
.background-bounce.sm {
  left: -100px;
}
.background-bounce.xr {
  top: 200px;
}
.background-bounce.lg {
  top: 150px;
  left: 150px;
}
.background-bounce.xl {
  left: -200px;
  top: 200px;
}
.background-bounce.stat {
  position: absolute;
  z-index: 2;
  transition: 1s all;
}

button.quest-next, button.prev-next {
  background: #2B2B2B;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.2s all;
}
button.quest-next:hover, button.prev-next:hover {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5490196078);
  transition: 0.2s all;
}
button.btn.action {
  background: rgb(43, 161, 193);
  background: linear-gradient(90deg, rgb(30, 100, 119) 0%, rgb(51, 161, 144) 52%, rgb(56, 161, 112) 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 600;
  padding: 15px 30px;
  transition: 0.2s all;
}
@media screen and (max-width: 1024px) {
  button.btn.action {
    font-size: 14px;
    padding: 14px 20px;
    width: 100%;
  }
}
button.btn.action:hover {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5490196078);
  transition: 0.2s all;
}
button.btn.social {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.37);
  border-radius: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
}
button.btn.social:hover {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5490196078);
  transition: 0.2s all;
}

.project-action-button {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #141414;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding: 1.5rem 3.125rem 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}
.project-action-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  background-color: white;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translateX(-100%);
  animation: none;
}
.project-action-button span {
  background: linear-gradient(to right, #141414 50%, white 50%);
  background-size: 200% 100%;
  font-size: 1rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  animation: none;
}
.project-action-button .arrow-icon {
  position: absolute;
  bottom: 1rem;
  left: 100%;
  transform: translateX(-190px);
  transition: transform 0.3s ease-in-out;
}
.project-action-button .gradient-start {
  animation: none;
}
.project-action-button .gradient-end {
  animation: none;
}
.project-action-button:hover::before {
  animation: slideBg 0.6s forwards;
}
.project-action-button:hover span {
  animation: textColor 0.6s forwards;
}
.project-action-button:hover .gradient-start {
  animation: gradientFill 0.4s forwards;
}
.project-action-button:hover .gradient-end {
  animation: gradientFillReverse 0.4s forwards;
}
.project-action-button:hover .arrow-icon {
  transform: translateX(-170px);
}
.project-action-button:not(:hover)::before {
  animation: slideBgReverse 0.6s forwards;
}
.project-action-button:not(:hover) span {
  animation: textColorReverse 0.6s forwards;
}
.project-action-button:not(:hover) .gradient-start {
  animation: gradientFillReverse 0.4s forwards;
}
.project-action-button:not(:hover) .gradient-end {
  animation: gradientFill 0.4s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideBg {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideBgReverse {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes textColor {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes textColorReverse {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes gradientFill {
  0% {
    stop-color: #141414;
  }
  100% {
    stop-color: white;
  }
}
@keyframes gradientFillReverse {
  0% {
    stop-color: white;
  }
  100% {
    stop-color: #141414;
  }
}
@media screen and (max-width: 1024px) {
  .project-action-button span {
    font-size: 0.75rem;
  }
}
.partners {
  padding: 30px 0px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.17);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .partners {
    padding: 20px 0px 0px 0px;
    height: 60px;
  }
}
.partners .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners .item img {
  width: auto;
  height: 23px;
}
@media screen and (max-width: 1024px) {
  .partners .item img {
    height: 15px;
  }
}

.projects {
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.17);
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .projects {
    padding-bottom: 0px;
  }
}
.projects .projects-slider .item {
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .projects .projects-slider .item {
    height: 430px;
  }
}
.projects .projects-slider .item .project-content {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  place-content: space-between;
  padding: 30px;
  align-items: baseline;
}
.projects .projects-slider .item .project-content .bottom {
  width: 100%;
}
.projects .projects-slider .item .project-content .bottom img {
  height: 25px;
  width: auto;
}
.projects .projects-slider .item .project-content .middle {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.projects .projects-slider .item .project-content .middle h3 {
  font-size: 32px;
  transition: 0.2s all;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.0705882353);
  margin: 0px;
}
.projects .projects-slider .item .project-content .middle p {
  margin: 0px;
  text-align: left;
  color: rgba(255, 255, 255, 0.5647058824);
  transition: 0.4s all;
}
.projects .projects-slider .item:hover {
  cursor: pointer;
}
.projects .projects-slider .item:hover img.bg {
  opacity: 1 !important;
  transition: 0.1s all;
}
.projects .projects-slider .item:hover .middle h3 {
  color: white;
  transition: 0.4s all;
}
.projects .projects-slider .item:hover .middle p {
  color: white;
  transition: 0.4s all;
}
.projects .projects-slider .item:hover .item-inner:after {
  width: 0px;
  height: 0px;
  transition: 0.2s all;
}
.projects .projects-slider .item img.bg {
  opacity: 0.1 !important;
  transition: 0.1s all;
  height: 398px;
}
@media screen and (max-width: 1024px) {
  .projects .projects-slider .item img.bg {
    height: 427px;
  }
}
.projects .projects-slider .item .item-inner {
  background: #1d1f20;
  margin: 2px;
  text-align: center;
}
.projects .projects-slider .item .item-inner::after {
  content: "";
  border-radius: 10px;
  position: absolute;
  top: -2px;
  left: -2px;
  height: calc(100% + 4px);
  width: calc(100% + 4px);
  background: linear-gradient(60deg, #093384, #01400f);
  border-radius: 4px;
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.about-project {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-project .about-project-inner {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  padding: 6.25rem 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.about-project .about-project-inner .heading h2 {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  margin: 0;
  animation: typewriter 6s ease-out forwards;
}
.about-project .about-project-inner .about-project-promo-block {
  width: 100%;
}
.about-project .about-project-inner .about-project-promo-block .about-project-promo-block-inner-text {
  font-weight: 300;
  font-size: 1rem;
  color: white;
  margin: 0;
  padding: 0 2px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlideUp 1s ease-out forwards;
  animation-delay: 0.3s;
  pointer-events: none;
}
.about-project .about-project-inner .about-project-promo-block:has(.about-project-promo-block:in-view) .about-project-promo-block-inner-text {
  opacity: 1;
  animation-play-state: running;
}

@media screen and (max-width: 1024px) {
  .about-project .about-project-inner {
    row-gap: 1.25rem;
    padding: 1.25rem 0;
  }
}
.work-scope {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 3s ease, transform 3s ease;
}
.work-scope.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.work-scope.is-visible .heading h2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.work-scope.is-visible .work-scope-item {
  opacity: 1 !important;
  transform: translateX(0) !important;
}
.work-scope .work-scope-inner {
  display: flex;
  flex-direction: column;
  row-gap: 5rem;
  padding: 6.25rem 0 3.25rem;
}
.work-scope .work-scope-inner .heading h2 {
  margin: 0;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 3s ease, transform 3s ease 3s;
}
.work-scope .work-scope-inner .work-scope-list {
  display: flex;
  justify-content: space-between;
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 15rem;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 3s ease, transform 3s ease;
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item:nth-child(1) {
  transform: translateX(-50px);
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item:nth-child(2) {
  transform: translateX(0);
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  column-gap: 0.75rem;
  transition: transform 1s ease-in-out;
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item-wrapper:hover {
  transform: scale(1.3);
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item-wrapper h3 {
  font-size: 1.25rem;
  color: white;
  margin: 0;
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item:nth-child(2) {
  justify-content: center;
}
.work-scope .work-scope-inner .work-scope-list .work-scope-item:last-child {
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .work-scope .work-scope-inner {
    row-gap: 1.25rem;
    padding: 1.25rem 0 1.25rem;
  }
  .work-scope .work-scope-inner .heading h2 {
    transform: translateY(-25px);
  }
  .work-scope .work-scope-inner .work-scope-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work-scope .work-scope-inner .work-scope-list .work-scope-item {
    height: 5rem;
  }
  .work-scope .work-scope-inner .work-scope-list .work-scope-item .work-scope-item-wrapper h3 {
    font-size: 1rem;
  }
}
.project-gallery {
  position: relative;
  overflow: hidden;
  padding: 6.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.project-gallery .project-gallery-inner {
  position: relative;
}
.project-gallery .project-gallery-inner .project-gallery-bg-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-gallery .project-gallery-inner .project-gallery-bg-img img {
  width: 100%;
  object-fit: contain;
}
.project-gallery .project-gallery-inner .open-gallery-button {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .project-gallery {
    padding: 1.25rem 0;
  }
  .project-gallery .project-gallery-inner .project-gallery-bg-img {
    min-height: 362px;
  }
  .project-gallery .project-gallery-inner .project-gallery-bg-img img {
    min-height: 362px;
    object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .project-gallery .project-gallery-inner .project-gallery-bg-img img {
    min-height: none;
    object-fit: cover;
  }
}
.calculator .question-done {
  display: none;
  text-align: center;
  padding-bottom: 60px;
}
.calculator .question-done h4 {
  font-size: 32px;
  color: white;
  margin: 0px;
  margin-top: 10px;
  font-weight: 900;
}
.calculator .question-done p {
  margin: 0px;
  color: #B0B0B0;
  font-size: 20px;
  margin-top: 20px;
}
.calculator .calculator-inner .calculator-app .calculator-content {
  display: flex;
  flex-direction: row;
  place-content: space-between;
}
.calculator .calculator-inner .calculator-app .calculator-content .actions {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .actions {
    place-content: center;
    align-items: center;
    width: 100%;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .question {
  margin-top: 10px;
}
.calculator .calculator-inner .calculator-app .calculator-content .question form {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .question form {
    align-items: baseline;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item {
  text-align: right;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item .checkbox-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 20px;
  width: 100%;
  font-family: "Proxima Nova Cn Th", sans-serif;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item .checkbox-area .checkbox-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item .checkbox-area .checkbox-item input {
  width: auto;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item .checkbox-area .checkbox-item label {
  color: white;
  font-family: "Proxima Nova Cn Th", sans-serif;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item:not(.actual) {
  display: none;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .question .question-item {
    align-items: baseline;
  }
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .question .question-item {
    max-width: 100%;
    width: 100%;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item input {
  background: none;
  padding: 10px 20px;
  font-size: 20px;
  border: 0.1px solid rgba(255, 255, 255, 0.17);
  width: 90%;
  outline: none;
  color: white;
  transition: 0.2s all;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .question .question-item input {
    width: 100%;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item input.invalid {
  border: 0.1px solid rgba(236, 5, 5, 0.534);
  transition: 0.2s all;
}
.calculator .calculator-inner .calculator-app .calculator-content .question .question-item .title {
  color: white;
  font-size: 32px;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .question .question-item .title {
    text-align: left;
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content {
    flex-direction: column;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .step-counter {
  color: #292929;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  position: relative;
  top: 40px;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .calculator .calculator-inner .calculator-app .calculator-content .step-counter {
    display: none;
  }
}
.calculator .calculator-inner .calculator-app .calculator-content .step-counter .current {
  line-height: 67px;
  font-weight: 900;
  font-size: 96px;
}
.calculator .calculator-inner .calculator-app .calculator-content .step-counter .all {
  font-size: 40px;
  font-weight: 900;
  line-height: 30px;
}
.calculator .calculator-inner .calculator-app .calculator-content .step-counter .divider {
  font-size: 40px;
  line-height: 35px;
}
.calculator .calculator-inner .calculator-app .status-block {
  display: flex;
  flex-direction: row;
  place-content: space-between;
}
.calculator .calculator-inner .calculator-app .status-block .status-item {
  height: 18px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1450980392);
  transition: 0.2s all;
}
.calculator .calculator-inner .calculator-app .status-block .status-item:first-child.filled {
  background: linear-gradient(90deg, rgb(30, 100, 119) 0%, rgb(51, 161, 144) 52%, rgb(56, 161, 112) 100%);
  border-right: none;
  transition: 0.2s all;
}
.calculator .calculator-inner .calculator-app .status-block .status-item:not(.filled):not(:last-child) {
  border-right: none;
  transition: 0.2s all;
}
.calculator .calculator-inner .calculator-app .status-block .status-item:not(:first-child).filled {
  border-left: none;
  border-right: none;
  background: rgb(56, 161, 112) 100%;
  transition: 0.2s all;
}

#overlay {
  position: fixed; /* Sit on top of the page content */
  display: none; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  z-index: 5; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.nav-footer-block {
  display: flex;
  flex-direction: row;
  place-content: space-between;
  position: relative;
  top: -30px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .nav-footer-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 0px;
  }
}
.nav-footer-block .documents {
  text-align: right;
}
.nav-footer-block .documents-wrapper {
  position: relative;
}
.nav-footer-block .documents-wrapper h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: right;
  color: white;
}
@media screen and (max-width: 1024px) {
  .nav-footer-block .documents-wrapper h2 {
    text-align: center;
  }
}
.nav-footer-block .documents-wrapper a {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  place-content: flex-end;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .nav-footer-block .documents-wrapper a {
    align-items: center;
    text-align: center;
    position: relative;
    top: 0px;
    left: -18px;
  }
}
.nav-footer-block .documents-wrapper a img {
  width: 26px;
  height: 26px;
}
.nav-footer-block .contacts, .nav-footer-block .documents {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .nav-footer-block .contacts, .nav-footer-block .documents {
    align-items: center;
  }
}
.nav-footer-block .contacts a, .nav-footer-block .contacts span, .nav-footer-block .documents a, .nav-footer-block .documents span {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

#navigation-block {
  position: fixed;
  width: 25%;
  height: 100%;
  bottom: 0px;
  z-index: 10;
  border-radius: 0px 60px 60px 0px;
  background: #000;
  transition: 0.4s all;
  display: flex;
  flex-direction: column;
  place-content: space-between;
  padding: 40px 60px;
}
@media screen and (max-width: 1024px) {
  #navigation-block {
    width: 90%;
    padding: 70px 60px;
  }
}
#navigation-block:not(.opened) {
  left: -25%;
  transition: 0.2s all;
}
@media screen and (max-width: 1024px) {
  #navigation-block:not(.opened) {
    left: -90%;
  }
}
#navigation-block .navigation-top .logo img {
  width: 120px;
}
#navigation-block.opened {
  left: 0%;
  transition: 0.2s all;
  -webkit-box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
  -moz-box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
  box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
}
#navigation-block .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  z-index: 2;
  list-style: none;
  padding: 0px;
}
#navigation-block .socials li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2156862745);
  padding: 12px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  #navigation-block .socials li a {
    width: 30px;
    height: 30px;
    padding: 20px;
  }
}
#navigation-block .nav {
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  #navigation-block .nav {
    gap: 10px;
  }
}
#navigation-block .nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  #navigation-block .nav a {
    font-size: 14px;
  }
}
#navigation-block .nav a:hover {
  background: rgb(44, 161, 189);
  background: radial-gradient(circle, rgb(44, 161, 189) 0%, rgb(56, 161, 117) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 21px;
  transition: 0.3s all;
}
#navigation-block .close-btn {
  max-height: 41.5px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2156862745);
  background: none;
  position: absolute;
  right: 60px;
  top: 36px;
  transition: 0.2s all;
}
@media screen and (max-width: 1024px) {
  #navigation-block .close-btn {
    padding: 6px 8px;
    top: 34px;
    max-height: 27.6px;
  }
  #navigation-block .close-btn img {
    width: 10px;
  }
}
#navigation-block .close-btn:hover {
  cursor: pointer;
  transition: 0.2s all;
  background: rgb(43, 161, 193);
  background: linear-gradient(90deg, rgb(30, 100, 119) 0%, rgb(51, 161, 144) 52%, rgb(56, 161, 112) 100%);
}

#callback-slide-modal {
  position: fixed;
  width: 100%;
  max-height: 100%;
  bottom: 0px;
  z-index: 10;
  border-radius: 100px 100px 0px 0px;
  background: linear-gradient(90deg, rgb(22, 80, 112) 0%, rgb(11, 22, 40) 32%);
  transition: 0.4s all;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal {
    height: 100%;
  }
}
#callback-slide-modal .close-btn {
  max-height: 41.5px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2156862745);
  background: none;
  position: absolute;
  right: 100px;
  top: 40px;
  transition: 0.2s all;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .close-btn {
    right: 60px;
  }
}
#callback-slide-modal .close-btn:hover {
  cursor: pointer;
  transition: 0.2s all;
  background: rgb(43, 161, 193);
  background: linear-gradient(90deg, rgb(30, 100, 119) 0%, rgb(51, 161, 144) 52%, rgb(56, 161, 112) 100%);
}
#callback-slide-modal:not(.opened) {
  bottom: -100%;
  transition: 0.6s all;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal:not(.opened) {
    bottom: -100%;
  }
}
#callback-slide-modal.opened {
  top: 35%;
  transition: 0.4s all;
  -webkit-box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
  -moz-box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
  box-shadow: 0px -12px 34px 0px rgba(255, 255, 255, 0.04);
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal.opened {
    bottom: 0%;
  }
}
@media screen and (max-height: 1370px) {
  #callback-slide-modal.opened {
    top: 20%;
  }
}
@media screen and (min-width: 1500px) {
  #callback-slide-modal.opened {
    top: 40%;
  }
}
@media screen and (min-width: 2500px) {
  #callback-slide-modal.opened {
    top: 55%;
  }
}
@media screen and (max-height: 810px) and (max-width: 1280px) {
  #callback-slide-modal.opened {
    top: 30%;
  }
}
@media screen and (max-height: 740px) and (max-width: 1240px) {
  #callback-slide-modal.opened {
    top: 7%;
  }
}
@media screen and (max-width: 450px) {
  #callback-slide-modal.opened {
    top: 5%;
  }
}
#callback-slide-modal .callback-slide-modal-inner {
  display: flex;
  flex-direction: row;
  place-content: space-between;
  padding: 60px 20px;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner {
    flex-direction: column;
  }
}
#callback-slide-modal .callback-slide-modal-inner .block {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .block {
    width: 100%;
  }
}
#callback-slide-modal .callback-slide-modal-inner .form-block h2 {
  font-size: 48px;
  color: white;
  margin: 0px;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .form-block h2 {
    font-size: 36px;
    margin-top: 64px;
    text-align: center;
  }
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper {
  width: 100%;
  height: 80%;
  border: 1px solid rgba(255, 255, 255, 0.0705882353);
  border-radius: 20px;
  padding: 30px 30px;
  margin-top: 30px;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper form {
  display: flex;
  flex-direction: row;
  place-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper form input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid grey;
  padding: 10px 10px 10px 10px;
  outline: none;
  color: white;
  font-size: 14px;
  font-weight: 100;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper form input {
    font-size: 20px;
  }
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper form input::placeholder {
  font-size: 14px;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.full {
  width: 100%;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.half {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.half {
    width: 100%;
  }
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.policy {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  max-width: 50%;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.policy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.policy label {
  font-size: 12px;
  color: #6F6F6F;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.policy input {
  width: auto !important;
  position: relative;
  top: 3px;
  margin-right: 10px;
}
#callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.actions {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  max-width: 50%;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .form-block .form-wrapper .form-control.actions {
    width: 100%;
    max-width: 100%;
  }
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #callback-slide-modal .callback-slide-modal-inner .contacts-block {
    display: none;
  }
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block h2 {
  font-size: 48px;
  color: white;
  margin: 0px;
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block .copyright {
  font-size: 14px;
  color: #787878;
  max-width: 80%;
  font-weight: 500;
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block .tel {
  font-size: 48px;
  color: white;
  font-weight: bold;
  text-decoration: none;
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block .email {
  font-size: 16px;
  color: #92C82D;
  text-decoration: none;
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  z-index: 2;
  list-style: none;
  padding: 0px;
}
#callback-slide-modal .callback-slide-modal-inner .contacts-block .socials li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2156862745);
  padding: 12px;
  width: 50px;
  height: 50px;
}

footer {
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}
footer .bounce-first {
  position: absolute;
  right: 0px;
  bottom: -150px;
  z-index: 1;
}
footer .bounce-second {
  position: absolute;
  right: 200px;
  bottom: -100px;
  z-index: 1;
}
footer .footer-inner {
  padding-top: 80px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  place-content: space-between;
  min-height: 440px;
}
footer .footer-inner .copyright {
  color: #787878;
  font-size: 12px;
  font-weight: 400;
  z-index: 9;
}
footer .footer-inner .footer-top {
  display: flex;
  flex-direction: row;
  place-content: space-between;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .footer-inner .footer-top .logo {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-top .logo {
    width: 100%;
    align-items: center;
    place-content: center;
    text-align: center;
  }
}
footer .footer-inner .footer-top .logo span {
  color: white;
  font-size: 14px;
  margin-top: 14px;
}
footer .footer-inner .footer-top .socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  z-index: 2;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  footer .footer-inner .footer-top .socials {
    padding: 0px;
  }
}
footer .footer-inner .footer-top .socials li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2156862745);
  padding: 12px;
  width: 50px;
  height: 50px;
}

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