/* секция About */
.about {
  width: 100%;
  padding: 50px 0px;
}
@media (max-width: 992px) {
  .about {
    padding: 25px 0px;
  }
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(260px, 445px) 1fr;
  margin-top: 35px;
  grid-column-gap: 30px;
}
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.section-title {
  font-weight: 700;
  font-size: 35px;
  position: relative;
  color: #090a0c;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FA8C16;
  width: 50px;
  height: 2px;
}
.about__item-Left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__block-img {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;

}
.about__block-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     box-shadow: 0px 0px 11px 11px rgba(52, 59, 94, 0.1);

}
@media (max-width: 992px) {
  .about__block-img {
    width: 100%;
  }
}
.about__block-social {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 8px 8px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
}
.about__block-social a {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: 1px solid #090a0c;
  text-decoration: unset;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.about__block-social a:hover {
  color: #FA8C16;
}
.about__block-social a .fab {
  color: #090a0c;
}
.about__item-Right {
  border-right: 2px solid #FA8C16;
  padding-right: 35px;
}
.about__item-Right .about__about-me {
  font-size: 16px;
  color: #7A7A7A;
}
.about__about-me ul, .about__about-me ol {
  padding-left: 15px;
}
.about__about-me ul li, .about__about-me ol li {
  margin-bottom: 15px;
}
.about__item-Right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: -8px;
}
.about__name {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
  color: #090a0c;
}
.about__discr {
  color: #090a0c;
  font-weight: 400;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.2;
}
.about__discr span {
  color: #FA8C16;
}
.about__block {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  margin-top: 26px;
  gap: 35px;
  width: 100%;
}
.about__item_link {
  text-decoration: none;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.about__item_link:hover .about__bord {
  color: #FA8C16;
}

@media (max-width: 768px) {
  .about__block {
    grid-template-columns: 1fr;
  }
  .about__block-social {
    gap: 8px;
  }
}
.about__media {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.about__media span {
  font-size: 14px;
  line-height: 18px;
}
.about__bord {
  color: #090a0c;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 18px !important;
  margin-bottom: 0;
  padding-right: 10px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}
.about__bord_val {
  text-align: right;
}
.personal-data-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__btn {
  white-space: nowrap;
  color: #FA8C16;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 30px;
  margin-top: 20px;
  display: inline-block;
  background: #343434;
  transition: all 0.8s ease 0s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-left: 30px;
}
.about__btn:hover {
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  background: #090a0c;
}

@media (min-width: 993px) {
  .about__name_box_hidden {
    display: none;
  }
}
@media (min-width: 610px) and (max-width: 992px) {
  .about__item-Left {
    justify-content: flex-start;
    margin-left: 15px;
  }
  .about__block-img {
    max-width: 54px;
    margin-right: 20px;
  }
  .about__name {
    line-height: 24px;
  }
}

@media (max-width: 992px) {
  .about__name_box {
    display: none;
  }
  .personal-data-container {
    flex-direction: column;
  }
  .about__item-Right .about__about-me {
    font-size: 16px;
  }
  .about__btn {
    margin-left: 0px;
  }
}

@media (max-width: 610px) {
  .about__name_box_hidden {
    display: none;
  }
  .about__name_box {
    display: block;
  }
  .about__item-Right {
    margin-top: 30px;
  }
}