/* burger */
@font-face {
  font-family: "Montserrat";
  src: url("../css/fonts/montserrat/static/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../css/fonts/montserrat/static/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../css/fonts/montserrat/static/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../css/fonts/montserrat/static/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../css/fonts/montserrat/static/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #24272c;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-style: normal;
}

.wrapper {
  min-width: 360px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0 auto;
  width: 100%;
}

footer {
  margin: auto auto 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: #24272c;
  margin: 0;
  padding: 0;
}

h1,
.looks_like_h1 {
  font-size: 3em;
  font-weight: 700;
  color: #24272c;
  white-space: break-spaces;
}

h2,
.looks_like_h2 {
  font-size: 2.25em;
  font-weight: 700;
  color: #24272c;
}

h3,
.looks_like_h3 {
  font-size: 1.875em;
  font-weight: 700;
  color: #24272c;
}

h4,
.looks_like_h4 {
  font-size: 1.5em;
  font-weight: 700;
  color: #24272c;
}

p {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 24px;
  font-weight: 400;
  margin: 0;
}

span {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

a {
  font-family: "Montserrat", sans-serif;
  white-space: wrap;
  text-decoration: none;
  color: #24272c;
}
ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol li,
ul li {
  padding: 0;
  margin: 0;
}

button {
  font-family: "Montserrat", sans-serif;
  outline: none;
  border-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
}

input,
textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125em;
  color: #24272c;
  border: 2px solid #24272c;
  padding: 0.4375rem 0.625rem;
  box-sizing: border-box;
  outline: none;
  resize: none;
}
input::placeholder,
textarea::placeholder {
  color: #24272c;
}

input {
  height: 3.5rem;
}

button {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
button span {
  display: block;
}
button span::before, button span::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #ffffff;
}

button::before, button::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

button:hover::before, button:hover::after {
  width: 100%;
}

button:hover span::before, button:hover span::after {
  height: 100%;
}

button::before {
  left: 50%;
  top: 0;
  transition-duration: 0.28s;
}

button::after {
  left: 50%;
  bottom: 0;
  transition-duration: 0.28s;
}

button span::before {
  left: 0;
  top: 50%;
  transition-duration: 0.28s;
}

button span::after {
  right: 0;
  top: 50%;
  transition-duration: 0.28s;
}

button:hover::before, button:hover::after {
  left: 0;
}

button:hover span::before, button:hover span::after {
  top: 0;
}

button {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 1.57rem;
  height: 3.69rem;
  padding: 0 1.57rem;
  border-radius: 0.3rem;
}

.button-black {
  background-color: #24272c;
  color: #FFFFFF;
}
.button-black span::before, .button-black span::after {
  background: #aeaeae;
}
.button-black::before, .button-black::after {
  background: #aeaeae;
}

.button-white {
  background-color: #FFFFFF;
  color: #24272c;
}
.button-white span::before, .button-white span::after {
  background: #000000;
}
.button-white::before, .button-white::after {
  background: #000000;
}

.button-green {
  background-color: #5aba47;
  color: #FFFFFF;
}
.button-green span::before, .button-green span::after {
  background: #000000;
}
.button-green::before, .button-green::after {
  background: #000000;
}

select {
  font-weight: bold;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 1.85em;
  padding: 0 36px 0 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #24272c;
  border-radius: 1.85em;
}

input[type=radio] {
  appearance: none;
  margin-right: 0.5rem;
  margin-left: 0;
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid #E0D1FC;
  padding: 0;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: border-color 0.3s ease;
}

input[type=radio]:checked::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: #E5E94E;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

input[type=radio]:hover {
  border-color: #A8A8E2;
}

input[type=radio]:checked + label {
  font-weight: 600;
}

.grecaptcha-badge {
  display: none !important;
}

.bold {
  font-weight: 700;
}

/* burger */
/* main banner */
.main-banner {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}
.main-banner .startgate {
  height: 100%;
  position: absolute;
  top: -1px;
  bottom: 0;
  z-index: 1;
  transition: transform 0.4s ease-in-out;
}
.main-banner .startgate-left {
  display: none;
  left: 0;
  transform: translateX(0);
}
@media (min-width: 625px) {
  .main-banner .startgate-left {
    display: block;
  }
}
.main-banner .startgate-right {
  display: none;
  right: 0;
  transform: translateX(0);
}
@media (min-width: 625px) {
  .main-banner .startgate-right {
    display: block;
  }
}
.main-banner .startgate.open-left {
  transform: translateX(-105%);
}
@media (min-width: 1100px) {
  .main-banner .startgate.open-left {
    transform: translateX(-105%);
  }
}
.main-banner .startgate.open-right {
  transform: translateX(105%);
}
@media (min-width: 1100px) {
  .main-banner .startgate.open-right {
    transform: translateX(105%);
  }
}
.main-banner .swiper-slide {
  display: flex;
}
.main-banner .swiper-slide img {
  width: 100%;
}
.main-banner .swiper {
  width: 100%;
}
.main-banner__container {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 2em 0;
  border-bottom: 9px solid #5aba47;
  background-color: #24272c;
}
@media (min-width: 500px) {
  .main-banner__container {
    padding: 3em 0;
  }
}
.main-banner__container__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 0.7em 1.5em 0.7em;
  margin: auto;
  max-width: 57.5em;
  color: #FFFFFF;
  background-color: #24272c;
}
.main-banner__container__title span {
  white-space: nowrap;
  line-height: inherit;
}
@media (min-width: 440px) {
  .main-banner__container__title {
    padding: 0 1.7em 1.5em 1.7em;
  }
}
.main-banner__container__title__row1 {
  font-size: 1.5em;
  font-weight: 700;
}
@media (min-width: 500px) {
  .main-banner__container__title__row1 {
    font-size: 1.75em;
  }
}
@media (min-width: 1050px) {
  .main-banner__container__title__row1 {
    font-size: 3.625em;
  }
}

