html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

header,
.welcome,
.service,
.contacts {
  background: #edf2ec;
}

header .container,
.nav-list,
.welcome-text,
.about-text,
.h-buttons,
.filter-buttons,
.services,
.prices-content,
.prices-box,
.price-title,
.prices-col1,
.prices-col2,
.contacts,
.contacts h2,
footer .content,
.footer-data,
.social-list,
.social-wrapper {
  display: flex;
  justify-content: space-between;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

header .container {
  height: 134px;
  font-family: 'Inika';
}

.logo {
  display: flex;
  height: 21.04px;
  margin: 52px 0 52px 111px;
}

.logo p {
  margin: 5px 0;
  line-height: 21px;
}

nav {
  width: 452px;
  height: 50px;
  margin: 42px 109px 0 0;
}

.nav-list {
  align-items: center;
  padding: 0;
}

ul li {
  list-style: none;
}

.nav-list a {
  color: #010201;
  text-decoration: none;
  transition: 0.3s;
  padding: 10px 0;
  font-style: normal;
  font-weight: 400;
}

.nav-list a:hover {
  font-weight: 700;
  font-style: normal;
  color: #e06733;

}

.burger {
  display: none;
}

@media screen and (max-width: 1200px) {
  .logo {
    margin-left: 8%;
  }

  nav {
    margin-right: 8%;
  }
}

@media screen and (max-width: 768px) {
  header .container {
    height: 117px;
  }

  nav {
    height: 47px;
    margin: 35px 50px 0 0;
  }

  .logo {
    margin: 45px 0 0 50px;
  }
}

@media screen and (max-width: 700px) {
  body.lock {
    overflow: hidden;
  }

  header .container {
    height: auto;
  }
  
  .logo {
    margin: 36px 0 36px 25px;
  }

  nav {
    margin: 0;
    position: fixed;
    top: calc(-100vh - 50%);
    left: 0;
    width: 100%;
    height: auto;
    background: #edf2ec;
    z-index: 0;
    transition: all 0.4s ease 0s;
    font-size: 25px;
    overflow: auto;
  }

  nav.activated {
    top: 0;
  }

  .nav-list {
    display: block;
    margin-top: 93px;
    padding: 40px 0 15px;
    text-align: center;
  }

  .nav-list li {
    margin: 0 0 50px 0;
  }

  .nav-list li:last-child {
    margin: 0;
  }

  .burger {
    display: block;
    width: 40px;
    height: 26px;
    position: relative;
    margin: 34px 25px 36px 0;
  }

  .burger span,
  .burger span.add {
    position: absolute;
    background-color: #717171;
    left: 0;
    width: 100%;
    height: 2px;
    top: 8px;
    transition: all 0.4s ease 0s;
  }

  .burger span.add {
    top: 16px;
  }

  .burger:before,
  .burger:after {
    content: '';
    position: absolute;
    background: #717171;
    width: 100%;
    height: 2px;
    transition: all 0.4s ease 0s;
  }
  
  .burger:before {
    top: 0;
  }

  .burger:after {
    bottom: 0;
  }

  .burger.activated:before {
    transform: rotate(45deg);
    top: 12px;
  }

  .burger.activated:after {
    transform: rotate(-45deg);
    bottom: 12px;
  }

  .burger.activated span {
    transform: scale(0);
  }
}

@media screen and (max-width: 700px) and (orientation: landscape) {
  nav {
    top: calc(-100vw - 50%);
  }
}

.welcome {
  padding: 62px 0;
}

.leafs-1 {
  margin: -23px 50px -20px 100px;
  max-width: 462px;
  display: flex;
  align-items: center;
}

.welcome img {
  width: 100%;
}

.welcome-text {
  display: flex;
  font-family: 'Inter';
  margin: 36px 109px 32px 0;
  min-width: 300px;
  max-width: 549px;
  height: 340px;
  flex-direction: column;
}

h1 {
  color: #717171;
  font-weight: 700;
  font-size: 45px;
  line-height: 50px;
  margin: 0;
}

.green {
  color: #499a18;
}

p.description {
  color: #636060;
  font-size: 20px;
  line-height: 35px;
  margin: 0;
}

button {
  background-color: rgba(0, 0, 0, 0);
  border: #e06733 solid 1px;
  transition: 0.3s;
}

.welcome button {
  width: 158px;
  height: 44px;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: 'Inter';
  font-size: 16px;
  border-width: 2px;
}

@media screen and (max-width: 1200px) {
  .leafs-1 {
    margin-left: 3%;
    margin-right: 3%;
  }

  .welcome-text {
    margin: 1% 7% 1% 0;
  }
}

@media screen and (max-width: 768px) {
  .welcome {
    padding: 40px 50px 70px;
  }

  .welcome .container {
    flex-flow: row-reverse;
  }

  .welcome-text {
    margin: 0;
    max-width: 346px;
    height: 310px;
  }

  h1 {
    font-size: 35px;
  }

  p.description {
    font-size: 16px;
    line-height: 25px;
    margin: -4px 0 0 5px;
  }

  .leafs-1 {
    margin: -6px -3px;
    max-width: 289px;
    align-items: flex-start;
  }
}

@media screen and (max-width: 700px) {
  .welcome {
    padding: 9%;
  }
  
  .welcome-text {
    max-width: 100%;
  }

  .leafs-1 {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .welcome {
    padding: 24px 25px;
  }

  .leafs-1 {
    display: none;
  }

  .welcome-text {
    height: 252px;
  }

  h1 {
    font-size: 25px;
    line-height: 35px;
  }

  p.description {
    margin: 0;
  }

  .welcome button {
    font-size: 10px;
    line-height: 20px;
    width: 100px;
    height: 34px;
  }
}

@media screen and (max-width: 370px) {
  .welcome-text {
    height: 275px;
    min-width: 0;
  }
}

.about {
  min-height: 666px;
}

.about-text {
  margin: 161px 109px 153px;
  max-width: 605px;
  height: 352px;
  flex-direction: column;
}

.about img {
  margin: 93px 109px 0 0;
  max-width: 464px;
  max-height: 479px;
}

h2 {
  color: #499a18;
  font-family: 'Inika';
  line-height: 52px;
  font-size: 40px;
  font-weight: 400;
  margin: 0;
  max-width: 463px;
}

.orange {
  color: #e06733;
}

.about p {
  line-height: 30px;
  font-family: 'Inter';
}

@media screen and (max-width: 1200px) {
  .about-text {
    margin: 8% 0 0 8%;
  }

  .about img {
    margin: 8% 8% 0 0;
    width: 40%;
    height: 30%;
  }
}

@media screen and (max-width: 768px) {
  .about .container {
    flex-direction: column;
    align-items: center;
    padding: 40px 50px 95px;
  }

  .about-text {
    justify-content: flex-start;
    margin: 0;
    margin-bottom: 38px;
    align-items: center;
    max-width: fit-content;
  }

  .about-text h2 {
    text-align: center;
    margin-bottom: 10px;
  }

  .about-text p {
    display: block;
    margin: 40px 0;
    font-size: 20px;
  }

  .about img {
    margin: 0;
    max-width: 250px;
  }
}

@media screen and (max-width: 700px) {
  .about {
    min-height: auto;
  }
  
  .about .container {
    padding: 5%;
  }
}

@media screen and (max-width: 505px) {
  .about h2 {
    font-size: 30px;
    line-height: 38px;
  }
  
  .about p {
    font-size: 18px;
    line-height: 27px;
    margin: auto 0;
  }
}

@media screen and (max-width: 380px) {
  .about .container {
    padding: 30px 25px 27px;
  }

  .about-text {
    margin-bottom: 0;
    height: auto;
  }

  .about-text h2 {
    margin-bottom: 13.499px;
    font-size: 25px;
    line-height: 33px;
  }

  .about-text p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
  }

  .about img {
    width: auto;
    max-width: 150px;
  }
}


/* --- Services --- */

.service .container {
  flex-direction: column;
}

.h-buttons {
  max-width: 1007px;
  min-height: 94px;
  margin: 40px 109px 80px;
  flex-wrap: wrap;
}

.h-buttons h2 {
  width: 306px;
}

.filter-buttons {
  width: 559px;
  margin: 29px 0 15px 0;
}

.filter-buttons button {
  width: 161px;
  height: 50px;
  border-radius: 5px;
  color: #e06733;
  font-family: 'Inika';
  font-size: 20px;
  transition: all 0.5s;
}

.active-filter {
  background-color: #e06733;
  color: #ffffff !important;
}

@media (hover: none) {
  .button-touch-track:hover {
    background-color: #e06733;
    color: #ffffff;
  }
}

@media (hover: hover) and (pointer: fine) {
  button:not(.select, .price-title):hover {
    background-color: #e06733;
    color: #ffffff;
    cursor: pointer;
  }
}

.services {
  max-width: 1222px;
  min-height: 955px;
  flex-wrap: wrap;
  margin: 0 109px 121px;
  align-content: space-between;
}

.service-item {
  transition: all 1.5s;
}

.service-item-blur {
  filter: blur(2px);
}

.service-img {
  background-color: #010201;
  background-position: center center;
  background-size: cover;
  max-width: 330px;
  height: 350px;
  border-radius: 20px 20px 0 0;
  transition: 0.3s;
}

.service-img:hover {
  cursor: pointer;
  filter:brightness(90%);
}

.s-img1 {
  background-image: url(assets/jpg/garden_care.jpg);
}

.s-img2 {
  background-image: url(assets/jpg/planting.jpg);
}

.s-img3 {
  background-image: url(assets/jpg/lawn_care.jpg);
}

.s-img4 {
  background-image: url(assets/jpg/planting_2.jpg);
}

.s-img5 {
  background-image: url(assets/jpg/garden_care_2.jpg);
}

.s-img6 {
  background-image: url(assets/jpg/planting_3.jpg);
}

.service-box {
  width: 330px;
  height: 100px;
  border: 1px solid #e3e1d5;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  font-family: 'Inter';
  text-align: center;
}

.service-box p {
  margin-top: 12px;
  color: #717171;
}

p.heading {
  margin: 7px 0;
  color: #e06733;
  font-weight: 700;
  font-size: 20px;
}

@media screen and (max-width: 1350px) {
  .services {
    margin: 0 2%;
  }
  
  .service-item {
    margin: 0 10px 40px;
  }

  .service-img,
  .service-box {
    max-width: 95%;
  }
}

@media screen and (max-width: 1200px) {
  .h-buttons {
    margin-right: 8%;
    margin-left: 8%;
  }
  
  .services {
    margin: 0 4%;
    justify-content: space-evenly;
    margin: 0 auto;
  }
  
  .service-img,
  .service-box {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .services {
    justify-content: space-between;
    margin: 0;
  }

  .service-item {
    margin: 0;
  }
  
  .service {
    padding: 60px 50px 32px;
  }

  .h-buttons {
    margin: 0;
  }

  h2 {
    font-size: 35px;
    line-height: 46px;
  }

  .filter-buttons {
    margin: 42px 0 40px;
    flex-wrap: wrap;
  }

  .service-item {
    margin-bottom: 38px;
  }

  .service-box {
    max-width: 280px;
  }

  .service-img {
    max-width: 280px;
  }

  .service-box p {
    margin: 6px 38px;
  }

  p.heading {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 700px) {
  .service {
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
  }
  
  .filter-buttons button {
    margin: 0 5px 9px;
  }
  
  .service-item {
    margin: 0 4px 40px;
  }

  .services {
    justify-content: center;
  }
}

@media screen and (max-width: 585px) {
  .filter-buttons {
    justify-content: flex-start;
  }

  .filter-buttons button {
    max-width: 46%;
  }
}

@media screen and (max-width: 380px) {
  .service {
    padding: 30px 50px 27px 25px;
  }

  .h-buttons {
    margin: 0;
  }

  .h-buttons h2 {
    font-size: 25px;
    line-height: 33px;
    max-width: 187px;
  }

  .filter-buttons {
    margin: 38px 0 31px;
    justify-content: flex-start;
  }

  .filter-buttons button {
    max-width: 121px;
    height: 35px;
    margin-right: 10px;
    margin-left: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .services {
    justify-content: space-between;
  }

  .service-item {
    margin-left: 25px;
    margin-bottom: 34px;
  }

  .service-item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 370px) {
  .service {
    padding-right: 20px;
  }

  .filter-buttons button {
    max-width: 100px;
  }

  .service-item {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .service-img,
  .service-box {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Prices --- */

.prices {
  min-height: 558px;
}

.prices-col1 {
  margin: 39px 109px 0;
  flex-direction: column;
  justify-content: flex-start;
}

.prices-col1 h2 {
  font-family: 'Inter';
  font-weight: 700;
  color: #000000;
  line-height: 48px;
}

.prices-box {
  margin-top: 60px;
  max-width: 332px;
  min-height: 282px;
  border: 1px solid #e3e1d5;
  border-radius: 20px;
  padding: 34px 41px 2px;
  box-sizing: border-box;
  flex-direction: column;
}

.price-item {
  margin-bottom: 32px;
}

.price-title {
  width: 250px;
  height: 50px;
  border-radius: 20px;
  background-color: #edf2ec;
  background-image: url(assets/svg/accordion_btn.svg);
  background-repeat: no-repeat;
  background-position: 194px 17px;
  cursor: pointer;
  padding: 16px 40px;
  box-sizing: border-box;
  font-family: 'Inter';
  font-weight: 700;  
  font-size: 20px;
  line-height: 20px;
  border: none;
  text-align: left;
  transition: 0.3s, height 0.6s ease-in-out;
  flex-direction: column;
  justify-content: flex-start;
}

.price-title:hover {
  background-color: #d6e7d2;
  color: #000000;
}

.price-title-opened {
  height: 154px;
  background-color: #d6e7d2;
  background-image: url(assets/svg/accordion_btn_opened.svg);
  transition: height 0.6s ease-in-out;
}

@media (hover: none) {
  .price-title:hover {
    background-color: #edf2ec;
  }

  .price-title-opened:hover {
    background-color: #d6e7d2;
  }
}

.price-text {
  font-size: 10px;
  line-height: 10px;
  font-weight: 300;
  color: #717171;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s 0.3s;
  opacity: 0;
}

.price-text-opened {
  max-height: 94px;
  transition: 0.4s 0.5s;
  padding: 6px 0 0;
  margin: 9px 0 0;
  border-top: solid #aea1a1 0.5px;
  opacity: 1;
  overflow: visible;
}

.cost {
  font-size: 16px;
  color: #e06733;
  line-height: 20px;
  font-weight: 700;
  display: block;
  margin-top: 6px;
}

.dollar {
  font-size: 12px;
}

.per-hour {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
}

.order {
  width: 86px;
  height: 25px;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  line-height: 20px;
  text-align: center;
  padding: 3px;
  box-sizing: border-box;
  margin: 8px 0;
}

.prices-col2 {
  flex-direction: column;
  text-align: right;
  margin: 39px 109px;
  justify-content: flex-start;
}

.prices-col2 h2 {
  font-family: 'Inter';
  font-weight: 700;
  color: #000000;
  line-height: 50px;
}

.contact {
  width: 162px;
  height: 50px;
  border-radius: 5px;
  font-family: 'Inika';
  font-weight: 700;
  line-height: 26px;
  font-size: 20px;
  color: #e06733;
  margin-top: 38px;
  align-self: flex-end;
}

.prices-col2 img {
  margin: 36px -9px 0 0;
  align-self: flex-end;
}

@media screen and (max-width: 1200px) {
  .prices-col1 {
    margin: 39px 10px 0 8%;
  }

  .prices-col2 {
    margin: 39px 8% 39px 0;
  }
}

@media screen and (max-width: 768px) {
  .prices {
    padding: 40px 50px 41px;
    min-height: auto;
  }
  
  .prices-col1 {
    margin: 0;
  }

  .prices h2 {
    max-width: 300px;
    font-size: 35px;
    line-height: 42px;
    margin: 0 0 0 15px;
  }

  .prices-box {
    margin-top: 57px;
  }

  .prices-col2 {
    margin: 100px 0 40px 21px;
  }

  .prices-col2 h2 {
    font-size: 25px;
    line-height: 35px;
    margin: 0;
  }

  .contact {
    margin-top: 28px;
  }

  .prices-col2 img {
    margin-top: 29px;
  }
}

@media screen and (max-width: 700px) {
  .prices {
    padding: 6%;
  }

  .prices-box {
    padding: 25px;
  }

  .price-title {
    max-width: 200px;
    background-position-x: 144px;
  }

  .price-item:last-child {
    margin-bottom: 0;
  }
  
  .price-text-opened {
    margin-top: 4px;
    padding-top: 2px;
  }

  .cost {
    margin-top: 4px;
  }

  .order {
    margin: 8px 0;
  }
}

@media screen and (max-width: 520px) {
  .prices .container {
    flex-direction: column;
  }

  .prices h2 {
    margin: 0 auto;
  }

  .prices-box {
    margin: 38px auto 0;
  }

  .prices-col2 {
    text-align: center;
    margin: 19px 0 0 0;
  }

  .contact {
    margin-top: 20px;
    align-self: center;
  }

  .prices-col2 img {
    margin: 29px auto 0;
  }
}

@media screen and (max-width: 380px) {
  .prices {
    padding: 0;
  }

  .prices .container {
    padding: 25px 75px 40px;
  }

  .prices h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .prices-box {
    padding: 29px 21px;
    min-height: 235px;
  }

  .price-title {
    font-size: 15px;
    max-width: 180px;
    padding-left: 30px;
    padding-top: 17px;
    background-position-x: 124px;
  }

  .price-item {
    margin-bottom: 5px;
  }

  .cost {
    margin-top: 2px;
  }

  .order {
    margin: 4px 0;
  }

  .prices-col2 h2 {
    font-size: 20px;
    line-height: 35px;
    margin: 0;
  }

  .contact {
    font-size: 15px;
    line-height: 20px;
    width: 121px;
    height: 35px;
  }

  .prices-col2 img {
    display: none;
  }
}

@media screen and (max-width: 370px) {
  .prices .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .prices-col2 h2 {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* --- Contacts --- */

.contacts .container {
  height: 550px;
  width: 1440px;
  flex-direction: column;
  justify-content: flex-start;
  background-image: url(assets/png/contact_woman.png);
  background-repeat: no-repeat;
  background-position: 109px 53px;
  background-size: 400px 497px;
}

.contacts h2 {
  line-height: 52px;
  font-weight: 700;
  margin: 60px auto 37px;
  width: auto;
  height: 52px;
}

.drop-down-all {
  margin: 0 109px 0 auto;
  position: relative;
  transition: 1s;
}

.select {
  width: 450px;
  height: 50px;
  background: #d6e7d2;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  appearance: none;
  color: #717171;
  font-family: 'Inter';
  font-size: 20px;
  line-height: 40px;
  text-align: left;
  border: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding-left: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 35px);
  outline: none;
  transition: 0.2s;
  background-image: url(assets/svg/select_btn.svg);
}

.select:focus,
.select-active {
  border: solid 1px #d6e7d2;
  background-color: #c1e698;
  padding-left: 19px;
  background-position: calc(100% - 34px);
  box-shadow: none;
}

.select-active,
.select:active {
  background-image: url(assets/svg/drop_btn.svg);
}

.select-closed {
  background-image: url(assets/svg/select_btn.svg);
}

.drop-down {
  opacity: 0;
  box-sizing: border-box;
  max-height: 0;
  position: absolute;
  background-color: #dce9d9;
  top: 50px;
  margin: 0;
  width: 100%;
  z-index: 1;
  font-family: 'Inter';
  font-size: 16px;
  line-height: 30px;
  transition: opacity 0.5s, max-height 1s;
  overflow: hidden;
  padding: 0;
}

.drop-down-visible {
  opacity: 1;
  max-height: 235px;
}

.drop-down-el {
  border-bottom: 1px solid #d9d9d9;
  margin: 16px 50px 0 26px;
  color: #499a18;
  letter-spacing: 0.05em;
}

.drop-down-el:first-child {
  margin-top: 32px;
}

.drop-down-el:last-child {
  margin-bottom: 35px;
}

.drop-down-el:after {
  display: block;
  position: absolute;
  left: 25px;
  width: 0;
  height: 1px; /*задаём ширину линии*/
	background-color: #717171;
	content: "";
	transition: width 0.3s ease-out;
}

.drop-down-el:hover {
  color: #717171;
  cursor: pointer;
}

.drop-down-el:hover:after {
  width: calc(100% - 75px);
}

.drop-down-value {
  display: none;
}

.card {
  transition: 1s;
  opacity: 0;
  width: 448px;
  height: 214px;
  border: solid 1px #000000;
  border-radius: 20px;
  margin: 47px 0 0 2px;
  padding: 17px 76px 32px 30px;
  box-sizing: border-box;
  font-family: 'Inter';
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.05em;
  background: #edf2ec;
}

.card-head {
  width: 130px;
}

.card-content {
  color: #717171;
}

.card-button {
  border-radius: 5px;
  color: #717171;
  font-family: 'Inika';
  font-weight: 700;
  font-size: 10px;
  line-height: 13px;
  margin: 19px 0 0 131px;
  padding: 5px 45px 6px;
  display: block;
}

@media screen and (max-width: 1200px) {
  .contacts .container {
    background-size: 35%;
    background-position: 10% 100%;
  }
}

@media screen and (max-width: 768px) {
  .contacts .container {
    height: 739px;
    background-position: calc(50% + 10px) 100%;
    background-size: 26%;
  }

  .contacts h2 {
    margin-top: 40px;
    margin-bottom: 100px;
    font-size: 40px;
    line-height: 52px;
  }

  .drop-down-all {
    margin: 0 auto;
  }

  .card {
    margin-top: 60px;
  }
}

@media screen and (max-width: 700px) {
  .drop-down-all {
    width: 65%;
    min-width: 300px;
  }

  .select {
    width: 100%;
  }

  .card {
    padding: 4% 6%;
    width: 94%;
    height: auto;
    margin: 49px auto;
    line-height: 20px;
  }

  .card td {
    height: 35px;
  }

  .card-head {
    width: 45%;
  }

  .card-content {
    width: 150px;
  }

  .card-button {
    margin: 5% auto;
  }

  .card-phone {
    white-space: nowrap;
  }
}

@media screen and (max-width: 380px) {
  .contacts .container {
    height: 445px;
    background-position: 50% 100%;
  }

  .drop-down-all {
    width: calc(100% - 80px);
  }

  .select,
  .select-active,
  .select-closed,
  .select:active,
  .select:focus {
    background-position: calc(100% - 20px);
  }

  .card {
    height: 212px;
    padding: 20px 30px 20px 34px;
  }

  .card-head {
    width: auto;
  }

  .card-button {
    margin-top: 12px;
  }

  .fucking-block {
    padding: 4px 9px;
  }

  .contacts h2 {
    margin: 25px auto 82px;
    font-size: 25px;
    line-height: 33px;
  }
}

footer .container {
  flex-direction: column;
  height: 130px;
  padding: 40px 109px;
  box-sizing: border-box;
}

footer .content {
  max-width: 1222px;
}

footer p {
  font-family: 'Inter';
  font-size: 20px;
  line-height: 50px;
  margin: 0;
}

footer a {
  text-decoration: none;
  color: #000000;
  transition: 0.3s;
}

footer a:hover {
  color: #e06733;
}

.footer-data {
  width: 182px;
  padding-right: 13px;
  box-sizing: border-box;
}

.social-list {
  width: 188px;
  margin: 0;
  padding: 0;
  align-items: center;
  box-sizing: border-box;
}

.social-wrapper {
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
}

.social-list img {
  vertical-align: bottom;
}

@media screen and (max-width: 1200px) {
  footer .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (max-width: 768px) {
  footer .container {
    padding: 0;
    height: 182px;
  }

  footer .content {
    flex-direction: column;
    margin: auto;
  }

  .footer-data {
    margin: auto;
    padding: 0;
    justify-content: space-around;
  }

  footer p {
    width: auto;
    line-height: normal;
  }

  footer .content > p {
    margin: 20px 0;
  }

  .social-list {
    width: auto;
    justify-content: space-around;
  }
}

@media screen and (max-width: 380px) {
  footer .container {
    height: 146px;
  }

  .footer-data {
    margin-top: 9px;
    width: 194px;
  }

  footer .content > p {
    margin: 16px 0 11px;
  }
}