@import "./fonts/fonts.css";
@import "./vendor/bootstrap.min.css";
@import "./vendor/normalize.css";
@import "./vendor/slick.css";
@import "./vendor/leaflet.css";
@import "./vendor/leaflet-gesture-handling.css";

/* Global styles */

:root {
  --color-whiteText: #ffffff;
  --color-whiteBg: #ffffff;
  --color-blackHead: #35424a;
  --color-blackText: #292d31;
  --color-blackBg: #35424a;
  --color-blackSocials: #2c363c;
  --color-grayBg: #f5f5f5;
  --color-grayHead: #b2b2b2;
  --color-grayBtn: #e2e2e2;
  --color-greenBg: #00a884;
  --color-greenText: #00a884;
  --color-greenActive: #008e70;
  --color-redText: #dc3545;
  --font-family-2: "Uniform 2", sans-serif;
  --font-family-3: "Uniform 3", sans-serif;
  --font-family-4: "Uniform 4", sans-serif;
  --font-family-6: "Uniform 6", sans-serif;
  --border-radius: 5px;
}

.button {
  font-family: var(--font-family-4);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  padding: 22px 25px 21px;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
  width: 225px;
  letter-spacing: 1.5px;
  text-align: center;
}

.button_white {
  background: var(--color-whiteBg);
  color: var(--color-greenText);
}

.button_green {
  background: var(--color-greenBg);
  color: var(--color-whiteText);
}

header {
  position: relative;
  z-index: 9999;
}

.block-header__prepend {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-family-4);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--color-grayHead);
  text-transform: uppercase;
  margin-bottom: 27px;
  position: relative;
  display: inline-block;
}

.block-header__prepend:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: -77px;
  margin-top: -1px;
  width: 60px;
  height: 1px;
  border-top: 1px solid var(--color-grayHead);
}

.block-header h2 {
  letter-spacing: -1px;
  color: var(--color-blackHead);
  margin-top: 0;
  margin-bottom: 30px;
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 400;
  font-family: var(--font-family-4);
  line-height: 1;
  transform: translateX(-3px);
}

@media (min-width: 1200px) {
  .block-header h2 {
    font-size: 4.5rem;
  }
}

@media (max-width: 1260px) {
  .block-header h2 {
    font-size: calc(1.53125rem + 3.375vw);
  }
}

@media (max-width: 1260px) and (min-width: 1200px) {
  .block-header h2 {
    font-size: 4.0625rem;
  }
}

@media (max-width: 575.98px) {
  .block-header h2 {
    font-size: 37px;
    margin-bottom: 20px;
  }

  .block-header h2 br {
    display: none;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .block-header h2 {
    font-size: 50px;
    line-height: 1;
  }
}

/* Navbar Start */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
}

.navbar .col {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 330px) {
  .navbar .col {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 575.98px) {
  .navbar__logo img {
    max-width: 190px;
  }
}

@media (max-width: 380px) {
  .navbar__logo img {
    max-width: 170px;
  }
}

.navbar__toggler {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  cursor: pointer;
  width: 60px !important;
  aspect-ratio: 1/1;
  padding: 0 18px;
  flex-shrink: 0;
}

.navbar__toggler span {
  display: block;
  position: relative;
  width: 16px;
  height: 2px;
  background: var(--color-blackBg);
}

@media (max-width: 991.98px) {
  .navbar__toggler span {
    transform: translateX(6px);
  }
}

.navbar__toggler span:before {
  position: absolute;
  right: 0;
  top: -8px;
  width: 25px;
  height: 2px;
  background: var(--color-blackBg);
  content: " ";
  display: block;
}

.navbar__toggler span:after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 25px;
  height: 2px;
  background: var(--color-blackBg);
  content: " ";
  display: block;
}

.navbar__buttons {
  display: flex;
  letter-spacing: 1px;
  gap: 12px;
}

.navbar__buttons .button {
  font-size: 14px;
  font-family: var(--font-family-2);
  width: auto;
  gap: 7px;
}