.main-banner__container__title__row2 {
  font-size: 2.09em;
  font-weight: 700;
}
@media (min-width: 500px) {
  .main-banner__container__title__row2 {
    font-size: 2.375em;
  }
}
@media (min-width: 1050px) {
  .main-banner__container__title__row2 {
    font-size: 5em;
  }
}

.main-banner__container__title__overlay {
  position: absolute;
  z-index: -1;
}

.main-banner__container__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
}
.main-banner__container__buttons button {
  gap: 1rem;
  padding: 0 1rem;
}
@media (min-width: 500px) {
  .main-banner__container__buttons button {
    gap: 1.75rem;
    padding: 0 1.57rem;
  }
}
@media (min-width: 625px) {
  .main-banner__container__buttons {
    gap: 1.75em;
  }
}

/* summary container */
.summary-container-full-screen {
  padding: 0 0.75em 0 0.75em !important;
  overflow-x: visible;
}
@media (min-width: 1300px) {
  .summary-container-full-screen {
    padding: 0 0 0 0.75em !important;
  }
}

.summary-container {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  padding: 4.6em 0;
}
.summary-container .parallax {
  max-width: 51.875em;
  width: 100%;
  min-height: 50em;
  background-image: url("../../../assets/img/webp/aboutus-image.webp");
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.summary-container .summery-icon {
  width: 100%;
  max-width: 51.875em;
  display: none;
}
.summary-container .summery-icon .summery-icon__container {
  position: sticky;
  top: 1em;
}
@media (min-width: 1300px) {
  .summary-container .summery-icon {
    display: block;
  }
}
@media (min-width: 1450px) {
  .summary-container .summery-icon {
    margin-right: 0;
    gap: 5em;
  }
}
@media (min-width: 1500px) {
  .summary-container {
    gap: 5em;
  }
}
@media (min-width: 1560px) {
  .summary-container {
    gap: 9em;
  }
}

.summery-text {
  width: 100%;
  max-width: none;
  margin-left: auto;
}
@media (min-width: 1300px) {
  .summery-text {
    width: 100%;
    max-width: 46.875em;
  }
}

.summery-text__title {
  margin-bottom: 1.8em;
}
.summery-text__title h2 {
  text-align: center;
}

.summery-text__description__title {
  font-weight: 700;
}

.summery-text__description {
  margin-bottom: 1.6em;
}
.summery-text__description p {
  text-align: justify;
}

.summery-text__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  padding: 0;
}
.summery-text__button button {
  gap: 0.5rem;
  padding: 0 1rem;
}
@media (min-width: 520px) {
  .summery-text__button button {
    gap: 1.57rem;
    padding: 0 1.57rem;
  }
}
.summery-text__button .button-white {
  border: 2px solid #24272c;
}
.summery-text__button .button-white:hover {
  border: none;
}
@media (min-width: 520px) {
  .summery-text__button {
    gap: 1.875em;
    padding: 0 1.57rem;
  }
}

