@import url(https://fonts.googleapis.com/css2?family=Inika:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap);
html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

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

*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background-color: #EDF2EC;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 min(10%, 109px);
}

@media (max-width: 768px) {
  .container {
    padding: 0 50px;
  }
}
@media (max-width: 380px) {
  .container {
    padding: 0 25px;
  }
}
main {
  flex: 1 1 auto;
}

button {
  cursor: pointer;
  font-style: normal;
  font-weight: 400;
  color: #010201;
  background: transparent;
  border: 2px solid #E06733;
  border-radius: 10px;
  transition: 0.3s all;
}
button:hover {
  background: #E06733;
  color: #FFFFFF;
}

.header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 134px;
  font-family: "Inika", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.header .container a {
  text-decoration: none;
  color: #010201;
  transition: all 0.3s ease 0s;
}
.header .container a .logo {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.header .container a .logo svg {
  transform: translateY(-5px);
}
.header .container a .logo svg path {
  stroke: #499A18;
}
.header .container a:hover {
  color: #E06733;
}
.header .container a:hover svg path {
  stroke: #E06733;
}
.header .container nav {
  position: relative;
}
.header .container nav .hamburger-menu {
  display: none;
  right: 0;
  margin-top: -5px;
}
.header .container nav .hamburger-menu .line {
  width: 40px;
  height: 2px;
  background-color: #717171;
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
}
.header .container nav .hamburger-menu:hover {
  cursor: pointer;
}
.header .container nav .hamburger-menu.is-active {
  position: fixed;
  top: 52px;
  right: 25px;
  transition: right 0.3s;
}
.header .container nav .hamburger-menu.is-active .line:nth-child(2), .header .container nav .hamburger-menu.is-active .line:nth-child(3) {
  opacity: 0;
}
.header .container nav .hamburger-menu.is-active .line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}
.header .container nav .hamburger-menu.is-active .line:nth-child(4) {
  transform: translateY(-12px) rotate(-45deg);
}
.header .container nav .nav__links {
  list-style: none;
}
.header .container nav .nav__links .nav__item {
  display: inline-block;
  margin: 0 21.6px;
}
.header .container nav .nav__links .nav__item a {
  color: #010201;
  text-decoration: none;
}
.header .container nav .nav__links .nav__item a:hover {
  color: #E06733;
}
.header .container nav .nav__links .nav__item:last-child {
  margin-right: 0;
}
.header .container nav .nav__links .nav__item:first-child {
  margin-left: 0;
  margin-right: 21px;
}
.header .container nav .nav__links .active a {
  font-weight: 700;
  color: #E06733;
}
.header .container nav .overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.header .container nav .overlay.change {
  visibility: visible;
  opacity: 0.5;
  transition: opacity 0.3s, visibility 0.3s;
}

@media (max-width: 768px) {
  .header .container {
    height: 120px;
    padding: 0 50px;
  }
}
@media (max-width: 620px) {
  .header .container {
    height: 100px;
    padding: 0 25px;
  }
  .header .container nav .hamburger-menu {
    display: block;
    position: absolute;
    top: calc(50% + 2px);
    right: 0;
    z-index: 999;
    transform: translate(0, -50%);
  }
  .header .container nav .nav__links {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100%;
    background-color: #EDF2EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    font-size: 26px;
    line-height: 26px;
    z-index: 998;
    transition: 0.5s cubic-bezier(1, 0, 0, 1);
  }
  .header .container nav .nav__links .nav__item, .header .container nav .nav__links .nav__item.active {
    margin: 0;
    margin-left: 30%;
  }
  .header .container nav .nav__links.change {
    right: 0;
  }
}
.footer {
  background-color: #FFFFFF;
}

.footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 130px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}
.footer .container a:first-of-type {
  word-spacing: 15px;
}
.footer .container a:nth-of-type(2) {
  margin-left: 20px;
}
.footer .container ul li {
  display: inline;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer .container a {
  text-decoration: none;
  color: #010201;
  transition: all 0.3s ease 0s;
}
.footer .container a:hover {
  color: #E06733;
}
.footer .container a:hover .footer__icon {
  fill: #E06733;
  transition: all 0.3s ease 0s;
}
.footer .container .footer__icon {
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  fill: #010201;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 25px;
    line-height: 40px;
  }
  .footer .container :first-child {
    word-spacing: 15px;
  }
  .footer .container a:nth-of-type(2) {
    margin-left: 0;
  }
  .footer .container ul {
    margin-top: 15px;
  }
}
@media (max-width: 380px) {
  .footer .container {
    margin-top: 15px;
    margin-bottom: 0px;
  }
  .footer .container ul {
    margin-top: 0px;
  }
}
.welcome {
  display: grid;
  grid-template-columns: minmax(20%, 458.8px) minmax(40%, 549px);
  justify-content: space-between;
  padding-top: 62px;
  padding-bottom: 49px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
}
.welcome img {
  width: 100%;
  grid-column: 1/2;
  transform: translate(-10px, -10px);
}

.welcome_content {
  grid-column: 2/3;
}
.welcome_content h1 {
  margin-top: 35px;
  font-size: 45px;
  line-height: 50px;
  color: #717171;
}
.welcome_content h1 span {
  color: #499A18;
}
.welcome_content p {
  margin-top: 44px;
  color: #636060;
}
.welcome_content button {
  width: 158px;
  height: 44px;
  margin-top: 48px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
}

