.banner-about {
  background-image: url('../assets/img/lazyload/bg-about-lazy.jpg');
}
.banner-about.loaded {
  background-image: url('../assets/img/bg-about.jpeg');
}
.audit {
  padding: 67px 0 134px;
}
.audit__wrap {
  display: flex;
  gap: 53px;
}
.audit__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(89, 85, 102, 1);
  margin: 0 0 20px;
}
.audit__text b {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #262626;
}
.audit__text a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #BF0C10;
}
.audit__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.audit__list li {
  display: flex;
  gap: 12px;
}
.audit__list li:not(:last-child) {
  margin-bottom: 15px;
}
.audit__list li::before {
  content: url("../assets/img/icons/check.svg");
}
.audit__list li p {
  margin: 0;
  color: #676767;
}
.audit__list li p b {
  color: #262626;
}
.audit__img {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 530px;
}
@media (max-width: 1200px) {
  .audit__img {
    min-width: 430px;
  }
}
@media (max-width: 1024px) {
  .audit {
    padding: 70px 0;
  }
}
@media (max-width: 940px) {
  .audit__wrap {
    flex-direction: column;
  }
  .audit__img {
    min-width: auto;
  }
  .audit__img img:first-child {
    display: none;
  }
}

.history {
  padding: 70px 0;
}
.history__row {
  display: flex;
  gap: 56px;
}
.history__col {
  width: 50%;
}
.history__col p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #595566;
  margin: 0 0 10px;
}
.history__col p i {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #262626;
  font-style: italic;
}
.history__col p b {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #262626;
}
.history__col p a {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #BF0C10;
}
.history__col p a:hover {
  text-decoration: none;
}
.history__col p u {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: underline;
  color: #262626;
}
.history ul {
  margin: 0 0 10px 0;
  padding: 0 0 0 20px;
}
.history ul li {
  color: #595566;
}
.history__logo {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}
.history__logo img {
  max-width: 277px;
}
@media (max-width: 820px) {
  .history__row {
    flex-direction: column;
    gap: 0;
  }
  .history__col {
    width: 100%;
  }
}

/* ----- LICENSES SECTION ----- */
.licenses {
  background: #F5F5F5;
  padding: 70px 0;
}
.licenses__top {
  display: flex;
  align-items: end;
  gap: 25px;
  margin-bottom: 40px;
}
.insurance__top {
  margin-top: 100px;
}
.licenses__top-title {
  margin-bottom: 0;
}
.licenses__top-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}
.licenses__button {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #262626;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.licenses__button:hover {
  background-color: #262626;
}
.licenses__button:hover svg path {
  fill: #FFFFFF;
}
.licenses__slide {
  border-radius: 20px;
  height: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
}
.licenses__img {
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
}
.licenses__show-btn {
  box-sizing: border-box;
  min-width: 74px;
  height: 74px;
  position: absolute;
  bottom: -37px;
  left: 50%;
  margin-left: -37px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #BF0C10;
  border: 7px solid #F5F5F5;
  cursor: pointer;
  transition: all 0.2s;
}
.licenses__show-btn:hover {
  transform: scale(1);
  border-width: 0px;
  border-color: #F5F5F5;
}
@media (max-width: 1024px) {
  .licenses__slider {
    padding: 0 20px;
  }
  .licenses__slider .container {
    padding: 0;
  }
}
@media (max-width: 560px) {
  .licenses__top {
    flex-direction: column;
    align-items: center;
  }
  .licenses__top-text {
    text-align: center;
  }
  .licenses__top-buttons {
    margin: 0;
  }
}

.thumbnail {
  /* width: 150px;
  height: 100px; */
  /* object-fit: cover; */
  cursor: pointer;
  /* transition: transform 0.2s; */
}

.thumbnail:hover {
  transform: scale(1.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}