/* Inter Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap'); */

/* Open-Sans Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "open sans", sans-serif;
    /* font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
    "wdth" 100; */
}

:root{
    --primary:#FFD32B;
    --secondary:#e7c5b5;
    --white:#ffffff;
    --black:#000000;
    --bg-scene:#BABABA;
    --light-primary: #F7FF62;
    --primary-font: "Inter", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
    --light-black:#1F1D0D;
    --green: #0BC185;
    --para-color:#5A5950;
    --radius-10: 10px;
    --radius-20: 20px;
    --headingL: 55px;
    --headingM: 44px;
    --bodyL: 20px;
    --bodyM: 16px;
}

body {
    direction: ltr;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
}

.primary-font{
    font-family: "open sans", sans-serif;
}

.secondary-font{
    font-family: "Open Sans", sans-serif;
}

h1,h2,h3,h4,h5,h6,p{
    font-family: "open sans", sans-serif;
}

ul,li{
    text-decoration: none;
    list-style: none;
}

a{
    text-decoration: none;
    display: inline-block;
}

.highlight p {
    direction: rtl;
    text-align: center;
}
.container{
    max-width: 1484px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.d-flex{
    display: flex;
}

img{
    max-width:100%;
}

.h-100{
    height: 100%;
}

.w-100{
    width: 100%;
}

.position-relative{
    position: relative;
}

.position-absolute{
    position: absolute;
}

.justify-between{
    justify-content: space-between;
}
.justify-end{
    justify-content: flex-end;
}
.justify-evenly{
    justify-content: space-evenly;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
}
.text-center{
    text-align: center;
}

.object-cover{
    object-fit: cover;
}

.overflow-hidden{
    overflow: hidden;
}

.flex-column{
    flex-direction: column;
}

.text-white{
    color:var(--white);
}

.text-black{
    color: var(--black);
}

.radius-10{
    border-radius: 10px;
}

.radius-20{
    border-radius: 20px;
}


/* two-col-section start */

.two-col-sec{
    padding-left: 100px;
    padding-right: 60px;
    border-radius: 10px;
}

.hero-sec.two-col-sec .two-col-img {
    height: 650px;
}
.two-col-sec:before, 
.two-col-sec:after{
    position: unset;
}

.hero .two-col-img img{
  object-position: left;
}

section.two-col-sec.hero-sec {
    padding-bottom: 10px;
}


.two-col-sec .two-col-img-wrapper{
    margin: 0px 0 -110px 0;
}


.two-col-sec .two-col-wrapper{
    padding-top: 100px;
}

.two-col-img{
  
    position: relative;
    display: inline-block;
    z-index: 1;
    flex-shrink: 0;
}

.two-col-sec .two-col-img::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--primary);
    border-radius: var(--radius-20);
    z-index: -1;
}
.two-col-img img {
padding-right: 10px;
padding-bottom: 10px;
display: block;
}

.two-col-content{
    margin-left: 88px;
    position: relative;
    text-align: end;
    z-index: 1;
}

.course-details .two-col-content{
    padding-left: 40px;
    position: relative;
    text-align: end;
    z-index: 1;
    max-width: 625px;
    margin-right: 0;
    margin-left: auto;
}
.course-details  .two-col-content .para-content p {
    color: #ECECEC;
    direction: rtl;
    text-align: right;
}



.two-col-content h1{
    direction: rtl;
    text-align: right;
    font-size: 55px;
    line-height: 1.3;
    font-weight: 700;
}
}

.two-col-content .para-content{
    margin-top: 24px;
    direction: rtl;
    text-align: right;
}

.two-col-content .para-content p{
    text-align: right;
    direction: rtl;
    font-size: var(--bodyL);
    line-height: 1.2;
    font-weight: 400;
    
}

.two-col-content .highlight{
    margin-top: 40px;
    background-color: var(--light-primary);
    color: var(--light-black);
    padding: 22px 42px;
    font-size: var(--bodyL);
    font-weight: 700;
    border-radius: var(--radius-10);
    text-align: center;
}

/* quotes-section css */

.quotes-section{
    /* height: 848px; */
    background-size: cover;
    padding-top: 200px;
    padding-bottom: 100px;
    position: relative;
}




