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


:root{
    --black: #111;
    --white: #fff;
    --grey: #f5f5f5;
    --pink: #FFAFBC;
    --aqua: #A1E7E5;

}


body{
    font-family: 'DM Sans', sans-serif;
}

.container{
    width: 85%;
    max-width: 62rem;
    margin: 0 auto;
}

/**NAVIGATION STYLES START**/
nav{
    position: fixed;
    z-index: 10;
    left: 0rem;
    right: 0rem;
    top: 0rem;
    background-color: var(--white);
    color: var(--black);
    padding: 0rem 5%;
    height: 4rem;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.075);*/
}

.navbar__logo{
    float: left;
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.navbar__svg__logo{
    width: 10rem;
    height: 10rem;
    fill: none;
}

.navbar__logo a{
    text-decoration: none;
    color: var(--black);
}

.navbar__links{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    float: right;
    padding: 0rem;
    margin: 0rem;
    width: 65%;
    height: 100%;
}

.navbar__links li{
    list-style: none;
}

.navbar__links a{
    text-decoration: none;
    color: var(--black);
    padding: 1rem;
}

.navbar__links a:hover{
    text-decoration: underline;
    color: var(--pink);
}

#navbar__toggle{
    position: absolute;
    top: -6rem;
}

.navbar__burger{
    display: none;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.navbar__line{
    width: 30px;
    height: 5px;
    margin: 5px;
    background-color: var(--black);
    border-radius: 3px;
    transition: all .3s ease-in-out;
}

/*styling last navbar lin*/
.navbar__line:nth-child(3){
    width: 18px;
}

@media screen and (max-width: 768px){
    /*transforming the menu items*/
    nav{
        box-shadow: 0;
    }
    
    .navbar__logo{
        float: none;
        width: auto;
        justify-content: center;
    }

    .navbar__links{
        float: none;
        position: fixed;
        z-index: 9;
        left: 0;
        right: 0;
        top: 4rem;
        bottom: 100%;
        width: auto;
        height: auto;
        flex-direction: column;
        justify-content: space-evenly;
        background-color: var(--pink);
        overflow: hidden;
        box-sizing: border-box;
        transition: all .5s ease-in-out;
    }

    .navbar__links a{
        font-size: 20px;
    }
    
    .navbar__links a:hover{
    text-decoration: underline;
    /*color: var(--white);*/
        color: #fff;
    }

    nav :checked ~ .navbar__links{
        bottom: 0;
    }

    .navbar__burger{
        display: block;
    }


    /*Transforming the menu*/
    nav :checked ~ .navbar__burger 
    .navbar__line:nth-child(1){
        transform: translateY(10px) rotate(225deg);
    }

    nav :checked ~ .navbar__burger 
    .navbar__line:nth-child(3){
        transform: translateY(-10px) rotate(-225deg);
        width: 30px;
    }

    nav :checked ~ .navbar__burger 
    .navbar__line:nth-child(2){
        opacity: 0;
    }
}
/**NAVIGATION STYLES END**/

/*HERO SECTION STYLES START*/
.hero__section{
    background: var(--pink);
    width: 100%;
    margin-bottom: 1rem;
    /*height: 100vh;*/
 }

.hero__btn__wrapper{
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    align-items: left;
}

.hero__btn{
    text-decoration: none;
    padding: 0.65rem;
    color: var(--white);
    background-color: var(--black);
    border-radius: 0.25rem;
    display: inline-block;
    margin-right: 0.75rem;
}

.hero__btn__secondary{
    text-decoration: none;
    padding: 0.65rem;
    color: var(--black);
    background-color: var(--white);
    border-radius: 0.25rem;
    border: 1px solid var(--black);
    display: inline-block;
}

.hero__content__wrapper{
    padding: 7rem 0;
}

.hero__title{
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.hero__body{
    font-size: 1.15rem;
}

@media only screen and (max-width: 768px){
    .hero__btn__wrapper{
        flex-direction: column;
        text-align: center;
    }

    .hero__btn{
        margin-bottom: 0.75rem;
        margin-right: 0;
    }
    
}
/*HERO SECTION STYLES END*/

/*SESSIONS SECTION STYLES START*/
.session__title{
    font-size: 1.75rem;
    text-align: center;
}

.session__body{
    text-align: center;
}

.session__see__all{
    text-align: center;
}

.card__wrapper{
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    grid-template-rows: auto;
    grid-gap: 1rem;
}

.session__card{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pink);
    border-radius: 0.5rem;
}

.session__read__more{
    text-align: center;
}

.session__read__more a{
    color: var(--black);
}

.session__card__title{
    text-align: center;
}

.session__card__title a{
    color: var(--black);
}

.session__card__content{
    line-height: 1.5;
    margin-top: 0.25rem;
}
/*SESSIONS SECTION STYLES END*/


/*SERVICES SECTION STYLES START*/
.services__title{
    font-size: 1.75rem;
    text-align: center;
}

.services__body{
    text-align: center;
}

.services__card{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--aqua);
    border-radius: 0.5rem;
}