/* services container */
.services-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 4.6em 0 2.7em 0;
  background-color: #24272c;
}
.services-container .button-green {
  font-weight: 700;
  margin: 2em auto 0 auto;
  color: #24272c;
}
@media (min-width: 950px) {
  .services-container .button-green {
    margin: 0 auto 0 auto;
  }
}

.services-block__container {
  display: flex;
  justify-content: space-between;
  max-width: 64em;
  margin: auto;
}
@media (min-width: 950px) {
  .services-block__container {
    gap: 0.5em;
    flex-wrap: wrap;
    padding-right: 0.75em;
  }
}
@media (min-width: 1500px) {
  .services-block__container {
    max-width: none;
    margin: 0;
  }
}

.swiper-scrollbar {
  background: #000000 !important;
  height: 8px !important;
  border-radius: 2px;
  margin-left: 0.5rem;
}
@media (min-width: 950px) {
  .swiper-scrollbar {
    display: none;
  }
}

.swiper-scrollbar-drag {
  background: #5aba47 !important;
  height: 100%;
  border-radius: 2px;
}

.services-block {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 22.5em;
  margin-bottom: 2.3em;
  opacity: 0;
  transform: rotateY(90deg);
  transform-origin: left center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (min-width: 570px) {
  .services-block {
    max-width: 27.5em;
  }
}
@media (min-width: 1500px) {
  .services-block {
    max-width: 22.5em;
  }
}

.services-block.animate-in {
  opacity: 1;
  transform: rotateY(0deg);
}

.services-block__title {
  height: 4.4em;
  margin-bottom: 2.4em;
}
.services-block__title h3 {
  line-height: 2.5rem;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services-block__description.services-block__description-custom {
  gap: 0.1em;
}

.services-block__description {
  display: flex;
  flex-direction: column;
  gap: 1.875em;
  margin-bottom: 0.25em;
  height: 17.06em;
}
.services-block__description p {
  color: #b4cbb0;
}
.services-block__description span {
  white-space: break-spaces;
  color: #b4cbb0;
}
.services-block__description .services-block__description__sub-title {
  color: #FFFFFF;
}

.count-services__img {
  width: 20.625em;
  margin-bottom: 2em;
}
@media (min-width: 570px) {
  .count-services__img {
    width: 24.625em;
  }
}
@media (min-width: 1500px) {
  .count-services__img {
    width: 20.625em;
  }
}

.count-services__img-car {
  width: 22.5em;
  height: 11em;
  object-fit: cover;
}
@media (min-width: 570px) {
  .count-services__img-car {
    width: 27.5em;
  }
}
@media (min-width: 1500px) {
  .count-services__img-car {
    width: 22.5em;
  }
}

.services-swiper {
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}

/* driver job */
.driver-job {
  display: flex;
  flex-direction: column;
  padding: 0 0.75em;
}
@media (min-width: 1200px) {
  .driver-job {
    padding: 0;
    flex-direction: row;
  }
}

.driver-job__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 62.5em;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .driver-job__container {
    max-width: 30.5em;
  }
}

.driver-job__container__text h4 {
  margin-bottom: 1.6rem;
}
.driver-job__container__text p {
  font-weight: 700;
  margin-bottom: 2rem;
}

.driver-job__icon {
  display: block;
  position: relative;
}
.driver-job__icon p {
  font-size: 1.0625em;
  line-height: 24px;
  font-weight: 600;
}
.driver-job__icon .parallax {
  display: none;
  max-width: 51.875em;
  width: 100%;
  min-height: 64.5em;
  background-image: url("../../../assets/img/webp/driverjob-sector-image.webp");
  background-position: inherit;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1200px) {
  .driver-job__icon .parallax {
    display: block;
  }
}
@media (min-width: 1200px) {
  .driver-job__icon {
    padding-right: 7.25em;
    margin-left: -17em;
    max-width: 51.875em;
    width: 100%;
  }
}
@media (min-width: 1550px) {
  .driver-job__icon {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .driver-job__icon__description-container {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}

.driver-job__icon__description-container {
  display: flex;
  flex-direction: column;
  gap: 1.875em;
  background-color: #24272c;
  border-bottom: 5px solid #1d7f0a;
  color: #b4cbaf;
  padding: 1.75em 1.625em;
  margin-bottom: 1.5em;
}
.driver-job__icon__description-container h4 {
  color: #FFFFFF;
}
.driver-job__icon__description-container .driver-job__icon__description__sub-title {
  color: #FFFFFF;
}
@media (min-width: 725px) {
  .driver-job__icon__description-container {
    margin-bottom: 2.5em;
  }
}
@media (min-width: 1200px) {
  .driver-job__icon__description-container {
    width: 100%;
    max-width: 28.2em;
    margin-bottom: 0;
  }
}

.driver-job__icon__description-container__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}

.driver-job__container__text__form {
  display: flex;
  flex-direction: column;
  max-width: 45em;
  margin: auto;
}
.driver-job__container__text__form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.54rem;
}
.driver-job__container__text__form label span {
  font-size: 1.125em;
  font-weight: 700;
  color: #24272c;
  white-space: break-spaces;
  margin-bottom: 1.25rem;
}
.driver-job__container__text__form label.error {
  margin-bottom: 1.04rem;
}
.driver-job__container__text__form label.error .message {
  margin-top: 0.5rem;
  display: block;
  color: #ff0000;
}
.driver-job__container__text__form label.error input {
  border: 2px solid #ff0000;
}
.driver-job__container__text__form .message {
  display: none;
}
.driver-job__container__text__form .button-black {
  width: fit-content;
  margin: 1.3rem auto 0 auto;
  padding: 0 1.57rem 0 3.3rem;
  gap: 3.57rem;
}
@media (min-width: 1200px) {
  .driver-job__container__text__form {
    max-width: none;
  }
}

.popup-content .driver-job__container__text__form label {
  margin-bottom: 1.54rem;
}
.popup-content .driver-job__container__text__form label.error {
  margin-bottom: 0.54rem;
}

.container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 0.75em;
}

