 @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
 @import 'my-vars.css';
 @import 'my-classes.css';


body{
    font-family: var(--font-one);    
}

h1,h2,h3,
h4,h5,h6{
    font-family: var(--font-two);
    font-weight: 600;
}
a{
    text-decoration: none;
}

.btn,
.btn-focus,
.btn-active{
    outline: none !important;
    border: none !important;
}
/*PRELOADER CODE START*/
/*PRELOADER*/
#preloader{
    background-color:#FFFFFF;
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:9999;
}
#preloader_status{
    background-image: url("../assets/images/preloader.gif");
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}
/*PRELOADER CODE END*/
/*NET CHEKKER START*/
#net-checker{
  background-color: #FFF;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
#checker-body{
  background-color: #FFFFFF;
  position: absolute;
  padding: 20px;
  width: 300px;
  height: 150px;
  text-align: center;
  top: 50%;
  left: 50%;
  margin-top:-75px;
  margin-left: -150px;
}
#checker-body h5{
  color: var(--color-two);
  font-family: var(--font-one);
  font-weight: bold;
  text-decoration: underline;
}
#checker-body p{
  color:blue;
  margin: 0px;
  padding: 0;
}
/*NET CHEKKER END*/
 /*NAV BAR START */
 .navbar{
    background-color: rgba(255,255,255);
 }
.navbar-brand img{
    width: 32px;
}
.navbar-toggler:focus{
    box-shadow: none;
}
.nav-item{
    border-bottom: 1px solid rgba(0,0,0,0.09);
}
.nav-link:hover{
  color: var(--color-one) !important;
}
 /*NAV BAR END */
 /*SECTION TITLE START*/
   .section-title{
    text-align: center;
    padding: 5px 0;
   }
   .section-title h4{
    display: inline-block;
    position: relative; 
    color: var(--color-one);   
   }
   .section-title h4::after{
    position: absolute;
    content: '';
    width: 5%;
    height: 3px;
    background-color: var(--color-two);
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    animation: linewidth 3s ease-in-out infinite;
   }
 /*SECTION TITLE END*/
  /*FOOTER START*/
  .icons{    
    list-style-type:none;  
    padding: 0;
    margin: 0;    
    
  }
   li img{
    display: inline; 
    margin: 0px;  
    padding: 0px;
  }
  /*FOOTER END*/



















  /*ANIMATIONS START*/
  @keyframes linewidth{
    50%{
      width: 100%;  
    }
  }
   /*ANIMATIONS END*/

 /*MEDIA QUARIES START*/
 /*NAV BAR*/
 @media(min-width:992px){
    .nav-item{
     border-bottom: none;
    }
 }
  /*MEDIA QUARIES END*/