@charset "utf-8";



/*  =======================================================================   *
    TAGS - GENERAL
*   =======================================================================  */
/*  - Remove margins and padding from all elements
    - Set 'border-box' for "box-sizing"
    - Set default styles for elements
*   =======================================================================  */
* {
	margin: 0;
	padding: 0;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
    background-color: whitesmoke;
}

body {
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
    font-size: 16px;
	font-family: 'IBM Plex Sans', sans-serif;
    color: #333333;
	background-color: white;
}

p {}

li {
	list-style: none;
}

a {
    color: #333333;
	text-decoration: none;
    cursor: pointer;
}
/*  END: TAGS  ============================================================  */
/*  =======================================================================  */








/*  ================================  *
    BUTTONS
*   ===================================================  */
/*  - Comment goes here
*   ===================================================  */
button {
    padding: 15px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    border-style: none;
    cursor: pointer;
    
    transition: all 0.3s ease-in-out;
}


.button-light {
    background-color: white;
    color: #5847C1;
}

.button-light:hover {
    box-shadow: 0px 0px 5px 3px #AFA2FF;
    color: #AFA2FF;
}

.button-dark {
    background-color: #5847C1;
    color: white;
}

.button-dark:hover {
    box-shadow: 0px 0px 5px 3px white;
    color: #AFA2FF;
}

/*  .button-group  ----------------  */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 360px) {
    .button-group {
        flex-direction: row;
    }
}/*  END: .button-group  ----------  */
/*   END: BUTTONS =====================================  */








/*  =======================================================================   *
    HEADER | NAVIGATION | HERO
*   =======================================================================  */
/*  The header includes the nav and the hero element.
*   =======================================================================  */
header {
    position: relative;
}

.logo_brand {
    height: 50px;
}




/*  ================================  *
    NAVIGATION
*   ===================================================  */
/*  Mobile navigation menu shown by default for tablet 
    & mobile devices
*   ===================================================  */
nav {
    position: fixed;
    top: 0;
    left: auto;

    width: 100%;
    max-width: 1920px;
    height: 100px;
    padding: 25px 30px;
    margin: 0 auto;
    
    background-color: rgba(255,255,255,0.90);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    max-width: 1600px;
    margin: 0 auto;
}


/*  .nav-menu  --------------------  */
.nav-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    
    flex-direction: column;
    text-align: center;
    width: 100%;
    
    transition: right 0.5s;
    background-color: rgba(0,0,0,0.75);
}

.nav-menu.active {
    right: 0;
}

@media (min-width: 1024px){
    .nav-menu {
        position: initial;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: rgba(0,0,0,0.0);
        gap: 1.75vw;
    }  
}/*  END: .nav-menu  --------------  */


/*  .nav-link  --------------------  */
.nav-link {
    margin: 20px 0;
}

@media (min-width: 1024px) {
    .nav-link {
        margin: 10px 0;
    }
}/*  END: .nav-link  --------------  */


/*  btn-nav-signup  --------------  */
.btn-nav-signup {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .btn-nav-signup {
        margin-bottom: 0;
    }
}/*  END: btn-nav-signup  ---------  */


.btn-nav-signup .button-dark:hover {
    box-shadow: 0px 0px 5px 3px #AFA2FF;
}


/*  .nav-link a -------------------  */
.nav-link a {
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

@media(min-width: 1024px) {
    .nav-link a {
        color: #333333;
    }
}

.nav-link a:hover {
    color: #5847C1;  /* Lavender */  
}/*  END: .nav-link a  ------------  */
/*  END: NAVIGATION ===================================  */




/*  ================================  *
    HAMBURGER MENU BUTTON
*   ===================================================  */
/*  - Mobile navigation menu shown by default for 
      tablet & mobile devices
/*  - '.active' class is added by the script
*   ===================================================  */

/*  .hamburger  --------------------  */
.hamburger {
    display: block;
	cursor: pointer;
}


.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(315deg);
    background-color: #AFA2FF;	/* Lavender */
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-315deg);
    background-color: #AFA2FF;	/* Lavender */
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}/*  END: .hamburger  -------------  */


.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #5847C1;  /* Indigo */
}
/*  END: HAMBURGER ====================================  */





