html,body{
    background-color: #fff;
    font-family: 'Source Sans Pro',sans-serif;
    margin: 0px !important;
    padding: 0px !important;
}

*{
    text-decoration: none !important;
}

.myClass{
    color:red;
}
.logo{
    color: black;
}
/* navbar */

.nav{
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 0 25px;
    background-color: #ccf8bf;
    box-shadow: 0 19px 38px rgba(0,0,0,0.10);
    /* border-bottom-left-radius: 10px; */
    /* border-bottom-right-radius: 10px; */
}

.nav .links a{
    margin-right: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.nav .links {
    color: #e0501b;
}

.nav h4{
    font-size: 22px;
    font-weight: bold;
    margin-left: 25px;
}

/* LANDING CSS */

.ambuClass{
    margin: 10px;
}
.myHead{
    padding: 16px;
}
.landing{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10vw 0 10vw;
    height: 100vh;
    margin-top: 80px;
}

.landingText h1{
    font-size: 4vw;
    margin: 0 !important;
}

.landingText h3{
    margin: 6px !important;
    font-size: 20px;
    opacity: 0.3;
    line-height: 30px;
}

.landingText .btn{
    width: 160px;
    margin-top: 30px;
    padding: 14px 20px 14px 20px;
    background-color: #ccf8bf;
    border-radius: 45px;
    text-align: center
}

.landingText .btn a{
    font-size: 1.2vw;
    color: rgb(0, 0, 0);
}

.btn:hover {
    background-color: #d1f084;
}

.landingImage img{
    width: 28vw;
}

.infoHeader{
    text-align: center;
    margin: 40px 0;
}

/* RESPONSIVE */
@media only screen and (max-width: 600px){

    .nav{
        flex-direction: column;
        justify-content: space-around;
        padding: 20px;
        height: auto;
        overflow-y: hidden;
    }
    
    .nav h4{
        font-size: 6vw;
        margin-top: 10px;
        margin-bottom: 14px;
    }
    
    .nav .links a{
        margin-right: 25px;
        font-size: 12px;
        font-weight: 600;
    }

    /* LANDING PAGE */

.landing{
    flex-direction: column-reverse;
    height: 750px;
    align-items: center;
    justify-content: center;
    text-align: center
}

.landingText h1{
    font-size: 6vw;
    margin: 0 !important;
}

.landingText h3{
    font-size: 16px;
}

.landingText .btn{
    margin: 0 auto;
}

.landingText .btn a{
    font-size: 3vw;
}

.landingImage img{
    width: 52vw;
    margin-bottom: 20px;
}
}