.container-full-screen {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 0.75em;
}

.text-green {
  color: #2fa018;
}

.d-none {
  display: none !important;
}

.title-section {
  max-width: 1920px;
  margin: 0 auto;
  background-color: #5aba47;
  padding: 3.6em 0;
}
.title-section h1 {
  font-size: 2.7em;
  padding: 0 0.75em;
  text-align: center;
  color: #FFFFFF;
}
@media (min-width: 400px) {
  .title-section h1 {
    font-size: 3em;
  }
}

.title-section.title-section-white {
  background-color: #FFFFFF;
}
.title-section.title-section-white h1 {
  color: #24272c;
}

/* popup */
.popup-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-overlay .button-green {
  gap: 0.8em;
}

.popup-content {
  padding: 1.5em 2.112em 2.5em 2.112em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  background-color: #fff;
}
.popup-content .close-button {
  top: 25px;
  right: 25px;
}
@media (min-width: 750px) {
  .popup-content .close-button {
    top: 10px;
    right: 10px;
  }
}
.popup-content .close-button button {
  height: 3rem;
  padding: 0 0.8rem;
}
@media (min-width: 750px) {
  .popup-content .close-button button {
    height: 3.69rem;
    padding: 0 1.57rem;
  }
}
.popup-content .close-button span {
  display: none;
}
@media (min-width: 750px) {
  .popup-content .close-button span {
    display: block;
  }
}
@media (min-width: 750px) {
  .popup-content {
    padding: 3.5em 6.112em 3.5em 6.112em;
  }
}

