* {
    /* background: #f6f9ff; */
    box-sizing: border-box;

}

.logo_header {
    background: #f6f9ff;

}

.logo {
    margin: 20px 0 0 50px;
    margin-bottom: 20px;

}

.title h1 {
    background: linear-gradient(to right, #0575e6, #021b79);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    padding: 40px 0 0 20px;
}

.nav-bar {

    margin-top: 0;
}

.nav-bar ul {
    background: linear-gradient(to right, #0575e6, #021b79);
    padding: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px hsla(240, 96%, 9%, 0.1);

}
.nav-bar ul li {
    padding: 0 60px;
}

.nav-bar ul li a {
    text-decoration: none;
    color: #bad9f8;
    font-size: 20px;

}

.nav-bar ul li a:hover {
    color: #f6f9ff;
}

.main_img {
    padding: 200px 10px;
    background-image: url('../img/picture1.heic');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;

}

.subtitle {
    /* background: linear-gradient(to right, #000046, #1cb5e0);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text; */
    /* padding-left: 50px; */
    color: #f6f9ff;
    text-align: center;
}
/* .subtitle1{
   font-weight: 300;
    text-align: center;
} */
.btnright{
    padding-left: 3px;
}

.subtitle b{
    color: #021b79;
}
#form-open{
    float:right;
    margin-left: 350px;
}
.nav-bar ul li .active_1{
    color: #021b79;
}
/* ===================Animated Count================   */
.warpper{
    padding: 20px 50px;
    /* position: fixed; */

}
.warpper .main_title{
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}
.warpper p{
text-align:justify;
margin-bottom: 20px;
}
.main_text{
    padding-top: 10px;
}
.counter-up{
    background: linear-gradient(to right, #0575e6, #021b79);
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    background-image: url("../img/com.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}
.counter-up::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
}
.counter-up .content{
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.content .box{
    width: calc(25% -30px);
    border: 1px dashed rgb(255,255,255,0.6);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    flex-direction: column;
    border-radius: 5px;

    width: 260px;
}
.content .box .icon{
    font-size: 48px;
    color: #f6f9ff;

}
.content .box .counter{
    font-size: 30px;
    color: #f6f9ff;
    font-weight: 500;
    font-family: serif;
}
.content .box .text{
    color: #f6f9ff;
    font-weight: 400;

}
@media(max-width:1036px){
.counter-up{
padding: 50px 50px 0 50px;
}
.content .box{
    width: calc(50% -30px);
    margin-bottom: 50px;
}
}
@media(max-width:580px){
.content .box{
    width: 100%;
    }
}

/* ==============Login alert box================= */

.form_container{
    position: absolute;
    max-width: 320px;
    width: 100%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 101;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
}
.home.show .form_container{
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);

}
.form_close{
    position: absolute;
    top: 10px;
    right: 20px;
    color: black;
    font-size: 22px;
    opacity: 0.7;
    cursor: pointer;
}
.input_box{
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 40px;

}
.input_box input{
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 30px;
    color: #333;
    transition: all 0.2s ease;
    border-bottom: 1.5px solid #aaaaaa;
}
.input_box input:focus{
    border-color: #bad9f8;
}
.input_box i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707070;
}
.input_box i.email,
.input_box i.password{
    left: 0;
    
}
.input_box input:focus ~ i.email,
.input_box input:focus ~ i.password{
    color: #bad9f8;
}
.input_box i.pw_hide{
    right: 0;
    font-size: 18p;

}
.option_field{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
}
.form_container a{
    color: #597af0;
    font-size: 12px;
    text-decoration: none;
}
.form_container a:hover{
    text-decoration: underline;

}
.checkbox{
    display: flex;
    column-gap: 8px;
    white-space: nowrap;
    font-size: 12px;
    cursor: pointer;
}
.checkbox input{
    accent-color: #021b79;
}
.checkbox label{
    color: black;
    font-size: 12px;
    user-select: none;
}
.form_container .button{
    background: linear-gradient(to right, #0575e6, #021b79);

    margin-top: 30px;
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 17px;
    color: #f6f9ff;
}

/* ===============faulty page============= */

.img1{
    height: 250px;
    width: 350px;
    border-radius: 3px;
    transition: -5s;

}
.row1{
    align-items: center;
}
/* .card_container{
    display: flex;  
} */
.card_body{
    /* display: flex; */
    justify-content: center;
    /* height: 100%; */
    align-items: center;
    background: whitesmoke;
    
}
.card{
    width: 350px;
    height: 250px;
    margin: 50px;
    box-shadow: 5px 5px 20px black;
    overflow: hidden;

}
.intro{
    height: 50px;
    width:350px;
    padding: 6px;
    box-sizing: border-box;
    position: absolute;
    background: rgba(95, 95, 95, 0.5);
    color: rgb(16, 16, 16);
    bottom: 2px;
    transition: .5s;

}

.h1{
    margin: 10px;
    font-size: 40px;

}
.p{
    font-size: 20px;
    margin: 20px;
    visibility: hidden;
    opacity: 0;
}
.card:hover{
    cursor: pointer;

}
.card:hover .intro{
    height: 120px;
    bottom: 1px;
    background: linear-gradient(to right, #bee5ec, #7cc9f0, #6097ef);
}
.card:hover .p{
    opacity: 1;
    visibility: visible;
}
.card:hover .img{
    transform: scale(1.1)rotate(-3deg);
}

/* ==========about us========== */
.aboutimg{
    border-radius: 2px;
    padding-top: 2px;
}
#about_subtitle{
    padding-right: 3px;
}