/*  ================================  *
    HERO
*   ===================================================  */
/*  Hero element
*   ===================================================  */
#hero-main {
    height: 600px;
    background-image: url("images/photos/photo1.jpg");
    background-position: center 25%;
}

#hero-sub {
    height: 500px;
}

.img-start {
    background-image: url("images/photos/photo4.jpg");
    background-position: center 25%;
}
.img-opportunities {
    background-image: url("images/photos/photo6.jpg");
    background-position: center 25%;
}
.img-equipment {
    background-image: url("images/photos/photo2.jpg");
    background-position: center 25%;
}
.img-faqs {
    background-image: url("images/photos/photo5.jpg");
    background-position: center 25%;
}
.img-values {
    background-image: url("images/photos/photo3.jpg");
    background-position: center 25%;
}
.img-contact {
    background-image: url("images/photos/photo7.jpg");
    background-position: center 25%;
}





.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    
    margin-top: 100px;
    padding: 0 10%;
    
    background-color: #CCCCCC;
    background-size: cover;
    background-repeat: no-repeat;
    
    color: #FFFFFF;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}
/*  END: HERO =========================================  */
/*  END: HEADER ===========================================================  */




/*  =======================================================================   *
    MAIN
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
main {
    text-align: center;
}

h1 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

section {
    padding: 80px 10%;
}



#benefits {}

@media (max-width: 359px) {
    #overview {
        padding: 80px 0;
    }
    
    #overview section {
        padding: 80px 0;
    }
}





/*  ================================  *
    INTRO
*   ===================================================  */
/*  - Comment
*   ===================================================  */
.intro {
    max-width: 900px;
    margin: 0 auto 40px;
}




/*  ================================  *
    HIGHLIGHTS
*   ===================================================  */
/*  .highlights  ------------------  */
.highlights {
    transition: 0.5s;
}

@media (min-width: 768px) {
    .highlights {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        /*  gap: 4%;  */
        
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .highlights {
        max-width: 1200px;
    }
}
/*  END: .highlights  -------------  */


/*  .highlight  -------------------  */
.highlight {
    max-width: 300px;
    margin: 0 auto 40px;
}

@media (min-width: 768px) {
    .highlight {
        /*  max-width: 40%;  */
    }
}

@media (min-width: 1024px) {
    .highlight {
        width: 22%;
        margin-bottom: 0;
    }
}

.highlight:last-of-type {
    margin-bottom: 0px;
}
/*  END: .highlight  --------------  */


.highlight .fa-solid {
    font-size: 40px;
    color: #5847C1;
    margin-bottom: 15px;
}

.highlight-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}




/*  ================================  *
    CONTENT
*   ===================================================  */
/*  .content  ---------------------  */
.content {
    max-width: 1600px;
    margin: 0 auto;
    color: #333333;
}

@media (min-width: 1024px) {
    .content {
        display: flex;
    }
}/*  END: .content  ---------------  */


.content h2 {
    color: #5847C1;
}



/*
.content-alt {

}

.content.content-alt h2 {

}
*/


@media (min-width: 1024px) {
    .content-alt .content-img {
        order: 2;
    }
}


/*  .content-img  -----------------  */
.content-img {
    height: 300px;
    
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 1024px) {
    .content-img {
        width: 50%;
        height: inherit;
    }
}/*  END: .content-img  -----------  */


.img-about { background-image: url("images/undraw/undraw_questions_re_1fy7.svg"); }
.img-opportunity { background-image: url("images/undraw/undraw_through_the_park_lxnl.svg"); }
.img-pay { background-image: url("images/undraw/undraw_make_it_rain_iwk4.svg"); }
.img-eligibility { background-image: url("images/undraw/undraw_accept_request_re_d81h.svg"); }


/*  .content-text  ----------------  */
.content-text {
    padding: 40px 10%;
}

@media (min-width: 1024px) {
    .content-text {
        width: 50%;
        padding: 3%;
        text-align: left;
    }
}/*  END: .content-text  ----------  */


.content p {
    margin-bottom: 20px;
}

.content button {
    margin-top: 20px;
}