.quote-box {
    max-width: 900px;
    direction: rtl;
    text-align: center;
    background: #12100b;
    color: var(--white);
    font-size: var(--bodyM);
    text-align: center;
    padding: 42px 22px;
    margin: 0 auto;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-icon {
    position: absolute;
    background: var(--primary);
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.quote-icon.left {
    top: 15px;
    left: -20px;
}

.quote-icon.right {
    bottom: 15px;
    right: -20px;
}

.quote-text {
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    margin: 10px 0;
    max-width: 80%;
}

.quote-author {
    color: var(--primary);
    font-size: var(--bodyL);
    line-height: 1;
    font-weight: 500;
}

/* form section css */

.form-section{
    padding: 50px 0;
    background-color:#F3F3F3;
    position: relative;
}

.form-section:before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: url("../images/Frame.png");
    z-index: 1;
}

.form-section:after{
    content: "";
    position: absolute;
    top: 0;
    right: 65%;
    width: 100%;
    height: 100%;
    background: url("../images/Frame.png");
}

.form-container {
    max-width: 620px;
    margin: 0 auto;
    background: #F3F3F3;
    text-align: center;
    position: relative;
    z-index: 1;
}

.form-container h2 {
    font-size: var(--headingM);
    font-weight: 700;
    line-height: 1;
    color: #1F1D0D;
    direction: rtl;
    text-align: center;
    margin-bottom: 15px;
}

.form-container .highlight {
    color: #ffcc00;
}

.form-container p {
    font-size: var(--bodyL);
    line-height: 1;
    color: #444;
    margin-bottom: 20px;
    direction: rtl;
    text-align: center;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

form input {
    width: 100%;
    padding: 15px;
    text-align: right;
    font-size: var(--bodyL);
    line-height: 1;
    border: 1px solid #ccc;
    border-radius: var(--radius-10);
    outline: none;
    transition: all 0.3s;
    direction: rtl;
    text-align: right;
}

form input:focus {
    border-color: #ffcc00;
}


form button {
    width: auto;
    margin: 30px auto 0 auto;
    background: #222;
    color: var(--white);
    font-size: var(--bodyL);
    padding: 12px;
    border: none;
    border-radius: var(--radius-10);
    cursor: pointer;
    transition: all 0.3s;
    direction: rtl;
    text-align: center;
}

form button:hover {
    background: var(--primary);
    color: var(--black);
}




/* Hero Section */
.hero {
    padding: 100px 0px 40px 00px;
    background: var(--white);
}

.hero .hero-title{
    margin-bottom: 61px;
    text-align: center;
}

.hero h2 {
    font-size: var(--headingM);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
    direction: rtl;
    text-align: center;
}
.hero p {
    font-size: 20px;
    color: #5A5950;
    direction: rtl;
    text-align: center;
}

.info-box p {
    direction: rtl;
    text-align: right;
}

.highlight {
    color: #ffcc00;
    font-weight: 700;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
    gap: 50px;
}

.info-box {
    max-width: 500px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    margin-right: 100px;
}

.hero-img .two-col-img-wrapper{
    margin: 0;
}

.hero-image {
    width: 40%;
    border-radius: var(--radius-10);
}

.hero .two-col-img:before {
    right: 10px;
}

.hero-content .info-box span{
    display: block;
    margin-bottom: 15px;
    font-size: var(--bodyM);
    color: #5A5950;
}

.hero-content .info-box span i {
    font-size: 40px;
}


/* Course Details */


.course-details.two-col-sec {
    background-color: var(--light-black);
    padding: 40px 0px;
    position: relative;
    z-index: 1;
    background-image: unset;
    border-radius: unset;
    margin: 0;
}

.course-details.two-col-sec .two-col-wrapper {
    padding-top: 0;
    align-items: center;
}

.two-col-sec {
    background-image: url(../images/hero-bg.png);
    background-color: #1F1D0D;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 60px;
}

.course-details.two-col-sec .two-col-img-wrapper{
    max-width: 550px;
    width: 100%;
    height: 358px;
    margin: 0;
    display: flex;
    align-items: center;

}
.course-details.two-col-sec  .two-col-img{
width: 100%;
}


.two-col-content h2 span {
    color: #FFD32B;
}
.course-details .two-col-content h2 {
    font-size: var(--headingM);
    line-height: 1;
    margin-bottom: 10px;
    direction: rtl;
    text-align: right;
}

.course-details .two-col-content  {
    position: relative;
}
.course-details  .two-col-wrapper.d-flex {
    align-items: center;
}
img.threed-icon {
    position: absolute;
    left: -16%;
    top: -50px;
}
img.threed-icon-1 {
    position: absolute;
    bottom: -30px;
    width: 77px;
    right: -118px;
    transform: rotate(28deg);
}


/* Benefits Section */

.benefit-section.course-details.two-col-sec .two-col-img-wrapper {
    max-width: 471px;
    width: 100%;
    height: 342px;
   
}

.benefit-section .two-col-img img{
   border-radius: 30px 30px 0px 30px;
   width: 100%;
   height: 100%;
}


.benefit-section.course-details {
    padding: 25px 30px;
    padding-bottom: 20px;
    background: #FFD32B;
    position: unset;
    border-radius: 10px;
    margin: 100px 0px;
}
.benefit-section.course-details .two-col-content {
   flex: 1;
   max-width: unset;
}

.benefit-section.course-details.two-col-sec .two-col-img {
    width: 100%;
    height: 100%;
}
.benefit-section .container.color-overlay{
    position: relative;
}

.benefit-section .container.color-overlay::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-10);
}



