*{
    font-family: 'Poppins', sans-serif;
}

html,body {
    overflow-x: hidden;
    width: calc(100vw - 13px);
    margin: 0;
    padding: 0;
    overflow-y: auto !important;
}

body::-webkit-scrollbar {
    width: 13px;
}

body::-webkit-scrollbar-thumb {
    background: rgb(150, 150, 150);
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
  
body::-webkit-scrollbar-thumb:hover {
background: rgb(131, 131, 131);
}
  
body::-webkit-scrollbar-thumb:active {
background: rgb(104, 104, 104);
}

.header{ 
    height: 12vh;
    width: 100%;
    background: #fff;
}

nav{
    display: flex;
    padding: 0 6%;
    top: 50%;
    transform: translateY(-50%);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.nav-image{
    width: 12vw;
}

.nav-image img{
    width: 60px;
}

.nav-links{
    flex: 1;
    text-align: center;
    z-index: 1;
}

.nav-links ul{
    padding: 0;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}

.nav-links ul a{
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-background{
    border-radius: 4vh;
    height: 8vh;
    background-color: #1E3E71;
    width: 25vw;
    position: absolute;
    left: 37.5vw;
}

nav .fa{
    display: none;
}


/*
.nav-links2{

    border-radius: 4vh;
    height: 8vh;
    width: 12vw;
    background-color: #fff;
    text-align: center;
    margin: auto;
    
    border: 2px solid #1DCDFE;
    z-index: 1;
}
*/


.nav-links2{
    text-align: center;
    width: 12vw;
}

.nav-links2 ul{
    padding: 0;
}

.nav-links2 ul li{
    list-style: none;
    display: inline-block;
    position: relative;
}


.nav-links2 ul a{
    color: #1DCDFE;
    font-size: 18px;
    text-decoration: none;

    border-radius: 4vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
    padding-left: 3vw;
    padding-right: 3vw;
    background-color: #fff;
    margin: auto;
    
    border: 2px solid #1DCDFE;
    z-index: 1;
}

.nav-links ul li a:hover{
    color: #969696;
    transition: 0.5s;
}

/*
.nav-links2:hover{
    transition: 1s;
    border: 2px solid #21D0B2;
}
*/

.nav-links2:hover ul a{
    color: #21D0B2;
    transition: 1s;
    border: 2px solid #21D0B2;
}


.text-secondary-color{
    color: #1DCDFE;
}

.landing{

    background-image: linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.85)),url(MyPictures/landing_image.png);
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    
}

.landing-content{
    color: #1E3E71;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
}

.landing-content h1{
    font-size: 62px;
    margin-bottom: 4%;
}

.landing-content p{
    font-size: 20px;
    margin-top: 0;
}


.white-btn{
    display: inline-block;
    text-decoration: none;
    color: #1DCDFE;
    border: 2px solid #1DCDFE;
    padding: 12px 34px;
    border-radius: 12px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
/*
.white-btn:hover{
    border: 1px solid #1DCDFE;
    background: #1DCDFE;
    color: #fff;
    transition: 1s;
}
*/

.content-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3E71;
    width: 100vw;
    position: relative;
    top: -300px;
}

.container-img{
    width: 50vw;
    max-height:100%;
    padding-right: 10vw;
}

.containter-text{
    padding-left: 10vw;
}

.containter-text h1{
    font-size: 62px;
    margin-bottom: 4%;
}

.containter-text p{
    font-size: 20px;
    margin-top: 0;
}

.landing-section-2{
    position: relative;
    top: -100px;
    color: #1E3E71;
}

.landing-section-2 img{
    width: 97%;
    display: block;
    margin: auto;
    border-radius: 40px;
}

.landing-section-2 h1{
    font-size: 52px;
    position: absolute;
    top: 8%;
    right: 8%;
}

.landing-section-2-text p{
    font-size: 20px;
}

.landing-section-2-text{
    position: absolute;
    bottom: 15%;
    left: 8%;
}


.landing-section-3{
    position: relative;
    top: -200px;
    color: #fff;
}


.landing-section-3-grid{
    padding-top: 30vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3rem;
    grid-template-areas: 'whyCOL1 whyCOL2 whyCOL3';
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}

.landing-section-3-grid img{
    padding-top: 50px;
    height: 125px;
    padding-bottom: 30px;

}
.landing-section-3-col-1{
    background: #1E3E71;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL1;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
p{
    padding-bottom: 5vh;
}

.landing-section-3-col-2{
    background: #1E3E71;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL2;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
p{
    padding-bottom: 5vh;
}

.landing-section-3-col-3{
    background: #1E3E71;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL3;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
p{
    padding-bottom: 5vh;
}

.containter-text-2{
    position: absolute;
}

.grey-background{
    width: 100vw;
    height:100vh;
    background-color: #F2F2F2;
    position: relative;
    top: -1vh;
    padding-bottom: 10vh;
}

.container-img-2 img{
    width: 80vw;
    position: absolute;
    top: 0;
    left: -10vw;
    max-height: 95vh;
}

.containter-text-2{
    left: 55%;
    color: #1E3E71;
    padding-top: 15vh;
}

.containter-text-2 h1{
    margin-top: 0%;
    font-size: 104px;
    margin-bottom: 4%;
    line-height: 110px;
}

.containter-text-2 p{
    font-size: 24px;
    margin-top: 0;
}

.wave4{
    width: 100%;
    margin: 0;
    padding: 0;
}

.solution1{
    background-image: url(MyPictures/Wave2.svg);
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
}

.solution1-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    width: 100vw;
}

.solution1-img img{
    width: 80vw;
    position: absolute;
    top: calc(0.05 * vw);
    right: -5vw;
    /*max-height: 100%;*/
    z-index: -0;
}

.solution1-text{
    position: absolute;
    top: 25vh;
    right: 50vw;
}

.solution1-text h1{
    font-size: 62px;
}

.solution2 {
    background-color: #1E3E71;
    width: 100vw;
    padding-top: 10vh;
    padding-bottom: 30vh;
}

.solution2-content{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    
}

.solution2-img{
    width: 50vw;
    max-height:100%;
    padding-left: 10vw;
}

.solution2-text{
    padding-right: 10vw;
    padding-left: 2vw;
}

.solution2-text h1{
    font-size: 40px;
    margin-bottom: 4%;
}

.solution2-text p{
    font-size: 20px;
    margin-top: 0;
}

.transition-oval{
    height: 300px;
    width: calc(100vw - 13px);
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    bottom: 150px;
}

.solution3 {
    background-color: #fff;
    width: 100vw;
}

.solution3-content{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 300px;
}

.solution3-img{
    width: 50vw;
    max-height:100%;
    padding-right: 8vw;
}

.solution3-text{
    padding-left: 10vw;
    color: #1E3E71;
}

.solution3-text h1{
    font-size: 40px;
    margin-bottom: 4%;
}

.solution3-text p{
    font-size: 20px;
    margin-top: 0;
}

.solution4{
    background-image: url(MyPictures/Wave3.svg);
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    position: relative;
    top: -200px;
}

.solution4-grid{
    padding-top: 30vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 3rem;
    grid-template-areas: 'whyCOL1 whyCOL2 whyCOL3';
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;
}
.solution4-grid img{
    padding-top: 50px;
    height: 125px;
    padding-bottom: 30px;

}
.solution4-col-1{
    background: #fff;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL1;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.solution4-col-2{
    background: #FFF;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL2;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.solution4-col-3{
    background: #FFF;
    border-radius: 30px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    grid-area: whyCOL3;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.extend{
    background: #1E3E71;
    width: 100%;
    height: 200px;
    bottom: -200px;
    position: absolute;
}

.grow { 
    transition: all .2s ease-in-out; 
}
    
.grow:hover { 
transform: scale(1.1); 
}

.footer{
    height: 25vh;
}

.footer-logo{
    grid-area: footerLogo;
    cursor: pointer;
}

.footer-logo img{
    flex-shrink: 0;
    width: 100%;
}

.footer-slogan{
    grid-area: footerSlogan;
    margin: 0;
    font-size: 16px;
    color: #1E3E71;
}

.footer-links{
    grid-area: footerLinks;
    flex: 1;
    text-align: left;
    padding-left: 2vw;
}

.footer-links ul{
    padding: 0;
}

.footer-links ul li{
    list-style: none;
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.footer-links ul a{
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.footer-links ul li a:hover{
    color: #969696;
    transition: 0.5s;
}

.footer-icons{
    grid-area: footerIcons;
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: space-between;
    text-decoration: none;
    text-decoration-line: none;
}

.footer-icons .fa{
    cursor: pointer;
    font-size: 50px;
    color: #1DCDFE;
    text-decoration: none;
    text-decoration-line: none;
}

.footer-policies{
    grid-area: footerPolicies;
    flex: 1;
    text-align: left;
}

.footer-policies ul{
    padding: 0;
}

.footer-policies ul li{
    list-style: none;
    display: block;
    position: relative;
    padding-bottom: 20px;
}

.footer-policies ul a{
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.footer-policies ul li a:hover{
    color: #969696;
    transition: 0.5s;
}

.footer-grid {
    width: 80%;
    height: 22vh;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 'footerLogo footerLinks footerPolicies footerIcons' 'footerSlogan footerLinks footerPolicies footerIcons';
    align-items: left;
    column-gap: 20px;
    position: relative;
    top: -300px;
}

.about-landing{

    background-image: linear-gradient(rgba(255,255,255,0.85),rgba(255,255,255,0.85)),url(MyPictures/about_landing_image.jpg);
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    
}

.about-landing-content h1{
    font-size: 32px;
    margin-bottom: 4%;
    
}

.about-landing-content{
    flex: 1;
    text-align: left;
}

.about-landing-container{
    display: flex;
    color: #1E3E71;
    width: 60vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

.about-landing-img{
    height: 100%;
    flex: 1;
    text-align: center;
}


.about-content-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E3E71;
    width: 100vw;
    position: relative;
    top: -300px;
}

.about-containter-text{
    padding-left: 10vw;
    flex: 1.2;
}

.about-containter-text h1{
    font-size: 62px;
    margin-bottom: 4%;
}

.about-containter-text p{
    font-size: 20px;
    margin-top: 0;
}

.about-container-img{
    flex: 1;
    height: 70vh;
    margin-right: 10vw;
    margin-left: 5vw;

    background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.6)),url(MyPictures/Device\ History.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 40px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.team{
    text-align: center;
    top: -300px;
    position: relative;
    color: #1E3E71;
    align-items: center;
    justify-content: center;
}

.team h1{
    font-size: 42px;
}

.headshot{
    border-radius: 50%;
    width: 30vw;
    height: 30vw;
    object-fit: cover;
}

.team h3{
    font-size: 22px;
    font-weight: bold;
}

.team p{
    font-size: 16px;
}

.team-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.Aden{
    flex: 1;
    padding-right: 10%;
    padding-left: 5%;
}

.Jack{
    flex: 1;
    padding-left: 10%;
    padding-right: 5%;
}

.Elena p{
    padding-left: 32.5%;
    padding-right: 32.5%;
}

.title{
    font-size: 20px !important;
    padding-bottom: 0;
    padding-top: 0;
}

.page-break{
    width: 80%;
    border-top: 2px solid #1e3e71;
    margin-left: 10%;
}

.partners{
    color: #1E3E71;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -150px;
}

.partners-container{
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: row;
    gap: 5%;
}

.partners img{
    width: 30vw;
}

.partners h1{
    font-size: 42px;
}

.community-grey-background{
    width: 100%;
    height:120vh;
    background-color: #F2F2F2;
    position: relative;
    top: -1vh;
    padding-bottom: 10vh;
}

.comunity-title{
    text-align: center;
    color:#1E3E71;
    font-size: 42px;
    padding-top: 5%;
    margin-top: 0;
}

.community-flex-background{
    
    display: flex;
    width: 100%;
    position: relative;
    height: 50%;
    
}

.community-col-1{
    background-color: #fff;
    border-radius: 30px;
    flex: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-left: 8%;
    margin-right: 2%;
}

.community-col-2{
    background-color: #fff;
    border-radius: 30px;
    flex: 1;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-left: 2%;
    margin-right: 8%;
}


.community-flex{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'POimg CHADDimg' 'POtxt CHADDtxt' 'PObtn CHADDbtn';
    grid-gap: 0 10%;
    text-align: center; 
    align-items: center;
    justify-content: center;
    width: 80%;
    margin-left: 10%;  
    position: absolute;
    top: 15%;
}

.PO-img{
    height: 10vh;
    padding-top: 10%;
    grid-area: POimg;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.PO-txt{
    grid-area: POtxt;
    padding-top: 15px;
}

.CHADD-img{
    height: 10vh;
    padding-top: 10%;
    grid-area: CHADDimg;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.CHADD-txt{
    grid-area: CHADDtxt;
    padding-top: 0;
    margin-top: 0;
}

.PO-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #F04B4B;
    background-color: #F04B4B;
    /*padding: 12px 34px;*/

    width: 25%;
    margin-left: 37.5%;
    padding-top: 15px;
    padding-bottom: 15px;

    border-radius: 12px;
    font-size: 13px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10%;
    grid-area: PObtn;
}


.CHADD-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 2px solid #2B89BD;
    background-color: #2B89BD;
    width: 25%;
    margin-left: 37.5%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 12px;
    font-size: 13px;
    position: relative;
    cursor: pointer;
    margin-bottom: 10%;
    grid-area: CHADDbtn;
}


.contact-body {
    width: 100%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #F2F2F2;
    color: #1E3E71;
    text-align: center;
    padding-bottom: 20vh;
}

.contact-body h3 {
    text-align: left;
}
.contact-body input {
    width: 100%;
    height: 30px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 6px; 
    margin-bottom: 16px;
}
.contact-body button {
    padding: 5px 0 0 0;
    height: 50px;
    width: 30%;
    text-align: center;
}
.contact-message {
    height: 200px;
    width: 100%;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 6px; 
    margin-bottom: 16px;
    resize: none;
}
.contact-error {
    visibility: hidden;
}

.contact-form{
    width: 50%;
    display: inline-block;
    margin-bottom: 10vh;
}

.contact-header{
    font-size: 62px;
    text-align: left;
    margin: 0;
}

.contact-txt{
    font-size: 20px;
    text-align: left;
}

.nav-links-mobile{
    display: none;
}

.community-flex-mobile{
    display: none;
}





/* This is for phone screens 1050px*/
@media(max-width: 1050px){
    
    html, body{
        position: relative;
        width: 100% !important;
        overflow-x: hidden !important;
        top: 0;
    }
    
    /****** Nav links ******/
    .nav-links-mobile ul li{
        display: block;
    }

    .nav-links-mobile ul a{
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    
    .nav-links-mobile{
        display: unset;
        position: absolute;
        background: #1E3E71;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .fa-times{
        color: #fff;
    }

    .fa-bars{
        color: #1E3E71;
    }

    /*for the menu this aligns it to the right a tad  */
    .nav-links-mobile ul{
        padding: 30px
    }

    .nav-background{
        display: none;
    }

    .nav-links2{
        display: none;
    }

    .nav-links{
        display: none;
    }

    /****** Index *****/
    .landing{
        
        height: 50vh;
        background-size: cover;
        
    }
    
    .landing-content{
        color: #1E3E71;
        position: relative;
        
    }
    
    .landing-content h1{
        font-size: 35px;
        
    }
    
    .landing-content p{
        font-size: 20px;
    }

    .transition-oval{
        height: 100px;
        width: 100%;
        background-color: #fff;
        border-radius: 50%;
        position: relative;
        bottom: 50px;
    }

    .content-container{
        flex-direction: column;
        top: -100px;
    }

    .containter-text{
        padding-right: 10vw;
    }

    .containter-text h1{
        font-size: 35px;
        
    }
    
    .containter-text p{
        font-size: 20px;
        padding-bottom: 2vh;
    }

    .container-img{
        width: 100%;
        padding-right: 0;
        padding-bottom: 10vh;
    }

    .container-img img{
        width: 100%;
        
    }
    
    .landing-section-2 img{
        width: 90%;
        display: block;
        margin: auto;
        border-radius: 20px;
    }
    
    .landing-section-2 h1{
        font-size: 35px;
        position: relative;
        top: 0;
        right: 0;
        padding-left: 10vw;
    }
    
    .landing-section-2-text p{
        font-size: 20px;
        padding-bottom: 2vh;
    }
    
    .landing-section-2-text{
        position: relative;
        padding-left: 10vw;
        left: 0;
    }

    .landing-section-3-grid{
        
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
        grid-template-areas: 'whyCOL1' 'whyCOL2' 'whyCOL3';
    }

    .grey-background{
        display: flex;
        flex-direction: column;
        height: unset;
    }

    .landing-section-4{
        margin-bottom: 0;
    }

    .containter-text-2{
        position: relative;
    }

    .container-img-2 img{
        width: 100%;
        position: relative;
        left: 0;
        padding-top: 10vh;
    }

    .containter-text-2{
        left: 0;
        padding-top: 0;
        padding-left: 10vw;
        padding-right: 10vw;
    }

    .containter-text-2 h1{
        font-size: 60px;
        margin-bottom: 4%;
        line-height: 60px;
    }

    .containter-text-2 p{
        font-size: 20px;
        padding-bottom: 0;
    }

    .footer-grid {
        width: 80%;
        grid-template-columns: 1fr;
        grid-template-rows: 0.5fr 0.5fr 1fr 0.5fr 0.5fr;
        grid-template-areas: 'footerLogo' 'footerSlogan' 'footerLinks' 'footerIcons' 'footerPolicies';
        position: relative;
        top: 0px;
        padding-bottom: 10vh;
        height: unset;
    }

    .footer-logo{
        padding-bottom: 0;
    }

    .footer-links{
        padding: 0;
    }

    .footer-icons{
        padding-top: 2vh;
    }

    .footer-slogan{
        padding-top: 2vh;
    }

    .footer{
        height: unset;
    }

    .footer-policies{
        padding-top: 2vh;
    }
    
    /*
    .solution1-img img{
        width: 250%;
        
        position: relative;
        top: -150px;
       
        left: -75%;
        z-index: -0;
    }

    .solution1-text{
        position: relative;
        top: unset;
        right: unset;
        width: 80%;
        text-align: center;
        padding-left: 10%;
    }
    */

    .solution1-text h1{
        font-size: 50px;
    }
    

    .solution2 {
        margin-top: -10px;
        padding-bottom: 10vh;
    }

    .solution2-content{
        flex-direction: column;
        
    }

    .solution2-img{
        width: 100%;
        padding-left: 0;
    }

    .solution2-img img{
        width: 100%;
    }
    
    .solution2-text{
        padding-left: 10%;
        width: 80%;
        
    }
    
    .solution2-text h1{
        font-size: 35px;
        margin-bottom: 4%;
    }
    
    .solution2-text p{
        font-size: 20px;
        margin-top: 0;
    }

    .solution3-content{
        flex-direction: column;
        bottom: 100px;
    }

    .solution3-img{
        width: 100%;
        padding-right: 0;
    }

    .solution3-img img{
        width: 100%;
    }
    
    .solution3-text{
        padding-left: 0;
        width: 80%;
    }
    
    .solution3-text h1{
        font-size: 35px;
    }
    
    .solution3-text p{
        font-size: 20px;
    }

    .solution4{
        top: 0;
        height: unset;
        padding-bottom: 20vh;
    }

    .solution4-grid{
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
        grid-gap: 3rem;
        grid-template-areas: 'whyCOL1' 'whyCOL2' 'whyCOL3';
        width: 80%;
    }

    .extend{
        display: none;
    }

    .about-landing{
        width: 100%;
        height: 50vh;
    }

    .about-landing-content h1{
        font-size: 20px;
    }

    .about-landing-container{
        color: #1E3E71;
        width: 100%;
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0%,0%);
        padding-top: 5vh;
    }

    .about-landing-img img{
        width: 50%;
    }

    .about-content-container{
        flex-direction: column;
        width: 100%;
        position: relative;
        top: 0;
    }

    .about-containter-text{
        padding-left: 0;
        width: 80%;
        flex: unset;
    }

    .about-containter-text h1{
        font-size: 35px;
    }
    
    .about-containter-text p{
        font-size: 20px;
    }

    .about-container-img{
        flex: unset;
        height: 60vh;
        width: 90%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .team{
        top: 0;
        padding-top: 5vh;
    }

    .team-flex{
        flex-direction: column;
    }

    .Aden{
        flex: 1;
        padding-right: 0;
        padding-left: 0%;
        width: 80%;
    }
    
    .Jack{
        flex: 1;
        padding-right: 0;
        padding-left: 0%;
        width: 80%;
    }

    .Elena p{
        padding-left: 10%;
        padding-right: 10%;
    }

    .partners{
        top: 0;
        padding-bottom: 10vh;
    }

    .partners img{
        width: 50vw;
    }

    .partners-container{
        
        flex-direction: column;
        row-gap: 5vh;
        
    }

    .community-grey-background{
        height: unset;
    }

    .comunity-title{
        font-size: 35px;
    }

    .community-flex-background{
        display: none;
    }

    .community-flex{
        display: none;
    }

    .community-flex-mobile{
        display: flex;
        flex-direction: column;
        width: 80%;
        padding-left: 10%;
        text-align: center;
    }

    .community-col-mobile{
        background-color: #fff;
        border-radius: 30px;
        flex: 1;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        margin-bottom: 5vh;
    }

    
    .PO-img-mobile{
        height: 10vh;
        padding-top: 10%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .PO-txt-mobile{
        padding-top: 15px;
        width: 80%;
        padding-left: 10%;
    }

    .CHADD-img-mobile{
        height: 10vh;
        padding-top: 10%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .CHADD-txt-mobile{
        padding-top: 15px;
        margin-top: 0;
        width: 80%;
        padding-left: 10%;
    }

    .PO-btn-mobile{
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 2px solid #F04B4B;
        background-color: #F04B4B;
        padding: 12px 34px;

    
        border-radius: 12px;
        font-size: 13px;
        position: relative;
        cursor: pointer;
        margin-bottom: 10%;
    }


    .CHADD-btn-mobile{
        display: inline-block;
        text-decoration: none;
        color: #fff;
        border: 2px solid #2B89BD;
        background-color: #2B89BD;
        padding: 12px 34px;
        border-radius: 12px;
        font-size: 13px;
        position: relative;
        cursor: pointer;
        margin-bottom: 10%;
    }

    .contact-form{
        width: 80%;
        margin-bottom: 2vh;
        padding-right: 0;
        padding-left: 0;
    }

    .contact-body input {
        width: 90%;
    }

    .contact-message {
        width: 90%;
    }
}

/* This is for phone screens */
@media(max-width: 700px){
    .solution1-img img{
        width: 175%;
        
        position: relative;
        top: -80px;
       
        left: -37.5%;
        z-index: -0;
    }

    .solution1-text{
        position: relative;
        top: unset;
        right: unset;
        width: 80%;
        text-align: center;
        padding-left: 10%;
    }

    .solution1-text h1{
        font-size: 50px;
    }
}


/* This is for phone screens */
@media(max-width: 400px){
    .solution1-img img{
        width: 250%;
        
        position: relative;
        top: -100px;
       
        left: -75%;
        z-index: -0;
    }
}