.navbar__buttons .button i {
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .navbar__buttons .button i {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar__buttons .button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .navbar__buttons .button:not(.navbar__toggler) span {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .navbar__buttons .button {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 330px) {
  .navbar__buttons .button {
    width: 40px !important;
    height: 40px !important;
  }
}

.navbar.navbar_scrolled {
  background: var(--color-blackHead);
  box-shadow: 0px 0px 13px -2px #000;
  height: 100px;
  padding: 0;
}

.navbar a img {
  transition: height 0.3s linear;
  height: 110px;
}

.navbar.navbar_scrolled a img {
  height: 77px;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  height: 100%;
  background-image: url("/images/bg/menu-bg.png");
  background-position: center;
  background-color: var(--color-greenBg);
  background-repeat: no-repeat;
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 180px 0 95px;
  font-family: var(--font-family-4);
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease-out;
}

.menu__opened {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.5s ease-out;
}

.menu__toggler {
  background: none;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 87px;
  height: 70px;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.82, -0.32, 0.18, 0.96);
}

.menu__toggler:before {
  display: block;
  content: " ";
  background: var(--color-grayBg);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.menu__toggler:after {
  display: block;
  content: " ";
  background: var(--color-grayBg);
  width: 30px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
}

.menu__toggler:focus {
  outline: none;
  box-shadow: none;
}

.menu__toggler:hover {
  transform: rotate(180deg);
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}

.menu ul li {
  text-align: center;
}

.menu ul li a {
  color: var(--color-whiteText);
  font-size: 30px;
  line-height: 60px;
  font-weight: 400;
}

@media (max-height: 770px) {
  .menu ul li a {
    line-height: 50px;
  }
}

.menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu__footer .button {
  padding: 18px 18px 16px;
  background: none;
  border: 2px solid var(--color-whiteBg);
  color: var(--color-whiteText);
  font-family: var(--font-family-2);
  font-size: 14px;
  width: 285px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.menu__footer .button i {
  font-size: 16px;
}

@media (max-height: 630px) {
  .menu {
    padding: 30px 0;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .menu {
    padding: 30px 0;
    padding-top: 60px;
  }
}

/* Navbar End */

/* Main Banner start */

.banner {
  height: 100vh;
  background: url("../images/bg/main-banner.jpg") 0 0 no-repeat;
  background-size: cover;
  position: relative;
  font-family: var(--font-family-3);
  font-size: 24px;
  line-height: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-whiteText);
}

.banner:before {
  top: 0;
  content: " ";
  position: absolute;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

.banner:after {
  content: " ";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  bottom: 0;
}

.banner > .container {
  position: relative;
  z-index: 3;
  padding-bottom: 95px;
}

.banner:before {
  content: " ";
  display: block;
  background-image: linear-gradient(
    0deg,
    rgb(0, 0, 0) 0%,
    rgba(0, 0, 0, 0.01) 0%,
    rgb(0, 0, 0) 100%
  );
  opacity: 0.6;
}

@media (max-width: 575.98px) {
  .banner__caption {
    padding-bottom: 45px;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.banner__header {
  color: var(--color-whiteText);
  font-family: var(--font-family-4);
  font-size: calc(1.65625rem + 4.875vw);
  line-height: 1;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .banner__header {
    font-size: 5.3125rem;
  }
}

@media (max-width: 1399.98px) {
  .banner__header {
    font-size: calc(1.54375rem + 3.525vw);
  }
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
  .banner__header {
    font-size: 4.1875rem;
  }
}

@media (max-width: 1055px) {
  .banner__header {
    font-size: calc(1.53125rem + 3.375vw);
  }
}

@media (max-width: 1055px) and (min-width: 1200px) {
  .banner__header {
    font-size: 4.0625rem;
  }
}

@media (max-width: 575.98px) {
  .banner__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    font-size: 55px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .banner__header {
    font-size: 55px;
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .banner__header {
    font-size: 42px;
  }
}

.banner__text {
  margin-top: 10px;
}

@media (max-width: 991.98px) {
  .banner__text {
    max-width: 66%;
    font-size: 1.1875rem;
  }
}

@media (max-width: 767.98px) {
  .banner__text {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .banner__text {
    display: none;
  }
}

.banner__scroll {
  font-size: 0.875rem;
  line-height: 24px;
  font-family: var(--font-family-4);
  color: var(--color-whiteText);
  border-top: 1px solid var(--color-greenBg);
  padding: 13px 85px;
  padding-left: 20px;
  text-align: center;
  position: absolute;
  bottom: -110px;
  right: 15px;
  transform-origin: right 0;
  transform: rotate(90deg);
}

@media (max-width: 767.98px) {
  .banner__scroll {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .banner {
    padding-bottom: 0;
  }
}

/* Main Banner End */

/* What we do Start */

.what-we-do {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.block-item {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.13);
}

.block-item::after {
  content: " ";
  background-color: var(--color-greenBg);
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s linear;
}

.block-item:hover::after {
  opacity: 0.6;
}

@media (max-width: 991.98px) {
  .block-item {
    height: 553px;
  }
}

@media (max-width: 575.98px) {
  .block-item {
    height: 453px;
  }
}

.block-item:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.block-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.005);
}

.block-active .block-btn {
  display: none;
}

.block-active .block-title {
  margin-bottom: 12px;
  font-size: 36px;
}

.block-active .block-title br {
  display: none;
}

.block-active .block-item:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("../images/backgrounds/featurettes-text.png") 95% 0 no-repeat;
}

.block-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  z-index: 2;
  padding: 35px 80px 35px 35px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.13);
}

@media (max-width: 991.98px) {
  .block-content {
    padding: 36px 29px 32px 35px;
  }
}

@media (max-width: 767.98px) {
  .block-item {
    margin-bottom: 20px;
  }
}

.block-number {
  color: var(--color-whiteText);
  font-size: 14px;
  line-height: 36px;
  margin-bottom: 10px;
}

.block-title {
  font-size: 30px;
  line-height: 1;
  font-family: var(--font-family-4);
  font-weight: 400;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 0;
  color: var(--color-whiteText);
  padding: 0;
  margin: 0;
}

@media (max-width: 991.98px) {
  .block-title {
    flex-grow: 1;
  }
}

.block-brief {
  line-height: 1;
  overflow: hidden;
  color: var(--color-whiteText);
  font-size: 16px;
  line-height: 22px;
  max-height: 0;
  transition: max-height 0.15s linear;
}

.block-item:hover .block-brief {
  max-height: none;
}

.block-brief p {
  margin-top: 0;
}

.block-brief .button-group .button {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-family-3);
  font-weight: normal;
}

.block-brief .button-group .button i {
  font-size: 18px;
}

.block-brief .button-group .button:nth-child(2) {
  background: #008e70;
}

.block-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 36px;
  right: 38px;
  border: none;
  color: var(--color-whiteText);
}

.block-btn:active {
  display: none;
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .block-carousel > div.block-active {
    -ms-flex: 0 0 586px;
    flex: 0 0 586px;
    max-width: 586px;
  }

  .block-carousel > div:not(.block-active) {
    -ms-flex: 0 0 290px;
    flex: 0 0 290px;
    max-width: 290px;
  }
}

@media (min-width: 992px) {
  .block-carousel > div {
    transition: all 0.25s ease-out;
  }

  .block-carousel > div:not(.block-active) {
    cursor: pointer;
  }
}

.ccarousel__brief {
  line-height: 1;
  overflow: hidden;
  color: var(--color-whiteText);
  font-size: 16px;
  line-height: 22px;
  height: 0;
}

.ccarousel__brief p {
  margin-top: 0;
}

.ccarousel__brief .button-group .button {
  width: 73px;
  height: 47px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-family-3);
  font-weight: normal;
}

.ccarousel__brief .button-group .button i {
  font-size: 18px;
}

.ccarousel__brief .button-group .button:nth-child(2) {
  background: #008e70;
}

/* What we do End */

/* Welcome Start */

#welcome-section {
  padding-top: 95px;
  padding-bottom: 100px;
}

#welcome-section > .container {
  position: relative;
  z-index: 3;
}