.benefit-section.course-details .two-col-img::before{
    background: var(--black);
   border-radius: 30px 30px 0px 30px;


} 

.two-col-content ul li{
    display: inline-flex;
    border-bottom: 1px solid #1F1D0D33;
    font-size: var(--bodyL);
    line-height: 1;
    font-weight: 700;
    color: #1F1D0D;
    gap: 20px;
    margin: 0;
}

.two-col-content ul li:last-child{
    border: none;
    margin-bottom: 0;
}
.two-col-content ul li:last-child span {
    margin-bottom: 0;
}

.two-col-content ul li span{
    padding: 20px 0px;
    direction: rtl;
    text-align: right;
    
}

.benefit-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
}

.benefit-text {
    flex: 1;
    text-align: right;
    padding: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #059062;
    color: var(--white);
    padding: 20px;
}

.footer-wpr{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.whatsapp-btn a{
    background: var(--white);
    color: #06734F;
    font-size: 1.2rem;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    gap: 25px;
}



.link{
    font-size: 28px;
    color: var(--white);
    font-weight: 700;
    direction: rtl;
    text-align: right;
}


/* Call to Action section */
.cta {
    max-width: 808px;
    margin: 100px auto;
    background:#F3F3F3;
    border-style: dotted;
    border-color: #BABABA;
    padding: 30px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta p{
    font-size: 24px;
    font-weight: 600;
    color: #1F1D0D;
    text-align: center;
    direction: rtl;
}

.whatsapp-btn span {
    direction: rtl;
    text-align: right;
}



.cta p > .highlight{
    font-weight: 900;
    color: var(--light-black);
}
.hero-sec .two-col-img-wrapper {
    max-width: 490px;
    width: 100%;
}
.two-col-sec.hero-sec .two-col-img {
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .hero-sec.two-col-sec {
        padding: 0px 40px;
    }
}

@media screen and (max-width: 1024px) {
    .two-col-content h1 {
        font-size: 40px;
    }
    .course-details .two-col-content h2 {
        font-size: 40px;
    }
    .two-col-content{
        margin-left: 0;
        padding-bottom: 60px;
    text-align: center;
    }
    .benefit-section.course-details .two-col-content.text-black {
        padding: 0;
        text-align: right;
    }


    .cta {
        margin: 60px auto;
    }
    .quotes-section.overflow-hidden {
      padding: 80px 0px;
    }
    .hero {
        padding: 80px 0px;
    }
    .two-col-img {
        width: 100%;
        height: 100%;
    }

    .two-col-img::before{
        height: 100%;
        width: 100%;
        padding: 0;
        top: 10px;
        left: 10px;
    }

    .two-col-img-wrapper{
        margin:0;
    }
    .benefit-section .two-col-content {
        text-align: right;
    }
    .benefit-section.two-col-sec .two-col-wrapper {
        gap: 20px;
    }

    .two-col-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    .info-box {
        margin-right: 30px;
    }
    
    
    .hero-sec.two-col-sec .two-col-img {
        height: 450px;
    }
    .two-col-sec .two-col-wrapper {
        padding-top: 50px;
    }
    .two-col-sec .two-col-img-wrapper{
        margin: 0px 0 0px 0;
    }
    
    .course-details .two-col-content {
        margin: 0;
        text-align: center;
    }
}

@media screen and (max-width: 991px) {
    .hero-inner {
         flex-direction: column-reverse;
         gap: 20px;
    }
    .hero-content {
        margin-top: 0;
    }
    img.threed-icon{
        display: none;
    }
    .info-box {
        max-width: 593px;
        width: 100%;
        margin: 0;
    }

    .whatsapp-btn a {
        font-size: 15px;
        padding: 8px 12px;
        gap: 10px;
    }
    .link {
        font-size: 23px;
    }
    
}

@media screen and (max-width: 768px) {
    
    .two-col-wrapper {
        gap: 40px;
    }
    .course-details.two-col-sec .two-col-img-wrapper {
        height: 300px;
    }
    .benefit-section .two-col-img img {
        border-radius: 20px 20px 0px 20px;
    }
    .two-col-content ul li span {
        padding: 15px 0px;
        font-size: 16px;
    }
    .benefit-section.course-details{
        margin: 60px 0px;
    }
    .course-details .two-col-content h2 {
        font-size: 24px;
    }
    .two-col-content .para-content p {
        font-size: 16px;
    }
    .course-details .two-col-content{
       padding: 0;
    }
    .hero p {
        font-size: 16px;
    }
    .link {
       text-align: center;
       font-size: 22px;
    }
    .whatsapp-btn {
        padding: 5px 10px;
        padding-bottom: 0px;
    }
   
    .quote-icon.left {
        top: 15px;
        left: -10px;
    }
    .quote-icon.right {
        bottom: 15px;
        right: -10px;
    }
    .hero h2 {
        font-size: 30px;

    }
    .footer-wpr {
        flex-direction: column;
        gap: 15px;
    }
    .d-flex.align-center.justify-center.hero-inner {
        flex-direction: column-reverse;
    }
    section.two-col-sec.hero-sec{
        padding: 0px 30px;
    }
    .two-col-content .highlight {
        padding:14px 30px;
    }
    .quotes-section.overflow-hidden {
        padding: 60px 0px;
    }

    .two-col-content h1 {
        font-size: 35px;
    }

    .two-col-content p {
        font-size: 0.9rem;
    }

    .two-col-content .highlight {
        margin-top: 20px;
    }

    .quote-box {
        font-size: 16px;
        padding: 15px;
        max-width: 90%;
    }
    
    .quote-icon {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .form-container h2 {
        font-size: 1.8rem;
    }
    .form-container p {
        font-size: 0.9rem;
    }
    .form-container input {
        font-size: 0.9rem;
        padding: 10px;
    }
    .form-container button {
        font-size: 16px;
        padding: 10px;
    }
    .quote-text {
        font-size: 18px;
    }
    .quote-author {
        font-size: 16px;
    }
    .hero .hero-title {
        margin-bottom: 40px;
    }
    .cta p {
        font-size: 20px;
    }
    .benefit-section.course-details {
        padding: 10px;
    }
    .two-col-sec .two-col-img::before{
        border-radius: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hero-sec.two-col-sec .two-col-img {
        height: 300px;
    }
    .two-col-content ul li span {
        padding: 13px 0px;
        font-size: 15px;
    }
    
}

@media (max-width: 480px) {
    .quote-box {
        font-size: 14px;
        padding: 10px;
        max-width: 95%;
    }
    .two-col-content .highlight {
        padding: 12px 10px;
    }
    
    .quote-icon {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .quote-text {
        max-width: 90%;
    }
}


@media only screen and (max-width: 375px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .two-col-content h1 {
        font-size: 25px;
    }

    .two-col-img::before{
        top: 5px;
        left: 7px;
    }

    p {
        font-size: 0.8rem;
    }
}