@media (max-width: 768px) {
  .welcome {
    grid-template-columns: minmax(50%, 346px) minmax(20%, 280px);
    padding-top: 38px;
    padding-bottom: 69px;
    gap: 42px;
  }
  .welcome img {
    grid-column: 2/2;
    grid-row: 1/2;
    max-width: 280px;
    transform: translate(10px, -3px);
  }
  .welcome_content {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .welcome_content h1 {
    max-width: 346px;
    margin-top: 0px;
    font-size: 35px;
  }
  .welcome_content p {
    margin-top: 30px;
    margin-left: 5px;
    font-size: 16px;
    line-height: 25px;
  }
  .welcome_content button {
    margin-top: 36px;
  }
}
@media (max-width: 380px) {
  .welcome {
    grid-template-columns: 1fr;
    padding-top: 23px;
    padding-bottom: 24px;
  }
  .welcome img {
    display: none;
  }
  .welcome_content h1 {
    width: 100%;
    font-size: 25px;
    line-height: 35px;
  }
  .welcome_content p {
    margin-top: 20px;
    margin-left: 0;
  }
  .welcome_content button {
    width: 100px;
    height: 34px;
    margin-top: 25px;
    padding: 0;
    font-size: 10px;
    line-height: 20px;
  }
}
.about {
  padding-top: 100px;
  padding-bottom: 87px;
  background-color: #FFFFFF;
}

.about .container {
  display: grid;
  grid-template-columns: minmax(40%, 605px) minmax(40%, 464px);
  justify-content: space-between;
}
.about .container img {
  max-width: 100%;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: end;
  transform: translateY(-7px);
}

.about_content {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: 61px;
  font-style: normal;
  font-weight: 400;
}
.about_content h2 {
  max-width: 463px;
  font-family: "Inika", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  color: #499A18;
}
.about_content h2 span {
  color: #E06733;
}
.about_content p {
  margin-top: 38px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #636060;
}

@media (max-width: 768px) {
  .about {
    padding-top: 32px;
    padding-bottom: 92px;
  }
  .about .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .about .container img {
    grid-column: 1/2;
    grid-row: 2/3;
    width: 250px;
    margin-top: 70px;
    justify-self: center;
    transform: translateY(-2px);
  }
  .about_content {
    grid-column: 1/2;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 9px;
  }
  .about_content h2 {
    font-size: 35px;
    line-height: 45px;
    text-align: center;
  }
  .about_content p {
    margin-top: 52px;
  }
}
@media (max-width: 380px) {
  .about {
    padding-top: 20px;
    padding-bottom: 27px;
  }
  .about .container img {
    width: 150px;
    margin-top: 0px;
  }
  .about_content h2 {
    font-size: 25px;
    line-height: 33px;
  }
  .about_content p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 25px;
  }
}
.service {
  padding-bottom: 120px;
}
.service .service_wrapper {
  display: flex;
  flex-direction: row;
  align-content: center;
  margin-top: 38px;
  gap: 11.5%;
}
.service .service_wrapper h2 {
  width: 306px;
  font-family: "Inika", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 52px;
  color: #499A18;
}
.service .service_wrapper .button-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38.5px;
}
.service .service_wrapper .button-list button {
  width: 161px;
  height: 50px;
  margin-top: 7px;
  padding: 12px 40px;
  font-family: "Inika", serif;
  font-size: 20px;
  line-height: 26px;
  color: #E06733;
  border: 1px solid #E06733;
  border-radius: 5px;
}
.service .service_wrapper .button-list button:hover {
  color: #FFFFFF;
  background-color: rgba(224, 103, 51, 0.5);
}
.service .service_wrapper .button-list button.active {
  background-color: #E06733;
  color: #FFFFFF;
}
.service .service_wrapper .button-list button.active:hover {
  background-color: rgba(224, 103, 51, 0.9);
}
.service .card-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
  gap: 54px;
}
.service .card-list .card-item {
  display: flex;
  flex-direction: column;
  width: 330px;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s filter ease-in;
}
.service .card-list .card-item img {
  width: 330px;
  height: 352px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service .card-list .card-item p {
  font-family: "Inter", sans-serif;
  font-style: normal;
}
.service .card-list .card-item .card-info {
  padding-bottom: 36px;
  border: 1px solid #E3E1D5;
  border-radius: 0px 0px 20px 20px;
}
.service .card-list .card-item .card-info :first-child {
  padding-top: 9px;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #E06733;
}
.service .card-list .card-item .card-info :last-child {
  margin-top: 13px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #717171;
}
.service .blur {
  filter: blur(2px);
  transition: 0.3s ease-out;
}

@media (max-width: 930px) {
  .service .service_wrapper {
    gap: 12px;
  }
  .service .service_wrapper .button-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  .service .service_wrapper .button-list button {
    margin-top: 0px;
  }
  .service .card-list {
    justify-content: center;
    gap: 20px;
  }
  .service .card-list .card-item {
    width: 290px;
  }
}
@media (max-width: 768px) {
  .service {
    padding-bottom: 70px;
  }
  .service .service_wrapper {
    flex-wrap: wrap;
    margin-top: 59px;
    gap: 42px;
  }
  .service .service_wrapper h2 {
    font-size: 35px;
    line-height: 46px;
  }
  .service .service_wrapper .button-list {
    gap: 38.5px;
  }
  .service .service_wrapper .button-list button {
    margin-top: 1px;
  }
  .service .card-list {
    justify-content: space-between;
    margin-top: 40px;
    gap: 38px;
  }
  .service .card-list .card-item {
    width: 280px;
  }
  .service .card-list .card-item img {
    width: 280px;
    height: 350px;
  }
  .service .card-list .card-item .card-info {
    width: 280px;
    height: 100px;
    padding-bottom: 20px;
  }
  .service .card-list .card-item .card-info :last-child {
    margin-top: 10px;
    padding: 0px 38px;
  }
  .service .card-list .card-item:nth-child(2n) p:nth-child(even) {
    margin-top: 11.5px;
    margin-right: 1px;
  }
}
@media (max-width: 700px) {
  .service > .card-list {
    justify-content: center;
  }
}
@media (max-width: 380px) {
  .service {
    padding-bottom: 26px;
  }
  .service .service_wrapper {
    margin-top: 30px;
    gap: 37px;
  }
  .service .service_wrapper h2 {
    max-width: 187px;
    font-size: 25px;
    line-height: 33px;
  }
  .service .service_wrapper .button-list {
    flex-wrap: wrap;
    gap: 9px 10px;
  }
  .service .service_wrapper .button-list button {
    width: 121px;
    height: 35px;
    padding: 0;
    font-size: 15px;
    line-height: 20px;
  }
  .service .card-list {
    justify-content: center;
    gap: 34px;
  }
  .service .card-list .card-item img {
    width: 279px;
    height: 350px;
  }
}
.prices {
  font-family: "Inter", sans-serif;
  background-color: #FFFFFF;
}
.prices .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 38px;
  padding-bottom: 102px;
}
.prices .price-container {
  display: flex;
  flex-direction: column;
}
.prices .price-container h2 {
  font-style: bold;
  font-size: 40px;
  line-height: 48px;
  color: #010201;
}
.prices .price-container .price-list {
  width: 332px;
  height: 282px;
  margin-top: 60px;
  padding: 0px 41px;
  border: 1px solid #E3E1D5;
  border-radius: 20px;
  overflow: hidden;
}
.prices .price-container .price-list .accordion {
  margin-top: 30px;
  transition: margin 0.3s ease-out;
}
.prices .price-container .price-list .accordion__intro {
  position: relative;
  padding: 15.5px 0px 16px 39px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  background-color: #EDF2EC;
  color: #010201;
  border-radius: 20px;
  cursor: pointer;
  overflow: hidden;
}
.prices .price-container .price-list .accordion__intro:hover {
  background-color: #D6E7D2;
}
.prices .price-container .price-list .accordion__intro:hover::before {
  background: url('data:image/svg+xml;utf8, <svg width="6" height="4" viewBox="0 0 6 4" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.00003 3.0129L1.00003 1.01302" stroke="white" stroke-width="0.5" stroke-linecap="round"/><path d="M3 3.0127L5 1.0127" stroke="white" stroke-width="0.5" stroke-linecap="round"/></svg>') no-repeat;
  background-position: center;
  background-size: 6px;
  background-color: #AEA1A1;
}
.prices .price-container .price-list .accordion__intro::before {
  position: absolute;
  content: "";
  top: 17px;
  right: 38px;
  width: 16px;
  height: 16px;
  transform: translate(0) rotate(0deg);
  border: 1px solid transparent;
  border-radius: 50%;
  background: url("./assets/icons/arrow.svg") no-repeat;
  background-position: center;
  background-size: 6px;
  background-color: #D9D9D9;
  transition: transform 0.3s ease-out;
}
.prices .price-container .price-list .accordion__content {
  background-color: #D6E7D2;
  border-radius: 20px;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
}
.prices .price-container .price-list .accordion__content .line {
  width: 164px;
  border-top: 0.5px solid #AEA1A1;
}
.prices .price-container .price-list .accordion__content .info {
  width: 169px;
  margin-top: 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: 10px;
  color: #717171;
}
.prices .price-container .price-list .accordion__content .value {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.prices .price-container .price-list .accordion__content .orange {
  font-weight: 700;
  color: #E06733;
}
.prices .price-container .price-list .accordion__content button {
  margin-top: 3px;
  padding: 3px 20px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #636060;
  background-color: #FFFFFF;
  border: transparent;
  border-radius: 10px;
}
.prices .price-container .price-list .accordion__content button:hover {
  background-color: #AEA1A1;
  color: #FFFFFF;
}
.prices .price-container .price-list .accordion__active {
  margin-top: 5px;
  transition: margin 0.2s ease-out;
}
.prices .price-container .price-list .accordion__active .accordion__intro {
  background-color: #D6E7D2;
  border-radius: 20px 20px 0 0;
  transition: 0.2s ease-out;
}
.prices .price-container .price-list .accordion__active .accordion__intro::before {
  transform: rotate(180deg);
  background: url('data:image/svg+xml;utf8, <svg width="6" height="4" viewBox="0 0 6 4" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.00003 3.0129L1.00003 1.01302" stroke="white" stroke-width="0.5" stroke-linecap="round"/><path d="M3 3.0127L5 1.0127" stroke="white" stroke-width="0.5" stroke-linecap="round"/></svg>') no-repeat;
  background-position: center;
  background-color: #AEA1A1;
}
.prices .price-container .price-list .accordion__active .accordion__content {
  padding: 0px 0px 16px 39px;
  border-radius: 0 0 20px 20px;
  opacity: 1;
}
.prices .price-container .price-list .accordion__margins {
  margin-top: 5px;
  transition: margin 0.3s ease-out;
}
.prices .price-container .price-list .accordion:first-child:not(.accordion__margins) {
  margin-top: 34px;
}
.prices .help-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 452px;
  gap: 40px;
}
.prices .help-container p {
  text-align: right;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
}
.prices .help-container span {
  color: #499A18;
}
.prices .help-container button {
  width: 162px;
  height: 50px;
  font-family: "Inika", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #E06733;
  border: 1px solid #E06733;
  border-radius: 5px;
}
.prices .help-container button:hover {
  color: #FFFFFF;
}
.prices .help-container img {
  width: 162px;
  height: 188px;
  transform: translate(6px, -5px);
}

