/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&family=Outfit:wght@100;300;400;500;600;700&display=swap');

:root {

    /* Colors */
    --primary: #4CCD86;
    --primary-gradient: linear-gradient(90deg, #4CCD86 0%, #91E774 100%);
    --primary-dark: #1FA022;
    --primary-light: #E4F7DD;
    --success: #4CCD86;
    --info: #5BCDDA;
    --warning: #FFC453;
    --danger: #F85858;
    --on-surface: #111213;
    --black: #000000;
    --white: #FFFFFF;
    --surface: #F0F0F0;
    --secondary: #D8D8D8;

    /* Typography */
    --heading: 68px;
    --second-heading: 48px;
    --second-heading-mobile: 38px;
    --sub-heading: 30px;
    --subtitle-lg: 20px;
    --title: 32px;
    --paragraph: 19px;
    --button-lg: 18px;
    --paragraph-sm: 16px;
    --subtitle: 14px;

    /* Spacing */

    --p-space-025: 1px;
    --p-space-05: 2px;
    --p-space-1: 4px;
    --p-space-2: 8px;
    --p-space-3: 12px;
    --p-space-4: 16px;
    --p-space-5: 20px;
    --p-space-6: 24px;
    --p-space-8: 32px;
    --p-space-10: 40px;
    --p-space-12: 48px;
    --p-space-16: 64px;
    --p-space-20: 80px;
    --p-space-24: 96px;
    --p-space-28: 112px;
    --p-space-32: 128px;

    /* Font Weight */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;
    --fw-black: 900;
}

*,
body {
    font-family: 'Outfit', sans-serif;
}

/* .navbar{
    padding: 12px;
} */

.container-fluid{
    max-width: 1460px;
}
.nav-item{
    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 16px;

}


.navbar-toggler {
    border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon{
    width: 30px;
    height: 3px;
    background-color: #b43ce7;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar{
    margin: 5px auto;
}

/* State when navbar is opened (START) */

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}
/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #777777;
}


.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-one{
    height: 10px;
    cursor: pointer;
    padding: 20px;
}

.h_left > div + div{
    margin-left: 30px;
}
.h_right > div{
    margin-left: 30px;
    font-size: 12px;
}

.right-head 

span{
    margin-left: 5px;
}

.header{
    padding-top: 5px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: sans-serif;
}

.header .menu-ico,
.header .close-ico {
    display: none;
}

.navbar-second{
    height: 30px;
    padding: 0;
}

.logo{
    padding: 0 ;
    display: none;
}



li{
    list-style: none;
}
li a{
    text-decoration: none;
    text-transform: capitalize;
    font-family: sans-serif;
    font-size: 14px;
    color: #181818;
    font-weight: 400;
}

section{
    width: 100%;
    height: 40vh;
    background-color: #033d75;
    position: relative;
    /* background-color: #2770bd; */
}

.section-2{
    width: 100%;
    background-color: #ffffff;
}
.section-2 h3{
    font-family: sans-serif;
    font-weight: 200;
    font-size: 40px;
}
.section-2 a{
    font-family: sans-serif;
    font-size: 16px;
}


section h2{
    font-family: sans-serif;
    font-weight: 500;
    color: #e9f4fb;
}
section a{
    font-family: sans-serif;
    font-weight: 400;
    color: #e9f4fb;
}

.nav-link:hover{
    text-decoration: underline;
    color: #276fb7;
}
.nav-link{
    color: #000;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 450;
}

.row-2{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.card-01{
    color: #e9f4fb;
    position: relative;
    flex: 1;
    max-width: 500px;
    height: 60px;
    margin: 50px;
    border-radius: 5px;
}
.card-02{
    position: relative;
    flex: 1;
    max-width: 500px;
    height: 60px;
    margin: 50px;
    border-radius: 5px;
}
.card-3{
    background: #9bacbd;
    position: relative;
    flex: 1;
    max-width: 460px;
    height: 150px;
    margin: 50px;
    border-radius: 40%;
}
.card-4{
    background: #276fb7;
    position: relative;
    flex: 1;
    max-width: 460px;
    height: 150px;
    margin: 20px;
}
.login-form{
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    width: 400px;
    background: white;
    border-radius: 10px;
}
.login-form h3{
    text-align: center;
    padding: 0 0 20px 0;
    /* border-bottom: 1px solid silver; */
}
.login-form form{
    padding: 0 40px;
    box-sizing: border-box;
}
form .txt_field{
    position: relative;
    border-bottom: 2px solid;
    margin: 30px 0;
}
.txt_field input{
    width: 100%;
    padding: 0 5px;
    height: 40px;
    font-size: 16px;
    border: none;
    background:none;
    outline: none;
}
.txt_field label{
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
}
.txt_field span::before{
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2691d9;
}
/* input .btnn-1{
    width: 100%;
    height: 50px;
    border: 1px solid;
    background: #0B6EFD;
    border-radius: 10px;
    font-size: 18px;
    color: #e9f4fb;
    font-weight: 700;
    cursor: pointer;
    outline: none;
} */

input[type="submit"]:hover{
    border-color: #0B6EFD;
    transition: .5s;
}
.f-pass{
    margin: 30px 0;
    text-align: center;
    font-size: 16px;
    color: #2691d9;
}
.f-pass a{
    color: #2691d9;
    text-decoration: none;
}
.f-pass a:hover{
    text-decoration: underline;
}

.container-fluid{

}

.container h2 {
    font-size: 5vw;
    font-weight: 300;
 }

 .icon{
  }

.btn-2{
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: #398100;
    padding: 18px;
    width: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}
.btn-2:hover, .btn-2:focus, .btn-2:active{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.btn-1{
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 700;
    background: #398100;
    position: absolute;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    color: #ffff;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition-duration: 0.3s;
    -webkit-transition-property: box-shadow, transform;
    transition-property: box-shadow, transform;
}

.btn-1 a{
    
}
.btn-1:hover, .btn-1:focus, .btn-1:active{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.menu-2{
    display: none;
    
}
.menu-line{
    width: 20px;
    height: 3px;
    background-color: #04080d;
    margin-bottom: 3px;
    cursor: pointer;
}

.navbar-brand .img{
    width: 20px;
}

@media all and (max-width:991px) {
    .menu-2{
        display: block;
        position: relative;
        flex: none;
    }
    section{
        width: 100%;
        height: 40vh;
        padding-bottom: relative;
        background-color: #033d75;
        position: relative;
        /* background-color: #2770bd; */
    }
    .navbar-second{
        /* display: none; */
        background-color: #5BCDDA;
        list-style-position: inside;
    }
    .navbar-one{
        display: none;
    }
    .logo{
        display: block;
        text-align: center;
    }
    
    .card-02{
        display: none;
    }

}

@media all and (max-width:376px){
    section{
        width: 100%;
        height: 54vh;
        background-color: #033d75;
        position: relative;
        /* background-color: #2770bd; */
    }
}