#welcome-section p {
  font-family: var(--font-family-3);
  font-size: calc(1.2625rem + 0.15vw);
  line-height: 30px;
  margin-top: 45px;
  margin-bottom: 26px;
}

@media (min-width: 1200px) {
  #welcome-section p {
    font-size: 1.375rem;
  }
}

@media (max-width: 991.98px) {
  #welcome-section p {
    margin-top: 0;
  }
}

#welcome-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-4);
  font-size: 18px;
  line-height: 1;
  color: var(--color-greenText);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#welcome-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

#welcome-section ul li i {
  font-size: 14px;
  transform: translateY(2px);
  font-weight: 700;
}

@media (max-width: 767.98px) {
  #welcome-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  #welcome-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Welcome End */

/* Call section Start */

#call-section {
  padding-top: 175px;
  padding-bottom: 170px;
  position: relative;
  z-index: 2;
  background-image: url("../images/bg/call-banner.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-whiteText);
  font-size: 24px;
  line-height: 34px;
}

#call-section .block-header h2 {
  font-size: calc(1rem + 2.875vw);
  margin-bottom: 0;
  color: var(--color-whiteText);
  font-family: var(--font-family-4);
}

@media (min-width: 1200px) {
  #call-section .block-header h2 {
    font-size: 4.3125rem;
  }
}

