.content_section {
    overflow-x: hidden;

    .container {
        display: flex;
        justify-content: center;
        gap: 44px;

        @media (max-width:778px) {
            flex-direction: column;

        }

        .pagesTap {
            list-style: none;
            max-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            flex: 1 1 100%;
            padding: 0;

            @media (max-width:778px) {
                flex-direction: row;
                flex-wrap: wrap;
                max-width: 100%;
            }

            li {
                display: flex;

                @media (max-width:778px) {
                    flex: 1 1 100%;
                    max-width: calc(100% / 2 - 12px);
                }

                @media (max-width:480px) {
                    flex: 1 1 100%;
                    max-width: 100%;
                }

                a {
                    color: #4C4C4CBD;
                    font-size: clamp(16px, 1.6vw, 24px);
                    font-weight: 600;
                    line-height: clamp(26px, 2.4vw, 36px);
                    letter-spacing: 0.01em;
                    text-decoration: none;
                    border-radius: 8px;
                    -webkit-border-radius: 8px;
                    -moz-border-radius: 8px;
                    -ms-border-radius: 8px;
                    -o-border-radius: 8px;
                    padding: 6px 10px;
                    flex: 1 1 100%;
                    transition: .5s all ease;
                    -webkit-transition: .5s all ease;
                    -moz-transition: .5s all ease;
                    -ms-transition: .5s all ease;
                    -o-transition: .5s all ease;
                    position: relative;

                    &::before {
                        position: absolute;
                        bottom: 0;
                        left: -4px;
                        content: "";
                        background-color: #BB9B15;
                        height: 0;
                        width: 4px;
                        transition: .5s height ease;
                        -webkit-transition: .5s height ease;
                        -moz-transition: .5s height ease;
                        -ms-transition: .5s height ease;
                        -o-transition: .5s height ease;
                    }

                    &.active::before,
                    &:not(.active):hover::before {
                        height: 100%;
                    }

                    &.active,
                    &:not(.active):hover {
                        background-color: #FFFBEB99;
                        color: #04005F;
                    }
                }
            }

        }

        .containerPage {
            display: flex;
            flex-direction: column;
            row-gap: 16px;

            @media (max-width:1200px) {
                & {
                    row-gap: 48px;
                }
            }

            @media (max-width:1024px) {
                & {
                    row-gap: 32px;
                }
            }

            @media (max-width:778px) {
                & {
                    row-gap: 0px;
                }
            }

            .sectionContent {
                display: flex;
                flex-direction: column;
                overflow: visible;
                gap: 12px;

                .titleSection {
                    color: #04005F;
                    font-size: clamp(18px, 2vw, 32px);
                    font-weight: 600;
                    line-height: clamp(30px, 2.4vw, 48px);
                    letter-spacing: 0.01em;
                    margin-bottom: 0;
                }

                .textSection {
                    margin-bottom: 0;
                    font-size: clamp(16px, 1.8vw, 20px);
                    font-weight: 400;
                    line-height: clamp(26px, 4.4vw, 41px);
                    color: #4C4C4C;
                    p{
                        margin-bottom: 0;
                    }
                }

                ul {

                    padding-left: 2rem;
                    padding-right: 0;

                    li {
                        margin-bottom: 0;
                        font-size: clamp(16px, 1.6vw, 24px);
                        font-weight: 400;
                        line-height: clamp(26px, 4.4vw, 41px);
                        color: #4C4C4C;

                        ul {
                            list-style-type: disc;
                        }
                    }
                }
            }
        }

    }
}

html[dir="rtl"] .content_section .container .pagesTap li a {
    left: initial;
    right: -4px;
}

.part {
    max-width: 700px;
    margin-inline: auto;
}

.content_section .title_page {
    font-size: clamp(20px, 3vw, 52px);
    line-height: clamp(32px, 5.5vw, 61px);
    padding-block: 10px;
    margin-bottom: 0;
}

.contactUsContent input,
.contactUsContent select {
    padding: 16px 30px;
}

.contactUsContent .field label:not([for="attach_cv"]) {
    z-index: 1;
}

.contactUsContent .field label[for="attach_cv"] {
    position: static;
    width: 100%;
    height: 100%;
    color: var(--secondary-black);
    display: flex;
    align-items: center;
    border: 1px solid var(--secondary-black);
    width: 100%;
    border-radius: 96px;
    -webkit-border-radius: 96px;
    -moz-border-radius: 96px;
    -ms-border-radius: 96px;
    -o-border-radius: 96px;
    padding: 12px 32px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    font-weight: 500;
}

.contactUsContent .field button.submit {
    margin-inline: auto;
    padding: 12px 70px 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: white;
    background-color: var(--main-blue);
    width: fit-content;
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 30px;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

.contactUsContent .field button.submit:hover {
    scale: 1.05;
}

.contactUsContent h2 {
    color: var(--main-blue);
}

.contactUsContent p {
    font-size: clamp(16px, 1.6vw, 24px);
    font-weight: 400;
    line-height: 41.25px;
    color: var(--secondary-black);
    margin-bottom: 0;
}

.field {
    position: relative;

    p {
        font-size: 16px;
        font-weight: 400;
        line-height: 23.52px;
        color: var(--secondary-black);
    }
}

.part_calculator {
    background: #F9F5E8;
    color: black;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 650px;
}

input {
    border: 1px solid var(--secondary-black);
}

input[type="file"] {
    color: transparent;

}

.contactUsContent input,
.contactUsContent select {
    width: 100%;
    outline: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 12px 32px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
}

.contactUsContent textarea {
    resize: none;
    height: 106px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 20px 24px;
}

html[dir="ltr"] {
    .kd {
        background: url(../images/KD.png) no-repeat, transparent;
        background-position: calc(100% - 20px);
    }

    .arrow {
        background: url(../images/arrowSelectDown.png) no-repeat, transparent;
        background-position: 20px;

    }

    .upload {
        background: url(../images/Upload.png) no-repeat, transparent;
        background-position: 20px;

    }
}

html[dir="ltr"] {
    .kd {
        background: url(../images/KD.png) no-repeat, transparent;
        background-position: calc(100% - 20px);
    }

    .arrow {
        background: url(../images/arrowSelectDown.png) no-repeat, transparent;
        background-position: calc(100% - 20px);
    }

    .upload {
        background: url(../images/Upload.png) no-repeat, transparent;
        background-position: calc(100% - 20px);

    }
}

label {
    position: absolute;
    top: -14px;
    right: 30px;
    font-size: 14px;
    font-weight: 800;
    line-height: 21.87px;
    color: var(--main-yellow);
    background-color: #FFF;
    padding: 4px 8px;
    width: fit-content;
}

html[dir="rtl"] label.text_button_attach {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

}

html[dir="ltr"] label {
    position: absolute;
    top: -14px;
    left: 28px;
    font-size: 14px;
    font-weight: 800;
    line-height: 21.87px;
    color: var(--main-yellow);
    background-color: #FFF;
    padding: 4px 8px;
}

html[dir="ltr"] label.text_button_attach {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

}

.calculate {
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 700;
    line-height: 33px;
    background-color: var(--main-blue);
    color: white;
    padding: 12px 35px;
    width: 100%;
    border: 0;
    max-width: 217px;
    border-radius: 10px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

html[dir="rtl"] .content_section {
    & .container {
        & .containerPage {
            & .sectionContent {
                ul {
                    padding-left: 0;
                    padding-right: 2rem;
                }
            }
        }

        & .pagesTap {
            & li {
                & a {
                    &::before {
                        right: -4px;
                        left: initial;
                    }
                }
            }
        }
    }
}