:root{
    --blue-clr: #1523ff;
    --naive-clr: #1d3673;
    --red-clr: #ff2a15;
    --gld-clr: #eac13b;
    --txt-clr: #ffffff;
    --txt-clr-: #ffffff;
    --bg-clr-: #212121;
    --bg-clr: #212121;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
}
body {
    background: var(--txt-clr);
    color: var(--bg-clr);
    transition: 1s;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 20px;
}

.nav-line{
    width: 100%;
    height: 1.5px;
    background: var(--gld-clr);
}

.nav-info{
    display: flex;
    justify-content: space-between;
    padding: 0px 40px;
    background: var(--naive-clr);
    color: var(--txt-clr-);
}
.nav-info ul{
    list-style: none;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 9px 2px;
    
}
.nav-info ul::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    left: -22px;
}
.nav-info ul li i{
    font-size: 15px;
    padding-right: 4px;
}


.nav-info .social{
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 9px 2px;
    padding-top: 11px;
}

.nav-info .social::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    left: -22px;
}
.nav-info .social::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--txt-clr-);
    right: -12px;
}

.nav-info .social a{
    height: 33px;
	width: 33px;
    text-align: center;
	background-color: var(--gld-clr);
	margin:0 10px 10px 0;
	line-height: 33px;
	border-radius: 5px;
	color: #ffffff;
	transition: all 0.5s ease;
}
.nav-info .social a:hover{
    border-radius: 50%;
}

.nav-info .social i{
    font-size: 17px;
}

.nav-info ul a{
    text-decoration: none;
    color: var(--txt-clr-);
    padding-left: 3px;
}
.nav-info ul i{
    font-size: 12px;
}

.logo span{
    color: var(--blue-clr);
    padding-left: 5px;
}
nav a{
    text-decoration: none;
    color: var(--bg-clr);
}

.logo img{
    height: 30px;
    width: 30px;
    margin-right: 10px;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.off-screen-menu{
    display: none;
}

.dark-light{
    height: 40px;
    width: 40px;
    margin-left: 15px;
    cursor: pointer;
}

.navbar li{
    list-style: none;
}
.navbar {
    display: flex; 
    justify-content: center;
    align-items: center;
}

.navbar a{
    display: flex;
    margin: 0px 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 5px 5px;
    transition: 0.4s;
}

.navbar a:hover{
    color: var(--txt-clr-);
}

.navbar a:after{
    content: "";
    position: absolute;
    background: var(--blue-clr);
    box-shadow: 0px 0px 10px var(--blue-clr);
    height: 4px;
    width: -1;
    left: 0;
    bottom: -1px;
    transition: 0.4s;
    z-index: -1;
}
.navbar a:hover:after{
    width: 100%;
    padding: 13px 0px;
}



.hero{
    width: 100%;
    height: 350px;
    background-image: url("img/contact.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero{
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--txt-clr-);
}

.hero h1{
    font-size: 80px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.info{
    margin: 25px 15px;
}

.info h2{
    font-size: 35px;
    text-transform: uppercase;  
    margin-bottom: 0px; 
    padding: 0px; 
}

.links{
    margin: 18px 10px;
    list-style: none;
    
}

.links i{
    font-size: 20px;
    color: var(--gld-clr);
    margin-right: 4px;
}

.links a{
    text-decoration: none;
    color: var(--bg-clr);
    font-size: 20px;
}

form{
    margin: 40px 0px;
}

form label{
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 500;
}

 .field{
    border: none;
    outline: none;
    width: 250%;
    font-size: 20px;
    font-weight: 450;
    
    padding: 8px 10px;
    border-bottom: 4px solid var(--blue-clr);
    background: #c2c2c2;
    color: var(--bg-clr-);
    margin-bottom: 30px;
}

.one{
    border-bottom: 4px solid var(--blue-clr);
}
.two{
    border-bottom: 4px solid var(--red-clr);
}

.area{
    height: 70px;
}

.btn{
    margin-top: 10px;
    font-size: 20px;
    padding: 10px 20px;
    padding-bottom: 5px;
    text-align: center;
    background: var(--txt-clr);
    color: var(--bg-clr);
    border: none;
    outline: none;
    border-radius: 0px;
    cursor: pointer;
    border-bottom: 2.5px solid var(--red-clr);
    transition: 0.75s;
}

.btn:hover{
    background: var(--red-clr);
    color: var(--txt-clr-);
    box-shadow: 0px 0px 9px var(--red-clr);
}


.contact {
    display: flex;
    justify-content: space-between;
    margin: 50px 40px;
    margin-right: 100px;
}

.prin_img{
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
}

.prin_img img{
    width: 405px;
    height: 631px;
    
}




.map iframe{
    width: auto;
    height: 400px;
    border: 2px solid var(--blue-clr);
    border-radius: 3px;
    margin: 20px 40px;
    
}
   .map{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

@media (max-width: 1280px){

    .contact{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .field{
            width: 100%;
        }

        

}

@media(max-width: 1025px){
    .nav-info{
        font-size: 13px;
    }

}

@media(max-width: 980px){
    .nav-info{
        font-size: 11px;
    }
}

@media (max-width: 821px){
    .navbar{
       display: none;
   }
   .contact{
    margin: 30px 20px;
    
   }

   .nav-info{
    display: none;
}
   
   .hide{
       display: flex;
   }
   
   .hero h1{
       font-size: 65px;
   }

   .prin_img img{
    width: 303.75px;
    height: 473.25px;
    
}

   .txt .line{
        width: 70%;
        margin-left: 15%;
   }
   
   .banner-img{
       height: 250px;
   }
   
   .info h2{
       font-size: 45px;
   }
   
   .info .line{
       width: 36%;
    }
    
    .info{
        margin-left: 30px;
    }
    
    form label{
        font-size: 30px;
    }
    
    

}

@media(max-width: 768px){
   .hero h1{
       font-size: 45px;
   }
   
   .field{
       height: 40px;
       border-bottom: 2.5px solid var(--blue-clr);
   } 
   
   .two{
        border-bottom: 2.5px solid var(--red-clr);
   }
   
     form label{
        font-size: 25px;
    }
    
    .btn{
        font-size: 20px;
    }
    
    .info{
        margin-bottom: 15px;
    }
    
    .hero{
        height: 200px;
    }
    
    .info h2{
       font-size: 35px;
   }
   
   .info .line{
       width: 45%;
    }

    
}


@media(max-width: 638px){
    .back-bar p{
        font-size: 19px;
    }
   
  
}


@media(max-width: 438px){

   
   .hero h1{
       font-size: 37px;
   }
   
   .logo{
       font-size: 15px;
   }
   
   .banner-img{
       height: 150px;
   }
   
   .info h2{
       font-size: 27px;
       font-weight: 500;
   }
   
   .info .line{
       width: 45%;
       margin-bottom: 12px;
       height: 2px;
    }
    
    .info{
        margin: 15px 15px;
        margin-bottom: 5px;
    }
    
    .links i{
        font-size: 17px;
    }
    .links a{
        font-size: 17px;
    }
    
    form{
        margin: 15px 15px;
        margin-top: 20px;
    }
    
    form label{
        font-size: 17px;
        font-weight: 400;
    }
    
    .btn{
        margin-top: 10px;
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .area{
        margin-bottom: 15px;
    }
    
    
    .back-bar p{
        font-size: 16px;
    }
   
    
 
}

@media(max-width: 376px){
   .hero h1{
       font-size: 30px;
   }
   
   .info h2{
      text-transform: none; 
      font-size: 27px;
   }
}


