@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
    --theme-color:#00b1e2;
    --text-color:#262626;
    --text-color-light:#cccccc;
    --Black:#000000;
  

}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    margin-left: -10px;
    -webkit-appearance: none;
    appearance: none;
  }
  
  ::-webkit-scrollbar-thumb {
    height: 30px;
    background-color: var(--theme-color);
    background-clip: content-box;
    border-color: transparent;
    border-style: solid;
    border-width: 0;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #ccc;
  }
  
  ::-webkit-scrollbar-track:hover {
    background-color: #bbb;
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;

}
html{
    scroll-behavior: smooth;
    
    
}
body {
    font-size: 16px;
 


}

img {
    max-width: 100%;
    height: auto;

}

ul,
ol {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.theme-color {
    color: var(--theme-color);
}

.bgBlack{
    background: var(--Black);
}
.text-color-light{
    color:var(--text-color-light);
}
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.sectionHeader .title{
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    font-family: Arial, Helvetica, sans-serif;

  
 
}

.sectionHeader .description,  .sectionHeader p{
    color: var(--text-color);
     font-size: 20px;
  
}
.sep{
    display: inline-block;
    width: 100px;
    height: 3px;
    background: var(--theme-color);

}

.siteBtn{
    padding: 14px 42px;
    border-radius: 6px;
    min-width: 200px;
    font-size: 16px;
    font-weight: 600;
    background: var(--theme-color);
    color: #fff;
    border:1px solid var(--theme-color);
    outline: none;
    position: relative;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
}
.siteBtn.sm{
    padding:10px 20px;
    min-width: 0;
    font-size: 14px;
}
.siteBtn:hover{
background: var(--text-color);
border-color: var(--text-color);
}
.siteBtnOutline{
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.siteBtnOutline:hover{
    background: var(--color-primary);
    color: #fff;
    transition: all 0.4s ease;
}
.inputField{
    padding:15px 20px;
    border:none;
    width: 100%;
    color:#505050;
    font-size: 16px;
    border-left:2px solid transparent;
    transition: all 0.3s ;
}

.inputField:focus{
    border-color:var(--theme-color);
    box-shadow: none;
    outline: none;
}
.fixHeader{
    padding-top: 78px;
}
.bgImg{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*------------------------------- End of Global Styles --------------------------*/
.navbar{
    position: absolute;
    z-index: 10;
    top:0;
    left:0;
    width: 100%;
}
.navbar-toggler:focus, .navbar-toggler{

 box-shadow: none;
 border:none

}
.navbar-brand img{
    max-height: 36px;
}
.navbar-expand-lg .navbar-nav .nav-item{
    margin-left: 25px;
}
.navbar-expand-lg .navbar-nav .nav-link{
    color:var(--text-color);
    font-size: 16px;
    font-weight: 600;
}
.navbar-expand-lg .navbar-nav .nav-link:hover, .navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--theme-color);
}
.banner{
    position: relative;
    height: calc(100vh - 78px);
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}
.welcomeText{
    font-weight: 500;
}
.navBox{
    background: #f5f5f5;
  
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
}
.navBox:hover{
    background: var(--theme-color);
}

.navIcon{
    text-align: center;
    height:55px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.navIcon img{
    max-width: 55px;
   transition: all 0.4s ease;
}

.navBox:hover .navIcon img{
    transform: translateY(-101%);
    filter: brightness(0) invert(1);
}
.navBox h3{
    font-size: 20px;
    font-weight: 600;
    transition: all 0.4s ease;
}
.navBox  a{
    color: #000000;
    display: block;
    padding: 50px;
}
.navBox:hover h3{
    color: #fff;
}

.heroText h1{
    font-size: 36px;
    line-height: 42px;
    font-weight: 500;
    margin-bottom: 15px;
}

.heroText h4{
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 15px;
}
/* .pdfImg{
    position: absolute;
    max-width: 450px;
    bottom:-300px;
    box-shadow: 0 0 2px 10px rgba(0,0,0,0.15);
 
} */
/* .formBox{
    height: 350px;
    overflow-y: auto;
} */



/*------------------------------- Start of responsive Styles --------------------------*/


@media (max-width: 767px) {
    .pdfImg{position: static;}
    .navbar-brand img{max-height: 30px;}

    p{
        font-size: 14px;
    }
    .heroText{
        margin-top: 30px;
    }
    .heroText h1{
        font-size: 24px;
        line-height: 30px
        ;
    }
    .heroText h4{
        font-size: 18px;
        line-height: 22px;
    }
    .w-75{
        width: 100%!important;
    }
}


/*------------------------------- End of responsive Styles --------------------------*/