*{
    box-sizing: border-box;
    margin: 0; 
    padding: 0;
}

body{
    color: #003366;
    margin: 0;
    padding: 0;
    background-color: #e5edf4;
    font-family: 'Poppins', sans-serif;
} 

h1, h2, h3{
    color: #00bcd4;
} 

.header{
    position: flex;
    width: 100%;
    z-index: 2;
    background-color: #303133;
}

.secondary{
    position: fixed;
}

.header .navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*color: white;*/
    padding:0.3% 5%;
}

.header .navbar .title{
    font-family: "Reality Hyper";
    font-size: 35px;
    transform: scaleY(1.4);
    color: #00bcd4;
    /*font-weight: 100;*/
    text-decoration: none;
    padding: 0.7rem 0px;
}

.header .navbar a:hover{
    /*background-color: black;*/
    color: red;
}
 
.header .navbar .links ul{
    padding: 0px;
    margin: 0px;
    display: flex;
}

.header .navbar .links li{
    list-style: none;
}

.header .navbar .links li a{
    text-decoration: none;
    color: #00bcd4;
    padding: .5rem 1rem;
    display: block;
}


.header .navbar .links li a:hover{
    background-color: black;
    color: red;
}

.header .navbar .togle{
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height:25px;

}

.header .navbar .togle .bar{
    height: 4px;
    width:30px;
    background-color: white;
    border-radius: 10px;
}



.chatform .center .fa{
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 10;
  padding: 0;
  font-size: 70px;
  color: #00bcd4;
  cursor: pointer;
}

.chatform .center .container{
  position: fixed;
  bottom: 80px;
  right: 30px;
  z-index: 10;
  border-radius: 7px;
  display: none;
  background: #fff;
  width: 400px;
  padding: 30px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.chatform .center input[type="checkbox"]{
    display: none;
}

.chatform .center .container h2{
    font-size: 35px;
}

#show:checked ~ .container{
    display: block;
}

.chatform .center .container .close-btn{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
}

.chatform .center .container .close-btn:hover{
    color: #3498db;
}
/*
.chatform .center .container .text{
  font-size: 35px;
  font-weight: 600;
  text-align: center;
  color: #3498db;  
}*/

.chatform .center .container form{
  margin-top: -20px;
}

.chatform .center .container form .data{
  height: 45px;
  width: 100%;
  margin: 40px 0;
}

.chatform .center .container form .data label{
  font-size: 18px;
}

.chatform .center .container form .data input{
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  border: 1px solid silver;
  border-radius: 7px;
}

.chatform .center .container form .data textarea{
  height: 100%;
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  border: 1px solid silver;
  border-radius: 7px;
}

.chatform .center .container form .data input:focus{
  border-color: #3498db;
  border-bottom-width: 2px;
}

.chatform .center .container form .data textarea:focus{
  border-color: #3498db;
  border-bottom-width: 2px;
}
/*
.chatform .center .container form .forgot-pass{
  margin-top: -8px;
}

.chatform .center .container form .forgot-pass a{
  color: #3498db;
  text-decoration: none;
}

.chatform .center .container form .forgot-pass a:hover{
  text-decoration: underline;
}*/

.chatform .center .container form .btn{
  margin: 30px 0;
  height: 45px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.chatform .center .container form .btn .inner{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  z-index: -1;
  background-color: #00bcd4;
  color: #fff;
  /*background: -webkit-linear-gradient(right, #56d8e4, #9f01ea, #56d8e4, #9f01ea);*/
  transition: all 0.4s;
}

.chatform .center .container form .btn:hover .inner{
  left: 0;
}

.chatform .center .container form .btn button{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  /*color: #fff;*/
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}


#status{
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    border-radius: 8px;
}

#status.success{
    background-color: green;
    color: white;
    animation: status 4s ease forwards;
}

#status.error{
    background-color: red;
    color: white;
    animation: status 4s ease forwards;
}

