@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
.header {
  padding: 22px 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  display: flex;
  gap: 42px;
}
.header__nav li {
  list-style: none;
}

.header__nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s;
}
.header__nav-item:hover {
  transition: 0.2s;
  color: rgb(255, 139, 0);
  font-weight: 800;
}

.header__nav-item--active {
  color: rgb(255, 139, 0);
  font-weight: 800;
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__contact-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__contact-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__contact-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: end;
}
.header__contact-phone p {
  font-size: 12px;
}
.header__contact-phone a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 700;
}

.header__burger-menu {
  background-color: transparent;
  border: None;
  display: none;
}
.header__burger-menu img {
  display: flex;
}

.mobile-menu__wrapper {
  height: 100%;
  z-index: 99;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: end;
  transform: translate(100%);
  transition: 0.4s;
}
.mobile-menu__wrapper.mobile-menu__wrapper--show {
  transform: translate(0);
  transition: 0.4s;
}

.mobile-menu {
  color: #fff;
  height: 100%;
  background-color: #000;
  padding: 15px 30px;
  width: 270px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu__header-title {
  font-size: 24px;
  font-weight: 800;
}

.mobile-menu__header-close {
  background-color: transparent;
  border: None;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu__nav li {
  list-style: none;
}
.mobile-menu__nav .header__nav-item {
  color: #fff;
}

.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu__contact .header__contact-phone {
  align-items: start;
}
.mobile-menu__contact .header__contact-phone a {
  color: #fff;
}

.mobile-menu__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1280px) {
  .header__nav,
  .header__contact-left {
    display: none;
  }
  .header__burger-menu {
    display: block;
  }
  .header__contact {
    gap: 8px;
  }
}
.arrow-bottom {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow-bottom.svg);
  background-position: center;
}

.calc {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/calc.svg);
  background-position: center;
}

.arrow-bottom-white {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow-bottom-white.svg);
  background-position: center;
}

.icon-phone {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/phone.svg);
  background-position: center;
}

.icon-phone-black {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/phone-black.svg);
  background-position: center;
}

main {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin: 120px 0;
}

.main__welcome {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.main-section__title {
  font-size: 68px;
  font-weight: 900;
  max-width: 1092px;
}
.main-section__title span {
  color: rgb(255, 196, 125);
}

.main-section__sub-title {
  font-size: 20px;
  max-width: 720px;
  margin: 24px 0 32px;
}

.main-section__link {
  display: inline-flex;
}

.main-section__img {
  margin-top: -100px;
  z-index: -1;
  position: relative;
}
.main-section__img img {
  width: 100%;
  height: 100%;
}

.card-section__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-section__item {
  border-radius: 24px;
  box-shadow: 0px 0px 32px 4px rgba(65, 65, 65, 0.05);
  background: rgb(255, 255, 255);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-section__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-section__title {
  font-size: 24px;
  font-weight: 800;
}

.card-section__sub-title {
  font-size: 16px;
}

.experience-section .container {
  display: grid;
  grid-template-columns: 596px minmax(0, 664px);
  align-items: center;
  gap: 148px;
}

.experience-section__photo img {
  width: 100%;
}

.experience-section__category {
  background: rgba(255, 139, 0, 0.1);
  padding: 8px 24px;
  border-radius: 40px;
  display: inline-flex;
}
.experience-section__category p {
  color: rgb(255, 139, 0);
  font-size: 16px;
  font-weight: 700;
}

.experience-section__title {
  margin: 16px 0 24px;
}

.experience-section__sub-title {
  font-size: 20px;
}

.experience-section__statistic-card {
  display: flex;
  gap: 60px;
}

.experience-section__statistic-card-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
}
.experience-section__statistic-card-item p {
  font-size: 16px;
  font-weight: 800;
}
.experience-section__statistic-card-item h3 {
  background: linear-gradient(90deg, rgb(255, 139, 0), rgb(255, 183, 97));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 40px;
  font-weight: 900;
}

.experience-section__bottom-btn {
  display: flex;
  align-items: center;
  gap: 24px;
}

.experience-section__btn-call {
  display: inline-flex;
}

.experience-section__btn-services.btn-big {
  background-color: transparent;
  border: 1px solid rgb(0, 0, 0);
}
.experience-section__btn-services.btn-big span {
  color: #000;
}

.experience-section__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-section .container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.faq-section__item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgb(228, 228, 228);
}
.faq-section__item:last-child {
  border-bottom: none;
}

.faq-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
.faq-section__header h3 {
  font-size: 40px;
  font-weight: 800;
}

.faq-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.faq-section__content-category {
  display: flex;
  gap: 24px;
}

