/* Service tabs */

.service-tabs {
    padding: 0;

    background: #F5F5F5;
}

.service-tabs .container {
    max-width: 1410px;

    
}

.service-tabs__row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.service-tabs__nav {
    display: flex;
    flex-direction: column;
    gap: 5px;

    width: 100%;
    max-width: 410px;
}

.service-tabs__button {
    display: flex;
    align-items: center;

    width: 100%;
    min-height: 60px;
    padding: 0 30px;

    border: none;
    border-radius: 4px;

    background: #ffffff;

    font-family: 'RoadRadio', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;

    color: #1D3F77;
}

.service-tabs__button.active {
    color: #ffffff;
    background: #F7941D;
}


/* slider */

.service-tabs__slider {
    position: relative;

    width: 100%;
    height: 330px;

    overflow: hidden;
    border-radius: 10px;
}

.service-tabs__slider .swiper-wrapper,
.service-tabs__slider .swiper-slide {
    height: 100%;
}

.service-tabs__slider img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    filter: grayscale(1);
}


/* arrows */

.service-tabs__prev,
.service-tabs__next {
    position: absolute;
    top: 50%;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 64px;

    border: none;

    background: #1D3F77;

    font-size: 36px;
    line-height: 1;

    color: #ffffff;

    transform: translateY(-50%);
}

.service-tabs__prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.service-tabs__next {
    right: 0;
    border-radius: 8px 0 0 8px;
}


/* pagination */

.service-tabs__pagination {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: fit-content;
    
    max-width: 300px;
    height: 40px;
    padding: 0 24px;

    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.service-tabs__pagination .swiper-pagination-bullet {
    width: 22px;
    height: 3px;

    margin: 0;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;

    transition: width .3s ease, background-color .3s ease;
}

.service-tabs__pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: #F7941D;
}




/* service info */

.service-info {
    padding: 40px 0 0;
}

.service-info .container {
    max-width: 1410px;
}

.service-info__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
/*
    max-width: 800px;
	*/
    margin: 0 auto;
	/*
    padding: 40px 0 40px;
	*/
}


/* text */

.service-info__content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;

    color: #7A7A7A;
}


/* title */

.service-info__content h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    color: #1D3F77;
}


/* list */

.service-info__content ul {
    display: flex;
    flex-direction: column;
    gap: 20px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.service-info__content li {
    position: relative;

    padding-left: 16px;

    font-size: 16px;
    line-height: 1.35;

    color: #3A3A3A;
}

.service-info__content li::before {
    content: "";

    position: absolute;
    top: 10px;
    left: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #F7941D;
}



/* Service documents */

.service-documents {
    position: relative;

    padding: 80px 0;

    background: #F5F5F5;
    overflow: hidden;
}

.service-documents .container {
    max-width: 1410px;

    position: relative;
    z-index: 2;
}

.service-documents .container:after {
    content: url('../img/PP/element1.svg');

    position: absolute;
    left: 1356px;
    bottom: -50px;
    z-index: -1;

    width: 775px;

    pointer-events: none;
    
}

.service-documents__tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 60px;
    margin-bottom: 30px;

    border-bottom: 1px solid #DADADA;
}

.service-documents__tab {
    position: relative;

    flex: 1 1 0;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 60px;
    padding: 20px 30px;

    border: none;
    background: transparent;

    font-family: 'RoadRadio', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;

    color: #1D3F77;
}

.service-documents__tab.active {
    color: #F7941D;
}

.service-documents__tab.active::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;

    height: 2px;

    background: #F7941D;
}

.service-documents__content {
    display: none;
}

.service-documents__content.active {
    display: block;
}

.service-documents__row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
}


/* card */

.service-document-card {
    min-height: 230px;
    padding: 30px 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border-radius: 10px;
    background: #ffffff;
}

.service-document-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-document-card__top img {
    width: 130px;
    height: auto;
}

.service-document-card__top span {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.3;

    color: #1D3F77;
}

.service-document-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-document-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 28px;

    border: 1px solid #DADADA;
    border-radius: 999px;

    font-family: 'RoadRadio', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;

    color: #B2B2B2;
}

.service-document-card__download {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-document-card__download span {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;

    color: #B2B2B2;
}

.service-document-card__download a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 50%;
    background: #F7941D;
}

.service-document-card__download img {
    width: 16px;
    height: 16px;
}


/* more */

.service-documents__more {
    display: flex;
    justify-content: center;

    margin-top: 30px;
}

.service-documents__more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 185px;
    min-height: 58px;
    padding: 0 34px;

    border: 1px solid #DADADA;
    border-radius: 999px;

    background: #ffffff;

    font-family: 'RoadRadio', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    color: #F7941D;
}




/* Request */

.request-section {
    position: relative;

    margin: 0 auto;
    align-items: center;

    padding: 80px 0;

    overflow: hidden;
}

.request-section__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 0;

    background:
        url('../img/detailService/form (1).svg')
        center / cover no-repeat;
}

.request-section .container {
    position: relative;
    z-index: 2;

    max-width: 1410px;
}

.request-section__title {
    margin: 0 0 20px;

    font-family: 'RoadRadio', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;

    color: #ffffff;
}

.request-section__text {
    margin: 0 0 20px;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.8);
}

.request-form__row {
    --bs-gutter-x: 5px;
    --bs-gutter-y: 5px;
}

.request-form__fields {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.request-form__input,
.request-form__textarea {
    width: 100%;

    border: none;
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;

    color: #ffffff;
}

.request-form__input {
    height: 50px;
    padding: 0 20px;
}

.request-form__textarea {
    height: 215px;
    padding: 18px 20px;

    resize: none;
}

.request-form__input::placeholder,
.request-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.request-form__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 54px;
}

.request-form__file {
    display: flex;
    align-items: center;
    gap: 30px;
}

.request-form__file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    padding: 0 28px;

    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);

    cursor: pointer;

    font-family: 'RoadRadio', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;

    color: #F7941D;
}

.request-form__file-button input {
    display: none;
}

.request-form__file-name,
.request-form__note {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;

    color: rgba(255, 255, 255, 0.65);
}

.request-form__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.request-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 58px;
    padding: 0 34px;

    border: none;
    border-radius: 999px;

    background: #F7941D;

    font-family: 'RoadRadio', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    color: #ffffff;
}

.request-form__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 12px;

    color: rgba(255, 255, 255, 0.75);
}

.request-form__checkbox a {
    color: #F7941D;
}