.header{
    display: flex;
    flex-direction: row;
    height: 94px;
    justify-content: space-between;
}

body{
    margin: 0;
    height: auto;
}

.logo{
    width: 350px;
    height: 94px;
}

.logo-icon{
    margin-right: -1px;
    margin-left: 10vw;
    padding-top: 15px;
}

.nav{
    margin-right: 93px;
    margin-top: 50px;
}

.nav a {
    text-decoration: none;
    background: black;
    color: white;
    padding: 8px 17px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 16px;
    font-family: 'quicksand', sans-serif;
    font-weight: 400;
    transition: background-color 0.15s;
}

.nav a:hover{
    background-color: rgb(210, 76, 76);
}

.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: rgb(46, 163, 242);
}


.large-container{
    width: 50%;
    text-align: left;
    margin: auto;
    margin-top: 100px;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    margin: 0;
}

.title5{
    font-size: 65px;
    font-family: 'Montserrat', Helvetica, Arial, Lucida;
    font-weight: 500;
}

.title5 p{
    margin-top: 0px; 
    margin-bottom: 30px;
}

.subheading{
    font-size: 36px;
    font-family: 'Montserrat', Helvetica, Arial, Lucida;
    font-weight: 500;
}

.subheading p{
    margin-top: 15px;
}

.para{
    font-size: 19px;
    font-family: 'Libre Caslon Text', Georgia;
    font-weight: 500;
}

.para a{
    text-decoration: none;
    color: rgb(46, 163, 242)
}

@media (max-width: 982px){
    .logo-icon{
        width: 169.5px;
        height: 53.2px;
    }

    .nav{
        display:none;
    }

    .nav-foot{
        display: none;
    }

    .dropdown.show {
        display: block;
    }
    .menu-icon{
        display: block;
    }    
}

@media (max-width: 760px){
    .large-container{
        width: 90%;
    }
}


.header-separator{
    width: 100%;   
    margin: 0;
    border: none;  
    height: 2px;   
    background-color: rgb(242, 242, 242); 
}