.services__card__title{
    text-align: center;
}

.services__card__title a{
    color: var(--black);
}

.services__card__content{
    text-align: center;
}

.services__read__more{
    text-align: center;
}

.services__read__more a{
    color: var(--black);
}

/*SERVICES SECTION STYLES END*/


/*GUIDES SECTION STYLES START*/
.guides__title{
    font-size: 1.75rem;
    text-align: center;
}

.guide__card{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 0.5rem;
}

.guide__card__title{
    text-align: center;
}

.guide__card__title a{
    color: var(--black);
}

.guides__content__wrapper{
    margin-top: 1rem;
    background-color: var(--pink);
    padding: 2.5rem;
    border-radius: 0.5rem;
}

.guides__cards__grid{
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 1rem;
}

.guide__card__image{
    /*background: var(--aqua);*/
    height: 9.375rem;
    margin-bottom: 0.925rem;
    background-size: cover;
}

.guide__card__content{
    text-align: center;
}

.card__1{
    background-image: url('/assets/professional-flirt.png');
}

.card__2{
    background-image: url('/assets/linkedin-template.png');
}

@media only screen and (max-width: 768px){
    .guides__cards__grid{
        grid-template-columns: 1fr;
    }
}
/*GUIDES SECTION STYLES END*/

/*SUPPORT SECTION STYLES START*/
.support__section{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.support__title{
    font-size: 1.75rem;
    text-align: center;
}

.support__body{
    text-align: center;
}

.support__card{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--aqua);
    border-radius: 0.5rem;
}

.support__card__title{
    text-align: center;
}

.support__card__title a{
    color: var(--black);
}

.support__card__wrapper{
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support__card__content{
    margin-top: 0.25rem;
    line-height: 1.5;
}

.support__subscribe__btn{
    -webkit-appearance: none;
    margin-top: 1rem;
    text-decoration: none;
    padding: 0.65rem;
    color: var(--white);
    background-color: var(--black);
    border-radius: 0.25rem;
    width: 55%;
    text-align: center;
}


/*SUPPORT SECTION STYLES END*/


/*MAILING SECTION STYLES START*/
.mailing__title{
    text-align: center;
}

.mailing__content__wrapper{
    background: var(--pink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    border-radius: 0.5rem;
}

.mailing__body{
    margin-bottom: 1rem;
}

    /*MAILCHIMP CSS START*/
    #mc_embed_signup form .indicates-required{
        text-align: center;
    }

    #mc_embed_signup form #mce-success-response{
        background: var(--black);
        padding: 1.25rem;
        text-align: center;
        color: var(--white);
        transition: 1s;
    }

    #mc_embed_signup form #mce-error-response{
        background: #6B0505;
        padding: 1.25rem;
        text-align: center;
        color: #fff;
        transition: 1s;
    }
    
    #mc_embed_signup form #mce-error-response a{
        color: #fff;
        background: #6B0505;
    }

    #mc_embed_signup form input[type="email"],
    #mc_embed_signup form input[type="text"]
    {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 0.75rem;
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
        font: inherit;
        border: 1px solid var(--black);
    }

    /*
    #mc_embed_signup form input[type = "submit"]{
        margin-top: 1rem;
        padding: 0.65rem;
        border-radius: 0.25rem;
        display: block;
        width: 100%;
        background-color: var(--black);
        color: var(--white);
        font: inherit;
    }
    */

    .mailing__list__subscribe__btn{
        -webkit-appearance: none;
        margin-top: 1rem;
        padding: 0.65rem;
        border-radius: 0.25rem;
        border-style: none;
        display: block;
        width: 100%;
        background-color: var(--black);
        color: var(--white);
        font: inherit;
    }

    .mc-field-group li{
        list-style: none;
    } 
        


    /*MAILCHIMP CSS END*/

