*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Basis Grotesque Pro";
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  background: #282828;
}

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

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 95%;
}

.section__tag {
  color: #EDF5F6;
  font-size: 18px;
  font-weight: 500;
}

.section__label {
  color: #EDF5F6;
  font-size: 45px;
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
}

.section__desc {
  color: #EDF5F6;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1360px) {
  .section__label {
    font-size: 30px;
    line-height: 34px;
  }
  .section__desc,
  .section__tag {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .section__label {
    font-size: 24px;
    line-height: 30px;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 15px;
  z-index: 10;
}
.header__container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  background: #143234;
  border-radius: 6px;
  color: white;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #edf5f6;
  list-style-type: none;
}
.header__nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__tel {
  margin-left: auto;
  font-size: 19px;
  font-weight: 600;
  color: #edf5f6;
  letter-spacing: 1px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__actions a, .header__actions button {
  display: flex;
  align-items: center;
  background: #edf5f6;
  border-radius: 4px;
  padding: 10px;
}
.header__actions a:last-child {
  color: #143234;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 25px;
}
.header__burger {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  justify-content: center;
  cursor: pointer;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 9;
}

.mobile-menu {
  position: fixed;
  top: 85px;
  transform: translateX(-50%) translateY(-10px);
  left: 50%;
  width: 95%;
  max-height: calc(100vh - 85px);
  background: #143234;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: 10;
  padding: 24px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__nav a {
  color: #edf5f6;
  font-size: 18px;
  font-weight: 500;
}
.mobile-menu__cta {
  margin-top: 20px;
  background: #edf5f6;
  color: #143234 !important;
  padding: 12px 16px;
  border-radius: 4px;
  text-align: center;
}

.menu-open {
  overflow: hidden;
}
.menu-open .mobile-menu {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.menu-open .mobile-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1360px) {
  .header__nav-list {
    font-size: 13px;
  }
  .header__tel {
    font-size: 13px;
  }
  .header__actions a:last-child {
    font-size: 13px;
  }
  .mobile-menu__nav a {
    font-size: 13px;
  }
}
@media (max-width: 1160px) {
  .header__container {
    justify-content: space-between;
  }
  .header__actions, .header__tel, .header__nav {
    display: none;
  }
  .header__burger {
    display: flex;
    align-items: center;
  }
}
.hero {
  height: 100vh;
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 0 0 50px 50px;
}
.hero__top {
  background: url("../src/footer-bookmark.png") 100% 100% no-repeat;
  background-size: 100% 100%;
  width: 350px;
  margin-left: auto;
  margin-right: 20px;
  padding: 140px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.hero__top .item {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  font-size: 18px;
  color: #143234;
}
.hero__top .item svg {
  width: 35%;
  height: auto;
}
.hero__top .item .section__desc {
  font-size: 18px;
  font-weight: 500;
  color: #143234;
  width: 65%;
}
.hero__content {
  display: flex;
  align-items: center;
  align-items: flex-end;
  justify-content: space-between;
  margin: auto 0 60px;
  width: 100%;
}
.hero__content .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero__content .left .section__desc {
  width: 40%;
}
.hero__content .right {
  background: #C2B29A;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 350px;
  margin-right: 20px;
}
.hero__content .right img {
  width: 110px;
  height: 110px;
  border-radius: 4px;
}
.hero__content .right .section__desc {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
.hero__label {
  font-weight: bold;
  font-size: 65px;
  line-height: 114%;
  text-transform: uppercase;
  color: #EDF5F6;
}

@media (max-width: 1360px) {
  .hero__label {
    font-size: 45px;
    line-height: 52px;
  }
  .hero__top .right .section__desc {
    font-size: 13px;
  }
  .hero__content .right {
    width: 260px;
  }
  .hero__content .right img {
    width: 76px;
    height: 76px;
  }
  .hero__content .right .section__desc {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .hero__top {
    margin-right: 0;
    width: 200px;
    padding: 100px 20px 50px;
  }
  .hero__top .item {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .hero__top .item .section__desc {
    font-size: 13px;
    width: 100%;
  }
  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .hero__content .left .section__desc {
    width: 100%;
  }
  .hero__label {
    font-size: 34px;
    line-height: 40px;
  }
  .hero__img {
    border-radius: 0 0 20px 20px;
  }
}
.dom {
  padding: 100px 0;
  overflow: hidden;
}
.dom__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dom__top .section__tag {
  flex: 1;
}
.dom__top .left,
.dom__top .right {
  flex: 1;
}
.dom__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 60px;
}
.dom__actions a {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 10px;
  background: #edf5f6;
}
.dom__actions a:hover {
  transform: scale(1.05);
}
.dom__actions a svg {
  width: 25px;
  height: 25px;
  transition: all ease 0.3s;
}
.dom .swiper-container {
  width: 100%;
}
.dom .swiper-slide {
  flex: 0 0 auto;
  border-radius: 10px;
  background: #2c3a3b;
  padding: 15px;
}
.dom .swiper-slide img {
  border-radius: 10px;
  width: 100%;
}
.dom__list {
  margin: 40px 0 0;
}
.dom__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  color: #FFFFFF;
}
.dom__item-content a {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: #edf5f6;
  padding: 12px;
}
.dom__item-content a:hover {
  transform: scale(1.05);
}
.dom__item-content a svg {
  width: 25px;
  height: 25px;
  transition: all ease 0.3s;
}

@media (max-width: 768px) {
  .dom {
    padding: 50px 0;
  }
  .dom__top {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .dom__top .left {
    width: 100%;
  }
  .dom__actions {
    justify-self: end;
    margin: 20px 0 0;
    gap: 8px;
  }
  .dom__actions a {
    padding: 10px;
  }
  .dom__actions a svg {
    width: 17px;
    height: 17px;
  }
  .dom__list {
    margin: 30px 0 0;
  }
  .dom__item-content {
    padding: 0;
  }
  .dom__item-content h3 {
    font-size: 16px;
  }
  .dom__item-content a {
    padding: 6px;
  }
}
.quality__container {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.quality__img, .quality__swiper {
  flex: 1;
}
.quality__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quality__swiper {
  background: #C2B29A url("../src/bg.png") no-repeat center/cover;
}
.quality__swiper .swiper-slide {
  position: relative;
  padding: 60px 200px 60px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.quality__swiper .swiper-slide .section__label {
  color: #282828;
}
.quality__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.quality__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: auto;
}
.quality__desc, .quality__list {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.quality__desc span, .quality__list span {
  color: #143234;
}
.quality__list {
  margin-left: 20px;
}
.quality__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 10;
}
.quality__link {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #000000;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.quality__btn {
  width: 49px;
  height: 49px;
  background: #2C3A3B;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 1360px) {
  .quality__desc, .quality__list {
    font-size: 13px;
  }
  .quality__btn {
    width: 37px;
    height: 37px;
  }
  .quality__link {
    font-size: 13px;
  }
}
@media (max-width: 960px) {
  .quality__img {
    display: none;
  }
  .quality__actions {
    bottom: 30px;
    right: 30px;
  }
  .quality__swiper .swiper-slide {
    padding: 40px 130px 60px 20px;
  }
}
@media (max-width: 768px) {
  .quality__swiper {
    padding-bottom: 60px !important;
  }
  .quality__swiper .swiper-slide {
    padding: 20px;
  }
  .quality__actions {
    bottom: 20px;
  }
}
.cost-calculation {
  padding: 100px 0;
}
.cost-calculation__container {
  display: flex;
  align-items: center;
  align-items: start;
}
.cost-calculation .section__tag {
  flex: 1;
}
.cost-calculation__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.cost-calculation__content .section__desc {
  width: 80%;
}

@media (max-width: 768px) {
  .cost-calculation {
    padding: 50px 0;
  }
  .cost-calculation__container {
    flex-direction: column;
    gap: 30px;
  }
  .cost-calculation__content {
    gap: 24px;
  }
  .cost-calculation__content .section__desc {
    width: 100%;
  }
}
.photo {
    position: relative;
    height: 1000px;
    overflow: hidden;
}
.photo__img {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    will-change: transform;
}
@media (max-width: 768px) {
    .photo {
        height: 300px;
    }
}
.advantages .swiper-wrapper {
  position: relative;
}
.advantages .swiper-slide {
  background: #C2B29A url("../src/advantages-bg.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  align-items: start;
}
.advantages__content, .advantages__img {
  flex: 1;
}
.advantages__content {
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.advantages__content .section__label {
  color: #282828;
}
.advantages__content .section__desc {
  color: #000000;
  width: 60%;
}
.advantages__img {
  align-self: stretch;
}
.advantages__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advantages__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 60px;
  left: 30px;
  z-index: 10;
}
.advantages__btn {
  width: 49px;
  height: 49px;
  background: #2C3A3B;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (max-width: 990px) {
  .advantages__actions {
    bottom: 20px;
  }
  .advantages__content {
    padding: 40px 20px;
  }
  .advantages__content .section__desc {
    width: 100%;
  }
  .advantages__actions {
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .advantages__swiper .swiper-slide {
    flex-direction: column;
  }
  .advantages__actions {
    left: auto;
    right: 20px;
    bottom: 20px;
  }
  .advantages__btn {
    width: 37px;
    height: 37px;
  }
}
.projects {
  padding: 100px 0;
}
.projects__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.projects__content {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.projects__content .section__desc {
  width: 70%;
}
.projects__block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.projects__btn {
  background: #EDF5F6;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: 500;
  color: #143234;
  cursor: pointer;
  margin-top: auto;
}
.projects__swiper {
  width: 100%;
}
.projects__swiper .swiper-slide {
  width: auto;
}
.projects__swiper .swiper-slide img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .projects {
    padding: 50px 0;
  }
  .projects__content {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .projects__block {
    gap: 20px;
  }
}
@media (max-width: 460px) {
  .projects__btn {
    width: 100%;
  }
  .projects .section__desc {
    width: 100%;
  }
}
.materials {
  padding: 0 0 100px;
}
.materials__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.materials__container .section__desc {
  width: 30%;
}
.materials__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 100%;
}
.materials__item {
  position: relative;
}
.materials__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.3s ease;
}
.materials__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 8px;
  position: absolute;
  inset: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.materials__item-content .section__desc {
  width: 100%;
}
.materials__item:hover img {
  filter: brightness(0.8);
}
.materials__item:hover .materials__item-content {
  opacity: 1;
}

@media (max-width: 768px) {
  .materials {
    padding: 0 0 50px;
  }
  .materials .section__desc {
    width: 100%;
  }
  .materials__item-content {
    padding: 10px;
  }
  .materials__item-content .section__label {
    font-size: 16px;
  }
  .materials__item-content .section__desc {
    font-size: 12px;
  }
}
@media (max-width: 560px) {
  .materials__list {
    grid-template-columns: auto;
  }
}
.works__container {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.works__img, .works__block {
    flex: 1;
}
.works__img {
    position: relative;
    height: 600px;
}
.works__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.works__block {
  background: #C2B29A url("../src/bg.png") no-repeat center/cover;
}
.works__block-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px;
  height: 100%;
}
.works__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.works__content .section__label {
  color: #282828;
}
.works__content .section__desc {
  color: #000000;
}
.works__btn {
  margin-top: auto;
  padding: 10px 20px;
  background: #282828;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #EDF5F6;
}
.works__btn:hover {
  color: #EDF5F6;
}

@media (max-width: 1360px) {
  .works__btn {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .works__block-inner {
    padding: 20px;
    gap: 20px;
  }
  .works__container {
      display: grid;
  }
  .works__img {
    display: block;
    height: 306px;
    grid-row: 2/3;
  }
}
.partners {
  padding: 100px 0;
}
.partners__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.partners__content {
  display: flex;
  align-items: center;
  align-items: start;
  width: 100%;
}
.partners .section__desc {
  width: 60%;
}
.partners .section__tag, .partners__block {
  flex: 1;
}
.partners__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
}
.partners__item {
  height: 140px;
  width: 100%;
  background: #2C3A3B;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .partners {
    padding: 50px 0;
  }
  .partners__content {
    flex-direction: column;
    gap: 20px;
  }
  .partners__block {
    gap: 20px;
  }
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners__item:last-child {
    grid-column: span 2;
  }
  .partners .section__desc {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .partners__list {
    grid-template-columns: auto;
  }
  .partners__item:last-child {
    grid-column: span 1;
  }
}
.garanty {
  padding: 100px 0;
}
.garanty__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.garanty__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.garanty__item {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  background: #2C3A3B;
}
.garanty__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.garanty__item-label, .garanty__item-desc {
  font-size: 18px;
  font-weight: 500;
  color: #EDF5F6;
}
.garanty__btn {
  padding: 10px 20px;
  background: #EDF5F6;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  color: #143234;
  margin: 0 auto;
}

@media (max-width: 1360px) {
  .garanty__item-label, .garanty__item-desc {
    font-size: 13px;
  }
  .garanty__btn {
    font-size: 13px;
  }
}
@media (max-width: 1160px) {
  .garanty__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .garanty__list {
    grid-template-columns: auto;
  }
}
@media (max-width: 560px) {
  .garanty__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/*.about {*/
/*  background: rgba(194, 178, 154, 0.3019607843) url("../src/about-bg.png") no-repeat center/cover;*/
/*}*/
/*.about__container {*/
/*  -webkit-backdrop-filter: blur(84px);*/
/*          backdrop-filter: blur(84px);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  align-items: start;*/
/*  padding: 100px 30px;*/
/*  position: relative;*/
/*}*/
/*.about__block-wrapper, .about__content {*/
/*  flex: 1;*/
/*}*/
/*.about__tag {*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  right: 0;*/
/*}*/
/*.about__block {*/
/*  width: 416px;*/
/*  padding: 25px;*/
/*  background: #C2B29A;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  gap: 30px;*/
/*}*/
/*.about__block .section__desc {*/
/*  color: #282828;*/
/*}*/
/*.about__desc {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  gap: 6px;*/
/*}*/
/*.about__desc-wrapper {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  gap: 30px;*/
/*}*/
/*.about__content {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  gap: 50px;*/
/*}*/
/*.about__info {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  align-items: flex-start;*/
/*  gap: 30px;*/
/*}*/
/*.about__info .section__desc {*/
/*  width: 60%;*/
/*}*/

/*@media (max-width: 960px) {*/
/*  .about__container {*/
/*    padding: 50px 20px;*/
/*    flex-direction: column;*/
/*    gap: 30px;*/
/*  }*/
/*  .about__tag {*/
/*    display: none;*/
/*  }*/
/*  .about__block {*/
/*    width: 100%;*/
/*    padding: 16px;*/
/*  }*/
/*  .about__block img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    -o-object-fit: cover;*/
/*       object-fit: cover;*/
/*  }*/
/*  .about__info .section__desc {*/
/*    width: 100%;*/
/*  }*/
/*}*/
.news {
  padding: 100px 0;
  overflow: hidden;
}
.news__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.news__content {
  display: flex;
  align-items: center;
  align-items: flex-start;
  width: 100%;
}
.news .section__tag,
.news .section__label {
  flex: 1;
}
.news__item {
  background: #2C3A3B;
  border-radius: 4px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.news__item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.news__item-label {
  font-size: 18px;
  font-weight: 500;
  color: #EDF5F6;
}
.news__item-link {
  width: 49px;
  height: 49px;
  background: #EDF5F6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__swiper {
  width: 100%;
}
.news__swiper .swiper-slide {
  width: 100%;
}
.news__swiper .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .news {
    padding: 50px 0;
  }
  .news__content {
    flex-direction: column;
    gap: 30px;
  }
  .news__item-link {
    width: 37px;
    height: 37px;
  }
  .news__item-label {
    font-size: 13px;
  }
}
.excursion__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}
.excursion__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.excursion__content-wrapper {
  display: flex;
  align-items: center;
  align-items: start;
  width: 100%;
}
.excursion__content-wrapper .section__tag {
  flex: 1;
}
.excursion__content .section__desc {
  width: 50%;
}
.excursion__block {
    display: flex;
    align-items: center;
    align-items: stretch;
    gap: 6px;
    width: 85%;
}
.excursion__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: start;
  gap: 6px;
  width: 266px;
}
.excursion__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    height: 100%;
    padding: 25px;
    background: #2C3A3B;
}
.excursion__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.excursion__btn {
  background: #EDF5F6;
  padding: 10px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #143234;
  margin: 0 auto;
}

@media (max-width: 1160px) {
  .excursion__block {
    flex-direction: column;
      width: 100%;
  }
  .excursion__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .excursion__btn {
    font-size: 13px;
  }
  .excursion__content .section__desc {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .excursion__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .excursion__list {
    grid-template-columns: auto;
  }
  .excursion__btn {
    width: 100%;
  }
}
.form {
  padding: 100px 0 0;
}
.form__container {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.form__block {
  -webkit-backdrop-filter: blur(84px);
          backdrop-filter: blur(84px);
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
}
.form__block-wrapper {
  flex: 1;
  background: rgba(194, 178, 154, 0.3019607843) url("../src/about-bg.png") no-repeat center/cover;
}
.form__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.form__img {
  flex: 1;
}
.form__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form .calculate-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 390px;
}
.form .calculate-form .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.form .calculate-form .input-wrapper input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  background: #DCCDB6;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: #282828;
}
.form .calculate-form .input-wrapper input::-moz-placeholder {
  color: #282828;
  font-size: 18px;
  font-weight: 500;
}
.form .calculate-form .input-wrapper input::placeholder {
  color: #282828;
  font-size: 18px;
  font-weight: 500;
}
.form__checkbox {
  display: flex;
  align-items: center;
  align-items: start;
  gap: 12px;
  cursor: pointer;
}
.form__checkbox input {
  position: absolute;
  opacity: 0;
}
.form__checkbox input:checked + .checkbox-box {
  border-color: #000;
}
.form__checkbox input:checked + .checkbox-box::after {
  opacity: 1;
  border-color: #000;
}
.form__checkbox .checkbox-box {
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #EDF5F6;
  border-radius: 2px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.form__checkbox .checkbox-box::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form__checkbox .checkbox-label {
  font-size: 14px;
  font-weight: 500;
  color: #EDF5F6;
}
.form__checkbox .checkbox-label a {
  text-decoration: underline;
}
.form__btn {
  padding: 10px 20px;
  border-radius: 4px;
  background: #282828;
  font-size: 18px;
  font-weight: 500;
  color: #EDF5F6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1160px) {
  .form__block {
    padding: 20px;
  }
  .form__btn {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .form__img {
    display: none;
  }
  .form__btn {
    width: 100%;
  }
  .form__block {
    padding: 20px;
  }
  .form__content {
    width: 100%;
  }
  .form .calculate-form {
    width: 100%;
  }
  .form .calculate-form .input-wrapper input {
    font-size: 13px;
  }
  .form .calculate-form .input-wrapper input::-moz-placeholder {
    font-size: 13px;
  }
  .form .calculate-form .input-wrapper input::placeholder {
    font-size: 13px;
  }
}
.footer {
  height: 80vh;
  position: relative;
  background: rgba(0, 0, 0, 0.2) url("../src/footer-bg.png") no-repeat center/cover;
}
.footer__container {
  padding: 100px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 100px;
  height: 100%;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__info-item {
  font-size: 18px;
  font-weight: 500;
  color: #EDF5F6;
}
.footer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  margin-top: auto;
}
.footer__social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding: 70px 35px 60px 35px;
}
.footer__links-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__links-item-label {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
}
.footer__links-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__links-block a {
  font-size: 16px;
  font-weight: 500;
  color: #282828;
}
.footer__links-wrapper {
  position: absolute;
  top: 0;
  right: 30px;
  background: url("../src/footer-bookmark.png") 100% 100% no-repeat;
  background-size: cover;
  width: 260px;
  height: 380px;
}

@media (max-width: 1160px) {
  .footer {
    height: 100%;
  }
  .footer__container {
    padding: 60px 0 40px;
  }
  .footer__links-wrapper {
    display: none;
  }
  .footer__content svg {
    width: 200px;
  }
  .footer__info-item {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.about__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about__block {
    display: flex;
    align-items: center;
    align-items: stretch;
    height: 100%;
}
.about__img, .about__content, .about__section {
    flex: 1;
    width: 50%;
}
.about__content, .about__section {
    background: #143234;
}
.about__content-wrapper, .about__section-wrapper {
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    height: 100%;
}
.about__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

@media (max-width: 1160px) {
    .about__content-wrapper, .about__section-wrapper {
        padding: 25px;
    }
}
@media (max-width: 768px) {
    .about__block {
        flex-direction: column;
    }
    .about__img, .about__content, .about__section {
        width: 100%;
    }
}
section.photo video {
	object-fit: cover;
}