.popup-content-container {
  width: 100%;
  max-width: 80.5em;
  padding: 0 1em;
  color: #24272c;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup-content__container-text {
  max-height: 65vh;
  overflow-y: auto;
  text-align: start;
}
.popup-content__container-text span {
  font-size: 1.125em;
}
.popup-content__container-text p {
  font-size: 1em;
}
@media (min-height: 660px) {
  .popup-content__container-text {
    max-height: 80vh;
  }
}

.popup-content__container-text__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  width: 100%;
  margin-bottom: 1.9em;
}
.popup-content__container-text__title .title-popup {
  font-size: 1.5em;
}
.popup-content__container-text__title .title-popup__description {
  font-size: 0.8125em;
}

.popup-content__container-text__block:not(:last-child) {
  margin-bottom: 1.9em;
}

.overflow-x {
  overflow-x: hidden;
}
@media (min-width: 1400px) {
  .overflow-x {
    overflow-x: inherit;
  }
}

.overflow-hidden {
  overflow: hidden;
}

/* header */
.header {
  position: relative;
  padding: 0.69em 0 0.56em;
  border-bottom: 5px solid #1d7f0a;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 1000;
}
@media (min-width: 850px) {
  .header {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}

.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
}

.header--visible {
  transform: translateY(0);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.header-container .nav {
  font-weight: 600;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 43.44em;
}
.header-container .nav a {
  cursor: pointer;
}
.header-container .nav a:hover {
  color: #2fa018;
}
@media (min-width: 1400px) {
  .header-container .nav {
    display: flex;
  }
}
@media (min-width: 1520px) {
  .header-container .nav {
    max-width: 48.44em;
  }
}
.header-container .contact {
  font-size: 1.5em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4em;
}
.header-container .contact span {
  white-space: nowrap;
  font-size: 0.8em;
}
@media (min-width: 400px) {
  .header-container .contact span {
    font-size: 1em;
  }
}
@media (min-width: 1450px) {
  .header-container .contact {
    gap: 1em;
  }
}
.header-container .logo .logo__desktop {
  display: none;
}
@media (min-width: 630px) {
  .header-container .logo .logo__desktop {
    display: flex;
  }
}
.header-container .logo .logo__mobile {
  display: flex;
  width: 85px;
  height: 65px;
}
@media (min-width: 430px) {
  .header-container .logo .logo__mobile {
    width: 104px;
    height: 75px;
  }
}
@media (min-width: 630px) {
  .header-container .logo .logo__mobile {
    display: none;
  }
}
@media (min-width: 500px) {
  .header-container .logo {
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .header-container .logo {
    margin: 0;
  }
}
@media (min-width: 455px) {
  .header-container {
    gap: 1.5em;
  }
}
@media (min-width: 1400px) {
  .header-container {
    gap: 0.5em;
  }
}

.social-icons {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 11.375em;
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 815px) {
  .social-icons {
    display: flex;
  }
}

/* burger */
.header__menu {
  display: flex;
  margin: 0;
}
@media (min-width: 440px) {
  .header__menu {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (min-width: 890px) {
  .header__menu {
    margin-left: 40px;
    margin-right: 15px;
  }
}
@media (min-width: 1400px) {
  .header__menu {
    display: none;
  }
}

.burger {
  display: none;
}
.burger:checked + .burger-label:before {
  height: 5px;
  transform: translateY(11.5px) rotateZ(45deg);
}
@media (min-width: 400px) {
  .burger:checked + .burger-label:before {
    height: 5px;
    transform: translateY(11.5px) rotateZ(45deg);
  }
}
.burger:checked + .burger-label:after {
  filter: initial;
  transform: translateY(6.5px) rotateZ(-45deg);
}

.burger-label {
  position: relative;
  display: block;
  border-radius: 2.5px;
  color: #24272c;
  cursor: pointer;
  margin: auto;
  user-select: none;
  width: 38px;
  height: 28px;
}
.burger-label:before, .burger-label:after {
  border-radius: inherit;
  background: currentColor;
  content: "";
  display: block;
  transition: 0.5s;
}
.burger-label:before {
  height: 5px;
}
@media (min-width: 400px) {
  .burger-label:before {
    height: 5px;
  }
}
.burger-label:after {
  filter: drop-shadow(0 -11.5px currentColor);
  transform: translateY(18px);
  height: 5px;
}
@media (min-width: 400px) {
  .burger-label:after {
    filter: drop-shadow(0 -11.5px currentColor);
    transform: translateY(18px);
    height: 5px;
  }
}
.burger-label span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background: currentColor;
  border-radius: 5px;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 400px) {
  .burger-label {
    width: 38px;
    height: 28px;
  }
}

.burger:checked + .burger-label span {
  opacity: 0;
}

.burger-open {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  padding: 2.5em 3.75em 3em 3.75em;
  height: calc(100vh - 170px);
  transition: right 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  overflow-y: auto;
  position: absolute;
  top: 5.62em;
  right: -100%;
  z-index: 999;
  background-color: #5aba47;
}
.burger-open a {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: #231f20;
}
.burger-open a:hover {
  color: #FFFFFF;
}
.burger-open .social-icons {
  display: flex;
  margin-top: 3em;
  margin-bottom: 3em;
  max-width: 15.375em;
}
@media (min-width: 500px) {
  .burger-open .social-icons {
    margin-top: 0.5em;
    margin-bottom: 3em;
  }
}
@media (min-width: 815px) {
  .burger-open .social-icons {
    display: none;
  }
}
@media (min-width: 430px) {
  .burger-open {
    top: 6.27em;
  }
}
@media (min-width: 630px) {
  .burger-open {
    top: 5.6em;
  }
}
@media (min-width: 1400px) {
  .burger-open {
    display: none;
  }
}

.burger-open.open-popup {
  right: 0;
  opacity: 1;
}

/* footer */
.footer-section {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  max-width: 1920px;
  color: #FFFFFF;
  background-color: #24272c;
}
.footer-section h4 {
  color: #FFFFFF;
}
@media (min-width: 1300px) {
  .footer-section {
    flex-direction: row;
    border-top: 5px solid #5aba47;
  }
}

.footer-map {
  display: flex;
  width: 100%;
  height: 18.75em;
  border-top: 5px solid #1d7f0a;
}
@media (min-width: 1300px) {
  .footer-map {
    max-width: 50.9em;
    height: 37.1em;
    border-top: none;
  }
}

.footer-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3em;
  padding: 2em 0.75em 0 0.75em;
  border-top: 5px solid #1d7f0a;
}
@media (min-width: 1300px) {
  .footer-info-container {
    flex-direction: row;
    margin-top: 2.8em;
    padding: 0 0.75em 0 2.75em;
    width: 100%;
    border-top: none;
    gap: 0;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  gap: 1em;
}
@media (min-width: 630px) {
  .footer-info {
    flex-direction: row;
  }
}
@media (min-width: 1300px) {
  .footer-info {
    flex-direction: column;
    justify-content: inherit;
    max-width: 46.9em;
    gap: 0;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2.1em;
  max-width: 470px;
  width: 100%;
  margin: auto;
}
@media (min-width: 850px) {
  .footer-logo {
    max-width: 350px;
    margin: 0;
  }
}
@media (min-width: 1080px) {
  .footer-logo {
    max-width: 470px;
  }
}
@media (min-width: 1300px) {
  .footer-logo {
    flex-direction: row;
    align-items: center;
    gap: 3.1em;
    max-width: none;
    width: auto;
    margin: 0;
  }
}

.footer-logo__img {
  margin: auto;
}
@media (min-width: 630px) {
  .footer-logo__img {
    margin: 0;
  }
}

.footer-logo__info {
  display: flex;
  align-items: center;
  gap: 1.1em;
}

.footer-logo__info__text {
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.5rem;
  max-width: 16.6em;
  width: 100%;
}

.footer-details {
  max-width: 470px;
  width: 100%;
  margin: auto;
}
@media (min-width: 630px) {
  .footer-details {
    max-width: none;
    margin: 0;
    width: auto;
  }
}

.footer-item__info {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1300px) {
  .footer-item__info {
    margin-top: 3.25em;
  }
}

.footer-item__info__phone {
  display: flex;
  align-items: center;
  gap: 0.3em;
  margin-bottom: 0.9em;
}

.footer-item__info__schedule {
  font-size: 1.125em;
  color: #aeaeae;
  margin-bottom: 1em;
}

.footer-item__info__number {
  color: #FFFFFF;
  font-size: 2.25em;
  font-weight: 700;
}

.footer-mail {
  display: flex;
  flex-direction: column;
  margin-top: 2em;
}
@media (min-width: 1300px) {
  .footer-mail {
    margin-top: 3.74em;
  }
}

.footer-mail__title__block {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.footer-mail__title {
  display: flex;
  flex-direction: column;
  gap: 1.6em;
}

.footer-mail__title__email {
  font-size: 1.125em;
  font-weight: 600;
  color: #FFFFFF;
}
.footer-mail__title__email .at {
  color: #5aba47;
}

.footer-mail__title__info-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  gap: 1.8em;
}
@media (min-width: 850px) {
  .footer-mail__title__info-container {
    flex-direction: row;
    gap: 0;
  }
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 1.3em;
}
.footer-social-icons a img {
  width: 48px;
  height: 48px;
}

.footer-social-icons.footer-social__mobile {
  width: 100%;
  max-width: 14.2em;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (min-width: 950px) {
  .footer-social-icons.footer-social__mobile {
    max-width: 12.5em;
  }
}

.footer-social__mobile {
  display: none;
}
@media (min-width: 850px) {
  .footer-social__mobile {
    display: flex;
  }
}
@media (min-width: 1300px) {
  .footer-social__mobile {
    display: none;
  }
}

.footer-social__desktop {
  display: flex;
  margin: auto;
}
@media (min-width: 630px) {
  .footer-social__desktop {
    display: none;
    margin: 0;
  }
}
@media (min-width: 850px) {
  .footer-social__desktop {
    display: none;
  }
}
@media (min-width: 1300px) {
  .footer-social__desktop {
    display: flex;
  }
}

.footer-bottom {
  font-size: 0.875em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aeaeae;
  margin: auto 0 1.6em 0;
}

.footer-bottom__desktop {
  display: none;
}
@media (min-width: 1300px) {
  .footer-bottom__desktop {
    display: flex;
  }
}

.footer-bottom__mobile {
  display: flex;
}
@media (min-width: 1300px) {
  .footer-bottom__mobile {
    display: none;
  }
}

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