/* Basic CSS Reset */

html {
    /* Color */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #ffffff52;
    --color-primary: #042033;
    --color-secondary: #41BFEE;
    --color-light-gray: #E1DFF4;
    /* Fonts */
    --font-primary: Cairo;
}

.container-css {
    width: 89%;
    margin: auto;

}

*,
:after,
:before {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    transition: 0.2s ease all;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: unset;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.top-right {
    position: absolute;
    top: 16px;
    right: 16px;
}
.top-right-main {
    position: absolute;
    top: 16px;
    /* right: 16px; */
}


/* Insert font*/

@font-face {
    font-family: Cairo;
    src: url(../fonts/Cairo-VariableFont_slnt\,wght.ttf);
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--color-primary);
    font-weight: 300;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--color-primary);
    font-weight: 300;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--color-primary);
    font-weight: 300;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--color-primary);
    font-weight: 300;
}


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}


/* Start Loader Style */

.hidden_loader {
    display: none !important;
}

.overlay_loader {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.837);
    transition: opacity 500ms;
    z-index: 1000;
    padding: 0;
    margin: 0;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.loader-demo-box {
    border-radius: 0.25rem !important;
}

.loader-demo-box {
    width: 100%;
    height: 200px;
}

.jumping-dots-loader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}

.jumping-dots-loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: var(--color-primary);
    margin: 35px 5px;
}

.jumping-dots-loader span:nth-child(1) {
    animation: bounce 1s ease-in-out infinite;
}

.jumping-dots-loader span:nth-child(2) {
    animation: bounce 1s ease-in-out 0.33s infinite;
}

.jumping-dots-loader span:nth-child(3) {
    animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {

    0%,
    75%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    25% {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}


/* End  Loader Style */


/* Start Popup Style */

.overlay {
    position: fixed;
    z-index: 9999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    margin: 100px auto;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: fit-content;
    position: relative;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.popup .otp-tittle {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-primary);
    text-align: center;
}

.popup .otp-tittle-free {
    font-size: 1.3rem;
    font-weight: bold;
    color: #41BFEE;
    font-family: var(--font-primary);
    text-align: center;
}

.popup .phone-number-text {
    font-family: var(--font-primary);
    color: var(--color-gray);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

/* free month */

.popup-test {
    margin: 100px auto;
    background: #fff;
    border-radius: 5px;
    position: relative;
    border-radius: 24px;
    max-height: 562px !important;
    height: 562px !important;
    max-width: 635px !important;
    width: 635px !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    -moz-border-radius: 24px;
}

.popup-test .otp-tittle {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-primary);
    font-family: var(--font-primary);
    text-align: center;
}

.popup-test .otp-tittle-free {
    font-size: 1.3rem;
    font-weight: bold;
    color: #41BFEE;
    font-family: var(--font-primary);
    text-align: center;
}

.popup-test .phone-number-text {
    font-family: var(--font-primary);
    color: var(--color-gray);
    text-align: center;
    font-weight: 400;
    font-size:24px;

}

.popup-test  .otp-number {
    width: 68px;
    height: 67px;
    border-radius: 10px;
    outline: none;
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    text-align: center;
}

.popup-test .otp-number-free {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    outline: none;
    border: 1px solid #41BFEE;
    background-color: none;
    color: var(--color-primary);
    text-align: center;
}

.code-otp {
    color: #41BFEE;
    text-align: center;
}


.p-free-test {
    font-size: 1rem;
    color: rgba(122, 122, 122, 1);
    font-weight: 400;
    margin: 20px 0px;
    text-align: center;
}

.close {
    width: 50px;
    height: 50px;
    position: absolute;
    text-align: center;
    line-height: 1;
    top: -20px;
    right: -20px;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 3s;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-primary);
}

.close-free {
    width: 40px;
    height: 40px;
    position: absolute;
    /* text-align: center; */
    /* line-height: 1; */
    top: 20px;
    left: 20px;
    display: flex;
    padding: 0.1rem;
    border-radius: 50%;
    transition: all 3s;
    font-size: 30px;
    font-weight: 700;
    /* font-weight: bold; */
    text-decoration: none;
    color: var(--color-white);
    background-color: white;
    border: 4px solid #41BFEE;
    color: #41BFEE;
    justify-content: center;
    align-items: center;
}

.close-modal {
    color: #41BFEE;
    font-size: 15px;
    /* position: relative; */
    z-index: 9999;
    left: -30px;
    top: 1px;

}

#emptyNumber {
    font-size: 16px;
    color: #ffa0a9;
    font-weight: 300;
    margin-top: 10px;
}

#codeOtp {
    font-size: 16px;
    color: #ffa0a9;
    font-weight: 300;
    margin-top: 10px;
    text-align: center;
}