@media (max-width: 768px) {
  .prices .container {
    padding-top: 40px;
    padding-bottom: 81px;
  }
  .prices .price-container .price-list {
    margin-top: 57px;
  }
  .prices .price-container h2 {
    margin-left: 15px;
    font-size: 35px;
    line-height: 42px;
  }
  .prices .help-container {
    margin-top: 100px;
    gap: 28px;
  }
  .prices .help-container p {
    font-size: 25px;
    line-height: 35px;
  }
  .prices .help-container img {
    width: 172px;
    transform: translateX(14px);
  }
}
@media (max-width: 700px) {
  .prices .container {
    flex-direction: column;
    align-items: center;
  }
  .prices .price-container {
    align-items: center;
  }
  .prices .help-container {
    align-items: center;
    margin-top: 20px;
  }
  .prices .help-container p {
    text-align: center;
  }
}
@media (max-width: 380px) {
  .prices .container {
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 41px;
  }
  .prices .price-container {
    align-items: center;
  }
  .prices .price-container h2 {
    margin: 0;
    font-size: 25px;
    line-height: 30px;
  }
  .prices .price-container .price-list {
    width: 224px;
    height: 235px;
    margin-top: 38px;
    padding: 0 22px;
  }
  .prices .price-container .price-list .accordion {
    margin-top: 13px;
  }
  .prices .price-container .price-list .accordion__intro {
    padding: 15px 0px 16px 30px;
    font-size: 15px;
  }
  .prices .price-container .price-list .accordion__active {
    margin-top: 2px;
  }
  .prices .price-container .price-list .accordion__margins {
    margin-top: 2px;
    transition: margin 0.3s ease-out;
  }
  .prices .price-container .price-list .accordion:first-child:not(.accordion__margins) {
    margin-top: 27px;
  }
  .prices .price-container .price-list .accordion__active .accordion__intro {
    padding: 5px 0px 3px 30px;
  }
  .prices .price-container .price-list .accordion__active .accordion__intro::before {
    position: absolute;
    content: "";
    top: 5px;
  }
  .prices .price-container .price-list .accordion__active .accordion__content {
    padding: 0px 0px 10px 10px;
  }
  .prices .price-container .price-list .accordion__active .accordion__content .info, .prices .price-container .price-list .accordion__active .accordion__content .value {
    margin-top: 3px;
  }
  .prices .help-container {
    align-items: center;
    margin-top: 20px;
    gap: 19px;
  }
  .prices .help-container p {
    max-width: 230px;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
  }
  .prices .help-container button {
    width: 121px;
    height: 35px;
    padding: 0;
    font-size: 15px;
    line-height: 20px;
  }
  .prices .help-container img {
    display: none;
  }
}
.contacts {
  height: 550px;
  padding-top: 60px;
  font-family: "Inika", serif;
  background: url("./assets/images/contact_woman.png") no-repeat;
  background-position: 110px bottom;
}
.contacts h2 {
  text-align: center;
  font-style: bold;
  font-size: 40px;
  line-height: 52px;
  color: #499A18;
  transform: translate(-3px);
}
.contacts .contacts-select {
  position: relative;
  width: 450px;
  height: 50px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: 0;
  color: #717171;
  transition: margin-top 0.3s ease-in-out;
}
.contacts .contacts-select input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 8px 17px 8px 20px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #717171;
  background-color: #D6E7D2;
  border: none;
  outline: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s all ease-in-out;
}
.contacts .contacts-select input:hover {
  background-color: #C1E698;
}
.contacts .contacts-select input.active {
  background: #C1E698;
}
.contacts .contacts-select input.selected {
  background: #C1E698;
}
.contacts .contacts-select .option {
  display: none;
  position: absolute;
  top: 50px;
  width: 100%;
  padding: 15px 35px 31px 35px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  color: #499A18;
  background: #DCE9D9;
}
.contacts .contacts-select .option .option__value {
  margin-top: 12px;
  cursor: pointer;
}
.contacts .contacts-select .option .option__value .option__container .item {
  padding-left: 6px;
}
.contacts .contacts-select .option .option__value .option__container .line {
  width: 100%;
  height: 0px;
  border: 1px solid #D9D9D9;
}
.contacts .contacts-select .option .option__value:hover {
  color: #717171;
  transition: 0.3s all ease-in-out;
}
.contacts .contacts-select .option .option__value:hover .line {
  border-color: #717171;
  transition: 0.3s all ease-in-out;
}
.contacts .contacts-select.active .option {
  display: block;
}
.contacts .contacts-select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 34px;
  width: 16px;
  height: 16px;
  transform: translate(0, -50%) rotate(0deg);
  border: 1px solid transparent;
  border-radius: 50%;
  background: url('data:image/svg+xml;utf8, <svg width="6" height="4" viewBox="0 0 6 4" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.00003 3.0129L1.00003 1.01302" stroke="white" stroke-width="0.5" stroke-linecap="round"/><path d="M3 3.0127L5 1.0127" stroke="white" stroke-width="0.5" stroke-linecap="round"/></svg>') no-repeat;
  background-position: center;
  background-size: 6px;
  background-color: #AEA1A1;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s all;
}
.contacts .contacts-select.active::before {
  transform: translate(0, -50%) rotate(180deg);
  background-color: #8BA07E;
}
.contacts .contacts__content {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 448px;
  margin-top: 47px;
  margin-left: auto;
  margin-right: 1px;
  padding-top: 17px;
  padding-bottom: 32px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  background-color: #EDF2EC;
  border: 1px solid #010201;
  border-radius: 20px;
}
.contacts .contacts__content table {
  width: 100%;
  padding: 0 76px 0 32px;
}
.contacts .contacts__content .content_label-title {
  width: 130px;
  color: #010201;
}
.contacts .contacts__content .content_label-value {
  color: #717171;
}
.contacts .contacts__content button {
  width: 122px;
  padding: 7px 29px;
  font-family: "Inika", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
  color: #717171;
  border: 1px solid #E06733;
  border-radius: 5px;
}
.contacts .contacts__content button a {
  text-decoration: none;
  font-weight: 700;
  font-size: 10px;
  line-height: 10px;
  color: #717171;
}
.contacts .contacts__content button:hover {
  color: white;
}
.contacts .contacts__content.active {
  display: flex;
}

