.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 3.5rem 1rem;
}


.section__header{
  padding-top: 60px ;
}
.section__description{
  padding: 0 15px;
}
footer {
  box-sizing: border-box;
  margin: 10px;
  margin-top: 30px;
  align-items: center;
  justify-content: space-between;
  background-color:  var(--extra-light);  
  border-radius: 35px;
}

footer p,footer h4  {
  color: var(--text-light);
}


.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer_col{
  width: 25%;
  padding: 8px 15px;
}

ul{
  list-style-type: none;
}

.brief-description p{
  max-width: 300px; 
  margin-top: 12px;
  line-height: 1.5;
  font-size: 14px;
  transition: all 0.3s ease;
}
.brief-description p:hover{
  padding-left: 6px;
  color: var(--primary-color);
}


.footer_card li {
  margin-bottom: 10px;
  font-family: 'Gilroy', sans-serif;
  font-size: 14px;
  display: block;
  transition: all 0.3s ease;
}
.footer_card li a {
  font-family: 'Gilroy', sans-serif;
  font-size: 14px;
  display: block;
  transition: all 0.3s ease;
}
.footer_card li:hover{
  padding-left: 6px;
}

.footer_heads{
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}
.footer_card{
  margin-top: 12px;
}
.social_plat{
  margin-bottom: 10px;
  font-family: 'Gilroy', sans-serif;
  font-size: 16px !important;

}

@media(max-width: 800px){
  .footer_col{
    width: 50%;
    margin-bottom: 30px;
  }
  
}

@media(max-width: 574px){
  .section__container {
    padding: 5rem 1rem !important;
  }
  .banner__container {
    display: grid;
    gap: 2rem;
    padding-top: 30%;
}
  .footer_col{
    width: 100%;
    margin-bottom: 30px;
  }
  .row{
    margin-bottom: 0px;
    padding: 40px 20px ;
  }
  footer {
    margin-bottom: 0px;
    align-items: center;
    justify-content: space-between;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.custom-select {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

/* Для лучшей поддержки в старых браузерах */
input:-ms-input-placeholder { color: gray; } /* Internet Explorer 10+ */
input::-ms-input-placeholder { color: gray; } /* Edge */
.input-container {
  width: 100%;
}
.input-name{
  width: 100%;
  outline: none;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid var(--text-light);
  padding: 12px 20px;
  background: transparent;
  font-size: 12px;
  border-radius: 30px;
  text-align: left;
  box-sizing: border-box;
}

.input-name:focus{
  border: 1px solid var(--primary-color);
}

.contact-number{
  display: flex;
  gap: 5px;

}
.footer_card li {
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
}

.footer_card a{
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  color: var(--text-light);
}

.submit{
  font-size: 12px;
  padding: 13px 15px !important;
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 5%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.option:hover {
  background: var(--light);
}

.footer-icons-phone{
  width: 20px;
  margin-right: 10px;

}

.footer-icons{
  margin-right: 10px;
  width: 20px;
}

.footer_card li a{
  display: flex;
}

@media (width > 540px) {
  .banner__container {
    grid-template-columns: repeat(4, 1fr);
  }
}


@media screen and (max-width: 974px) {
  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 477px ) {
  .banner__container {
    grid-template-columns: repeat(1, 1fr);
  }
  .banner__container {
    display: grid;
    gap: 0rem;
}
}

.banner__container {
  display: grid;
}

.img-box{
  height: 150px;
  width: 150px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--extra-light);
}

.banner__card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  align-items: center;
  text-align: center;
  border-radius: 50%;
}

.banner__card img {
  width: auto;
  height: 100px;
}

.banner__card p {
  margin-top: 30px;
  color: var(--text-light);
}