/*  =======================================================================   *
    MISSION STATEMENT
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    
    background-color: lavender;
    background-image: url("images/photos/mission.jpg");
    background-position: 0 25%;
    background-size: cover;
    background-repeat: no-repeat;
    
    color: white;
}

#mission p {
    max-width: 900px;
    margin: 0 auto;
    
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    font-size: 20px;
}
/*   END: MISSION STATEMENT  ==============================================  */





/*  =======================================================================   *
    INFORMATION SESSION
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    
    background-color: lavender;
    background-image: url("images/photos/information.jpg");
    background-position: center 35%;
    background-size: cover;
    background-repeat: no-repeat;
    
    color: white;
}

#information p {
    max-width: 900px;
    margin: 0 auto 40px;
    
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    font-size: 20px;
}
/*   END: INFORMATION SESSION  ============================================  */



/*  =======================================================================   *
    STEPS
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
/*  #steps  -----------------------  */
#steps {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 500px;
    color: white;
    
    background-color: lavender;
    background-image: url("images/photos/steps.jpg");
    background-size: cover;
    background-position: center;
}

@media (min-width: 768px) {
    #steps {
        background-position: 0 33%;
    }
}/*  END: #steps  -----------------  */


#steps .highlight {
    text-align: left;
    display: flex;
}

.step-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 72px;
    font-weight: bold;
    color: #AFA2FF;
    margin-right: 20px;
}

.step-text {
    margin-top: 25px;
}

#steps h2,
#steps h3 {
    color: #AFA2FF;
}
/*   END: STEPS  ==========================================================  */








/*  =======================================================================   *
    MORE INFO
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#more-info {
    display: flex;
    justify-content: center;
    text-align: center;
    
    color: white;
    background-color: #5847C1;
    background-image: url("images/undraw/undraw_welcoming_re_x0qo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

#more-info p {
    margin-bottom: 40px;
    max-width: 900px;
}

#more-info .button-group {
    display: flex;
    justify-content: center;
}

#more-info .button-dark {
    background-color: #170C5C;
}
/*   END: MORE INFO  ======================================================  */








/*  =======================================================================   *
    FOOTER
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#footer {
    display: flex;
    justify-content: center;
    padding: 40px 5%;
    text-align: center;
    
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}

.img-footer1 {
    background-image: url("images/undraw/undraw_relaxing_at_home_re_mror.svg");
}

.img-footer2 {
    background-image: url("images/undraw/undraw_appreciation_re_x5ps.svg");
}
.img-footer3 {
    background-image: url("images/undraw/undraw_blooming_re_oum1.svg");
}
.img-footer4 {
    background-image: url("images/undraw/undraw_meditation_re_gll0.svg");
}
.img-footer5 {
    background-image: url("images/undraw/undraw_powerful_re_frhr.svg");
}
.img-footer6 {
    background-image: url("images/undraw/undraw_superhero_kguv.svg");
}
.img-footer7 {
    background-image: url("images/undraw/undraw_super_woman_dv-0-y.svg");
}




/*   END: FOOTER  =========================================================  */







/*  =======================================================================   *
    ABOUT
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#values {
/*    background-color: #AFA2FF;*/
}

#about {
    padding: 0;
}

.img-who {
    background-image: url("images/undraw/undraw_remotely_-2-j6y.svg");
}

.img-why {
    background-image: url("images/undraw/undraw_relaxing_at_home_re_mror.svg");
    background-position: bottom right;
}

#testimonials {
    background-color: #333333;
    color: #FFFFFF;
}

.testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    gap: 30px;
}

@media (min-width: 768px) {
    .testimonials {
        flex-direction: row;
    }
}


.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    max-width: 300px;
    
    font-style: italic;
    
    border: 1px solid #666666;
    padding: 30px 15px;
}

.testimonial-comment {
    margin-bottom: 20px;
    font-family: 'IBM Plex Serif', serif;
    font-size: 17px;
}

.testimonial-img {
    height: 100px;
    width: 100px;
    
    border: 5px solid #AFA2FF;
    border-radius: 50%;
    
    background-image: url("images/placeholder.svg");
    background-position: center;
    background-size: 100%;
    
    margin-bottom: 20px;
}