@media (max-width: 575.98px) {
  #call-section .block-header h2 {
    font-size: 37px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  #call-section .block-header h2 {
    font-size: 55px;
  }
}

#call-section p {
  padding-top: 0;
  margin-top: 8px;
}

@media (max-width: 575.98px) {
  #call-section p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 767.98px) {
  #call-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  #call-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* Call section end */

/* Features section Start */
#features {
  padding: 40px 0;
  background: #f5f5f5;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.feature-item {
  max-width: 142px;
  width: 100%;
  height: 190px;
  text-align: center;
  border-radius: 8px;
  background: #fff;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin: 10px;
}

.feature-item .icon-wrapper {
  min-height: 50px;
}

.feature-item img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}
.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #008c7a;
}

@media (max-width: 1399.98px) {
  .features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .slick-initialized .features-container {
    flex-wrap: nowrap; /* Запрещаем перенос элементов внутри карусели */
  }

  .feature-item {
    width: 150px;
    min-width: 150px;
    height: 190px;
    text-align: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin: 5px;
  }
}

/* Features section End */

/* Gallery section Start */

.lightwidget {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px;
}

@media (max-width: 1240px) {
  .lightwidget {
    font-size: 30px;
  }
}

@media (max-width: 1299.98px) {
  .lightwidget {
    grid-template-rows: repeat(2, 1fr);
  }
}

@media (max-width: 1099.98px) {
  .lightwidget {
    grid-template-rows: repeat(2, auto);
  }
}

@media (max-width: 991.98px) {
  .lightwidget {
    grid-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}

@media (max-width: 575.98px) {
  .lightwidget {
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(4, 1fr);
  }

  .lightwidget h2 {
    margin-bottom: 0;
  }
}

.lightwidget__item {
  position: relative;
}

.lightwidget__item:not(.block-header):before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00a884 url("../images/insta/inst-bg.jpg") 50% 50% / 100% auto
    no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 3;
  cursor: pointer;
  border-radius: var(--border-radius);
}

.lightwidget__item__big:before {
  background: #00a884 url("../images/insta/inst-bg.jpg") 50% 50% / auto 100%
    no-repeat;
}

.lightwidget__item:not(.block-header):hover:before {
  opacity: 1;
}

.lightwidget__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  aspect-ratio: 1/1;
}

.lightwidget__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  aspect-ratio: 1/1;
}

@media (min-width: 992px) {
  .lightwidget__big__link {
    grid-column-start: 3 !important;
    grid-column-end: span 2 !important;
    grid-row-start: 1 !important;
    grid-row-end: span 2 !important;
  }
}

.lightwidget__big__link .lightwidget__item {
  height: 100%;
}

@media (max-width: 1199.98px) and (min-width: 991.98px) {
  .lightwidget__item::before {
    background: #00a884 url("../images//insta/inst-bg.jpg") 50% 50% / 300px auto
      no-repeat;
  }

  .lightwidget__item__big:before {
    background: #00a884 url("../images/insta/inst-bg.jpg") 50% 50% / auto 100%
      no-repeat;
  }
}

@media (max-width: 991.98px) {
  .lightwidget__big__link {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
  }

  .lightwidget__item__big:before {
    background: #00a884 url("../images/insta/inst-bg.jpg") 50% 50% / 100% auto
      no-repeat;
  }
}

@media (max-width: 575.98px) {
  .lightwidget__big__link {
    grid-column-start: auto;
    grid-column-end: auto;
    grid-row-start: auto;
    grid-row-end: auto;
  }
}

#gallery-section {
  padding: 100px 0 115px;
}

@media (max-width: 767.98px) {
  #gallery-section {
    padding: 50px 0;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  #gallery-section {
    padding: 30px 0 50px;
  }
}

/* Gallery section End */

/* Testimonials Start */

#testimonials-section {
  padding-top: 125px;
  padding-bottom: 65px;
  position: relative;
  background: #f5f5f5;
}

#testimonials-section h2 {
  transform: none !important;
}

#testimonials-section .testimonial__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#testimonials-section .testimonial__text {
  text-indent: 25px;
  font-size: calc(1.275rem + 0.3vw);
  line-height: 32px;
  color: var(--color-blackText);
  font-family: var(--font-family-3);
}