.modal-content {
    padding: 20px 30px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.popup .otp-number {
    width: 68px;
    height: 67px;
    border-radius: 10px;
    outline: none;
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    text-align: center;
}

.popup .otp-div {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.popup .otp-div input {
    margin: 0.2rem;
}

.popup .otp-number {
    width: 68px;
    height: 67px;
    border-radius: 10px;
    outline: none;
    background-color: var(--color-light-gray);
    color: var(--color-primary);
    text-align: center;
}

.popup .otp-number-free {
    width: 68px;
    height: 67px;
    border-radius: 10px;
    outline: none;
    border: 1px solid var(--color-light-gray);
    background-color: none;
    color: var(--color-primary);
    text-align: center;
}

.code-otp {
    color: #41BFEE;
    text-align: center;
}

.popup .otp-number:focus {
    border: 2px solid var(--color-primary);
}

.popup .but-otp {
    display: block;
    text-align: center;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    width: 230px;
    border-radius: 12px;
    height: 55px;
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: none;
    outline: none;
    line-height: 1.5;
    font-size: 1.3rem;
    cursor: pointer;
}

.popup .not-received {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 1rem;
    text-align: center;
}
.popup-test .not-received {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 1rem;
    text-align: center;
}

.popup .resend {
    color: var(--color-primary) !important;
}


.eg_but:hover {
    background: red;
}

/* End Popup Style */



header {
    position: fixed;
    height: 70px;
    width: 100%;
    background-color: var(--color-primary);
    direction: rtl;
    z-index: 99;
    transition: all 0.5s ease-out;

}

.nav_fixed {
    background-color: white;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.nav_fixed nav a {
    color: #0e2738;
}

.fa-bars:before {
    color: #41BFEE;
}

/* .nav_fixed nav .about-courses {
    color:#41BFEE !important;
} */
/* .nav_fixed nav .contact-us {
    color:#41BFEE !important;
} */



.nav_fixed .cptpl_logo {
    display: none;

}

.nav_fixed .show-image {
    display: block;
}

.show-image {
    display: none;
}

nav {
    display: block;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
    margin: 0;
    padding: 0;
    height: 70px;
}

nav img {
    width: 150px;
    height: 38px;
}

#ham-menu {
    display: none;
}

nav ul a {
    color: var(--color-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.3rem;
    font-size: 1.1rem;
    font-family: var(--font-primary);
}

ul li a.active {
    color: var(--color-secondary) !important;
}

ul li a:hover {
    color: var(--color-secondary);
}


/* #ham-menu {
    display: none;
} */

nav ul.active {
    left: 0;
}

.rtl {
    direction: rtl;
}


/*Start Home Section */

.home {
    background-color: var(--color-primary);
    justify-content: center;
    align-items: center;
}

.main_title {
    color: #41BFEE;
    text-align: right;
    font-family: var(--font-primary);
    font-weight: 700;
    align-items: center;
    font-size: 3.2rem;
    line-height: 60px;
    padding-top: 0.5rem;
}

.discraption_text {
    font-size: 0.9em;
    text-align: justify;
    color: var(--color-white);
    line-height: 1.5;
    font-family: var(--font-primary);
}

.discraption_text_phone {
    display: none;
}

.titel-modal {
    color: #41BFEE;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.desription {
    text-align: center;
    font-size-adjust: cap-height 0.73;
    font-weight: 400;
    color: rgba(122, 122, 122, 1);
    margin-left: auto;
    margin-right: auto;


}

.close-modal {
    color: #41BFEE;
    font-size: 40px;
    position: absolute;
    z-index: 9999;
    left: 20px;
}

.modal-header {
    border: none;
}

.phone_number {
    min-width: 300px;
    display: block;
    height: 50px;
    margin: 0.4rem 0;
    padding: 0.5rem;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    color: var(--color-primary);
    font-size: 1.3rem;
    font-family: var(--font-primary);
    font-weight: 700;
    outline: none;
    text-align: right;
}

.reg_but {
    min-width: 300px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0.8rem 0rem 0.4rem;
    padding: 0.5rem;
    color: var(--color-white);
    text-align: right;
    /* margin: auto; */
    direction: rtl;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-size: 1.1em;
    font-weight: 400;
    outline: none;
    overflow: hidden;
    font-family: var(--font-primary);
    transition: all .3s ease;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.cptpl_subscribe {
    width:304px;
    height:54px;
    padding: 8px 109px 8px 109px;
    gap: 10px;
    border-radius: 10px 0px 0px 0px;
    opacity: 0px;
    display: flex;
    justify-content: center;
    text-align: center;
    margin:auto;
    margin: 0.8rem 0rem 0.4rem;
    padding: 0.5rem;
    color: var(--color-white);
    text-align: right;
    direction: rtl;
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    font-size: 1.1em;
    font-weight: 400;
    outline: none;
    overflow: hidden;
    font-family: var(--font-primary);
    transition: all .3s ease;
    border-radius: 10px;
}

.reg_but:hover {
    background-color: #80dbfb;
    border: 1px solid #80dbfb;
}

.input-form {
    background: none !important;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(24, 74, 107, 0.5);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
input-form-test {
    background: none !important;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(24, 74, 107, 0.5);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

::placeholder {
    color: rgba(179, 179, 179, 1);
}

.sectigo_seal {
    width: 300px;
    display: block;
    height: 55px;
    padding: 0.8rem 5rem 0 0.8rem;
}

.sup_title_rules a {
    text-decoration: underline;
    color: rgb(171, 167, 168);
}

.sup_title_rules {
    font-size: 0.65rem;
    color: #bcb7b7;
    margin: 0.3rem;
    text-align: right;
    padding-right: 28px;
    font-family: var(--font-primary);
}
.sup_title_rules-main {
    font-size: 0.65rem;
    color: #bcb7b7;
    margin: 0.3rem;
    text-align: right;
    padding-right: 28px;
    font-family: var(--font-primary);
    color:blue;
}


.price_title {
    font-size: 0.65rem;
    color: #767676;
    margin: 0.2rem 0.8rem;
    text-align: right;
    padding-right: 32px;
    list-style: none;
    font-family: var(--font-primary);
}

.desription-info {
    display: flex;
    margin-right: 20px;
}

.image-header .Elforma_main {
    width: 90%;
    height: 90%;
    margin-left: auto;
    object-fit: contain;
    margin-right: 400px;

}

.desription-info .square {
    margin-top: 18px;
    background: #fff;
    width: 5px;
    height: 5px;


}

.div_icon {
    min-width: 300px;
    float: right;
    display: flex;
    justify-content: center;
}

.operator_icon {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    margin: 0.2rem;
}

.phone_media {
    display: none !important;
}


/*End Home Section */


/* Start Application Section*/

.application {
    background-color: #ffffff;
    display: flex;
    font-family: var(--font-primary);
    font-weight: 600;
}

.title_app {
    font-size: 3.2em;
    line-height: 60px;
    text-align: right;
    letter-spacing: 0.02em;
    color: #042033;
    font-family: var(--font-primary);
    font-weight: 700;
}

.discraption_app {
    font-size: 1.1rem;
    text-align: justify;
    color: #042033;
    line-height: 1.5;
    direction: rtl;
}

.app_Elforma {
    width: 450px;
    height: 511px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
}
.app_Elforma-test {
    width: 100%;
    height: 900px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
}
.ul_app_logo {
    justify-content: center;
    display: flex;

}

.app_logo {
    width: 150px;
    height: 51px;
}


/* End  Application Section*/


/* Start Count style */

.rectangle {
    text-align: center;
    padding: 35px 10px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: -126px;
    font-family: var(--font-primary);
    font-weight: 700;
}
.rectangle-test {
    text-align: center;
    padding: 35px 10px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    position: relative;
    z-index: 10;
    overflow: hidden;
    margin-top: -126px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.ul_count {
    justify-content: space-evenly;
    display: flex;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.ul_count li span {
    font-size: 1.8em;
    font-weight: bold;
}


/* End Count Style */


/* Start slider Style */

.famous_programs {
    background-color: #042033;
    background-image: url(../img/wave_bg.png);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
}

.famous_programs_text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.8em;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 20px;
}

.ul_count {
    justify-content: space-evenly;
    display: flex;
    font-family: var(--font-primary);
    line-height: 1.2;
}

.ul_count p {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.ul_count li span {
    font-size: 1.8em;
    font-weight: bold;
}

.card_blog {
    background: linear-gradient(180deg, rgba(18, 25, 34, 0) 0%, #042033 80.21%);
    padding: 20px 10px;
    color: #ffffff;
    bottom: 0px;
    height: 85px;
    position: sticky;
    width: -webkit-fill-available;
    z-index: 5;
}

.card_blog h6 {
    text-align: center;
    margin: 0;
    font-size: 1.2em;
    font-family: var(--font-primary);
    color: #ffffff;
    font-weight: 600;
    width: -webkit-fill-available;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs_title {
    text-align: center;
    float: right;
    direction: rtl;
    font-size: 0.9em;
    font-weight: 400;
    font-family: var(--font-primary);
    color: #ffffff;
    width: -webkit-fill-available;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs_section_definition_main {
    font-family: var(--font-primary);
    font-size: 0.875em;
    text-align: center;
    font-weight: 400;
    color: #cdcdcd;
    direction: rtl;
}

.blogs_section_definition {
    font-family: var(--font-primary);
    font-size: 0.875em;
    text-align: justify;
    font-weight: 400;
    color: #cdcdcd;
    direction: rtl;
}

.blogs_section_definition p {
    text-align: justify;
}

.sliderContainer {
    overflow-x: auto;
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    overflow-y: hidden !important;
}

.sliderContainer::-webkit-scrollbar {
    display: none;
}

.box {
    height: 285px;
    width: 275px;
    flex-shrink: 0;
    margin: 0.3rem 0.2rem;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    width: auto;
    padding: 10px;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    margin-top: 125px;
}

.next {
    right: 5%;
    border-radius: 3px;
    margin-right: 5.5px;
}

.prev {
    left: 5%;
    border-radius: 3px;
    margin-left: 5.5px;
}

.prev:hover,
.next:hover {
    background-color: var(--color-secondary);
    color: #FFFFFF;
}


/* End slider Style */


/* Start Article Section Style*/

.article_section {
    padding: 30px 30px 0px;
    display: flex;
    font-family: var(--font-primary);
    font-weight: 600;
    direction: rtl;
}

#first_article {
    background-color: #0e2738;
    padding: 0.8rem 0.5rem;
    border-radius: 18px;
    text-align: center;
    min-height: 250px;
    width: 33%;
    border: 2px solid #fff;
    margin: 0.5rem;
}

#second_article {
    background-color: #0e2738;
    padding: 0.8rem 0.5rem;
    border-radius: 18px;
    text-align: center;
    min-height: 250px;
    width: 33%;
    border: 2px solid #fff;
    margin: 0.5rem;
}

#third_article {
    background-color: #0e2738;
    padding: 0.8rem 0.5rem;
    border-radius: 18px;
    text-align: center;
    min-height: 250px;
    width: 33%;
    border: 2px solid #fff;
    margin: 0.5rem;
}

.article_icon {
    width: 65px;
    height: 65px;
    padding: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.article_section h2 {
    font-size: 1.1em;
    margin: 0.2rem 0;
    line-height: 1.2;
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
}


/* End Article Section Style*/

.main-form {
    background-color: #fff;
    padding: 20px;
}


/* Start  Footer Section */

footer {
    display: block;
    text-align: center;
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 2rem 0.5rem;
}

.copy_right_footer {
    font-family: var(--font-primary);
    font-weight: 500;
    color: #FFFFFF;
    font-size: 1rem;
}

.copy_right_footer:hover {
    color: var(--color-white);
}

.ul_footer {
    display: flex;
}

.ul_footer li {
    padding: 0 0.2rem;
}

.ul_footer li a {
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9em;
}

.footer_logo {
    width: 150px;
    height: 38px;
    float: right;
    position: absolute;
    right: 2px;
    margin: 0.5rem;
}

.footer_keyword {
    display: flex;
    text-align: center;
    justify-content: center;
    margin: 0;
    line-height: 1.3;
}

.footer_keyword li {
    padding: 0.2rem 0.4rem;
}

.footer_keyword li a {
    font-family: 'Cairo', sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
}

.footer_keyword a h3 {
    font-family: var(--font-primary);
    color: #bcb7b7;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.2rem;
}

.footer_keyword a h3:hover {
    color: #41BFEE;
}

.footer_social {
    display: flex;
    justify-content: center;
}

.footer_social a {
    margin: 0.2rem;
}

.social_icon {
    width: 22px;
    height: 22px;
}


/* End Footer Section */


/* start  Back to Top style*/

#back_to_top i:before {
    margin: 0;
    font-size: var(--font-size-medium);
}

#back_to_top {
    text-align: center;
    display: none;
    position: fixed;
    height: 40px;
    width: 40px;
    bottom: 30px;
    left: 30px;
    background: var(--color-secondary);
    border: 0;
    color: var(--color-white);
    outline: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-property: background-color, color;
    transition-property: background-color, color;
    z-index: 5;
}

#back_to_top i {
    line-height: 40px;
}

#back_to_top:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btnEntrance {
    -webkit-animation: 2000ms ease-in-out 0s normal none 1 running bounceInUp;
    animation: 2000ms ease-in-out 0s normal none 1 running bounceInUp;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


/* End  Back to Top style*/

.warning_icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 8px auto;
}


/* Start Page Section Style */

.page_section {
    background-image: url(../img/wave_bg.png);
    direction: rtl;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 90px 0;
    min-height: 100vh;
}

.page_title {
    text-align: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
}

.paragraph_page {
    text-align: justify;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.0rem;
}
