:root {
    --font-family: "Inter", sans-serif;
    --font-size: 16px;
    --line-height: 150%;
    --accent-bg-color: #ef8c61;
}

.useful_section {
    padding: 80px 60px;
}

.useful_section>h1 {
    padding-bottom: 50px;
    color: #1e1e1e;
    font-family: var(--font-family);
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height);
    letter-spacing: -0.42px;
}

.useful_links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.useful_link {
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid #fff;
}

.useful_link>a {
    color: #494949;
    text-align: justify;
    font-family: var(--font-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height);

    text-decoration: none;
}

.useful_link:hover {
    border: 1px solid #e1e1e1;
}

@media (max-width: 768px) {
    .useful_section {
        padding: 80px 32px;
    }
}

@media (max-width: 480px) {
    .useful_section {
        padding: 80px 20px;
    }

    .useful_section>h1 {
        font-size: 32px;
    }
}



.files {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px;
}


.section_type_header {
    text-align: center;
    padding-bottom: 20px;
    line-height: 42px;
}

.pdf_text {
    flex-grow: 1;
    text-align: left;
    padding-left: 20px;
}

.component_file {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.download_btn {
    min-width: 63px;
}

.pdf_file {
    padding: 50px 60px;
}

.download_button {
    position: relative;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    background: #fff;

    color: #565656;
    text-align: justify;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height);

    text-decoration: none;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.download_button:hover {
    color: #565656;
    border-color: #969696;
}

.download_button div span {
    padding: 0 12px;
    color: #ef8c61;
}

.link_text {
    display: inline-block;
    max-height: 25px;
}

.download_text {
    display: inline-block;
    margin-left: 4px;
}

/* ____________________________ */
.custom_cooperation_row {
    padding: 50px 0;
    display: grid;
    gap: 24px;
}

@media (max-width: 576px) {
    .custom_cooperation_row {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .custom_cooperation_row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 993px) {
    .custom_cooperation_row {
        grid-template-columns: repeat(4, 1fr);
    }
}









/* =========  DESKTOP  ========= */
.service_img_slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-width: 35%;
    display: flex;
    /* əlavə */
    flex-direction: column;
    /* əlavə */
}

.slides-wrapper {
    flex: 1;
    /* əlavə */
    display: flex;
}

.slide {
    min-width: 100%;
    box-sizing: border-box
}

.slide img {
    width: 100%;
    display: block
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 8px 14px;
    cursor: pointer;
    z-index: 2;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
}

.slider-dots .dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background: #bbb;
    border-radius: 50%;
    display: inline-block
}

.slider-dots .dot.active {
    background: #333
}

/* ========  RESPONSİV (< 768px)  ======== */
@media (max-width:767px) {

    .service_img_calculator,
    .service_img_slider {
        display: none !important
    }

    /* desktop şəkli gizlə */

    .service_img_responsive {
        display: block !important
    }

    /* responsive bloku göstər */
}

/* responsive slayderin özü */
.resp_slider {
    position: relative;
    overflow: hidden;
    width: 100%
}

.resp_slides {
    display: flex
}

.resp_slide {
    min-width: 100%
}

.resp_slide img {
    width: 100%;
    display: block
}

.resp_arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4);
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 6px 12px;
    cursor: pointer
}

.resp_prev {
    left: 5px
}

.resp_next {
    right: 5px
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

#apply-btn {
    max-width: 140px;
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: var(--accent-bg-color);
    color: #fff;
    text-align: justify;
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-style: normal;
    font-weight: 500;
    line-height: var(--line-height);
    text-decoration: none;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Ümumi başlıq */
.page-title {
    text-align: center;
    font-size: 2.2rem;
    margin: 30px 0;
}

.ok {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service_img_calculator img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.service_img_calculator {
    max-height: 440px;
    width: 100%;
    margin-top: 15px;
}

.calculator_section {
    display: flex;
    flex-direction: column;
    gap: 90px;
    width: 100%;
}