@media (min-width: 1200px) {
  #testimonials-section .testimonial__text {
    font-size: 1.5rem;
  }
}

#testimonials-section .testimonial__author {
  font-size: 16px;
  line-height: 1;
  padding-top: 20px;
  padding-bottom: 55px;
  font-family: var(--font-family-2);
  text-transform: uppercase;
}

@media (max-width: 575.98px) {
  #testimonials-section .testimonial__author {
    padding-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  #testimonials-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  #testimonials-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.roundabout {
  position: relative;
  padding-top: 55px;
  background: url("/images/quotes.png") 0 0 no-repeat;
}

.roundabout .slider__nav {
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .roundabout {
    display: block;
    position: static;
    padding-top: 30px;
    background-size: 80px auto;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .roundabout {
    display: block;
    position: static;
    padding-top: 0;
  }
}

#testimonials-section .button-group {
  display: flex;
}

#testimonials-section .button-group .button {
  width: 50px;
  aspect-ratio: 1/1;
  padding: 0;
  border-radius: 0;
  background: var(--color-grayBtn);
  color: var(--color-greenText);
}

#testimonials-section .button-group .button.button_green {
  background: var(--color-greenBg);
  color: var(--color-whiteText);
}

#testimonials-section .button-group .button:first-child {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

#testimonials-section .button-group .button:last-child {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Temp Styles for Instagram gallery */

.lightwidget {
  grid-template-rows: repeat(1, 1fr) !important;
}

/* Temp Styles for Instagram gallery END */

/* Testimonials End */

/* Areas section Start */

.areas-section {
  padding: 100px 0 85px;
  background: #788086;
  position: relative;
  overflow: hidden;
}

.areas-section .block-header h2 {
  color: #fff;
}

.areas-section .block-header__prepend:after {
  color: #cacaca;
}

.areas-section .areas-map {
  width: 100%;
  min-height: 450px;
  object-fit: cover;
}

.areas-section .areas-map .leaflet-pane.leaflet-tile-pane {
  filter: grayscale(1);
}

.areas-section .areas-name {
  font-size: 18px;
  line-height: 20px;
  color: #fff;
  margin-top: 20px;
  font-weight: 400;
}
/* Areas section End */

/* Footer main Start */

footer {
  padding-top: 110px;
  background-image: url("../images/bg/footer-bg.webp");
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: var(--color-blackBg);
  background-size: contain;
}