@media (max-width: 768px) {
  .contacts {
    height: 740px;
    padding-top: 40px;
    background: url("./assets/images/contact_woman.png") no-repeat;
    background-position: calc(50% + 10px) bottom;
    background-size: 200px;
  }
  .contacts .contacts-select {
    margin: 99px auto 0;
  }
  .contacts .contacts-select.selected {
    margin-top: 61px;
  }
  .contacts .contacts__content {
    margin: 56px auto 0;
  }
}
@media (max-width: 530px) {
  .contacts .contacts-select, .contacts .contacts__content {
    max-width: 90%;
  }
  .contacts .contacts__content table {
    padding-left: 9%;
    padding-right: 10%;
  }
  .contacts .contacts__content table tr {
    line-height: 30px;
  }
  .contacts .contacts__content .content_label-title {
    width: 90px;
  }
}
@media (max-width: 380px) {
  .contacts {
    height: 445px;
    padding-top: 25px;
    background: url("./assets/images/contact_woman.png") no-repeat;
    background-position: 50% bottom;
    background-size: 100px;
  }
  .contacts h2 {
    font-size: 25px;
    line-height: 33px;
    transform: translatex(-3px);
  }
  .contacts .contacts-select {
    max-width: 90%;
    margin: 80px auto 0;
  }
  .contacts .contacts-select .select-selected:after {
    right: 22px;
    width: 14px;
    height: 14px;
  }
  .contacts .contacts-select.selected {
    margin-top: 42px;
  }
  .contacts .contacts__content {
    margin: 49px auto 0;
    padding-top: 23px;
    padding-bottom: 23px;
  }
  .contacts .contacts__content table {
    padding: 0 9% 17px 10%;
  }
  .contacts .contacts__content table tr:last-child {
    line-height: 20px;
  }
  .contacts .contacts__content .content_label-title {
    width: 65px;
  }
  .contacts.selected {
    background: none;
  }
}
@media (max-width: 345px) {
  table {
    padding: 0 9% 10px 10%;
  }
  table tr {
    line-height: 25px;
  }
}/*# sourceMappingURL=style.css.map */