.faq-section__content-category-item {
  background: rgba(255, 139, 0, 0.1);
  border-radius: 40px;
  padding: 8px 24px;
}
.faq-section__content-category-item p {
  color: rgb(255, 139, 0);
  font-size: 16px;
  font-weight: 700;
}

.faq-section__content-txt {
  font-size: 16px;
  padding-bottom: 20px;
}

.mySwiper {
  margin-top: 48px;
}

.mySwiper .swiper-slide {
  transition: 0.5s;
}
.mySwiper .swiper-slide img {
  border-radius: 32px;
  width: 100%;
  height: 100%;
}
.mySwiper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev) {
  transform: scale(0.95);
  opacity: 0.5;
}

.sw-pagination {
  margin-top: 48px !important;
  text-align: center;
}

.swiper-pagination-bullet {
  background: rgb(244, 244, 244) !important;
  margin: 0 12px !important;
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: rgb(255, 139, 0) !important;
}

@media (max-width: 1440px) {
  .experience-section .container {
    gap: 60px;
  }
  .experience-section__statistic-card {
    gap: 40px;
  }
}
@media (max-width: 1280px) {
  main {
    margin: 56px 0;
    gap: 80px;
  }
  .experience-section .container {
    grid-template-columns: 100%;
  }
  .main-section__title {
    font-size: 40px;
  }
  .main-section__sub-title {
    font-size: 16px;
    margin: 16px 0 24px;
  }
  .main-section__img {
    margin-top: 48px;
  }
  .card-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-section__item {
    padding: 24px;
  }
  .card-section__title {
    font-size: 18px;
  }
  .experience-section__category p {
    font-size: 14px;
  }
  .experience-section__title {
    margin: 8px 0 16px;
  }
  .experience-section__sub-title {
    font-size: 16px;
  }
  .experience-section__info {
    gap: 24px;
  }
  .experience-section__statistic-card-item p {
    font-size: 14px;
  }
  .experience-section__statistic-card-item h3 {
    font-size: 28px;
  }
  .sw-pagination {
    margin-top: 32px !important;
  }
  .swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
    margin: 0 8px !important;
  }
  .faq-section__header h3 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .experience-section__bottom-btn {
    flex-direction: column;
  }
  .experience-section__bottom-btn .btn-big {
    width: 100%;
    justify-content: center;
  }
  .card-section__list {
    grid-template-columns: 100%;
  }
  .experience-section__statistic-card {
    gap: 12px;
    justify-content: space-between;
  }
  .mySwiper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.95);
    opacity: 0.5;
  }
}
footer {
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 120px 0;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 0px 0 40px;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.footer__title {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 800;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav-link {
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.footer__services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer__contacts-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__contacts-item p {
  font-size: 16px;
}
.footer__contacts-item .footer__nav-link {
  font-weight: 700;
}

.footer__contacts-social {
  display: flex;
  gap: 16px;
}

.footer__btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.footer__btn:last-child.btn-small {
  background-color: #fff;
  color: #000;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom-link {
  display: flex;
  gap: 24px;
}
.footer__bottom-link .footer__nav-link {
  padding-left: 24px;
  border-left: 1px solid #fff;
}
.footer__bottom-link .footer__nav-link:first-child {
  padding-left: 0;
  border-left: none;
}

.footer__bottom {
  padding: 40px 0 0px;
}

@media (max-width: 1280px) {
  footer {
    padding: 80px 0;
  }
}
@media (max-width: 980px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__services-list {
    grid-template-columns: 100%;
  }
  .footer__contacts-social {
    justify-content: center;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }
}
.arrow-right-white {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow-right-white.svg);
  background-position: center;
}

.arrow-left {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../images/icons/arrow-left.svg);
  background-position: center;
}

.calculate {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 148px;
}

.calculate__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}

.calculate__form-bottom-list-question span {
  color: rgb(15, 15, 14);
  font-size: 18px;
}

.calculate__form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calculate__form-bottom button {
  border: none;
  display: flex;
  align-items: center;
  gap: 13px;
}

.calculate__form-bottom-btn-back.btn-big {
  background-color: #fff;
  color: #000;
  border: 1px solid rgb(0, 0, 0);
}

.calculate__form-category {
  border-radius: 40px;
  background: rgba(255, 139, 0, 0.1);
}

.calculate__form-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculate__form-item {
  display: none;
  flex-direction: column;
  gap: 48px;
}
.calculate__form-item.calculate__form-item--show {
  display: flex;
}

.calculate__form-wrapper {
  display: none;
  flex-direction: column;
  gap: 48px;
}
.calculate__form-wrapper.calculate__form-wrapper--show {
  display: flex;
}

.calculate__form-item-txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calculate__form-sub-title {
  font-size: 20px;
}

