@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background-color: #e5e5e5;
  overflow-y: scroll;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  margin-left: 15px;
  margin-right: 15px;
  width: 100%;
}

h1 {
  font-size: 42px;
  font-weight: 600;
}

@media (max-width: 767px) {
  h1 {
    font-size: 25px;
  }
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 10px;
}

.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 950px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

.modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  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-animation: fade-in 0.3s 1 forwards;
  animation: fade-in 0.3s 1 forwards;
}

.modal .modal__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  max-width: 800px;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .modal .modal__body {
    padding: 15px;
  }
}

.modal .modal__body img {
  width: 100%;
}

.header .header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin: 30px 0;
  -webkit-box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .header .header__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    margin: 15px 0;
  }
}

.header .header__content .avatar {
  overflow: hidden;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-right: 20px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .header .header__content .avatar {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.header .header__content .avatar img {
  width: 100%;
}

.header .header__content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .header .header__content .info .info__title {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header .header__content .info strong {
    text-align: center;
  }
}

.header .header__content .info .info__subtitle {
  margin-top: 5px;
  color: #e5e5e5;
}

.header .header__content .socials {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .header .header__content .socials {
    margin-top: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .header .header__content .socials {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header .header__content .socials .socials__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 15px;
}

@media (max-width: 767px) {
  .header .header__content .socials .socials__link {
    width: 25px;
    height: 25px;
    margin-left: 10px;
  }
}

.header .header__content .socials .socials__link svg path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #e5e5e5;
}

.header .header__content .socials .socials__link:hover svg path {
  fill: #5a5aff;
}

@media (max-width: 767px) {
  .main .top-row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.main .top-row .col {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767px) {
  .main .top-row .col {
    width: 100%;
  }
}

.main .content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.1);
}

.main .content .scars .scars__item {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .content .scars .scars__item::before {
  display: block;
  content: "";
  padding: 7px;
  margin-right: 10px;
  background: url("../img/icons/animal-track.svg") center center no-repeat;
}

.main .content .scars .scars__item + .scars__item {
  margin-top: 10px;
}

.main .content .interest {
  text-transform: uppercase;
}

.main .content .quote {
  max-width: 500px;
  margin: 0 auto;
  padding: 15px;
  position: relative;
  font-style: italic;
}

.main .content .quote::before {
  position: absolute;
  top: 0;
  left: -10px;
  display: block;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #e5e5e5;
}

.main .content .quote__name {
  display: block;
  text-align: right;
  font-weight: 500;
}

.hide {
  display: none;
}

.overflow-block {
  overflow: hidden;
  padding-right: 16px;
}

@media (max-width: 767px) {
  .overflow-block {
    padding-right: 0;
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=style.css.map */
