@charset "UTF-8";
/* Переменные для бэкграунда */
/* Для использования миксинов шрифтов, можно указывать название миксина, а в скобочках два параметра (размер и линейную высоту), если их не указывать, то будут базовые величины (1,5 rem(24px) и 1.75rem (28px) соответственно) */
/* Переменные для адаптивной версии */
/*Рассчет для экранов от 300px до 767px шрифт от 8 до 16px */
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(0.5rem, 0.1788rem + 1.7131vw, 1rem);
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  html {
    /*Рассчет для экранов от 1024px(нижняя граница desktop) до 1340px(ширина контейнера) шрифт от 16 до 22px */
    font-size: clamp(1rem, 0.3333rem + 1.0417vw, 1.375rem);
  }
}

#start, #catalog, #stabilized-title, #zakaz {
  scroll-margin-top: 5rem;
}

.container {
  max-width: 1600px;
  padding: 1rem 2rem 1rem 3rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 1.5rem;
  }
}

.block-scroll-body {
  overflow: hidden;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 20;
  background-color: unset;
  transition: all 0.3s ease 0.15s;
}
header img {
  z-index: 20;
  position: relative;
  width: 80px;
  transition: all 0.3s ease 0.15s;
}
@media (min-width: 1024px) {
  header img {
    width: 130px;
  }
}
header.scroll {
  background-color: #8ca170;
}
header.scroll img {
  width: 55px;
}
header #menu_toogle {
  width: 50px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 20;
  background-color: unset;
}
@media (min-width: 1024px) {
  header #menu_toogle {
    display: none;
  }
}
header #menu_toogle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all 0.3s ease 0.15s;
}
header #menu_toogle span:not(:last-child) {
  margin-bottom: 5px;
}
header #menu_toogle.open span:first-child {
  transform: translateY(7px) rotate(45deg);
}
header #menu_toogle.open span:nth-child(2) {
  width: 0px;
  transition-delay: 0s;
}
header #menu_toogle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header .menu_container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  text-align: center;
}
header .menu_container > img {
  margin-right: auto;
  z-index: 3;
}
header .menu_container label, header .menu_container input {
  display: none;
}
@media screen and (max-width: 767px) {
  header .menu_container label, header .menu_container input {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container label, header .menu_container input {
    display: block;
  }
}
header .menu_container nav {
  display: flex;
  visibility: hidden;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: -100%;
  background-color: #8ca170;
  transition-duration: 0.4s;
  justify-content: center;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  header .menu_container nav {
    visibility: unset;
    align-items: center;
    position: initial;
    width: auto;
    height: auto;
    background-color: unset;
    overflow-y: hidden;
  }
}
header .menu_container nav.open {
  visibility: unset;
  left: 0;
}
header .menu_container nav > img {
  display: none;
}
@media screen and (max-width: 767px) {
  header .menu_container nav > img {
    display: block;
    position: absolute;
    right: -2%;
    width: 20rem;
    bottom: 25%;
    transform: rotateY(180deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container nav > img {
    display: block;
    position: absolute;
    right: -2%;
    width: 20rem;
    bottom: 33%;
    transform: rotateY(180deg);
  }
}
header .menu_container nav ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  header .menu_container nav ul {
    flex-flow: column;
    margin-top: 10rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container nav ul {
    flex-flow: column;
    margin-top: 10rem;
  }
}
@media screen and (max-width: 767px) {
  header .menu_container nav li {
    padding: 2.5rem;
    width: 100%;
  }
  header .menu_container nav li:nth-of-type(1), header .menu_container nav li:nth-of-type(2), header .menu_container nav li:nth-of-type(3) {
    border-bottom: 1px solid #8ca170;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container nav li {
    padding: 2.5rem;
    width: 100%;
  }
  header .menu_container nav li:nth-of-type(1), header .menu_container nav li:nth-of-type(2), header .menu_container nav li:nth-of-type(3) {
    border-bottom: 1px solid #8ca170;
  }
}
header .menu_container nav li:not(:last-child) {
  align-self: center;
  margin: 0 1.25rem;
  font-family: "Exo 2";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: #ffffff;
}
header .menu_container nav li:not(:last-child):hover {
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .menu_container nav li:not(:last-child) {
    font-family: "Exo 2";
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container nav li:not(:last-child) {
    font-family: "Exo 2";
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
  }
}
header .menu_container nav a:last-of-type {
  text-decoration: none;
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  header .menu_container nav a:last-of-type:hover span {
    display: block;
  }
}
header .menu_container .menu_contact {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  border: 2px solid #ffffff;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  header .menu_container .menu_contact {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container .menu_contact {
    margin-top: 5rem;
  }
}
header .menu_container .menu_contact img {
  max-width: 20px;
}
header .menu_container .menu_contact span:first-of-type {
  font-family: "Exo 2";
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: #ffffff;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  header .menu_container .menu_contact span:first-of-type {
    font-family: "Exo 2";
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container .menu_contact span:first-of-type {
    font-family: "Exo 2";
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 3rem;
    padding: 2rem 3rem;
  }
}
header .menu_container .menu_contact span:last-of-type {
  display: none;
  top: 110%;
  font-family: "Exo 2";
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: #000000;
  background-color: #ffffff;
  padding: 0.5rem;
  position: absolute;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  header .menu_container .menu_contact span:last-of-type {
    display: none;
    font-family: "Exo 2";
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  header .menu_container .menu_contact span:last-of-type {
    display: none;
    font-family: "Exo 2";
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.5rem;
    padding-top: 2rem;
  }
}

.container_start {
  position: relative;
  display: flex;
  justify-content: center;
}
.container_start > picture img {
  width: 100%;
  height: 88vh;
  min-height: 900px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .container_start > picture img {
    min-height: 450px;
    height: 85vh;
  }
}
.container_start > img {
  position: absolute;
  right: 0;
  bottom: 5%;
  transform: rotateY(180deg);
}
@media screen and (max-width: 767px) {
  .container_start > img {
    max-width: 20rem;
    bottom: 25%;
  }
}
.container_start .start_description {
  margin: auto;
  position: absolute;
  align-self: center;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .container_start .start_description {
    padding: 0 1.5rem;
    align-self: start;
    margin-top: 20rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .container_start .start_description {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .container_start .start_description {
    max-width: 1340px;
  }
}
.container_start .start_description p {
  color: #ffffff;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .container_start .start_description p {
    padding-bottom: 1.25rem;
  }
}
.container_start .start_description p:nth-child(1) {
  padding-bottom: 3rem;
  font-family: "Exo 2";
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .container_start .start_description p:nth-child(1) {
    font-family: "Exo 2";
    font-size: 1.675rem;
    font-weight: 300;
    line-height: 1.875rem;
  }
}
.container_start .start_description h1 {
  font-family: "Exo 2";
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.5rem;
  text-transform: uppercase;
  color: #ffffff;
}

.opisanie__background {
  position: absolute;
  z-index: -1;
  top: -2rem;
}
@media screen and (max-width: 767px) {
  .opisanie__background {
    width: 15rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .opisanie__background {
    width: 20rem;
  }
}

.opisanie__background_2 {
  transform: scaleX(-1);
  right: 0em;
}

.opisanie {
  margin-top: 4.25rem;
  position: relative;
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .opisanie {
    margin-top: 6rem;
  }
}
.opisanie__text_1, .opisanie__text_2 {
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  padding: 0 10px 4.25rem;
  color: #000000;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .opisanie__text_1, .opisanie__text_2 {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .opisanie__text_1, .opisanie__text_2 {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .opisanie__text_1, .opisanie__text_2 {
    max-width: 900px;
  }
}
@media screen and (min-width: 2560px) {
  .opisanie__text_1, .opisanie__text_2 {
    max-width: 1130px;
  }
}
.opisanie__text_1 {
  padding-bottom: 3rem;
}

.container_swiper {
  max-width: 1340px;
  padding: 0 10px;
  margin: 0 auto;
}

.swiper {
  width: 100%;
  margin: 0 auto;
}
.swiper-wrapper {
  box-sizing: content-box;
}

.swiper-button-next,
.swiper-button-prev {
  top: 8rem;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  color: #e9ece0;
  opacity: 0.8;
  font-size: 2.5rem;
}

.swiper .swiper-pagination-bullet {
  width: 0.9rem;
  height: 0.9rem;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #8ca170;
}

.swiper-pagination {
  position: relative;
}

.catalog {
  position: relative;
}
.catalog__background {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .catalog__background {
    width: 15rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .catalog__background {
    width: 20rem;
  }
}
.catalog__background_1 {
  left: 0em;
}
.catalog__background_2 {
  transform: scaleX(-1);
  right: 0em;
}

.decor-container {
  max-width: 1340px;
  padding: 0 10px;
  margin: auto;
}
.decor-container__title {
  padding: 7rem 0 0;
  font-family: "Exo 2";
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #8ca170;
  text-align: center;
  text-transform: uppercase;
}

.decor__title {
  padding: 3.13rem 0rem 2rem;
  font-family: "Exo 2";
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: #8ca170;
}
@media screen and (max-width: 767px) {
  .decor__examples {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decor__examples {
    display: grid;
    grid-template-rows: 1fr 0.5fr 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .decor__examples {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
}
@media screen and (min-width: 2560px) {
  .decor__examples {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
  }
}
.decor__p {
  display: flex;
  text-align: center;
  align-items: center;
  padding: 1rem 1rem;
  background: #e9ece0;
}
@media screen and (max-width: 767px) {
  .decor__p {
    order: -1;
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .decor__p {
    grid-column: 1/3;
    grid-row: 2/3;
    padding: 1rem 1rem;
    font-family: "Exo 2";
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .decor__p {
    grid-column: 2/4;
    font-family: "Exo 2";
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7rem;
  }
}
@media screen and (min-width: 2560px) {
  .decor__p {
    grid-column: 2/4;
    font-family: "Exo 2";
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .decor__p_change {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
.decor__img_tall {
  grid-column: 1/2;
  grid-row: 1/3;
}
.decor__p_small {
  grid-column: 2/3;
  grid-row: 1/2;
}

.stabilized__background {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .stabilized__background {
    width: 15rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .stabilized__background {
    width: 20rem;
  }
}
.stabilized__background_2 {
  transform: scaleX(-1);
  right: 0rem;
}
.stabilized__h2 {
  padding: 7rem 0 0rem;
  font-family: "Exo 2";
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #8ca170;
  text-align: center;
  text-transform: uppercase;
}
.stabilized__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  max-width: 1340px;
  padding: 3.13rem 10px 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .stabilized__main {
    flex-direction: column;
    align-items: stretch;
    gap: 5rem;
  }
}
.stabilized__pictures {
  margin-top: 1.5rem;
  display: grid;
  grid-template-rows: 2.8fr 1fr 2fr;
  grid-template-columns: 35% 55% 10%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .stabilized__pictures {
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 2559px) {
  .stabilized__pictures {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 2560px) {
  .stabilized__pictures {
    padding-right: 3rem;
  }
}
.stabilized__pictures__img-1 {
  grid-area: 1/1/3/3;
}
.stabilized__pictures__img-2 {
  grid-area: 2/2/4/4;
}
.stabilized__description {
  width: 77%;
}
@media screen and (max-width: 767px) {
  .stabilized__description {
    width: 100%;
  }
}
.stabilized__description__check {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.75rem 1rem 0;
  align-items: baseline;
}
.stabilized__description__p {
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .stabilized__description__p {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
  }
}
.stabilized__description__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.recommendations {
  max-width: 1340px;
  padding: 0 10px;
  margin: auto;
}
.recommendations__h3 {
  padding: 3.13rem 0rem 2rem;
  font-family: "Exo 2";
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: #8ca170;
}
.recommendations p {
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
}
@media screen and (max-width: 767px) {
  .recommendations p {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
    text-align: center;
  }
}
.recommendations p:not(:last-child) {
  padding-bottom: 1.1rem;
}
.recommendations__blok {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .recommendations__blok {
    grid-template-columns: 1fr;
  }
}
.recommendations__left {
  display: grid;
  align-items: center;
  padding: 1rem;
  background: #e9ece0;
}
.recommendations__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .recommendations__right {
    padding-top: 1rem;
  }
}
.recommendations__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #8ca170;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .recommendations__image {
    width: 5rem;
    height: 5rem;
  }
}
.recommendations__img {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .recommendations__img {
    width: 2.5rem;
  }
}
.recommendations__pic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .recommendations__pic {
    grid-template-columns: repeat(2, auto);
  }
}
.recommendations__body {
  display: grid;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .recommendations__body {
    padding-top: 2rem;
  }
}
.recommendations__text {
  padding-top: 0.5rem;
  text-align: center;
}

.zakazsec {
  max-width: 1340px;
  padding: 0 10px;
  margin: auto;
}
.zakazsec__h2 {
  padding: 7rem 0 4rem;
  font-family: "Exo 2";
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: #8ca170;
  text-align: center;
  text-transform: uppercase;
}
.zakazsec p {
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
}
@media screen and (max-width: 767px) {
  .zakazsec p {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
    text-align: center;
  }
}
.zakazsec p:not(:last-child) {
  padding-bottom: 1.1rem;
}
.zakazsec__blok {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .zakazsec__blok {
    display: block;
  }
}
.zakazsec__left {
  display: flex;
  align-items: center;
  padding: 1rem;
  width: 30%;
  flex-wrap: nowrap;
  background: #e9ece0;
}
@media screen and (max-width: 767px) {
  .zakazsec__left {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .zakazsec__left {
    width: 100%;
  }
}
.zakazsec__right {
  width: 68%;
  background: #e9ece0;
  flex-wrap: nowrap;
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .zakazsec__right {
    padding-top: 1rem;
    width: 100%;
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .zakazsec__right {
    padding-top: 1rem;
    width: 100%;
    font-family: "Exo 2";
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7rem;
    text-align: center;
  }
}
.zakazsec__bottom {
  background: #e9ece0;
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .zakazsec__bottom {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .zakazsec__bottom {
    text-align: center;
  }
}
.zakazsec__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background-color: #8ca170;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .zakazsec__image {
    width: 5rem;
    height: 5rem;
  }
}
.zakazsec__img {
  width: 2rem;
}
@media screen and (max-width: 767px) {
  .zakazsec__img {
    width: 2.5rem;
  }
}
.zakazsec__pic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .zakazsec__pic {
    grid-template-columns: repeat(1, auto);
  }
}
.zakazsec__body {
  display: grid;
  justify-items: center;
}
@media screen and (max-width: 767px) {
  .zakazsec__body {
    padding-top: 2rem;
  }
}
.zakazsec__text {
  padding-top: 0.5rem;
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .zakazsec__text {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
  }
}

.vet {
  position: relative;
}
.vet__background {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .vet__background {
    width: 15rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .vet__background {
    width: 20rem;
  }
}
.vet__background_1 {
  left: 0em;
}
.vet__background_2 {
  transform: scaleX(-1);
  right: 0em;
}

footer {
  background: #8ca170;
}

.footer {
  display: flex;
  max-width: 1600px;
  padding: 10px 10px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__icons {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .footer__icons {
    width: 25px;
  }
}
.footer__right {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__right {
    padding-top: 2rem;
    justify-content: center;
  }
}
.footer__text {
  font-family: "Exo 2";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7rem;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-family: "Exo 2";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2.2rem;
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__text {
    font-family: "Exo 2";
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7rem;
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .footer__logo {
    width: 100px;
  }
}

/*# sourceMappingURL=style.min.css.map */