.calculate__form-item-field {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.calculate-field__item-wrapper {
  position: relative;
  display: flex;
}
.calculate-field__item-wrapper input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.calculate-field__item-wrapper input:checked + .calculate-field__item .calculate-field__item-square {
  background: rgb(255, 139, 0);
  border: 1px solid rgb(255, 139, 0);
  position: relative;
}
.calculate-field__item-wrapper input:checked + .calculate-field__item .calculate-field__item-square::after {
  content: "";
  background-image: url(../images/icons/checked.svg);
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.calculate-field__item-wrapper input:checked + .calculate-field__item .calculate-field__item-circle {
  border: 1px solid rgb(255, 139, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.calculate-field__item-wrapper input:checked + .calculate-field__item .calculate-field__item-circle .calculate-field__item-circle--active {
  background: rgb(255, 139, 0);
  width: 16px;
  height: 16px;
  border-radius: 999px;
}
.calculate-field__item-wrapper input:checked + .calculate-field__item p {
  color: rgb(255, 139, 0);
}

.calculate-field__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.calculate-field__item p {
  font-size: 20px;
  font-weight: 800;
}

.calculate-field__item-square {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 4px;
  min-width: 32px;
  min-height: 32px;
}

.calculate-field__item-circle {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 999px;
  min-width: 32px;
  min-height: 32px;
}

.calculate__slider {
  display: flex;
  justify-content: center;
}

.calculate-input__wrapper {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 29px;
  position: relative;
  padding: 0 32px;
}
.calculate-input__wrapper input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  height: 58px;
  color: rgb(15, 15, 14);
  font-size: 20px;
  font-weight: 800;
}

.calculate-input__name-field {
  position: absolute;
  top: -8px;
  background-color: #fff;
  padding: 0 2px;
}
.calculate-input__name-field p {
  font-size: 12px;
}

.calculate-select {
  display: flex;
  align-items: center;
}
.calculate-select input {
  cursor: pointer;
}
.calculate-select.calculate-select--active {
  border-radius: 29px 29px 0px 0px;
}
.calculate-select.calculate-select--active + .calculate-select__list {
  display: block;
}

.calculate-select__list {
  border: 1px solid rgb(228, 228, 228);
  border-radius: 0px 0px 29px 29px;
  padding: 16px 32px;
  display: none;
}

.calculate-select__list-wrapper {
  display: flex;
  flex-direction: column;
  max-height: 195px;
  overflow: auto;
}
.calculate-select__list-wrapper::-webkit-scrollbar {
  width: 4px;
}
.calculate-select__list-wrapper::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: rgb(255, 139, 0);
}
.calculate-select__list-wrapper::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #F4F4F4;
}
.calculate-select__list-wrapper p {
  cursor: pointer;
  transition: 0.2s;
  padding: 8px 0;
}
.calculate-select__list-wrapper p:hover {
  font-weight: bold;
  transition: 0.2s;
}

.errors-text {
  font-size: 14px;
  color: #FF0909;
  text-align: center;
  display: none;
}
.errors-text.errors-text--show {
  display: block;
}

.calculate-input {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.start-build {
  grid-template-columns: 100%;
}

@media (max-width: 1240px) {
  .calculate {
    gap: 48px;
  }
}
@media (max-width: 1080px) {
  .calculate {
    grid-template-columns: 100%;
  }
  .calculate__slider {
    order: 1;
  }
  .calculate__form {
    order: 2;
  }
  .calculate__form .btn-big {
    padding: 12px 24px;
  }
  .calculate__form-sub-title {
    font-size: 16px;
  }
  .calculate-field__item {
    gap: 16px;
  }
  .calculate-field__item p {
    font-size: 18px;
  }
  .calculate-field__item .calculate-field__item-square {
    min-width: 24px;
    min-height: 24px;
  }
  .calculate-field__item .calculate-field__item-circle {
    min-width: 24px;
    min-height: 24px;
  }
}
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
  font-family: "Rubik", sans-serif;
  text-decoration: none;
}

body,
html {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  max-width: 1480px;
  margin: auto;
  width: 90%;
}

.btn-small {
  padding: 12px 24px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 800;
  border-radius: 40px;
  background: rgb(1, 149, 255);
  display: inline-flex;
  text-transform: uppercase;
}

.btn-big {
  padding: 16px 32px;
  display: inline-flex;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 800;
  border-radius: 40px;
  background: rgb(1, 149, 255);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.experience-section__bottom-btn .btn-big {
  display: flex;
  align-items: center;
  gap: 12px;
}

h2 {
  font-size: 48px;
  font-weight: 900;
}
h2 span {
  background: linear-gradient(90deg, rgb(255, 139, 0), rgb(255, 183, 97));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media (max-width: 1280px) {
  .btn-small,
  .btn-big {
    font-size: 14px;
  }
  h2 {
    font-size: 40px;
  }
}/*# sourceMappingURL=index.css.map */