@keyframes status{
    0%{
        opacity: 1;
        pointer-events: all;
    }
    90%{
        opacity: 1;
        pointer-events: all;
    }
    100%{
        opacity: 0;
        pointer-events: none;
    }
}
/*
.chatform .center .container form .signup-link{
  text-align: center;
}

.chatform .center .container form .signup-link a{
  color: #3498db;
  text-decoration: none;
}

.chatform .center .container form .signup-link a:hover{
  text-decoration: underline;
}*/



.popup-box{
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 500;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.popup-box.open{
    visibility: visible;
    opacity: 1;
}

.popup-box .popup-content{
    background: #fff;
    width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 8px;
}

.popup-box .popup-header{
    padding: 15px 40px 15px 15px;
    border-bottom: 1px solid #ddf;
    text-align: center;
}

.popup-box .popup-header h3{
    margin: 0;
    color: #00bcd4;
    font-size: 20px;
}

.popup-box .popup-header .popup-close-icon{
    position: absolute;
    /* background: red; */
    height: 30px;
    width: 30px;
    text-align: center;
    color: #555;
    font-size: 28px;
    line-height: 30px;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.popup-box .popup-body{
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.popup-box .popup-body p{
    font-size: 16px;
    color: #555555;
    margin: 0 0 15;
}

.popup-box .popup-footer{
    padding: 12px;
    border-top: 1px solid #ddf;
    text-align: right;
}

.popup-box .popup-footer .btn{
    padding: 7px 12px;
    border: 1px solid #555;
    color: #00bcd4;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

.popup-box .popup-footer .btn:focus{
    outline: none;
}



footer{
    color: #d9d9d9;
    /*font-family: 'Poppins', sans-serif;*/
    width: 100%;
    background-color: #303133;
    padding: 10px 50px;
}

.footer .main-content{
    display: flex;
    justify-content: space-around;
}

.footer .main-content .box{
    padding: 10px 20px;
}

.footer .main-content .box h2{
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.footer .main-content .box .content{
    margin: 20px 0 0 0;
    font-size: 16px;
    position: relative;
}

.footer .main-content .box .content:before{
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 85%;
    background: #1a1a1a;
}
.footer .main-content .box .content:after{
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #f12020;
    top: -10px;
}


.footer .main-content .left.box{
    flex-basis: 38%;
}

.footer .main-content .left.box .content .social{
    margin: 20px 0 0 0;
}

.footer .main-content .left.box .content .social a{
    padding: 0 2px;
}

.footer .main-content .left.box .content .social a span{
    height: 30px;
    width: 30px;
    background: #1a1a1a;
    color: #00bcd4;
    line-height: 30px;
    text-align: center;
    font-size: 18p  x;
    border-radius: 5px;
    transition: 0.3s;
}

.footer .main-content .central.box{
    flex-basis: 24%;
    margin: auto;
}

.footer .main-content .central .content a{
    text-decoration: none;
    height: 30px;
    width: 30px;
    color: #d9d9d9;
    line-height: 35px;
}

.footer .main-content .right.box{
    flex-basis: 30%;
    margin: 0px auto;
}

.footer .main-content .right.box .content .fa{
    font-size: 20px;
    background: #1a1a1a;
    height: 30px;
    width: 30px;
    color: #00bcd4;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    /*font-weight: 50;*/
    cursor: pointer;
}

.footer .main-content .right.box .content .email a{
    text-decoration: none;
    color: #d9d9d9;
}

.footer .main-content .right.box .content .fa:hover{
    background: #f12020;
}

.footer .main-content .right.box .content .text{
    width: 100%;
    line-height: 35px;
    /*font-weight: 500;*/
}

.footer .bottom center{
  font-size: 0.9375rem;
  background: #151515;
}

.footer .bottom center span{
    color: #656565;
}

.footer .bottom center a{
    color: #f12020;
    text-decoration: none;
}
.footer .bottom center a:hover{
    text-decoration: underline;
}






@media(max-width: 1250px){
    .footer .main-content .right.box{
        margin: 0px;
        flex-basis: 38%;
    }
}

@media(max-width: 1000px){
    .header .navbar .title{
        font-size: 33px;
    }
    .footer .main-content{
        flex-wrap: wrap;
    }
    .footer .main-content .left.box{
        flex-basis: 55%;
    }
    .footer .main-content .central.box{
        flex-basis: 45%;
    }
    .footer .main-content .right.box{
        flex-basis: 55%;
    }
}

@media(max-width: 750px){
    .header .navbar .togle{
        display: flex;
    }
    .header .navbar .links{
        display: none;
        width: 100%;
    }
    .header .navbar{
        flex-direction: column;
        align-items: flex-start;
        padding: 1% 5%;
    }
    .header .navbar .links ul{
        width: 100%;
        flex-direction: column;
    }
    .header .navbar .links li{
        text-align: center;
    }
    .header .navbar .links li a{
        padding: .5rem 1rem;
    }
    .header .navbar .links.active{
        display: flex;
    }
    .header .navbar .title{
        font-size: 30px;
    }
    .popup-box .popup-content{
        width: 80%; 
    }
    .footer .main-content .left.box{
        flex-basis: 70%;
        margin: 10px 0px;
    }
    .footer .main-content .central.box{
        flex-basis: 70%;
        margin: 10px 0px;
    }
    .footer .main-content .right.box{
        flex-basis: 70%;
        margin: 10px 0px;
    }
    footer{
        padding: 0px;
    }
}

@media(max-width: 500px){
    .header .navbar .title{
        font-size: 27px;
    }
    .header .navbar .togle{
        /*width: 25px;*/
        height: 23px;
    }
    .popup-box .popup-content{
        width: 90%; 
    }
    .chatform .center .fa{
        /*font-size: 60px;*/
    }
    .chatform .center .container{
        width: 90%;
        right: 5%;
        bottom: 14%;
    }
    .footer .main-content .left.box{
        flex-basis: 85%;
    }
    .footer .main-content .central.box{
        flex-basis: 85%;
    }
    .footer .main-content .right.box{
        flex-basis: 85%;
    }
    .footer .main-content .box h2{
        font-size: 15px; 
        line-height: 30px;
    }
    .footer .main-content .box .content{
        font-size: 15px;
        line-height: 30px; 
    }
    .footer .main-content .central .content a{
        line-height: 30px;
    }
    .footer .main-content .left.box .content .social a span{
        font-size: 15px;
        line-height: 25px;
        width: 25px;
        height: 25px;
    }
    .footer .main-content .right.box .content .fa{
        width: 25px;
        height: 25px;
        font-size: 14px;
        line-height: 25px;
    }
    .footer .bottom center{
        font-size: 14px;
    }
} 

@media(max-width: 300px){
    .header .navbar .title{
        font-size: 15px;
    }
    .header .navbar .togle{
        width: 20px;
        height:20px;
    }
    .footer .main-content .box h2{
        font-size: 10px; 
        line-height: 10px;
    }
    .footer .main-content .box .content{
        font-size: 10px;
        line-height: 20px; 
    }
    .footer .main-content .central .content a{
        line-height: 20px;
    }
    .footer .main-content .left.box .content .social a span{
        font-size: 10px;
        line-height: 10px;
        width: 10px;
        height: 10px;
    }
    .footer .main-content .right.box .content .fa{
        width: 10px;
        height: 10px;
        font-size: 10px;
        line-height: 10px;
    }
    .footer .bottom center{
        font-size: 10px;
    }
}





.gray{
    background-color: lightgray;
}

.flex{
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-around;*/
}

.col3{
    margin: 2%;
    padding: 2%;
    width: 29%;
    height: 100%;
}

.center{
    text-align: center;
    position: center;
    /*display: center;*/
}
/*
.banner{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../image/ucb.jpg);
}*/
