/* =============================== GLOBAL ============================== */
:root {
    --purple: #721E4B;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
}
.cf::after {
    content: '';
    display: block;
    clear: both;
}
.wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 30px;
}
.rel {
    position: relative;
}

/* =========================== HEADER ================================= */

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1);
    padding: 15px 0px;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 999;
    background: black;
}
header .brand {
    float: left;
    transition: all 0.2s ease;
}
header .brand:hover {
    padding-left: 3px;
}
header .brand img {
    width: 90px;
    image-rendering: -webkit-optimize-contrast;
}
.nav .menu {
    list-style: none;
    float: right;
    display: flex;
    align-items: center;
}
.nav .menu i {
    font-size: 20px;
}
.nav li {
    float: left;
}
.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 30px;
}
.nav .main-link {
    border-bottom: 2px solid transparent;
    transition: all 0.4s ease;
}
.nav .main-link:hover {
    border-bottom: 2px solid var(--purple);
}
.nav .nav-cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    margin-left: 10px;
    transition: all 0.2s ease;
}
.nav .nav-cta-btn i {
    margin-right: 10px;
}
.nav .nav-cta-btn:hover {
    background: #25d366;
    border: 1px solid #25d366;
    color: white;
    padding-right: 25px;
    padding-left: 25px;
}
.nav .nav-social-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.nav .nav-social-btn:hover {
    background: var(--purple);
    color: white;
    transform: scale(1.1);
}

/* ==================================== HERO ============================== */

.hero {
    padding-top: 80px;
}
.hero .wide {
    display: flex;
}
.hero h1 {
    font-size: 120px;
    color: var(--purple);
    font-weight:900;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.9em;
    letter-spacing: -5px;
    margin-top: 80px;
}
.hero h2 {
    font-weight: normal;
    color: #462C47;
    font-size: 22px;
    margin-top: 20px;
}
.hero .hero-btn {
    text-decoration: none;
    background: rgb(90,27,108);
    background: linear-gradient(
180deg, rgba(90,27,108,1) 30%, rgba(162,24,116,1) 100%);
    color: white;
    font-weight: bold;
    margin-top: 30px;
    display: inline-flex;
    padding: 20px 50px;
    border-radius: 50px;
    align-items: center;
    transition: all 0.2s ease;
}
.hero .hero-btn:hover {
    padding: 20px 55px;
    background: linear-gradient(
180deg, rgba(90,27,108,1) 10%, rgba(162,24,116,1) 100%);
}
.hero .hero-btn img {
    margin-left: 10px;
    width: 50px;
    image-rendering: -webkit-optimize-contrast;
}

.hero h3 {
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 900;
    font-style: italic;
    line-height: 0.9em;
    font-size: 25px;
    position: absolute;
    top: 170px;
    left: 20px;
}
.hero .col-2 img {
    margin-bottom: -7px;
}

/* ======================================= COURSES ======================================= */

