@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
}

:root{
    --dark:#000;
    --light:#d4dfe5; 
    --green:#067144;   
    --dark-blue:#00011bcc;
}
.btn{
    
    border-radius: 0;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    min-width: 106px;
    line-height: 32px;
    position: relative;
    text-decoration: none;      
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; 
}
b, strong {
    font-weight: 600;
}
.btn.focus, .btn:focus{
    box-shadow:none;
}
button.menu:focus{
    outline:none;
}
.btn-white{
    color: #364860;
    background: #fff;
    padding:1px;
}
.btn-white:hover{
    color:#fff;
    background: #364860
}
.btn-blue{
    color: #fff;
    background: #1793dd;
    padding:1px;
}
.btn-blue:hover{
    color: #fff;
    background: var(--dark-blue)
}
.btn-blue-outline{
    color: #1793dd;
    background: #fff;
    border:1px solid #1793dd;
    font-weight: 600;
    font-size:16px;
    color:#000;
    padding:1px;
}
.btn-blue-outline:hover{
    color: #fff;
    background: transparent;
    border:1px solid #fff;
}
.btn-blue.get-started-btn:hover , .banner .btn-blue:hover{
    color: #000;
    background: #fff;
}
.btn-red{
    color: #fff;
    background: #f44738;
    padding:1px;
}
.btn-red:hover{
    color: #fff;
    background: var(--dark-blue)
}
.text-light-blue{
    color: #1793dd !important
}
.text-dark-blue{
    color: var(--dark-blue) !important
}
.title-1{
    font-weight: normal;
    font-size: 52px;
    color: var(--dark-blue);
    line-height: 52px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.title-2{
    font-weight: 600; 
    font-size: 18px;
    color:#3a4968;
    line-height: 24px;
    margin-bottom: 5px;
}
.title-3{
    font-size: 16px;
    color:#1d1d1d;
    line-height: 30px;
}
.navbar .btn.btn-text{
    color:#fff;
    min-width: auto;
    padding: 0px 20px;
    font-size:16px;
    font-weight: 600;
    background-color: transparent;
    border: 0px;
}
.navbar .btn.btn-text:hover{
    color: #fff;
}
/*menu*/
#header{
    transition: 0.2s all;
    padding: 0px 2.5%;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background:#fff;
  z-index: 9;
  -ms-box-shadow: 0 3px 7px rgb(0 0 0 / 32%);
    -o-box-shadow: 0 3px 7px rgb(0 0 0 / 32%);
    -moz-box-shadow: 0 3px 7px rgb(0 0 0 / 32%);
    -webkit-box-shadow: 0 3px 7px rgb(0 0 0 / 32%);
    box-shadow: 0 3px 7px rgb(0 0 0 / 32%); 
    transition: 0.5s all;
}
.navbar-brand img.logo-sticky{
    max-width: 130px;
}
.sticky .nav-item .nav-link , .sticky .navbar .btn.btn-text{
    color:#000;
}
.navbar-toggler-icon{
    width:15px;
    height:2px;
    background:#fff;
    display: block;
    margin-bottom: 3px;
}
.navbar{
    padding:0px; 
    height:100px; 
    width:100%;     
}
.navbar-brand{
    margin-right: 35px
}
.navbar-brand img{
    max-width:150px;
    width:100%;
}
.nav-item .nav-link{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding:0px;
    height:100%;
    margin-right:32px;
}

.app-header-wrapper {
    position: relative;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}
.nav-item .nav-link:hover:before {
    left: 0;
    width: 100%;
}
.nav-item .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #23D3D3;
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    transition-delay: 0;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding: 0px;
}
.navbar .btn{
    max-width: 145px;
    padding: 1px 0;
    min-width: 145px;
}
.sub-title a, .sub-title a:hover{
    color:#fff;
}
@media(min-width:768px){
    .cl-effect-11 a {
        color: #fff;
        text-shadow: none;
        position: relative;
    } 
    li.nav-item{
        height:100%;
        line-height: 100px;
    }
    
}