/*MAILING SECTION STYLES END*/

/*COMPANY SECTION START*/
.company__logo img{
    height: 7.5rem;
    width: 9.375rem;
}

.companies__section{
    margin-top: 1rem;
}

.companies__title{
    margin-top: 1rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.company__names{
    list-style: none;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.company__name:before{
    content: '\1F497';
    margin-right: 10px;
}

.company__testimonials a{
    color: var(--black);
}

/*COMPANY SECTION END*/





/*FOOTER STYLES START*/
footer{
    margin-top: 1.5rem;
    background: var(--grey);
    color: var(--black);
    padding: 1.5rem 0;
}

.footer__wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.footer__content li{
    list-style: none;
    margin: 5px 0;
}

.footer__content a{
    text-decoration: none;
    color: var(--black)
}

.footer__content li> a:hover{
    text-decoration: underline;
}

.footer__icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer__icons li{
    list-style: none;
    margin: 0 10px;
}

.footer__icons li > a{
    text-decoration: none;
    color: var(--black);
    font-size: 1.5rem;
}
/*FOOTER STYLES END*/

/*ABOUT STYLES START*/
.about__section{
    margin-top: 5rem;
}

.about__title{
    font-size: 1.75rem;
    text-align: center;
}

.about__subtitle{
    margin-top: 1rem;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.about__body{
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.about__footer{
    position: sticky;
    top: 100vh;
}

/*TESTIMONIALS STYLES START*/
.testimonial__content__wrapper{
    margin-top: 2rem;
    background-color: var(--pink);
    padding: 2.5rem;
    border-radius: 0.5rem;
}

.testimonial__section__title{
    margin-top: 5.5rem;
    text-align: center;
}

.testimonial__cards__grid{
    display: grid;
    /*grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));*/
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 1rem;
}

.testimonial__card{
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-radius: 0.5rem;
}

.testimonial__name{
    margin-bottom: 0.75rem;
}

.testimonial__main{
    color: #63666A;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.testimonial__body{
    line-height: 1.5;
}

.testimonial__footer{
    position: sticky;
    top: 100vh;
}

.circle-sketch-highlight{
    position:sticky;
}
  
.circle-sketch-highlight:before{
content:"";
z-index:-1;
left:-0.5rem;
top:-0.1rem;
border-width:2px;
border-style:solid;
border-color: var(--aqua);
position:absolute;
border-right-color:transparent;
width:100%;
height:1em;
transform:rotate(2deg);
opacity:0.7;
border-radius:50%;
padding:0.1em 0.25em;
}
  
.circle-sketch-highlight:after{
content:"";
z-index:-1;
left:-0.5rem;
top:0.1rem;
padding:0.1rem 0.25em;
border-width:2px;
border-style:solid;
border-color: var(--aqua);
border-left-color:transparent;
border-top-color:transparent;
position:absolute;
width:100%;
height:1em;
transform:rotate(-1deg);
opacity:0.7;
border-radius:50%;
}

@media only screen and (max-width: 768px){
    .testimonial__cards__grid{
        grid-template-columns: 1fr;
    }
}

/*TESTIMONIALS STYLES END*/


/*ABOUT STYLES END*/