*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.google-font-text{
    font-family: 'Lobster', cursive;
}
/* navbar */
.navbar {
    position:fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000;
}
.navbar-brand img{
    border-radius: 100%;
    border: 2px solid #0082E6;
    margin-left: 10px;
}

nav ul{
    position: relative;
    float: right;
    margin-right: 20px;
    display: flex;
}

nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}

a.active, a:hover{
    background:#1b9bff;
    transition: .5s;
}

.body{
    height: 100%;
    width: 100%; 
}

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 100px;
}

.container::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("charlotte2.jpg") no-repeat center;
    background-size: cover;
    z-index: -1;
    filter:blur(50px);
}
.contact-box{
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items:center;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 0px 19px 5px rgba(0, 0, 0, 0.19);
}


.left{
  
    height: 100%;
    background: url("charlotte2.jpg") no-repeat center;  
    background-size: cover;
}
.right{
    padding: 25px 40px; 
}

h2{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
h2::after{
    content:'';
    position:absolute;
    left:45%;
    bottom: 0;
    transform: translateX(-50);
    height:4px;
    width: 50px;
    border-radius: 2px;
    background-color: #0082e6;
}
.field{
    width: 100%;
    padding: 0.5rem 1 rem;
    outline: none;
    border: 2px solid rgba(0,0,0,0);
    background-color: rgba(230, 230, 230, 0.6);
    font-size: 1.1rem;
    margin-bottom: 22px;
    transition: .3s;
}

.field:hover{
    background-color: rgba(0,0,0,0.1);
}

.field:focus{
    background-color: #fff;
    border:2px solid rgba(30, 85, 250, 0.47);
}
.area{
    min-height: 150px;
}

.btn-btn{
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #0082E6;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    transition: .3s;
}
.btn-btn:hover{
    background-color: #27ae60;
}
    @media screen and (max-width:880px){
        .contact-box{
            grid-template-columns: 1fr;
        }
        .left{
            height: 200px;
        }
    }



/* footer */
.footer-nav{
    height: auto;
    width: 100%;
    text-align: center;
    background: #0082e6;
    overflow: auto;
    padding: 5px; 
    color: #fff; 
}

.footer-nav li :visited{
    color: #fff;
}
.footer-nav ul li{  /*display inline */
    text-decoration: none;
    display: inline;
    margin-left:50px;
    font-family: helvetica;  
    color:#fff;  
}
.footer-nav li a:hover{
    color: #000;
    opacity: 0.5;
    font-size: 20px;
}
.footer-nav p{
    font-family: helvetica;
    color: #000;
}