.courses {
    background: #F9EEFF;
    padding: 120px 0px;
    text-align: center;
}
.section-title {
    color: var(--purple);
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.section-subtitle {
    color: var(--purple);
    font-size: 20px;
    margin-top: 60px;
}
.courses-row {
    display: flex;
    margin-top: 80px;
}
.courses-row .course {
    background-color: white;
    flex-grow: 1;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px #00000008;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}
.courses-row .soon {
    opacity: 0.7;
    pointer-events: none;
}
.courses-row .course:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 20px #0000001f;
}
.courses-row .course-1-3 {
    width: 33.3333%;
}
.courses-row .course-1-2 {
    width: 50%;
}
.courses-row .course .course-icon {
    margin-top: -40px;
}
.courses-row .course .course-icon  img {
    image-rendering: -webkit-optimize-contrast;
}
.courses-row .course .brand-logo {
    width: 80px;
    margin-top: 20px;
    image-rendering: -webkit-optimize-contrast;
}
.courses-row .course .course-title {
    font-weight: 500;
    font-size: 22px;
    font-style: italic;
    color: #A97792;
}
.courses-row .course .months {
    background-color: var(--purple);
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-top: 10px;
    display: inline-block;
    border-radius: 5px;
}
.courses-row .course .desc {
    padding: 30px 50px;
    text-align: left;
    line-height: 1.6em;
    color: #666666;
}
.courses-row .course .price {
    font-weight: bold;
    color: var(--purple);
    font-size: 27px;
    display: block;
}
.courses-row .course .price.previous {
    color: #d2b7c5;
    font-size: 18px;
    text-decoration: line-through;
}
.courses-row .course .price.discounted {
    font-size: 27px;
    color: var(--purple);
    text-decoration: none;
}
.courses-row .course .notice {
    display: block;
    color: rgb(0 0 0 / 50%);
    font-size: 16px;
    padding: 20px 50px;
}
.courses-row .course .enroll-btn {
    background: var(--purple);
    display: block;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
    margin-top: 10px;
    font-size: 18px;    
    transition: all 0.2s ease;
}
.courses-row .course .enroll-btn:hover {
    background-color: #a12266;
    padding-bottom: 26px;
    margin-top: 4px;
}
.courses-divider {
    width: 200px;
    background-color: rgb(0 0 0 / 10%);
    height: 2px;
    margin: 100px auto;    
}
.courses .test-title {
    color: var(--purple);
    font-size: 40px;
}
.courses .test-subtitle {
    font-weight: 400;
    font-size: 20px;
    color: #AC7999;
    margin-top: 10px;
}
.courses .test-btn {
    text-decoration: none;
    background: var(--purple);
    color: white;
    padding: 20px 40px;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    border-radius: 50px;
    margin-top: 30px;
    transition: all 0.2s ease;
}
.courses .test-btn:hover {
    padding: 20px 45px;
    transform: translate(0px, -3px);
    background: #9f2d6a;
}

/* ====================================== FEATURES ================================= */

.features {
    padding: 120px 0px;
    padding-bottom: 140px;
}
.features-wrapper {
    display: flex;
    margin-top: 80px;
}
.features-wrapper .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature .feature-img {
    height: 80px;
}
.feature .feature-title {
    font-weight: normal;
    color: var(--purple);
    text-align: center;
    font-size: 23px;
    margin-top: 30px;
}

/* ==================================== CONTACT ================================================== */

.contact {
    background-color: var(--purple);
    padding: 120px 0px;
}
.contact .section-title {
    color: white;
}
.contact .contact-wrapper {
    margin-top: 60px;
    display: flex;
}
.contact .col-1 {
    width: 90%;
}
.contact .col-2 {
    width: 50%;
    border-left: 1px solid white;
    padding-left: 30px;
    margin-left: 30px;
}
.contact form {
    display: flex;
    flex-direction: column;
}
.contact .input {
    font-size: 18px;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    background: #7E335D;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.contact .input:focus {
    outline: none;
    background: #91426e;
}
.contact .input-message {
    resize: none;
    padding: 30px 40px;
    border-radius: 30px;
}
.contact .input::placeholder {
    color: white;
}
.contact .submit-btn {
    background: #FF008B;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 18px;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0px 0px 9px #00000024;
    transition: all 0.4s ease;
}
.contact .submit-btn:hover {
    background-color: #de00ff;
    cursor: pointer;
}
.contact .social-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact .social-links-wrapper .social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 50px;
    padding: 10px 20px;
    margin-left: 10px;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.contact .social-links-wrapper .social-link i {
    margin-right: 10px;
    font-size: 16px;
}
.contact .social-links-wrapper .social-link:hover {
    background: white;
    color: var(--purple);
    padding-right: 25px;
    padding-left: 25px;
    cursor: pointer;
}

/* ======================================= WHATSAPP SECTION ================================== */

.whatsapp {
    background: #651A42;
    padding: 100px 0px;
    padding-top: 30px;
}
.whatsapp .wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.whatsapp .section-title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
    color: white; 
}
.whatsapp .whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #24cc63;
    border-radius: 50px;
    padding: 20px 30px;
    margin-left: 10px;
    color: #24cc63;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp .whatsapp-btn:hover {
    background: #24cc63;
    color: white;
    padding: 20px 40px;
}
.whatsapp .whatsapp-btn i {
    margin-right: 10px;
    font-size: 20px;
}

/* ================================================= FOOTER ====================================== */

footer {
    background-color: #FFE5F3;
    padding: 100px 0px;
    color: var(--purple);
}
footer a {
    color: var(--purple);
    text-decoration: none;
}
footer ul li {
    list-style: none;
    margin-bottom: 20px;
}
footer a {
    border-bottom: 1px solid transparent;

    transition: all 0.4s ease;
}
footer a:hover {
    border-bottom: 1px solid var(--purple);
}
footer .footer-wrapper {
    display: flex;
    flex-direction: row;
}
footer .footer-wrapper .foot-col {
    flex-grow: 1;
}
footer .brand-tagline {
    font-weight: bold;
    font-size: 12px;
} 
footer .copyright {
    font-size: 14px;
    margin-top: 30px;
}
footer .social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
}
footer .social-link {
    width: 50px;
    height: 50px;
    border: 2px solid var(--purple);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;

    transition: all 0.2s ease;
}
footer .social-link:hover {
    border-bottom: 2px solid transparent;
    background: var(--purple);
    color: white;
}

/* =================================== JQUERY SECTION ========================================= */



