@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: "Barlow", sans-serif;
    line-height: 1.7;
    color: #516171;
    background-color: #f1fcff;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 700 !important;
    color: #092032;
}

a{
    color: #092032;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
    
}

img{
    width: 100%;
}


/* NavBar */

.top-nav{
    background-color: #33A8FF;
    padding-top: 5px;
    padding-bottom: 5px;
}

.top-nav p{
    margin-bottom: 0;
    display: inline-block;
    margin-right: 20px;
    color: #ffffff;
}

.top-nav i, 
.top-nav span{
    vertical-align: middle;
}

.logo img{
    width: 80%;
}

.navbar{
    font-weight: bold;
    box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #b62204;
}

/* Button */

.btn{
    padding: 10px 24px;
    font-weight: 500;
}

.btn-brand{
    background-color: #b62204;
    color: #fff;
    border-color: #b62204;
}

.btn-brand:hover{
    color: #fff;
    background-color: #092032;
}


/* Login */

.popup{
    position: absolute;
    top: -150%;
    left:50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 380px;
    padding: 20px 30px;
    background: #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 20ms ease-in-out 0ms;
}

.popup.active {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 200ms ease-in-out 0ms;
}

.popup .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #b91212;
    color: #eee;
    text-align: center;
    font-size: 30px;
    line-height: 17px;
    border-radius: 15px;
    cursor: pointer;
}

.popup .form h2{
    text-align: center;
    color: #222;
    margin:10px 0px 20px;
    font-size: 40px;
}

.popup .form .form-element{
    margin: 15px 0px;
}

.popup .form .form-element label{
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.popup .form .form-element input[type="text"],
.popup .form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
}

.popup .form .form-element button{
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    font-size: 20px;
    font-weight: 500;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

/* Banner */

.banner-container{
    width: 100%;
    /* height: 100vh; */
}

.banner-area {
    width:100%;
    height: 50vh;
    background-image:url(../img/Sample5.jpg);
    background-size: cover;
    background-position: 20%;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .banner-text{
    padding: 150px 0;
  }

  .banner-text h1{
    letter-spacing: 5px;
    font-weight: bold;
    font-size: 40px;
    color: #fff;
    text-shadow: 2px 2px #747474;
    margin-right: 10%;
    text-align: right;
  }

/* Carousel Slider - Circular */

.carousel-inner{
    height: 200px;
    background: #f9f9f9;
    
}

.carousel-caption{
    color: #092032;
    top: 5px;
    
}


/* Footer */

footer{
    position: relative;
    width: 100%;
    background: #33A8FF;
    min-height: 50px;
}
  
footer .copyright-info{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-weight: 500;
    padding-top: 10px;
    margin-top: 10px;
}

.form-control{
	margin-bottom: 10px;
	
	
}

#btnclose:hover {
  background-color:red;
  color: white;
}
	
	
	
