* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

body {
    background-color: #eaf3f6;
    direction: rtl;
    font-family: 'tajawal', serif;
    color: #1f1f1f;
    overflow-x: hidden !important;
}

::selection {
    color: white;
    background: #43899d;
}

/* width */

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

/* Track */

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

/* Handle */

::-webkit-scrollbar-thumb {
    background: #43899e !important;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.tilt {
    transform-style: preserve-3d;
}

.tilt-logo-inner {
    transform: translateZ(20px);
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 99999999;
}

.loader img {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader .back {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: #eaf3f6;
}

.container {
    margin: auto;
    max-width: 1400px !important;
}

header>div {
    max-width: 1400px;
}

footer {
    display: none !important;
}

section {
    padding: 75px 0;
    position: relative;
}

section:after {
    /*content: '';*/
    position: absolute;
    width: 373px;
    height: 373px;
    border-radius: 373px;
    background: rgba(62, 134, 156, 0.2);
    filter: blur(83.5px);
    left: -30%;
    bottom: 0;
    z-index: -1;
}

section:before {
    /*content: '';*/
    position: absolute;
    width: 373px;
    height: 373px;
    border-radius: 373px;
    background: rgba(62, 134, 156, 0.2);
    filter: blur(83.5px);
    right: -30%;
    top: 0;
    z-index: -1;
}

.soon {
    background: #BB9F64 !important;
}

.main-btn {
    position: relative;
    background: rgb(80, 182, 214);
    background: linear-gradient(74deg, #43899d 0%, rgba(71, 187, 223, 1) 100%);
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.main-btn:hover {
    background: linear-gradient(174deg, #43899d 0%, #47BBDFFF 100%);
    color: white;
}

header {
    border: 0 !important;
    backdrop-filter: blur(41px) !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

header>div {
    margin: auto;
}

header>div>div {
    margin: 0 !important;
}

header .abjad-btn-primary {
    background: linear-gradient(74deg, #43899d 0%, rgba(71, 187, 223, 1) 100%);
}

header nav {
    margin: auto;
}

header nav ul {
    background: transparent !important;
}

header nav li a {
    transition: .3s ease-in-out;
}

header nav li a:hover {
    background: linear-gradient(74deg, #43899d 0%, rgba(71, 187, 223, 1) 100%) !important;
    color: white !important;
    border-radius: 20px;
}

nav a.active {
    background: linear-gradient(74deg, #43899d 0%, rgba(71, 187, 223, 1) 100%) !important;
    color: white !important;
    border-radius: 20px;
}

.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    70% {
        transform: translateY(0%);
    }
    80% {
        transform: translateY(-15%);
    }
    90% {
        transform: translateY(0%);
    }
    95% {
        transform: translateY(-7%);
    }
    97% {
        transform: translateY(0%);
    }
    99% {
        transform: translateY(-3%);
    }
    100% {
        transform: translateY(0);
    }
}

.float-message {
    position: fixed;
    bottom: 50px;
    left: 50px;
    z-index: 6;
}

.float-message .message {
    background: white;
    border-radius: 16px;
    padding: 8px;
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: .8s ease-in-out;
}

.float-message .message.start-typing {
    right: -65px;
    opacity: 1;
}

.float-message .message.coupon-message {
    width: 260px;
    right: -300px;
}

.float-message .message.coupon-message.start-typing {
    right: -280px;
}

.float-message .message:before {
    display: block;
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent white transparent transparent;
    position: absolute;
    left: -7px;
    top: 13px;
}

.float-message .message.coupon-message:before {
    top: 33px !important;
}

.float-message .message .message-loading span {
    width: 7px;
    height: 7px;
    background: #3E869C;
    border-radius: 50%;
    display: inline-block;
    margin: 2px;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1400ms ease-in-out infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.float-message .message .message-loading span:nth-child(2) {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.float-message .message .message-loading span:last-child {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

@-webkit-keyframes bouncedelay {
    0%,
    80%,
    100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    40% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.whatsapp {
    width: 70px;
    height: 70px;
    padding: 10px;
    background: #4aa6c3;
    border-radius: 50%;
}

.whatsapp span {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: orangered;
    border-radius: 50%;
    text-align: center;
    color: white;
    line-height: 20px;
    font-size: 13px;
}

/*Hero*/

.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero .row {
    align-items: center;
}

.hero h1 {
    font-size: 90px;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-btn-groups {
    position: relative;
    top: 16px;
    display: flex;
}

.hero h1 span {
    color: #43899d;
    letter-spacing: 2px;
}

.hero p {
    font-size: 24px;
    font-weight: 100;
    max-width: 900px;
    margin: 170px;
    transition: .6s ease-in-out;
}

.hero p.ready {
    margin: 0;
}

a.main-btn:before {
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transition: 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero a.main-btn {
    min-width: 170px;
    display: flex;
    justify-content: center;
}

.hero .sco-hero {
    text-decoration: none;
    padding: 15px 20px 15px 76px;
    font-size: 19px;
    position: relative;
    right: 56px;
    color: #3E869C;
}

.hero .sco-hero:before {
    content: '';
    width: 26px;
    height: 26px;
    background-image: url("https://i.ibb.co/MCngzLK/arrow.png");
    position: absolute;
    right: -10px;
    background-position: center;
    background-repeat: no-repeat;
}

a.main-btn:hover:before {
    left: -10px;
}

.hero .left-shape {
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 0;
}

.hero .right-shape {
    position: absolute;
    bottom: -470px;
    right: -20px;
}

.hero .hero-hand {
    position: absolute;
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
    z-index: 9;
    transition: .4s ease-in-out;
}

.logos img {
    margin: 12px 0 12px 16px;
    max-height: 40px
}

/* categories */

.cati .box {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: -10px 14px 34px 0px rgba(62, 134, 156, 0.1);
    backdrop-filter: blur(41px);
}

.cati .box h3 {
    font-size: 25px;
    font-weight: bold
}

.cati .box p {
    font-size: 16px;
    line-height: 1.2;
    margin-top: 4px;
    text-align: center;
}

.cati .box img {
    padding: 15px 15px 5px;
}

/* New courses */

.new-courses .box {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
    padding: 16px;
}

.new-courses h2 {
    font-weight: bold;
    font-size: 42px;
    color: #3E869C;
    max-width: 240px;
    letter-spacing: 2px;
}

.new-courses h2 span {
    color: #bb9f64;
}

.new-courses .box a {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #3E869C;
    font-weight: 600;
}

.new-courses .box img {
    border-radius: 4px;
    min-height: 270px;
    width: 100%;
    margin-bottom: 8px
}

.new-courses .box a {
    display: inline-block;
    text-decoration: none;
}

.mo-img {
    position: fixed;
    inset: 0 0 0 0;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mo-img img {
    max-width: 600px;
    width: 90%;
    border-radius: 12px;
}

.mo-pop {
    cursor: pointer
}

/*About Section */

.about-us h2 {
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #3E869C;
    position: relative;
    right: 24px;
    letter-spacing: 1px;
}

.signature {
    position: absolute;
    left: 10px;
    bottom: -20px;
}

.about-us .box {
    border-radius: 10px;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.50) -0.3%, rgba(255, 255, 255, 0.11) 52.58%, rgba(255, 255, 255, 0.50) 104.38%);
    box-shadow: -10px 14px 34px 0px rgba(62, 134, 156, 0.10);
    backdrop-filter: blur(41px);
    padding: 63px 45px;
    position: relative;
    top: 80px;
    line-height: 1.3;
}

.about-us .box p {
    font-size: 20px;
    text-align: justify;
    justify-content: center;
    line-height: 1.5;
    font-weight: 500;
}

.brain-box {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    top: 80px;
}

.brain-box img {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.brain-box .circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    background: rgba(255, 255, 255, .3);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.brain-box .circle p {
    position: absolute;
    border-radius: 10px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.4);
    color: #3E869C;
    box-shadow: -10px 14px 34px 0 rgba(62, 134, 156, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px;
    animation: revrotate 20s linear infinite;
    transition: .3s ease-in-out;
}

.brain-box .circle p:first-child {
    top: 0;
    left: 40%;
}

.brain-box .circle p:nth-child(2) {
    top: 50%;
    left: 0;
}

.brain-box .circle p:nth-child(3) {
    bottom: 0;
    left: 40%;
}

.brain-box .circle p:nth-child(4) {
    top: 30%;
    right: 0;
}

.brain-box .circle p:nth-child(5) {
    top: 70%;
    right: 0;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes revrotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes revrotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*categories*/

.categories h2 {
    font-size: 42px;
    font-weight: 800;
    color: #3E869C;
}

.categories ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.categories ul li {
    font-weight: 600;
    padding: 4px;
    font-size: 24px;
    cursor: pointer;
    transition: .4s ease-in-out;
    position: relative;
}

.categories ul li.active {
    color: #bb9f64;
    position: relative;
}

.categories ul li:before {
    content: '';
    background-color: #bb9f64;
    height: 4px;
    width: 120%;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s ease-in-out;
    opacity: 0;
}

.categories ul li.active:before {
    opacity: 1;
    bottom: -10px;
}

.categories ul li:not(:last-child) {
    margin-left: 30px;
}

.categories .categories-courses {
    flex-wrap: wrap;
}

.categories .card {
    border-radius: 10px;
    border: 1px solid #F9F5EB !important;
    background: rgba(255, 255, 255, 1);
    box-shadow: -10px 14px 34px 0px rgba(62, 134, 156, 0.10) !important;
    backdrop-filter: blur(11px);
    width: 420px !important;
    margin: 0 auto 25px;
    overflow: hidden;
    padding: 12px;
}

.categories .card .course-image>img {
    height: 200px;
    object-fit: cover;
    display: block;
    width: 100%;
    border-radius: 10px;
}

.categories .card-subtitle {
    border-radius: 3px;
    background: linear-gradient(180deg, #50B6D6 0%, #3E869C 100%);
    display: inline-block !important;
    width: fit-content;
    padding: 4px 12px;
    font-size: 13px;
    color: white;
    margin-bottom: 8px;
}

.categories .card .course-title {
    font-size: 21px;
    font-weight: 600;
    color: #1f1f1f;
}

.categories .teacher {
    font-size: 16px;
}

.categories .edu {
    font-size: 12px;
    color: #697585;
}

.categories .price {
    color: #529c3e;
    font-weight: 700;
}

.categories .main-btn {
    width: 100%;
    text-align: center;
    padding-left: 20px;
}

.categories-courses .course-image {
    position: relative;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

.categories-courses .course-image>img {
    opacity: .4;
}

.categories-courses .course-image .count {
    background-color: #FFF;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 18px 16px 12px;
}

.categories-courses .course-image .count img {
    max-width: 40px;
    display: block;
    margin: auto;
    position: absolute;
    top: -24px;
    left: 50%;
    border-radius: 6px;
    transform: translateX(-50%);
}

.categories-courses .course-image .countdown {
    display: flex;
}

.categories-courses .course-image .countdown div {
    text-align: center;
    font-size: 14px;
}

.categories-courses .course-image .countdown span {
    font-size: 26px;
    font-weight: 600;
    color: #3E869C;
    line-height: 16px;
    margin-top: 8px;
    display: inline-block;
}

/*rate*/

.rate h2 {
    font-size: 42px;
    font-weight: 900;
    color: #3E869C !important;
}

.ration {
    margin-top: 50px
}

.rate .box {
    width: 447px;
    margin: 0 20px;
    border-radius: 10px;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.50) -0.3%, rgba(255, 255, 255, 0.11) 52.58%, rgba(255, 255, 255, 0.50) 104.38%);
    backdrop-filter: blur(41px);
}

.rate .box .review {
    width: 80%;
    margin: auto;
    font-size: 18px;
}

.rate .box .qoute {
    margin: 30px;
}

.rate .box .name {
    border-radius: 10px;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.50) -0.3%, rgba(255, 255, 255, 0.11) 52.58%, rgba(255, 255, 255, 0.50) 104.38%);
    text-align: center;
    width: 100%;
    padding: 20px 0 !important;
    margin-top: 30px;
}

.rate .box .name p {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 4px;
}

.rate .box .name span {
    font-size: 14px;
    color: #697585;
}

/*Panner*/

.banner .col-12 {
    height: 350px;
    background-image: url('https://i.ibb.co/qdkV4YN/banner.png');
    background-size: 100% 100%;
}

.banner * {
    color: white !important;
}

.partners img {
    width: 100px;
}

/*partners*/

.partners .col-md-2 {
    display: flex;
    justify-content: center;
    align-items: center
}

/*testimonials*/

.testimonials .container {
    overflow-x: hidden;
    overflow-y: visible;
    padding: 64px 0;
}

.testimonials h2 {
    color: #3E869C;
    font-size: 42px;
}

.testimonials-slider {
    margin-top: 40px;
}

.testimonials .box {
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.50) -0.3%, rgba(255, 255, 255, 0.11) 52.58%, rgba(255, 255, 255, 0.50) 104.38%);
    box-shadow: -10px 14px 34px 0px rgba(62, 134, 156, 0.10);
    backdrop-filter: blur(41px);
    min-height: 100%;
}

.testimonials .box img {
    padding: 24px
}

.testimonials .box p {
    min-height: 180px;
    padding: 0 24px 24px
}

.testimonials .box h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    background-color: white;
    padding: 20px;
}

.testimonials .slick-list {
    overflow: visible !important;
}

/*Contact*/

.contact label {
    display: block;
    margin-bottom: 8px;
}

.contact input,
.contact textarea,
.contact select {
    background-color: #D9E8ED;
    border-radius: 8px;
    border: none
}

.pay-meth {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact .form-control:disabled {
    background-color: #D9E8ED !important;
}

.contact .form-check .form-check-input {
    float: none;
    margin-left: 8px;
}

.contact .form-check-input {
    appearance: auto;
    border: 0;
}

.tamara {
    height: 93px;
    width: 100%;
    object-fit: cover;
    object-position: 0px -12px;
    border-radius: 10px;
}

.label-cont {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.label-cont input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #FFF !important;
    border-radius: 50%;
}

.label-cont input:checked~.checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.label-cont input:checked~.checkmark:after {
    display: block;
}

.label-cont .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/*Footer*/

.footer {
    padding: 50px 0 !important;
    backdrop-filter: blur(41px) !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

.footer a {
    color: #1f1f1f;
    text-decoration: none;
}

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

.footer h5 {
    font-weight: bold;
    margin-bottom: 23px
}

.footer ul li {
    margin-right: 0px;
    padding-right: 0px;
    margin-bottom: 12px
}

.footer ul a {
    color: #1f1f1f;
    position: relative;
}

.footer ul a:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    background: #3E869C;
    right: -14px;
    opacity: 0;
    transition: .3s ease-in-out;
}

.footer ul a:hover:before {
    opacity: 1;
    right: -10px;
}

.footer .logo {
    max-width: 450px;
}

.footer .footer-links {
    max-width: 180px;
}

.footer .footer-links.location {
    max-width: 250px;
}

.footer .rights {
    background-color: #43899e;
}

/*About page*/

.breadcrumbs {
    height: 300px;
    background-image: url('../img/about-bg.png');
    position: relative;
    /* background-attachment: fixed; */
    background-position: center;
    color: #FFFFFF;
    background-size: 100%;
}

.heading-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: white;
}

.heading-title img {
    width: 90px;
    height: 20px;
    margin-left: 4px;
}

.breadcrumbs:after {
    content: '';
    position: absolute;
    inset: 0 0 0 0;
    opacity: 0.7;
    background: linear-gradient(265deg, #044F66 -1.69%, #012D3A -1.67%, #007599 102.46%);
    backdrop-filter: blur(20px);
    z-index: 3;
}

.breadcrumbs h1 {
    font-weight: 800;
    font-size: 80px;
    position: relative;
    z-index: 4;
}

.breadcrumbs a {
    color: #FFF;
    font-size: 20px;
    font-weight: 100;
    line-height: 35px;
    letter-spacing: 0.48px;
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    z-index: 8;
}

.about-images img {
    margin: 0 15px;
}

.about-paragraph .col-md-2 {
    position: relative;
}

.about-paragraph h2 {
    font-size: 42px;
    color: #3E869C !important;
    font-weight: bold;
    position: sticky;
    top: 120px;
}

.about-paragraph h2 span {
    color: #bb9f64;
}

.about-paragraph p {
    margin-bottom: 50px;
    font-size: 22px;
    line-height: 2rem;
}

.about-paragraph p:last-child {
    margin-bottom: 0;
}

.about-categories h2,
.about-partners h2 {
    font-size: 42px;
    color: #3E869C !important;
    font-weight: bold;
    text-align: center;
}

.about-categories h2 span,
.about-partners h2 span {
    color: #bb9f64;
}

.about-partners img {
    width: 150px;
}

.footer h5 {
    color: #044F66;
}

/*FAQ*/

.faq {
    cursor: pointer;
    position: relative;
    color: #555;
}

.faq:after {
    content: '';
    position: absolute;
    top: 25px;
    left: 10px;
    width: 20px;
    height: 20px;
    background-image: url("../img/chevron.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.faq span {
    color: rgba(71, 187, 223, 1);
}

.faq .mt-2 {
    max-height: 0 !important;
    overflow: hidden;
    transition: 1s ease-in-out;
}

.faq.read .mt-2 {
    max-height: 1400px !important;
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: center;
    }
}

/*Responsive*/

@media only screen and (max-width: 768px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }
    .container {
        padding-right: 20px !important;
        padding-left: 20px !important;
        width: 98% !important;
        margin: auto !important;
    }
    .signature {
        position: static;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    span {
        letter-spacing: -1px !important;
    }
    .slide-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -70px;
        width: 0;
        background: rgba(255, 255, 255, 1) !important;
        z-index: 99;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
        overflow: hidden;
    }
    .slide-nav.open-nav {
        width: 80vw;
    }
    .slide-nav li {
        margin: 12px 0;
        padding: 6px 24px;
        white-space: nowrap;
    }
    a.main-btn {
        padding: 8px 10px;
    }
    .hero {
        height: 80vh;
    }
    .hero .left-shape {
        z-index: -1;
    }
    .hero .hero-hand,
    .hero .left-shape,
    .hero .right-shape {
        display: none;
    }
    .hero .col-md-6 {
        text-align: center;
    }
    .hero-logo {
        max-width: 30vw;
        margin-bottom: 20px;
    }
    .hero h1 {
        font-size: 40px;
        text-align: center;
        margin-bottom: 6px !important;
    }
    .hero p {
        font-size: 16px;
        text-align: center;
    }
    .cati-slider .box {
        box-shadow: none !important;
        margin-bottom: 15px;
        min-height: 240px;
        margin-right: 5px;
        margin-left: 5px;
    }
    .cati-slider p {
        margin-top: 10px;
    }
    .hero-btn-groups {
        top: 15px;
    }
    .logos {
        flex-wrap: wrap;
    }
    .logos img {
        margin: 8px 0 8px 16px;
        max-height: 30px
    }
    .countdown>div {
        margin-top: 12px;
        padding: 0 6px;
    }
    .hero a.main-btn {
        min-width: 40%;
        text-align: center;
    }
    a.main-btn:before {
        content: "";
        width: 60px;
    }
    .hero .sco-hero {
        font-size: 16px;
        padding: 0;
        right: 10px;
    }
    .hero .sco-hero:before {
        display: none;
    }
    .cati .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cati .d-flex .box {
        margin: 0 auto 12px;
        width: 100%;
    }
    .new-courses .box {
        margin-bottom: 20px;
    }
    .new-courses .box a {
        display: block;
    }
    .new-courses .main-btn {
        padding: 10px;
        text-align: center;
    }
    .new-courses img {
        height: 320px !important;
    }
    .about-us h2,
    section h2 {
        font-size: 25px !important;
        letter-spacing: 0 !important;
        right: 0;
    }
    .about-us .box {
        padding: 33px;
        top: 30px;
    }
    .about-us .col-md-5 {
        margin-top: -30px;
        overflow: hidden;
        height: 420px;
        align-items: start !important;
    }
    .categories .main-btn {
        font-size: 14px;
    }
    .testimonials .box img {
        width: 50px;
        padding: 12px;
    }
    .testimonials .box p {
        min-height: 180px;
        padding: 0 8px 8px;
    }
    .testimonials .box h4 {
        font-size: 16px;
    }
    .about-us .box p {
        font-size: 16px;
    }
    .categories .edu {
        font-size: 10px;
    }
    .categories .price {
        font-size: 14px;
    }
    .categories .price span {
        font-size: 22px;
    }
    .categories .card .course-title {
        font-size: 18px;
        margin-top: 5px;
    }
    .categories .card-subtitle {
        font-size: 10px;
    }
    .categories .teacher {
        font-size: 14px;
    }
    .brain-box {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        position: relative;
        top: 50px;
        transform: scale(.9);
    }
    .brain-box .circle p {
        font-size: 14px;
    }
    .brain-box img {
        width: 200px;
    }
    .brain-box .circle {
        width: 280px;
        height: 280px;
    }
    .categories ul {
        width: 100%;
        overflow-x: scroll;
        justify-content: space-between;
        margin-top: 30px;
    }
    .categories .categories-courses {
        margin-top: 20px !important;
    }
    .categories ul li {
        font-size: 16px;
        white-space: nowrap;
        margin: 10px 10px;
    }
    .categories ul li:before {
        bottom: -10px;
    }
    .banner .col-12 {
        height: 180px;
    }
    .payments h1 {
        font-size: 25px !important;
    }
    .payments .my-3 img {
        width: 90px !important;
    }
    .tamara {
        height: 93px;
        width: 100%;
        object-fit: contain;
        object-position: 0;
        border-radius: 10px;
    }
    .pay-meth .my-2 img:not(.tamara) {
        width: 100px !important;
    }
    .ration {
        margin-top: 30px;
    }
    .rate .box .review {
        width: 90%;
        margin: auto;
        font-size: 16px;
    }
    .rate .box .name {
        padding: 10px 0;
        margin-top: 20px;
    }
    .rate .box .name p {
        font-weight: bold;
        font-size: 19px;
        margin-bottom: 0px;
    }
    .rate .box .qoute {
        margin: 30px;
        width: 20px;
    }
    .ban>div {
        width: 100% !important;
        padding: 0 !important;
    }
    .ban>div img {
        border-radius: 0px !important;
    }
    section {
        padding: 25px 0;
        position: relative;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0 !important;
    }
    .banner h3 {
        font-size: 19px;
    }
    .banner h4 {
        font-size: 17px;
    }
    .new-courses .main-btn {
        display: none !important;
    }
    .categories ul {
        margin-top: 20px !important;
    }
    .footer .logo p {
        margin-top: 12px;
    }
    .footer .footer-links {
        margin: 10px 0;
    }
    .footer h5 {
        margin-bottom: 8px;
        color: #044F66;
    }
    .faq-section .container {
        flex-wrap: wrap !important;
    }
    .faq-section .font-bold {
        font-size: 15px !important;
        padding-left: 20px;
    }
    .breadcrumbs {
        height: 140px;
    }
    .breadcrumbs h1,
    .breadcrumbs a {
        font-size: 14px;
    }
    header img {
        width: 40px;
    }
    footer img {
        width: 70px;
    }
    .whatsapp {
        width: 60px;
        height: 60px;
        padding: 10px;
        background: #4aa6c3;
        border-radius: 50%;
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 6;
    }
    .contact h3 {
        font-size: 19px;
    }
}