@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --ff: "Montserrat",sans-serif;
}

*{
    padding: 0;
    margin: 0;
}

li.logo img{
    height: 100%;
    width: 100%;
}

li.logo a{
    width: 300px;
}

nav{
    background-color: black;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav li{
    height: 70px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: white;
    font-family: var(--ff);
    font-weight: 600;
}

nav a:hover{
    color: rgb(110, 108, 108);
}

nav li.logo:last-child{
    margin-left: auto;
}

.sideBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: rgba(135, 194, 253, 0.385);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sideBar li{
    width: 100%;
}

.sideBar a{
    width: 100%;
}

.sideBar a:hover{
    color: white;
}

.sideBar li:hover{
    background-color: rgba(33, 127, 222, 0.385);
}

li.close:hover{
    background-color: transparent;
    
}

li.close a:hover{
    cursor: default;
}

li.close svg:hover{
    cursor: pointer;
    fill: white;
}

li.menu svg:hover{
    cursor: pointer;
    fill: rgb(76, 76, 76);
}

.menu{
    display: none;
}

div.section{
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/bw\ contact\ us.JPG);
    background-size: cover;
    background-position: center;
}

div.frosty{
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

h1{
    font-size: 90px;
    font-weight: 300;
    color: #FFFFFF;
    font-family: var(--ff);
    text-align: center;
}

div.header{
    padding: 10px 0;
}

div.section2{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

div.info, div.form{
    height: 550px;
    width: 50%;
    margin: 40px 0;
}

div.deets{
    font-weight: 700;
    font-family: var(--ff);
    font-size: 15px;
    color: #61accf;
    text-align: start;
    padding: 30px 25px;
}

div.dInfo{
    font-weight: 500;
    font-family: var(--ff);
    font-size: 20px;
    color: #FFFFFF;
    text-align: start;
}

a.highlight{
    text-decoration: none;
    color: #dadada;
    text-align: center;

}

a.highlight:hover{
    font-weight: 700;
}


div.socials li{
    display: inline-block;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 10px;
    margin-right: 20px;
    
}

div.socialInfo div.deets{
    font-size: 30px;
    text-align: start;
    font-family: var(--ff);
    font-weight: 500;
    color: #FFFFFF;
}


div.icon i{
    color: #FFFFFF;
    font-size: 30px;
}

div.icon{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 2px solid #1e7096;
    background-color: #1e7096;
}

div.phone, div.location, div.email{
    display: flex;
    text-align: center;
    align-items: center;
}








i{
    color: #FFFFFF;
    font-size: 60px;
}

li{
    list-style: none;
}

div.socials li a i{
    text-align: center;
}
div.socials li a i:hover{
    color: #aaa;
}

div.form{
    width: 420px;
    height: 500px;
    background: linear-gradient(135deg, rgba(32, 88, 183, 0.3), rgba(87, 161, 225, 0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 32px 0  rgba(0,0,0,0.37);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    
}

form div{
    color: white;
    font-family: var(--ff);
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    padding: 15px 0px;
}

.inputs{
    width: 300px;
    height: 30px;
    padding-left: 15px;
    border: none;
    outline: none;
    font-weight: 500;
    border-radius: 2px;
    color: #211f1f;
    font-family: var(--ff);
}

div textarea.inputs{
    height: 100px;
    padding-top: 10px;
    font-family: var(--ff);
}

.inputs:focus{
    border: 4px solid #0F93D1;
}

.inputs::placeholder{
    color: #818080;
}


div button{
    padding: 10px 20px;
    font-size: 20px;
    font-family: var(--ff);
    font-weight: 400;
    color: #fff;
    border: none;
    border-radius: 30px;
    background-color: #0F93D1;
    cursor: pointer;
}

div button:hover{
    font-weight: 600;
    background-color: #08384f;
}

/*Success*/

h1.success{
    font-size: 50px;
    text-align: start;
    color: black;
    font-family: var(--fa);
    font-weight: 500;
    margin: 30px 0;
}

p.return{
    text-align: center;
    font-size: 25px
}

p.return a{
    color: #747070;
    font-weight: 400;
}

div.sCont{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.successContent{
    background-color: #ebe8e8;
    padding: 20px 20px;
    width: 90%;
    height: 300px;
}

.s{
    display: flex;
    justify-content: center;
    align-items: center;
}

h2.success2{
    text-align: start;
    font-weight: 300;
    margin: 30px 0;
    font-size: 30px;
    color: black;
}

.successLogo{
    width: 200px;
}




footer{
    background-color: #292727;
    padding-top: 25px;
}

.footer img{
    width: 300px;
    height: 70px;
    padding-bottom: 25px;
}

footer div{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footerpages{
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--ff);
    font-size: 20px;
}

div.links ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 30px;
    
}

div.links ul{
    text-align: center;
}

h2{
    color: #FFFFFF;
    font-family: var(--ff);
    font-weight: 500;
}

.links ul li a:hover{
    color: #aaa;
}

div.bottom{
    background-color: #3c3b3b;
    margin-top: 20px;
}

.bottom p{
    color: #FFFFFF;
}


@media (max-width:1024px) {

    footer{
        background-color: #292727;
        padding-top: 25px;
    }
    
    footer div{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: start;
    }
    
    .footerpages{
        text-decoration: none;
        color: #FFFFFF;
        font-family: var(--ff);
        font-size: 20px;
    }
    
    div.links ul li{
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
        
    }
    
    div.links ul{
        text-align: start;
    }
    
    h2{
        color: #FFFFFF;
        font-family: var(--ff);
        font-weight: 700;
        margin: 0 30px;
        font-size: 20px;
    }
    
    .links ul li a:hover{
        color: #aaa;
    }
    
    .socials li{
        list-style: none;
        display: inline-block;
        margin: 25px 20px;
    }
    
    i{
        color: #FFFFFF;
        font-size: 40px;
    }
    
    div.socials li a i{
        text-align: center;
    }
    div.socials li a i:hover{
        color: #aaa;
    }
    div.bottom{
        background-color: #3c3b3b;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .bottom p{
        color: #FFFFFF;
        font-size: 15px;

    }
    
}

@media (max-width: 1180px) {
    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }
}


@media (max-width:450px) {

    .sideBar{
        width: 100%;
    }

}


@media (min-width:1025px) {

    nav a{
        height: 100%;
        padding: 0 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: #aaa;
        font-family: var(--ff);
        font-weight: 600;
    }

    .nav ul li.hideMobile a:hover::after{
        width: 0;
    }
    
}


@media (max-width:450px) {

    .sideBar{
        width: 100%;
    }

}

@media (max-width:540px) {

    div.section{
        height: 1300px;
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/bw\ contact\ us.JPG);
        background-size: cover;
        background-position: center;
    }
    
    div.frosty{
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    li.logo a{
        width: 220px;
    }
    
    h1{
        font-size: 50px;
        font-weight: 300;
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
    }
    
    div.header{
        padding: 10px 0;
    }
    
    div.section2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    
    div.info, div.form{
        height: 550px;
        width: 90%;
        margin: 40px 0;
    }
    
    div.deets{
        font-weight: 700;
        font-family: var(--ff);
        font-size: 16px;
        color: #61accf;
        text-align: start;
        padding: 30px 25px;
    }
    
    div.dInfo{
        font-weight: 500;
        font-family: var(--ff);
        font-size: 14px;
        color: #FFFFFF;
        text-align: start;
    }
    
    a.highlight{
        text-decoration: none;
        color: #dadada;
        text-align: center;
    
    }
    
    a.highlight:hover{
        font-weight: 700;
    }
    
    
    div.socials li{
        display: inline-block;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 10px;
        margin-right: 20px;
        
    }
    
    div.socialInfo div.deets{
        font-size: 30px;
        text-align: start;
        font-family: var(--ff);
        font-weight: 500;
        color: #FFFFFF;
    }
    
    
    div.icon i{
        color: #FFFFFF;
        font-size: 20px;
    }
    
    div.icon{
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        border: 2px solid #1e7096;
        background-color: #1e7096;
    }
    
    div.phone, div.location, div.email{
        display: flex;
        text-align: center;
        align-items: center;
    }

    .phone .dInfo a{
        color: #dadada;;
    }

    /*Success*/

    h1.success{
        font-size: 25px;
        text-align: start;
        color: black;
        font-family: var(--fa);
        font-weight: 500;
        margin: 60px 0;
        font-family: var(--fa);
    }
    
    p.return{
        text-align: center;
    }
    
    p.return a{
        color: #747070;
        font-weight: 400;
    }
    
    div.sCont{
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .successContent{
        background-color: #ebe8e8;
        padding: 20px 20px;
        width: 80%;
        height: 250px;
    }
    
    .s{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    h2.success2{
        text-align: start;
        font-weight: 300;
        margin: 30px 0;
        font-size: 16px;
    }

    
}

@media (min-width:768px) and (max-width:1024px) {

    .phone .dInfo a{
        color: #dadada;;
    }
    
    div.section{
        height: 1400px;
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/bw\ contact\ us.JPG);
        background-size: cover;
        background-position: center;
    }
    
    div.mesh{
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    h1{
        font-size: 90px;
        font-weight: 300;
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
    }
    
    div.header{
        padding: 10px 0;
    }
    
    div.section2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }
    
    div.info, div.form{
        height: 550px;
        width: 80%;
        margin: 40px 0;
    }
    
    div.deets{
        font-weight: 700;
        font-family: var(--ff);
        font-size: 15px;
        color: #61accf;
        text-align: start;
        padding: 30px 25px;
    }
    
    div.dInfo{
        font-weight: 500;
        font-family: var(--ff);
        font-size: 20px;
        color: #FFFFFF;
        text-align: start;
    }
    
    a.highlight{
        text-decoration: none;
        color: #dadada;
        text-align: center;
    
    }
    
    a.highlight:hover{
        font-weight: 700;
    }
    
    
    div.socials li{
        display: inline-block;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 10px;
        margin-right: 20px;
        
    }
    
    div.socialInfo div.deets{
        font-size: 30px;
        text-align: start;
        font-family: var(--ff);
        font-weight: 500;
        color: #FFFFFF;
    }
    
    
    div.icon i{
        color: #FFFFFF;
        font-size: 30px;
    }
    
    div.icon{
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        border: 2px solid #1e7096;
        background-color: #1e7096;
    }
    
    div.phone, div.location, div.email{
        display: flex;
        text-align: center;
        align-items: center;
    }
}

@media (min-width:1180px) and (max-width:1180px) {

    .phone .dInfo a{
        color: #dadada;;
    }

    div.section{
        height: 100vh;
        width: 100%;
        background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/bw\ contact\ us.JPG);
        background-size: cover;
        background-position: center;
    }
    
    div.mesh{
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    h1{
        font-size: 90px;
        font-weight: 300;
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
    }
    
    div.header{
        padding: 10px 0;
    }
    
    div.section2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    div.info, div.form{
        height: 550px;
        width: 45%;
        margin: 40px 0;
    }
    
    div.deets{
        font-weight: 700;
        font-family: var(--ff);
        font-size: 15px;
        color: #61accf;
        text-align: start;
        padding: 30px 25px;
    }
    
    div.dInfo{
        font-weight: 500;
        font-family: var(--ff);
        font-size: 20px;
        color: #FFFFFF;
        text-align: start;
    }
    
    a.highlight{
        text-decoration: none;
        color: #dadada;
        text-align: center;
    
    }
    
    a.highlight:hover{
        font-weight: 700;
    }
    
    
    div.socials li{
        display: inline-block;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 10px;
        margin-right: 20px;
        
    }
    
    div.socialInfo div.deets{
        font-size: 30px;
        text-align: start;
        font-family: var(--ff);
        font-weight: 500;
        color: #FFFFFF;
    }
    
    
    div.icon i{
        color: #FFFFFF;
        font-size: 30px;
    }
    
    div.icon{
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100px;
        border: 2px solid #1e7096;
        background-color: #1e7096;
    }
    
    div.phone, div.location, div.email{
        display: flex;
        text-align: center;
        align-items: center;
    }
}
  
