.page-title {
 padding: 30px 0;
 position: relative;
 overflow: hidden;
}

.page-title__bg {
 position: absolute;
 bottom: 0;
 right: auto;
 left: 0;
 height: 100%;
 width: 100%;
}

.page-title__bg-image {
 height: 100%;
 width: 100%;
 object-fit: cover;
}

.page-title__content {
 position: relative;
 z-index: 2;
 max-width: 699px;
}




.breadcrumbs {
 margin-bottom: 10px;
}

.breadcrumbs__list {
 display: flex;
 align-items: center;
 gap: 10px;
}

.breadcrumbs__item {
 display: flex;
 align-items: center;
 gap: 10px;
 color: #343E4A;
 font-size: 13px;
 font-weight: 500;
 line-height: 138%;
}

.breadcrumbs__link {
 transition: all .3s;
}

.breadcrumbs__link:hover {
 color: #20247A;
}

.breadcrumbs__arrow {
 line-height: 0;
}

.breadcrumbs__text {
 opacity: 0.3;
}

.page-title__heading {}

.page-title__text {
 margin-top: 10px;
}

.page-title__description {
 color: #343E4A;
 font-size: 16px;
 font-weight: 400;
 line-height: 150%;
}


.btn--arrow {
 width: fit-content;
 display: flex;
 align-items: center;
 gap: 8px;
 padding: 15px 18px;
 border-radius: 12px;
 background: #20247A;
 transition: all .3s;
 position: relative;
 overflow: hidden;
 z-index: 1;
}

.btn--arrow .btn__icon {
 line-height: 0;
}

.btn--arrow .btn__icon svg {
 width: 20px;
 height: 20px;
}

.btn--arrow .btn__text {
 color: #FFF;
 font-size: 15px;
 font-weight: 600;
 line-height: 140%;
 transition: all .3s;
}

.btn--arrow::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(180deg, #49207E 0%, #21257E 100%);
 z-index: -1;
 opacity: 0;
 transition: .3s;
}

.btn--arrow:hover::after {
 opacity: 1;
}


.info-notice {
 display: flex;
 align-items: center;
 gap: 10px;
 padding: 12px 15px;
 border-radius: 15px;
 border-left: 3px solid #0B54A0;
 background: #FFF;
}

.info-notice__icon {
 line-height: 0;
}

.info-notice__icon svg {
 width: 24px;
 height: 24px;
}

.info-notice__text {
 color: #20247A;
 font-size: 14px;
 font-weight: 700;
 line-height: 22px;
}


.fg textarea {
 display: block;
 width: 100%;
 border-radius: 9px;
 border: 1px solid #F3F4F5;
 background: #FFFFFF;
 padding: 14px;
 transition: .3s;
 color: #191C21;
 font-size: 13px;
 line-height: 138%;
 height: 76px;
 resize: none;
}

.fg textarea:focus {
 border-color: #20247A;
}

.sidebar-banner {
 margin-top: 30px;
 padding: 25px 30px;
 border-radius: 15px;
 position: relative;
 overflow: hidden;
 height: 362px;
 display: block;
}

.sidebar-banner__bg {
 position: absolute;
 width: 100%;
 height: 100%;
 object-fit: cover;
 top: 0;
 left: 0;
 z-index: 1;
 transition: all .5s;
}

.sidebar-banner:hover .sidebar-banner__bg {
 transform: scale(1.05);
}

.sidebar-banner:hover .sidebar-banner__btn {
 background-color: #19D8C4;
}

.sidebar-banner__content {
 position: relative;
 z-index: 2;
}

.sidebar-banner__title {
 color: #fff;
 max-width: 200px;
}

.sidebar-banner__text {
 color: #E7EDF3;
 font-size: 15px;
 font-weight: 500;
 line-height: 140%;
 margin-top: 2px;
}

.sidebar-banner__btn {
 margin-top: 7px;
 width: fit-content;
 padding: 6px 12px;
}


@media (max-width: 1024px) {

 .page-title {
  padding: 20px 0;
 }

 .h1 {
  font-size: 22px;
  line-height: 28px;
 }

 .breadcrumbs {
  margin-bottom: 6px;
 }

 .page-title__text {
  margin-top: 6px;
  max-width: 360px;
 }

 .page-title__description {
  font-size: 13px;
 }

 .h3 {
  font-size: 17px;
  line-height: 21px;
 }

 .btn--arrow {
  gap: 3px;
  padding: 10px 11px;
 }

 .btn--arrow .btn__text {
  font-size: 13px;
 }



 .h2 {
  font-size: 20px;
  line-height: 22px;
 }

 .h4 {
  font-size: 15px;
  line-height: 19px;
 }

 .info-notice {
  padding: 10px 12px;
 }

 .info-notice__text {
  font-size: 13px;
  line-height: 17px;
 }


}

@media (max-width: 768px) {

 /* .page-title__bg-image.d-block_tablet {
  display: none !important;
 }

 .page-title__bg-image.d-block_mobile {
  display: block !important;
 } */

 .page-title {
  padding-bottom: 106px;
 }


 .page-title__bg-image {
  width: 100%;
  height: 100%;
 }

 .info-notice {
  align-items: flex-start;
 }

 /* .d-none_mob {
  display: none;
 }

 .d-block_mob {
  display: block !important;
 } */

 .breadcrumbs__link {
  white-space: nowrap;
 }

 .breadcrumbs__text {
  white-space: nowrap;
 }

 .breadcrumbs__list {
  overflow-x: auto;
 }

}