/* ========================== RESPONSIVE SECTION ========================================== */
.mobile-menu-btn {
    display: none;
}
.mobile-nav {
    display: none;
}
.mobile-nav .sub-section {
    border-top: 1px solid rgb(0 0 0 / 20%);
    margin-top: 10px;
    display: flex;
    padding: 20px 40px 0px 40px;
}
.mobile-nav li {
    padding: 0;
    list-style: none;
}
.mobile-nav .sub-section a {
    color: var(--purple);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 40px;
    padding: 0;
    font-size: 23px;
    display: flex;
    margin-right: 15px;
    align-items: center;
    justify-content: center;
}
.mobile-nav {
    display: none;
    width: 100%;
    background: var(--purple);
    position: fixed;
    top: 78px;
    z-index: 998;
    box-shadow: 0px 3px 19px rgb(0 0 0 / 28%);
}
.mobile-nav .menu {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 40px;
    width: 100%;
    display: inline-block;
}
.mobile-menu-btn {
    display: none;
}
.mobile-menu-btn a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    color: var(--purple);
}

@media only screen and (max-width: 960px) {
    /* ===================== Nav ========================== */
    .mobile-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .nav {
        display: none;
    }

    /* ================================== Hero ================================= */

    .hero .col-1 {
        padding-bottom: 60px;
        text-align: center;
    }
    .hero .col-2 {
        display: none;
    }
    .hero .col-1 h1 {
        margin-top: 30px;
        text-align: center;
        font-size: 70px;
        letter-spacing: -2px;
        padding: 0px 20px;
    }
    .hero .col-1 h2 {
        text-align: center;
        font-size: 18px;
    }

    /* ================================== COURSES ============================ */

    .courses {
        padding: 50px 0px 60px 0px;
    }
    .section-title {
        font-size: 30px;
        line-height: 1.1em;
    }
    .section-subtitle {
        margin-top: 20px;
        font-size: 18px;
    }

    .courses-row {
        margin-top: 60px;
        flex-wrap: wrap;
    }
    .courses-row.responsive {
        margin-top: 0px;
    }
    .courses .course {
        width: 100%;
        margin-bottom: 60px;
    }
    .courses-divider {
        margin: -10px auto 30px auto;
    }

    /* =============================== FEATURES ============================= */

    .features {
        padding: 50px 0px 10px 0px;
    }
    .features .features-wrapper {
        flex-direction: column;
        margin-top: 50px;
    }
    .feature {
        width: 100%;
        margin-bottom: 60px;
    }
    /* ================================== CONTACT ============================== */
    .contact {
        padding: 50px 0px 30px 0px;
    }
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-wrapper .col-1 {
        width: 100%;
    }
    .contact-wrapper .col-2 {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        border-left: 0px;
        border-top: 1px solid white;
        margin: 50px auto 0 auto;
        padding-top: 50px;
        padding-left: 0;
        width: 50%;
    }
    .contact .social-links-wrapper {
        align-items: center;
    }

    /* ============================== WHATSAPP ============================ */
    .whatsapp .section-title {
        margin-top: 20px;
    }
    .whatsapp {
        padding-bottom: 40px;
    }

    /* ================================= FOOTER ======================== */
    footer {
        padding: 50px 0;
    }
    footer .footer-wrapper {
        flex-direction: column;
    }
    .footer-wrapper .col-2,.footer-wrapper .col-3,.footer-wrapper .col-4{
        display: none;
    }
    .footer-wrapper .social-links {
        margin-top: 30px;
        flex-direction: row;
    }
    .footer-wrapper .social-links .social-link {
        margin-right: 10px;
    }
  }


  @media only screen and (max-width: 450px) {
      .wide {
          padding: 0 15px;
      }
      .section-title {
          font-size: 25px;
      }
    .hero .col-1 h1 {
        font-size: 50px;
    }
    .hero .hero-btn {
        font-size: 14px;
    }
    .courses-row .course .price {
        font-size: 20px;
    }
    .courses-row .course .desc {
        padding: 20px 35px;
    }
    .courses-row .course .months {
        font-size: 12px;
    }
    .courses .test-title {
        font-size: 30px;
        line-height: 1.1em;
    }
    .courses .test-subtitle {
        margin-top: 20px;
    }
    .feature .feature-title {
        font-size: 18px;
    }
    .contact-wrapper .col-2 {
        width: 100%;
    }
    .contact .section-title img {
        width: 60px !important;
    }
    footer .col-2 {
        display: none;
    }
    footer .footer-wrapper {
        justify-content: center;
    }
    footer .footer-wrapper .col-1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .footer-wrapper .social-links {
        flex-direction: row;
        justify-content: center;
    }
    .whatsapp .whatsapp-btn {
        font-size: 14px;
    }

  }