:root {
    --blue: rgb(66, 166, 226);
    --green: rgb(166, 226, 66);
    --pink: rgb(226, 66, 166);
    --orange: rgb(226, 136, 66);
    --blueprint: rgb(96, 136, 166);
    --darkblue: rgb(6, 56, 116);
    --paper: #fff4ebd3;
    --box: 0 5px 30px 0.4px #6e6e6e;
}

body {
    margin: auto;
}

main {
    background-color: var(--paper);
}

h1,
h2 {
    font-family: 'Bebas Neue', sans-serif;
}

button,
a {
    cursor: pointer;
}


/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: var(--box);
    z-index: 6;

}


/* NAVBAR */
.custom-navbar {
    /* display: flex; */
    /* flex-direction: row; */
    /* align-items: center; */
    /* justify-content: space-between; */
    background-color: var(--blue);
    color: white;
    height: 8em;
    padding: 4em;
}

.navbar-header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    color: white;
}

#navDropdown {
    background-color: white;
    text-align: right;
}


/* BLUEPRINT PARALLAX SECTION */
.hero {
    width: 100%;
}

.parallax {
    background-image: url('assets/pexels-kindelmedia-7054787.jpg');
    position: relative;
    min-height: 150vh;
    background-attachment: fixed;
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
}

.overview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    /* width: 100%; */
    padding: 2rem;
    margin: 4rem;
    /* margin-left: 2rem; */
    /* margin-right: 2rem; */
    background-color: rgb(96, 136, 166, 0.85);
    border-radius: 1rem;
    box-shadow: var(--box);
    position: absolute;
    color: white;
    top: 15%;
}

.icard {
    display: flex;
    color: white;
    margin: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--box);
}

.icardone {
    background-color: var(--pink);
}

.icardtwo {
    background-color: var(--green);
}

.icardthree {
    background-color: var(--orange);
}

.icon-img {
    height: 3em;
}


/* CALENDLY EMBED */
.calendar {
    font-size: 2rem;
}


/* TESTIMONIALS SECTION */
.testimonial {
    text-align: center;
    /* margin: 4rem; */
    /* padding: 4rem; */
    font-family: 'Able', sans-serif;
}

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    /* height: 200px; */
    position: relative;
    margin: auto;
    padding: 1rem;
}

.mySlides {
    /* display: none; */
    color: var(--paper);
    background-color: var(--blue);
    padding: 5em;
    border: 0.5px solid white;
    border-radius: 1rem;
    box-shadow: var(--box);
}

.mySlides .quote-container {
    max-height: 20rem;
    overflow: scroll;
}

.mySlides q {
    font-style: italic;
    font-size: 1.5em;
}

.testimonial-name {
    font-size: 4rem;
    padding-top: 2rem;
}

.prev,
.next {
    /* cursor: pointer; */
    position: absolute;
    top: 50%;
    /* width: auto; */
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 3rem;
    text-decoration: none;
    transition: 0.6s ease;
    border: 2px dashed white;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.prev {
    left: 0;
    border-radius: 10px;
}

.next {
    right: 0;
    border-radius: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}


/* COURSE CONTENT */
.course-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* THE PROCESS SECTION */
#processAccordion {
    width: 80vw;
    margin-bottom: 4rem;
}

.emphasis {
    font-weight: bolder;
    font-style: italic;
    font-size: 1.1em;
    color: var(--blue);
}

.process {
    text-align: left;
    margin: 4rem;
    padding: 4rem;
    font-family: 'Montserrat', sans-serif;
}

.process-title {
    text-align: center;
}

.accordion-body {
    font-size: 1.3em;
    margin: 1rem;
    letter-spacing: 0.05em;
}


/* ABOUT ME SECTION */
#circle-shape-example .curve {
    width: 33%;
    height: auto;
    min-width: 150px;
    float: left;
    margin-right: 3rem;
    border-radius: 50%;
    -webkit-shape-outside: circle();
    shape-outside: circle();
}

.about-me {
    padding-bottom: 6rem;
    margin-left: 6rem;
    margin-right: 6rem;
}


/* CONTACT MODAL */
.modal {
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 60%;
    max-height: 91%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    /* position: absolute; */
    z-index: 2;
    transform: translateX(25%);
}

.modal input,
textarea {
    margin: 0.4rem 0 0.4rem 0;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9em;
}

.modal-btn {
    background-color: var(--blue);
    border: 1px solid white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 1.5px;
    max-width: 33%;
    color: white;
    margin: 3rem;
    padding: 1rem;
    border-radius: 10px;
}

.btn-close {
    padding: 0.5rem 0.7rem;
    background: #eee;
    border-radius: 50%;
}

.modal-send-btn {
    background-color: var(--blue);
    max-width: 33%;
    color: white;
    border: 1px solid white;
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    transform: translateX(100%);
}

.overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1;
}


/* FOOTER */
footer {
    background-color: var(--blue);
    display: flex;
    justify-content: right;
    align-items: center;
}

footer a {
    padding: 45px;
    font-size: 2em;
    text-decoration: none;
    color: white;
}

footer a:hover {
    animation: zoom 2s;
    text-decoration: none;
}


/* ANIMATIONS */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end);
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes sliding {
    30% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(-var(--size-width));
    }

    65% {
        transform: translateX(-var(--size-width));
    }

    70% {
        transform: translateX(-var(--size-width) * 2);
    }

    98% {
        transform: translateX(-var(--size-width) * 2);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes zoom {
    0% {
        font-size: 200%;
    }

    50% {
        font-size: 250%;
        rotate: 360deg;
        color: white;
    }

    100% {
        font-size: 200%;
    }
}


/* MEDIA QUERIES */
@media screen and (max-width: 550px) {
    header {
        width: 100%;
    }

    .ddown-btn {
        transform: translate(-150%, -100%);
    }

    #navDropdown {
        transform: translate(-20%, -20%);
    }

    .parallax {
        margin-bottom: 4rem;
        min-height: 175vh;
    }

    .hero {
        margin-bottom: 4rem;
    }

    .overview {
        margin: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .hero-boxes {
        display: flex;
        flex-direction: column;
    }

    .testimonial {
        text-align: justify;
        width: 125%;
    }

    .mySlides .quote-container {
        max-height: 28rem;
    }

    .mySlides {

        /* width: 90vw; */
        height: 80vh;
        padding: 1.5rem;
    }

    .mySlides q {
        font-size: 1.2em;

    }

    .testimonial h2 {
        padding-top: 1rem;
        margin-top: 1rem;
        margin-right: 0.75rem;
        text-align: right;
        font-size: 2rem;
    }

    .prev,
    .next {
        font-size: 1rem;
        top: 80%;
    }

    .process {
        margin: 0.2rem !important;
        padding: 0.2rem !important;
    }

    .accordion-body {
        font-size: 1em;
        letter-spacing: 0;
    }

    .emphasis {
        font-size: 1em;
    }

    .about-me {
        margin-left: 2rem;
        margin-right: 2rem;
        /* text-align: justify; */
    }

    .about-me p {
        text-align: justify;
    }

    .modal {
        max-width: 100vw;
        transform: none;
        align-items: center;
    }

    .modal-btn {
        max-width: 70%;
        font-size: 2em;
    }

    .modal-send-btn {
        max-width: 50%;
        font-size: 1.5em;
        transform: none;
    }

    footer a {
        padding: 25px;
        font-size: 1.5em;
    }

}