.testimonial-name {
    font-size: 24px;
    font-weight: bold;
    color: #AFA2FF;
}
/*   END: ABOUT ===========================================================  */







/*  =======================================================================   *
    GETTING STARTED
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#criteria {}
#process {
    margin: 0;
}

.img-apply {
    background-image: url("images/undraw/undraw_voice_interface_re_206s.svg");
    background-position: 10% 25%;
}

.img-register {
    background-image: url("images/undraw/undraw_certification_re_ifll.svg");
/*    background-position: 10% 25%;*/
}

.img-select {
    background-image: url("images/undraw/undraw_choose_re_7d5a_M.svg");
    background-position: top center;
}

.img-certify {
    background-image: url("images/undraw/undraw_happy_news_re_tsbd.svg");
}
/*   END: GETTING STARTED =================================================  */









/*  =======================================================================   *
    EQUIPMENT
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#equipment {
    margin: 0;
}

.equipment-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    row-gap: 60px;
    column-gap: 30px;
    
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    text-align: left;
    width: 340px;

}

.equipment-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}


.img-computer {
    background-image: url("images/equipment/equipment-computer.jpg");
}

.img-monitor {
    background-image: url("images/equipment/equipment-monitor.jpg");
}

.img-dialpad {
    background-image: url("images/equipment/equipment-dialpad.jpg");
}

.img-headset {
    background-image: url("images/equipment/equipment-headset.jpg");
}

.img-internet {
    background-image: url("images/equipment/equipment-internet.jpg");
}

.img-telephone {
    background-image: url("images/equipment/equipment-telephone.jpg");
}


.equipment-name {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #5847C1;
}

.equipment-text {
    margin-bottom: 20px;
}

.equipment-list {
    
}

.equipment-list li {
    text-decoration: underline;
    list-style: square;
    margin-left: 20px;
}






/*  =======================================================================   *
    OPPORTUNITY
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#opportunity {}

.opportunities-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
    row-gap: 30px;
    column-gap: 30px;
    
    max-width: 1600px;
    
}

.opportunity {
    border: 1px solid #999999;
    border-radius: 10px;
    padding: 40px 20px;
    width: 340px;
    
    background-color: #F8F8F8;
}

.opportunity .fa-solid {
    font-size: 32px;
    margin-bottom: 15px;
    color: #5847C1;
}

.opportunity-name {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.opportunity-text {
    
}







/*  =======================================================================   *
    FAQs
*   =======================================================================  */
/*  - Comment
*   =======================================================================  */
#faqs {}

#faqs h2 {
/*    text-align: left;*/
}

#faqs .intro {
    margin-bottom: 80px;
}

.faqs-group {
    max-width: 600px;
    margin: 0 auto 80px;;
}

.faq-item {
    text-align: left;
    
    margin-bottom: 10px;
}

.faq-icon {
    font-size: 20px;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    color: #5847C1;
    
    margin-left: 10px;
    cursor: pointer;
}

.faq-answer {
    margin-top: 10px;
/*    margin-left: 30px;*/
/*    font-style: italic;*/
    
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}


/*
.faq-item .active {
    color: #AFA2FF;
}
*/









.contact-form {  
    max-width: 900px;
    margin: 0 auto;
}

#contact_name,
#contact_phone,
#contact_email,
#contact_message {
    width: 100%;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    #contact_name,
    #contact_phone {
        width: 48.5%;
    }
    
    .name_phone {
        display: flex;
        justify-content: space-between;
    }
}


#contact_message {
    min-height: 200px;
    margin-bottom: 20px;
}


input,
textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #999999;
    resize: vertical;
}

::placeholder {
    font-style: italic;
}

input:focus,
textarea:focus {
    outline-color: #5847C1;
    background-color: lavender;
    transition: 0.3s;
}

input[type=submit] {
    cursor: pointer;
    font-weight: bold;
    transition: 0.5s;
    text-transform: uppercase;
}

input[type=submit]:disabled {
    cursor: not-allowed;
    background-color: #333333;
}

label {
    display: none;
}

#contact_quiz_label {
    display: inline;

}

#contact_quiz_input {
    width: 50px;
    margin-right: 10px;
}
