body {
    overflow-x: hidden;
    scroll-behavior: initial;
}

.courses {
    overflow-x: hidden;
}

section.about {
    max-width: 100vw;
    ;
}

section.about .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

section.about .row.heading {
    margin-bottom: 20px;
    align-self: flex-start;
}

section.about .row.para {
    line-height: 1.5;
}

footer {
    background-color: #F7F7F5;
}

.cta {
    border: none;
    background: none;
}

.cta span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
}

.cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active svg {
    transform: scale(0.9);
}

.hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 80%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.contacts {
    overflow: hidden !important;
}


@media screen and (max-width: 992px) {
    section.about {
        font-size: .8rem;
    }

    section.about .main-row {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    section.about .main-row .row.heading {
        align-self: center;
    }

    section.about .btn-download {
        align-self: flex-start !important;
    }

    section.about .about-image-desk {
        margin-top: 3rem;
    }

    section.about .about-image-mob {
        margin-bottom: 1rem;
    }
}

/********************************* Send button ****************************************/
.button--loader {
    display: flex;
    gap: .25rem;
}

.button--loader > div {
    width: .8rem;
    height: .8rem;
    background-color: white;
    border-radius: 50%;
    animation: 1.2s infinite ease-in-out scaleUp;
}

.button--loader > div:nth-child(1) {
    animation-delay: -0.32s;
}

.button--loader > div:nth-child(2) {
    animation-delay: -0.16s;
}

.button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-height: 3.5rem;
}

.button--loader {
    display: none;
}

.button.loading .button--text {
    display: none;
}

.button.loading .button--loader {
    display: flex;
}

.button.loading {
    cursor: wait;
    pointer-events: none;
}

.button.success {
    background-color: var(--contextual-success-base);
}


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

/********************************************************/


/***************************Lenis Recommendations*****************************/

html.lenis {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-scrolling iframe {
    pointer-events: none;
  }

/***************************Lenis Recommendations*****************************/


/***************************Loading Animations*******************************/
#loading-screen {
        position: fixed;
        inset: 0;
        z-index: 999;
        background-color: #F7F7F5;
        display: grid;
        place-items: center;
        transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
}

#loading-screen.hidden {
    display: none;
}

#pageContent {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translate3d(0, -1rem, 0);
    /* display: none; */
    transition: opacity .6s ease-in-out, transform .6s ease-in-out;
}

#pageContent.visible {
    opacity: 1;
    /* display: block; */
    pointer-events: all;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

/* Air */
@keyframes breathe {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

#loader-icon {
    animation: 3s ease-in-out infinite alternate  breathe;
}



.callToAction .btn:hover,
#btn-submit:hover,
#btn-submit-modal:hover {
    box-shadow: #7b7b7b69 0px 5px;
    transform: translate3d(0px, -2px, 0px);
    transition: all 0.3s ease-in-out;
}

/* .no-border:hover {
    border: none !important;
    border-color: transparent !important;
} */

/***************************** RFS ************************************/

.fhead{
    font-size: 3.5rem;
    line-height: 1.5;
}

.fpara{
    font-size: 1.5rem;
    line-height: 1.5;
}

@media screen and (max-width: 992px) {
    .fpara{
        font-size: 1.2rem;
    }

    .fhead{
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .fpara{
        font-size: 1.2rem;
    }

    .fhead{
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .fpara{
        font-size: 1rem;
    }

    .fhead{
        font-size: 1.5rem;
    }
}
