/* CSS Document */


.plan-i-ar {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 30px;
    background: var(--white);
    color: var(--third-color);
    text-align: center;
    border-radius: 50px;
    margin-left: 5px
}

.plan-i-en {
    font-size: 16px;
    width: 35px;
    height: 35px;
    line-height: 30px;
    background: var(--white);
    color: var(--third-color);
    text-align: center;
    border-radius: 50px;
    margin-right: 5px
}

.left-section {
    float: none;
    width: 100%;
    padding-right: 0px;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ar-font {
    font-family: 'Manrope', sans-serif;
}

.en-font {
    font-family: 'Roboto', sans-serif
}

.title h6 {

    line-height: 0px;
    padding-top: 0px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);

}

.title-ar h6 {

    line-height: 0px;
    padding-top: 0px;
    margin-top: 15px;
    font-size: 19px;
    font-weight: 600;
    color: var(--white)
}


.left-section h6.show {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInRightTitle 1s forwards;
}

.left-section h2.show {
    opacity: 1;
    animation: slideInLeftTitle 1s forwards;
}

.left-section-inner h6,
.left-section-inner h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

/* Animation triggers only when .active is added */
.left-section-inner.active h6 {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInRightTitle 1s forwards;
}

.left-section-inner.active h2 {
    opacity: 1;
    transform: translateY(0);
    animation: slideInLeftTitle 1s forwards;
}

@keyframes fadeInRightTitle {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeftTitle {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.right-section {
    float: none;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-section h1 {
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-color)
}

.title {
    font-style: normal;
    font-weight: 400;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 0px;
    margin-bottom: 10px;
    margin-top: 55px;
    width: auto;
    height: 35px;
    text-align: center;
    overflow: hidden;
    background-color: var(--third-color);
    padding-left: 0px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 50px;
}

.title-ar {
    font-style: normal;
    font-weight: 400;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 0px;
    margin-bottom: 30px;
    margin-top: 55px;
    width: auto;
    height: 35px;
    text-align: center;
    overflow: hidden;
    background-color: var(--third-color);
    padding-left: 10px;
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 50px;
}

.subtitle {
    font-family: "Spline Sans", sans-serif;
    font-style: normal;
    font-size: 38px;
    font-weight: 700;
    color: rgb(17, 61, 72);
    line-height: 44px;
    margin-top: 0;
    margin-bottom: 15px
}

.subtitle h5 {
    color: var(--primary-color)
}

.description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(110, 112, 112);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
    vertical-align: middle
}

/*Arabic Section before */
.left-section {
    float: none;
    width: 100%;
    padding-right: 0px;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-section-ar {
    float: none;
    width: 100%;
    padding-left: 0px;
    padding-top: 0px;
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-section-ar h1 {
    text-align: right;
    font-family: 'Cairo', 'Amiri', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: var(--primary-color)
}


.subtitle-ar {
    font-family: 'Cairo', 'Amiri', sans-serif;
    font-style: normal;
    font-weight: 700;
    color: rgb(17, 61, 72);
    font-size: 28px;
    line-height: 24px;
    margin-top: 20;
    margin-bottom: 2px
}

.description-ar {
    font-family: 'Cairo', 'Amiri', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(110, 112, 112);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {

    .left-section,
    .right-section,
    .left-section-ar,
    .right-section-ar {
        float: none;
        width: 100%;
        padding: 0;
    }

    .subtitle {
        font-size: 20px;
    }
}