footer .block-header h2 {
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 767.98px) {
  footer {
    padding-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  footer {
    padding-top: 50px;
  }
}

.footer__slogan {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  padding-bottom: 18px;
  color: #fff;
}

@media (max-width: 1399.98px) {
  .footer__slogan br {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .footer__contacts {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .footer__contacts .footer__contact:first-child {
    grid-area: 1/1/3/2;
  }
}

@media (max-width: 575.98px) {
  .footer__contacts {
    display: flex;
    flex-direction: column;
  }
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  overflow: hidden;
  color: var(--color-greenText);
  font-family: var(--font-family-4);
  font-size: 18px;
  line-height: 24px;
}

.footer__contact:hover,
.footer__contact:focus {
  text-decoration: none;
}

.footer__text {
  overflow: hidden;
}

.footer__description {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer__socials {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.footer__socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
  font-size: 20px;
  border-radius: var(--border-radius);
  color: var(--color-whiteText);
  background: var(--color-blackSocials);
}

.footer__map {
  margin-top: 35px;
}

.footer__map img {
  max-width: 100%;
}

.footer__tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-3);
  color: var(--color-whiteText);
  font-size: 15px;
  line-height: 30px;
  padding: 5px 0;
}

.footer__tools a {
  color: var(--color-greenText);
  text-transform: uppercase;
  font-family: var(--font-family-4);
  font-size: 12px;
}

@media (max-width: 991.98px) {
  .footer__tools {
    max-width: 442px;
  }
}

@media (max-width: 380px) {
  .footer__tools {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.footer__form {
  font-size: 0.9375rem;
  line-height: 30px;
}

.footer__form .form-group {
  margin-bottom: 24px;
}

.footer__form .form-group .required {
  color: var(--color-redText);
}

.footer__form .form-group .error {
  font-size: 14px;
  color: var(--color-redText);
}

.footer__form .form-label {
  display: block;
  margin-bottom: 5px;
  color: var(--color-whiteText);
}

.footer__form .form-control {
  font-weight: 400;
  height: 60px;
  border-radius: 3px;
  border: none;
}

.footer__form .form-control:focus,
.footer__form .form-control:hover {
  box-shadow: none;
  outline: none;
}

.footer__form textarea.form-control {
  height: 228px;
}

.footer__form .button {
  margin-top: 26px;
  padding: 24px 53px 23px;
}

@media (max-width: 991.98px) {
  .footer__form .button {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991.98px) {
  .footer__form {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .footer__form {
    padding: 0;
    border-radius: 10px;
  }
}

.footer__menu {
  padding-top: 48px;
  padding-bottom: 30px;
  color: var(--color-whiteText);
  border-top: 1px solid #434d53;
  margin-top: 95px;
}

.footer__menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__menu ul li a {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font-family-4);
  text-decoration: none;
  margin-right: 35px;
  color: var(--color-whiteText);
}

.footer__menu ul li a span {
  text-transform: none;
}

@media (max-width: 991.98px) {
  .footer__menu ul li a {
    margin-right: 0;
  }
}

@media (max-width: 575.98px) {
  .footer__menu ul li a {
    text-align: center;
    display: block;
    margin-right: 0;
    line-height: 36px;
  }
}

.footer__menu ul li:last-child a {
  margin-right: 0;
}

@media (max-width: 991.98px) {
  .footer__menu ul li {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .footer__menu ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .footer__menu ul {
    order: 1;
  }
}

@media (max-width: 575.98px) {
  .footer__menu ul {
    columns: 1;
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (min-width: 992px) and (max-height: 567px) {
  .footer__menu {
    margin-top: 50px;
  }
}

@media (max-width: 575.98px) {
  .footer__menu {
    padding-bottom: 30px;
    padding-top: 10px;
  }
}

.footer__rights {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 36px;
  font-weight: 400;
  margin-top: 12px;
}

@media (max-width: 991.98px) {
  .footer__rights {
    flex-direction: column;
    align-items: center;
    line-height: 14px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .footer__rights {
    order: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 991.98px) {
  .footer__copyright {
    text-align: center;
    line-height: 20px;
  }
}

.footer__authors {
  display: flex;
  align-items: center;
  line-height: 100%;
}

.footer__authors a {
  text-decoration: none;
  color: var(--color-whiteText);
}

.footer__authors a:hover,
.footer__authors a:focus {
  text-decoration: none;
}

.footer__authors img {
  margin-left: 2px;
  margin-top: 2px;
}

@media (max-width: 991.98px) {
  .footer__authors {
    margin-top: 10px;
  }
}

.footer__author {
  font-family: Arial, sans-serif;
  font-size: 12pt;
  font-weight: bold;
  color: var(--color-whiteText);
}

.custom-checkbox-group {
  display: flex;
  align-items: flex-start;
}

.custom-checkbox-group label {
  line-height: 24px;
  color: var(--color-whiteText);
}

.custom-checkbox-group label.visible-desctop {
  display: block;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-desctop {
    display: none;
  }
}

.custom-checkbox-group label.visible-mobile {
  display: none;
}

@media (max-width: 575.98px) {
  .custom-checkbox-group label.visible-mobile {
    display: block;
  }
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}

@media (max-width: 575.98px) {
  .custom-checkbox {
    margin-right: 20px;
  }
}

.custom-checkbox input {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  opacity: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: var(--color-whiteBg);
  border-radius: 3px;
}

.checkmark.error {
  background-color: var(--color-redText);
}

.custom-checkbox input:checked ~ .checkmark,
.custom-checkbox input:checked {
  background-color: var(--color-whiteBg) !important;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 0px;
  top: 0px;
  width: 19px;
  height: 19px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlElEQVQ4T6WTXQ2AMAwGDwdIQAISQAEWsIQCQAkWkIAEJJCSNCljP7Dtdblb26+rKDxVIU+uoAY2YMoRKNwC61/BAwbGP4IXLPP7KvDCVtAARyCRIKyCBRiAHtgdSRRWwQjMwOlIkrBtwZVIO5LzHZVMO7RwdohWIoIk7EtBJXIXfVkr8sUoki5Wtm3n6x4E/1yx4AI+qiERKNFzCwAAAABJRU5ErkJggg==")
    2px 2px no-repeat;
  animation: checkbox 0.3s linear;
}

@keyframes checkbox {
  from {
    width: 0;
  }

  to {
    width: 19px;
  }
}

/* Footer main End */
