:root {
  --primary-black-color: #363636;
  --primary-green-color: #204E4A;
  --primary-white-color: #FFFFFF;
  --light-black-color: #515151;
  --light-green-color: #76908E;
  --light-grey-color: #DADADA;
  --light-grey-color-1: #B2B2B2;
  --light-grey-color-2: #CECECE;
  --light-bg-color: #FFFCF7;
  --grey-bg-color: #F0F0F0;
  --green-bg-color: #1F4A47;
}

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

.error {
  color: red;
  font-size: 1.6rem;
  font-weight: 800;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  position: relative;
}

body {
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
  color: var(--primary-black-color);
  font-family: Nunito Sans;
  font-weight: 600;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  background-color: #FFFCF7;
  height: 100vh;
  touch-action: pan-y, pan-x;
}

.section {
  padding: 0 1.5rem;
  transition: transform 1s, opacity 1s;
}
@media (min-width: 768px) {
  .section {
    padding: 0 2rem 3rem 2rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 0 2rem 3rem 2rem;
  }
}
@media (min-width: 1440px) {
  .section {
    padding: 0 5rem 4rem 5rem;
  }
}

img {
  display: block;
  max-width: 100%;
}

ul, li, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.container {
  max-width: 144rem;
  margin: 0 auto;
}

.grid {
  display: grid;
}

.page {
  max-width: 192rem;
}

.title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: var(--primary-green-color);
  padding: 2rem 0;
}

.text {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: var(--primary-black-color);
}

.container-policy {
  margin-top: 12rem;
}
.container-policy h1, .container-policy h2, .container-policy h3, .container-policy h4 {
  margin: 2rem 0;
}
.container-policy ul, .container-policy li, .container-policy ol {
  list-style: initial;
  list-style-position: inside;
}
.container-policy p {
  margin-bottom: 1rem;
}

.lock-scroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .title {
    padding-top: 4rem;
    padding-bottom: 3rem;
    font-size: 2.2rem;
    line-height: 3.2rem;
    font-weight: 800;
  }

  .text {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .title {
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-size: 2.6rem;
    line-height: 3.6rem;
  }

  .text {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}
@media (min-width: 1440px) {
  .title {
    padding-bottom: 6rem;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus, textarea:focus, input:focus {
    font-size: 16px;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 10;
  box-shadow: 0px 2px 4px rgba(54, 54, 54, 0.15);
}
@media (min-width: 1440px) {
  .header {
    height: 7rem;
  }
}

.header__number-1 {
  display: flex;
  background-color: #1F4A47;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  font-size: 1.4rem;
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.02em;
  line-height: 2.4rem;
}
.header__number-1 img {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 768px) {
  .header__number-1 img {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (min-width: 768px) {
  .header__number-1 {
    font-size: 2rem;
    line-height: 3.4rem;
  }
}
@media (min-width: 1440px) {
  .header__number-1 {
    display: none;
  }
}

.header__number-2 {
  display: flex;
  align-self: center;
  gap: 0.6rem;
  font-size: 2rem;
  line-height: 2.8rem;
  letter-spacing: 0.02em;
  color: #1F4A47;
}
.header__number-2 img {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 1440px) {
  .header__number-2 {
    display: none;
  }
}

.header.sticky {
  position: fixed;
  padding-bottom: 1rem;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 2.6rem;
  text-transform: uppercase;
  height: 6rem;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__container {
    height: 9rem;
  }
}
@media (min-width: 1024px) {
  .header__container {
    height: 9.6rem;
  }
}
@media (min-width: 1440px) {
  .header__container {
    height: 7rem;
  }
}

.header__img-logo {
  width: 13rem;
}
@media (min-width: 768px) {
  .header__img-logo {
    width: 16.8rem;
  }
}

.header__nav {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  font-size: 1.6rem;
  width: 100%;
  height: calc(100vh - 6rem);
  background-color: var(--primary-green-color);
  color: var(--primary-white-color);
  padding: 3rem 1rem;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .header__nav {
    width: 60%;
    left: initial;
    right: 0;
    top: 9rem;
    height: calc(100vh - 9rem);
    padding: 2rem;
    font-size: 2.2rem;
    line-height: 3.2rem;
    font-weight: 800;
  }
}
@media (min-width: 1024px) {
  .header__nav {
    top: 9.6rem;
    height: calc(100vh - 9.6rem);
  }
}
@media (min-width: 1440px) {
  .header__nav {
    display: none;
  }
}

@media (min-width: 1440px) {
  .nav.header__nav {
    display: none;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.nav__list-desktop .nav__item .nav__link:hover {
  color: #1F4A47;
}

.nav__list-desktop .nav__item .nav__link:active {
  color: #A1B2B1;
}

@media (min-width: 768px) {
  .nav__list .nav__item a {
    font-size: 2.2rem;
    line-height: 3.2rem;
    font-weight: 800;
  }
}
@media (min-width: 1024px) {
  .nav__list .nav__item a {
    font-size: 2.8rem;
    line-height: 3.8rem;
    font-weight: 800;
  }
}
@media (min-width: 1440px) {
  .nav__list .nav__item a {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.nav__list .nav__link:hover,
.nav__list .nav__link:active {
  color: #AAAAAA;
}

.nav__hamburger {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}
@media (min-width: 768px) {
  .nav__hamburger {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 1024px) {
  .nav__hamburger {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 1440px) {
  .nav__hamburger {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

.nav__close {
  display: none;
  width: 3.2rem;
  height: 3.2rem;
}
@media (min-width: 768px) {
  .nav__close {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 1024px) {
  .nav__close {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 1440px) {
  .nav__close {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

.overlay__header {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.62);
  backdrop-filter: blur(4px);
  z-index: -10;
  transition: all 0.5s;
}
@media (min-width: 1440px) {
  .overlay__header {
    display: none;
  }
}

.nav__desktop {
  display: block;
  height: 7rem;
  width: 100%;
  padding: 2rem 0;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 1439px) {
  .nav__desktop {
    display: none;
  }
}

.nav__list-desktop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.nav__list-desktop li a {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero {
  margin-top: 6rem;
  width: 100%;
  min-height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
}

.slider__container {
  z-index: -100;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #b9b4b4;
}

.hero__img-slide {
  width: 100%;
  object-fit: cover;
  display: none;
}

.hero-1 {
  background-color: #a19f9f;
  background-image: url(/img/slider/1.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.hero-2 {
  background-color: #a19f9f;
  background-image: url(/img/slider/2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.hero-3 {
  background-color: #a19f9f;
  background-image: url(/img/slider/3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}

.hero__img-slide.active {
  display: block;
}

.hero__content {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  width: 100%;
  z-index: 1;
}
@media (min-width: 1440px) {
  .hero__content {
    max-width: 70rem;
    align-self: flex-start;
    justify-self: center;
  }
}

.hero__content {
  padding-bottom: 1.4rem;
}

.hero__title {
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  color: var(--primary-white-color);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
    line-height: 4rem;
    font-weight: 800;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.6rem;
    line-height: 4.4rem;
  }
}

.hero__text {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--primary-white-color);
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: 700;
    margin-top: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 2.6rem;
    line-height: 3.6rem;
    max-width: 96.4rem;
  }
}
@media (min-width: 1440px) {
  .hero__text {
    min-width: 7rem;
  }
}

.hero__text-2 {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .hero__text-2 {
    margin-top: 1rem;
    margin-bottom: 12.2rem;
  }
}
@media (min-width: 1024px) {
  .hero__text-2 {
    margin-top: 1.6rem;
  }
}
@media (min-width: 1440px) {
  .hero__text-2 {
    margin-top: 2.2rem;
    margin-bottom: 5rem;
  }
}

.btn__group-main {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1440px) {
  .btn__group-main {
    gap: 4.4rem;
    flex-direction: row;
    justify-items: flex-end;
  }
}

.btn {
  padding: 1.1rem 2rem;
  border-radius: 0.8rem;
  font-family: "Montserat", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: var(--primary-white-color);
  text-align: center;
  max-width: 51.8rem;
  width: 100%;
  align-self: center;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .btn {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .btn {
    max-width: 58rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
    padding: 1.4rem 2rem;
  }
}

.hero__btn-green {
  background-color: var(--primary-green-color);
  margin-top: 2.4rem;
}
.hero__btn-green:hover {
  background-color: #4A6D6A;
}
.hero__btn-green:active {
  background-color: #76908E;
}
@media (min-width: 1440px) {
  .hero__btn-green {
    margin: 0;
    width: max-content;
  }
}

.hero__btn-transparent {
  padding: 0.9rem 2rem;
  border: 2px solid #FFFFFF;
  margin-top: 1.6rem;
}
@media (min-width: 1024px) {
  .hero__btn-transparent {
    max-width: 58rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
    padding: 1.2rem 2rem;
  }
}
@media (min-width: 1440px) {
  .hero__btn-transparent {
    margin: 0;
    width: max-content;
    border-color: #FFFFFF;
  }
}

.hero__elipse-group {
  display: flex;
  align-self: center;
  gap: 1rem;
  margin-top: 2.6rem;
  padding-bottom: 1.4rem;
}
@media (min-width: 1440px) {
  .hero__elipse-group {
    margin-top: auto;
  }
}

.hero__elipse {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.hero__elipse:hover {
  transform: scale(1.2);
}

.hero__elipse.active {
  background-color: #1F4A47;
}

.about {
  margin-top: 8rem;
}

@media (min-width: 1440px) {
  .about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 8.7rem);
  }
}

.about__text:last-of-type {
  margin-top: 0.6rem;
}
@media (min-width: 768px) {
  .about__text:last-of-type {
    margin-top: 1rem;
  }
}
@media (min-width: 1024px) {
  .about__text:last-of-type {
    margin-top: 1.6rem;
  }
}
@media (min-width: 1440px) {
  .about__text:last-of-type {
    margin-top: 2.2rem;
  }
}

.about__img {
  margin-top: 0.8rem;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .about__img {
    margin-top: 4rem;
  }
}

.about__counter {
  display: flex;
  justify-content: space-between;
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) {
  .about__counter {
    justify-content: space-evenly;
  }
}

.about__counter-item {
  display: flex;
  flex-direction: column;
  max-width: 8rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.about__count-border {
  display: block;
  width: 40px;
  height: 2px;
  background-color: #A1B2B1;
  transform: rotate(90deg) translatex(150%);
}
@media (min-width: 768px) {
  .about__count-border {
    width: 7.5rem;
    transform: rotate(90deg) translatex(85%);
  }
}
@media (min-width: 1440px) {
  .about__count-border {
    height: 4px;
  }
}

.about__count {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  line-height: 5.8rem;
  color: #A1B2B1;
  opacity: 0.4;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .about__count {
    font-size: 4.6rem;
    line-height: 5.4rem;
  }
}

.about__count-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .about__count-text {
    font-size: 2rem;
    line-height: 3rem;
  }
}

@media (min-width: 1440px) {
  .about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 8.7rem);
    margin-top: 8.5rem;
  }

  .about__wrapper .title {
    padding: 0;
  }

  .about__group-text {
    margin-top: 3rem;
    grid-column: 1/2;
    grid-row: 2/5;
  }

  .about__img {
    grid-column: 2/3;
    grid-row: 1/7;
    margin: 0;
    width: 59.2rem;
    height: 100%;
    object-fit: cover;
    margin-left: 8rem;
  }

  .about__counter {
    grid-column: 1/2;
    grid-row: 5/7;
  }
}
.wedo__wrapper {
  display: grid;
  gap: 1.7rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .wedo__wrapper {
    gap: 3.5rem;
  }
}

.wedo__item {
  display: grid;
  grid-template-columns: 1fr 8fr;
  height: min-content;
}

.wedo__item-number {
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #A1B2B1;
}
@media (min-width: 768px) {
  .wedo__item-number {
    font-size: 3rem;
    line-height: 3.8rem;
  }
}

.wedo__item-title {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--primary-green-color);
  margin-bottom: 0.4rem;
}
@media (min-width: 768px) {
  .wedo__item-title {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .wedo__item-title {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}

.wedo__item-content {
  padding-left: 1.8rem;
  border-left: 2px solid #CDD5D5;
}
@media (min-width: 1440px) {
  .wedo__item-content {
    border-left: 4px solid #CDD5D5;
  }
}

.wedo__item-text {
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .wedo__item-text {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .wedo__item-text {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}

@media (min-width: 1440px) {
  .wedo__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .wedo__item:nth-child(1) {
    grid-column: 1/2;
  }

  .wedo__item:nth-child(2) {
    grid-column: 1/2;
  }

  .wedo__item:nth-child(3) {
    grid-column: 1/2;
  }

  .wedo__item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .wedo__item:nth-child(5) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.portfolio {
  position: relative;
}

.portfolio__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}
@media (min-width: 1440px) {
  .portfolio__wrapper {
    gap: 5rem;
  }
}

.portfolio__item {
  position: relative;
  text-align: center;
  letter-spacing: 0.02em;
  color: var(--primary-white-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.portfolio__grid-1 {
  grid-column: 1/span 4;
}
@media (min-width: 1440px) {
  .portfolio__grid-1 {
    grid-column: 1/span 2;
  }
}

.portfolio__grid-2 {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 1440px) {
  .portfolio__grid-2 {
    grid-column: 3/span 2;
    grid-row: 1/2;
  }
}

.portfolio__grid-3 {
  grid-column: 3/5;
  grid-row: 2/3;
  position: relative;
}

.portfolio__grid-4 {
  grid-column: 1/span 4;
  grid-row: 3/4;
}
@media (min-width: 1440px) {
  .portfolio__grid-4 {
    grid-column: 1/span 2;
    grid-row: 2/3;
  }
}

.porfolio__img {
  width: 100%;
  box-shadow: 0px 0px 3px 2px rgba(54, 54, 54, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.portfolio__btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.2rem;
  height: 3.2rem;
}

.portfolio__address {
  position: absolute;
  font-size: 1.4rem;
  line-height: 2.2rem;
  bottom: 1rem;
  left: 1rem;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .portfolio__address {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .portfolio__address {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 950px;
  width: 90%;
  transform: translate(-50%, -50%);
  background-color: white;
  filter: drop-shadow(0px 0px 3px rgba(54, 54, 54, 0.1));
  border-radius: 6px;
  z-index: 1000;
  transition: all 0.5s;
}
@media (min-width: 768px) {
  .popup {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.62);
  backdrop-filter: blur(4px);
  z-index: 100;
  transition: all 0.5s;
}

.btn--close-popup {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  font-size: 4rem;
  cursor: pointer;
  display: block;
}
.btn--close-popup img {
  width: 1.6rem;
  height: 1.6rem;
}
@media (min-width: 768px) {
  .btn--close-popup img {
    top: 3rem;
    right: 3rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}

.popup__slide {
  display: none;
  position: relative;
}
.popup__slide picture {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup__title {
  padding: 1.3rem 1rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .popup__title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .popup__title {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}
@media (min-width: 1440px) {
  .popup__title {
    font-size: 2.6rem;
    line-height: 3.4rem;
  }
}

.popup__adress {
  font-family: Nunito Sans;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #B2B2B2;
  margin-top: 0.6rem;
  padding-left: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}

.active {
  display: block;
}

.popup__year {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .popup__year {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

.popup__img-count {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .popup__img-count {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

.popup__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .popup__info {
    gap: 4rem;
    font-size: 2.2rem;
    line-height: 3rem;
    justify-content: flex-start;
  }
}
.popup__info div {
  margin-left: 0.3rem;
}
.popup__info span {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #B2B2B2;
}
@media (min-width: 768px) {
  .popup__info span {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 768px) {
  .popup__info img {
    width: 3rem;
    height: 3rem;
  }
}

.popup__info > * {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  opacity: 0;
  visibility: hidden;
}

.popup__rooms img,
.popup__bath img {
  width: 2.4rem;
  height: 2.4rem;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}
.prev img,
.next img {
  width: 3.4rem;
  height: 3.4rem;
}
@media (min-width: 768px) {
  .prev img,
.next img {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 768px) {
  .prev,
.next {
    top: 50%;
  }
}

.prev {
  left: -1.5rem;
}

.next {
  right: -1.5rem;
}

.services {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.services__img {
  margin-top: 2.4rem;
  margin-bottom: 4rem;
  object-fit: cover;
  width: 100%;
}

.services__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-bottom: 3.4rem;
}

.services__item {
  display: grid;
  grid-template-columns: 1fr 5fr;
  align-items: center;
  gap: 2rem;
}

.services__item-num {
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: rgba(32, 78, 74, 0.4);
}
@media (min-width: 768px) {
  .services__item-num {
    font-size: 3.6rem;
    line-height: 5.4rem;
  }
}

@media (min-width: 1440px) {
  .services__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(8, 7.4rem);
    justify-items: center;
  }

  .services__img {
    margin-left: 5rem;
    grid-column: 2/3;
    grid-row: 1/span 8;
    margin-block: 0;
    margin-left: 8rem;
    max-width: 59.2rem;
    width: 100%;
    max-height: 59.2rem;
  }

  .services__content {
    grid-column: 1/2;
    grid-row: 3/8;
    max-width: 69.8rem;
    justify-self: center;
    gap: 5rem;
  }
}
.quote {
  background-color: var(--grey-bg-color);
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .quote {
    text-align: center;
  }
}

.quote__text {
  color: var(--primary-black-color);
}

.guote__form {
  margin-top: 2.4rem;
  padding-bottom: 2rem;
  display: flex;
}
@media (min-width: 768px) {
  .guote__form {
    padding-top: 3rem;
    margin: 0 auto;
    width: 59.2rem;
  }
}

.quote__input {
  width: 100%;
  padding-right: 4.2rem;
  padding: 0.9rem 4.2rem 1rem 0.9rem;
  box-shadow: 0px 0px 3px rgba(54, 54, 54, 0.1);
  border-radius: 6px;
  border: none;
  font-size: 1.7rem;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .quote__input {
    font-size: 2rem;
    line-height: 3rem;
    padding: 1rem 5rem 1rem 1.6rem;
  }
}
@media (min-width: 1024px) {
  .quote__input {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding: 1.2rem 6rem 1.2rem 1.6rem;
  }
}
@media (min-width: 1440px) {
  .quote__input {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding: 1.2rem 6.2rem 1.2rem 1.6rem;
  }
}

.quote__input:focus {
  font-size: 1.7rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .quote__input:focus {
    font-size: 2.2rem;
    line-height: 3rem;
    padding: 1rem 1.6rem;
  }
}
@media (min-width: 1024px) {
  .quote__input:focus {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding: 1.2rem 1.6rem;
  }
}

.quote__input::placeholder {
  color: #CECECE;
  font-size: 1.7rem;
  line-height: 2.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .quote__input::placeholder {
    font-size: 2rem;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .quote__input::placeholder {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
@media (min-width: 1440px) {
  .quote__input::placeholder {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}

.quote__btn {
  margin-left: -4.2rem;
  height: 4.2rem;
  width: 4.2rem;
}
@media (min-width: 768px) {
  .quote__btn {
    margin-left: -5rem;
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 1024px) {
  .quote__btn {
    margin-left: -6rem;
    width: 6rem;
    height: 6rem;
  }
}
@media (min-width: 1440px) {
  .quote__btn {
    margin-left: -6.2rem;
    width: 6.2rem;
    height: 6.2rem;
  }
}

.testimonials {
  background-color: var(--light-bg-color);
  padding: 2rem;
  position: relative;
}
@media (min-width: 1440px) {
  .testimonials {
    padding: 2rem 4rem;
  }
}

.testimonials__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1440px) {
  .testimonials__wrapper {
    flex-direction: row;
    gap: 6.7rem;
    margin-bottom: 8rem;
  }
}

.testimonials__item {
  display: grid;
  grid-template-columns: 2fr 5fr;
  background-color: var(--primary-white-color);
  box-shadow: 0px 0px 3px rgba(50, 50, 50, 0.1);
  border-radius: 6px;
  padding: 1rem;
  position: relative;
}
.testimonials__item::after {
  content: url(/img/testimonials/icon-mob.png);
  position: absolute;
  bottom: 0;
  right: 0.5rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .testimonials__item::after {
    content: url(/img/testimonials/icon-mini.png);
  }
}
@media (min-width: 1024px) {
  .testimonials__item::after {
    content: url(/img/testimonials/icon-pro.png);
  }
}
@media (min-width: 1440px) {
  .testimonials__item::after {
    top: 47%;
    right: 4rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__item {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
    min-width: 40.2rem;
    padding: 4rem;
  }
}

.testimonials__client {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 1440px) {
  .testimonials__client {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    grid-row: 2/3;
    padding: 0;
    gap: 2rem;
  }
}

.testimonials__client-info {
  text-align: center;
}
@media (min-width: 1440px) {
  .testimonials__client-info {
    text-align: left;
  }
}

.testimonials__photo {
  max-width: 100%;
  width: 4.6rem;
  height: 4.6rem;
}
@media (min-width: 768px) {
  .testimonials__photo {
    width: 8rem;
    height: 8rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__photo {
    width: 10.6rem;
    height: 10.6rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__photo {
    width: 9rem;
    height: 9rem;
  }
}

.testimonials__name {
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .testimonials__name {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__name {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}

.testimonials__location {
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: 0.02em;
  color: var(--light-grey-color-1);
  text-align: center;
}
@media (min-width: 768px) {
  .testimonials__location {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__location {
    font-size: 2.2rem;
    line-height: 3.2rem;
  }
}

.testimonials__review {
  padding-left: 1.5rem;
  border-left: 2px solid #EAEAEA;
  text-align: left;
  font-style: italic;
  color: var(--primary-black-color);
  z-index: 2;
}
@media (min-width: 768px) {
  .testimonials__review {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (min-width: 1024px) {
  .testimonials__review {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}
@media (min-width: 1440px) {
  .testimonials__review {
    border-left: none;
    border-bottom: 2px solid #EAEAEA;
    padding: 0;
    padding-bottom: 1rem;
  }
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.form {
  background-color: var(--green-bg-color);
}
@media (min-width: 1440px) {
  .form {
    background-image: url(/img/form.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }
}

.container.section-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1440px) {
  .container.section-form {
    width: 50vw;
    background-color: rgba(31, 74, 71, 0.8);
  }
}

.section-form {
  background-color: var(--green-bg-color);
  color: var(--primary-white-color);
  padding-bottom: 2rem;
}
.section-form .title,
.section-form .text {
  color: var(--primary-white-color);
}
@media (min-width: 768px) {
  .section-form .title,
.section-form .text {
    width: 59.2rem;
  }
}
@media (min-width: 768px) {
  .section-form {
    text-align: center;
  }
}

.form__container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form__container {
    margin: 0 auto;
    width: 59.2rem;
    gap: 2rem;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.form__group label {
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .form__group label {
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .form__group label {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
}

.form__input,
.form__textarea {
  padding: 0.9rem 1rem;
  box-shadow: 0px 0px 3px rgba(54, 54, 54, 0.1);
  border-radius: 4px;
  border: none;
  font-size: 1.7rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  font-family: "Nunito", sans-serif;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .form__input,
.form__textarea {
    font-size: 2.2rem;
    line-height: 3rem;
    padding: 1rem 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__input,
.form__textarea {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding: 1.2rem 1.6rem;
  }
}

.form__input:focus,
.form__textarea:focus {
  font-size: 1.7rem;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  font-family: "Nunito", sans-serif;
  color: var(--primary-black-color);
}
@media (min-width: 768px) {
  .form__input:focus,
.form__textarea:focus {
    font-size: 2.2rem;
    line-height: 3rem;
    padding: 1rem 1.6rem;
  }
}
@media (min-width: 1024px) {
  .form__input:focus,
.form__textarea:focus {
    font-size: 2.6rem;
    line-height: 3.6rem;
    padding: 1.2rem 1.6rem;
  }
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #CECECE;
  font-size: 1.7rem;
  line-height: 2.4rem;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .form__input::placeholder,
.form__textarea::placeholder {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
@media (min-width: 1024px) {
  .form__input::placeholder,
.form__textarea::placeholder {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}

.form__policy {
  text-align: left;
}
@media (min-width: 768px) {
  .form__policy {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.form__policy a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .form__policy a {
    font-size: 2rem;
    line-height: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
  }
}

.alert {
  font-family: Nunito Sans;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .alert {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}
@media (min-width: 1024px) {
  .alert {
    font-size: 2rem;
  }
}
@media (min-width: 1440px) {
  .alert {
    font-size: 2.2rem;
  }
}

.alert-sending {
  color: #848484;
}

.alert-success {
  color: #52AA56;
}

.alert-danger {
  color: #FF5252;
}

button.form__btn {
  background-color: #76908E;
  padding: 1.1rem 9rem;
  border: none;
  border-radius: 8px;
  color: var(--primary-white-color);
  font-size: 1.6rem;
  line-height: 2rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
@media (min-width: 768px) {
  button.form__btn {
    font-size: 2rem;
    line-height: 2.8rem;
    display: inline-block;
    margin: 0 auto;
    width: 51.8rem;
    margin-bottom: 1rem;
  }
}

.contacts {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #204E4A;
  position: relative;
  padding-bottom: 2.7rem;
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .contacts {
    font-size: 2rem;
    line-height: 3rem;
    padding-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  .contacts {
    font-size: 2.4rem;
    line-height: 3.4rem;
    padding-top: 2rem;
  }
}
@media (min-width: 1440px) {
  .contacts {
    padding-top: 3.5rem;
  }
}

h3 .title {
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .contacts__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1440px) {
  .contacts__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contacts__logo img {
  width: 13rem;
}

.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .contacts__list {
    gap: 2.8rem;
  }
}

.contacts__wraper-main {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (min-width: 768px) {
  .contacts__wraper-main {
    gap: 2.8rem;
  }
}

.contacts__phone,
.contacts__email,
.contacts__adrress {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.contacts__phone img,
.contacts__email img,
.contacts__adrress img {
  width: 2.4rem;
  height: 2.4rem;
}

.contacts__code-group {
  margin-top: 2.6rem;
}

.contacts__code {
  color: #B2B2B2;
}

.contacts__code + .contacts__code {
  margin-top: 2rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .contacts__code + .contacts__code {
    margin-top: 2.4rem;
    margin-bottom: 0;
  }
}

.contacts__social {
  display: flex;
  gap: 2rem;
}

.button__up {
  position: absolute;
  bottom: 2.2rem;
  right: 1.5rem;
}
.button__up img {
  width: 3.2rem;
  height: 3.2rem;
}
@media (min-width: 768px) {
  .button__up img {
    width: 4rem;
    height: 4rem;
  }
}
@media (min-width: 1024px) {
  .button__up img {
    width: 6rem;
    height: 6rem;
  }
}
@media (min-width: 1440px) {
  .button__up img {
    width: 6.2rem;
    height: 6.2rem;
  }
}

@media (min-width: 768px) {
  .contacts__nav {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .contacts__getintouch {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .contacts__sales {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 768px) and (min-width: 1440px) {
  .contacts__sales {
    grid-column: 3/4;
    grid-row: 1/2;
  }
}
@media (min-width: 768px) {
  .contacts__code-group {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .contacts__sales-title {
    padding-top: 0;
  }
}
@media (min-width: 768px) and (min-width: 1440px) {
  .contacts__sales-title {
    padding-top: 4rem;
  }
}
.footer {
  background-color: #1F4A47;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 2.2;
}

.footer__copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer__copyright img {
  width: 2.2rem;
  height: 2.2rem;
}
.footer__copyright span {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.footer__copyright a {
  text-decoration: underline;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 2rem;
    line-height: 3rem;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
}
@media (min-width: 1024px) {
  .footer__copyright {
    font-size: 2.4rem;
    line-height: 3.4rem;
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}
@media (min-width: 1440px) {
  .footer__copyright {
    font-size: 2.4rem;
    line-height: 3.4rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.policy {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw;
  height: 75vh;
  background-color: white;
  color: var(--primary-black-color);
  filter: drop-shadow(0px 0px 3px rgba(54, 54, 54, 0.1));
  border-radius: 10px;
  z-index: 3000;
  transition: all 0.5s;
  padding: 5rem 3rem 3rem 3rem;
  overflow-x: hidden;
}

.overlay__policy {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2000;
  transition: all 0.5s;
}

.btn--close-policy {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
@media (min-width: 768px) {
  .btn--close-policy {
    top: 2rem;
    right: 2rem;
  }
}
@media (min-width: 1440px) {
  .btn--close-policy {
    top: 2.5rem;
    right: 2.5rem;
  }
}
.btn--close-policy img {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 1440px) {
  .btn--close-policy img {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.policy__content {
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 85%;
  width: 90%;
  padding: 2rem;
  line-height: 1.4rem;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
}

.policy__content {
  padding-left: 2rem;
}
.policy__content h1 {
  font-size: 2rem;
  line-height: 2.2rem;
  margin-block: 1.5rem;
}
.policy__content h2 {
  font-size: 1.8rem;
  line-height: 2rem;
  margin-block: 1rem;
}
.policy__content p, .policy__content li, .policy__content ul {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-block: 0.5rem;
}
.policy__content li {
  list-style-type: disc;
  list-style-position: outside;
}
.policy__content ul {
  padding-left: 2rem;
}

.policy__title {
  font-size: 1.6;
  padding-block: 1rem;
}

.policy__subtitle {
  font-size: 1.4rem;
}

.policy__text {
  padding-block: 0.5rem;
}

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