@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Oxanium:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    
}
html{
    
  overflow-y: scroll;
}

.section-margin-adjust{
    margin-top: 56px;
}
.section-padding-adjust{
    padding-top: 86px;
}
:root{
    --bs-dark-color: #00120B;
    --bs-light-color: #fff;
    --bs-primary-color: #000385;
    --bs-secondary-color: #FF0000;
    --bs-secondary-alt-color:#FF6464;
    --bs-textcolor1:#010242;
    --bs-grey-color:#F7F7F8;
    --bs-hr-grey-color:#A7A7A7;
    --bs-div-hover-color:#E2F5FD;
}

h1{
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--bs-light-color);
    font-family: "Oxanium", sans-serif;
}
.heading-two{
    color: var(--bs-dark-color);
    font-size: 48px;
    /* letter-spacing: .15rem; */
    font-weight: 700;
    font-family: "Oxanium", sans-serif;
}
.heading-three{
    color: var(--bs-primary-color);
    line-height: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600; 
}
h2.heading-two-alt{
    color: var(--bs-textcolor1);
    font-size: 1.5rem;
    letter-spacing: .15rem;
    font-family: "Oxanium", sans-serif;
}
.hr-style1{
    border: none;
    width: 44px;
    height: 3px;
    background-color: var(--bs-secondary-color);
    opacity: 1;
}
.hr-style2{
    background-color: var(--bs-hr-grey-color);
}
p{
    margin: 0;
    font-weight: 300;
    font-size: 1rem;
    color: var(--bs-dark-color);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
.bg-white{
    background-color: var(--bs-light-color);
}
.bg-sm-blue{
    background-color: var(--bs-light-color);
}
@media (max-width: 1400px){
    h1{
        font-size: 2.5rem;
        
    }
}
@media (max-width: 1200px){
    h1{
        font-size: 2rem;
    }
}
@media (max-width: 992px){
    h1{
        font-size: 2.5rem;
    }
    
}
    @media (max-width: 768px){
        .bg-sm-blue{
            background-color: var(--bs-primary-color);
        }
}

/* navbar styling start */
.nav-link{
    color: var(--bs-dark-color);
    font-family: "Oxanium", sans-serif;
    font-size: 2rem;
    letter-spacing: .5px;
    
    
}
.nav-link:hover,
.navbar-nav .nav-item .active
{
    color:var(--bs-primary-color);
}
.shadowNav{
    transition: all 0.3s;
    
    box-shadow: 0px 3px 10px rgba(0,0,0, .15);
}


@media (min-width: 992px) {
    .nav-link{
        color: var(--bs-dark-color);
        font-family: "Oxanium", sans-serif;
        font-size: 1rem;
        letter-spacing: .5px;
        margin-left: 20px;
        position: relative;
        transition: all 0.3s;
        overflow: hidden;
    }
    .nav-link::after{
        content:'';
        position: absolute;
        background-color: var(--bs-secondary-color);
        width: 100%;
        height: 3px;
        top:0px;
        left:0%;
        transition: all 0.3s;
        transform: translateX(-101%) scaleX(1);
        
        
    }
    .nav-link.active::after{
       
        transition: all 0.3s;
        transform: translateX(0%) scaleX(1);
        
        
    }
    
    .nav-link:hover::after{
        transform: translateX(0%) scaleX(1);
        
        
    }
}

/* navbar toggle icon customized */
.navbar-toggler-icon {
    background-image: none!important;
    background-color: var(--bs-primary-color);
    height: 3px;
    width: 25px;
    margin: 10px 0;
    position: relative;
    transition: all 0.35s ease-out;
    transform-origin: center;
  }
  
  .navbar-toggler-icon::before {
    display: block;
    background-color: var(--bs-primary-color);
    height: 3px;
    content: "";
    position: relative;
    top: -7px;
    transition: all 0.15s ease-out;/*taken down to hide quicker*/
    transform-origin: center;
  }
  
  .navbar-toggler-icon::after {
    display: block;
    background-color: var(--bs-primary-color);
    height: 3px;
    content: "";
    position: relative;
    top: 4px;
    transition: all 0.35s ease-out;
    transform-origin: center;
  }
  
  .navbar-dark .navbar-toggler-icon,
  .navbar-dark .navbar-toggler-icon::before,
  .navbar-dark .navbar-toggler-icon::after {
    background-color: var(--bs-gray-100);
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    transform: rotate(45deg);
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    opacity: 0;
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-90deg) translateX(7px);
  }

/* hero section */
/* #home{
    height: 86px;
} */

.hero-section{
    padding-top: 86px;
    position: relative;
    
}
.hero-section .container{
    
    height: 100%;
}
.bg-blue{
    background-color: var(--bs-primary-color);
}
.hero-section span{
    color: var(--bs-secondary-alt-color);
}
.hero-section p{
    color: var(--bs-light-color);
}
.btn-custom{
    background-color: var(--bs-primary-color);
    border-color: var(--bs-light-color);
    border-radius:0;
}


.btn-custom:hover, .btn-custom:active, .btn-custom:focus .btn-custom:visited{
    background-color: var(--bs-secondary-alt-color) !important;
    border-color: var(--bs-secondary-alt-color) !important;
    color: var(--bs-primary-color) !important;
}

@media (min-width: 992px){
    .hero-section{
        height: 700px;
        min-height: 600px;
        position: relative;
        
    }
}

/* services section starts */
.services-box{
    box-shadow: 0 .5rem 1rem rgba(0,0,0, .1);
    transition: all .3s;
}
.services-box:hover{
    box-shadow: 0 1rem 1.5rem rgba(0,0,0, .15);;
}

.p-style1{
    font-weight: 300;
    font-size: 1rem;
    color: var(--bs-textcolor1);
}

/* clientele starts */
.bg-grey{
    background-color: var(--bs-grey-color);
    
}
.bg-pattern{
    background-image: url('../images/dot-grid.webp');
    border: 1px solid #f2f2f2;
}
#clientele img{
    height: 90px;
    width: auto;
    
}

/* About us starts*/
.aboutus-image{
    width: 70%;
}
@media (min-width:768px) and (max-width:992px){
    .aboutus-image{
        width: 40%;
    }
    @media (max-width:768px){
        .aboutus-image{
            width: 50%;
        } 
    }
}
/* About us ebds */

/* testimonials starts */
.hex-shape:before {
    content: " ";
    width: 0; height: 0;
    border-right: 30px solid #6C6;
border-top: 52px solid transparent;
border-bottom: 52px solid transparent;
    position: absolute;
    top: 0px;
    left: -30px;
}

.hex-shape {
    margin-top: 30px;
    width: 60px;
    height: 104px;
    background-color: rgb(16, 183, 16);
    position: relative;
}

.hex-shape:after {
    content: "";
    right: -30px;
    width: 0;
    position: absolute;
    bottom: 0px;
    border-left: 30px solid #6C6;
    border-top: 52px solid transparent;
    border-bottom: 52px solid transparent;
}
.hexa{
    background-color: #F7F7F8;
    height: 100px;
    width: 100%;
    background-image: url('../images/hexagon-shape.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.owl-carousel .card{
    height: 100%;
    border: 2px solid var(--bs-primary-color);
    border-radius: 0;
    color: var(--bs-primary-color);
    background-color: var(--bs-light-color);
    transition: all 0.3s linear;
    
    
    
}
.owl-carousel .card:hover{
    background-color: var(--bs-div-hover-color);
}
.owl-carousel .card p{
    font-family: "Poppins", sans-serif;
    color: var(--bs-primary-color);
    font-style: italic;
    flex-grow: 1;
}
.owl-carousel .card .card-title, .owl-carousel .card .card-subtitle{
    color: var(--bs-textcolor1);
}
.owl-carousel .card .card-title{
    font-size: 1.125rem;
    font-weight: 600;
}
.owl-carousel .card .card-subtitle{
    font-size: .875rem;
    line-height: .875rem;
    font-weight: 300;
}
.carousel-indicators{
    bottom: -20%;
   
}
.carousel-indicators [data-bs-target]{
    
    height: .5rem;
    width: .5rem;
    border-radius: .5px;
    background-color: var(--bs-primary-color) !important;
}

.owl-carousel .owl-stage{
    display: flex;
    
    
}
.owl-carousel .item{
    display: flex;
    flex: 1 0 auto;
    height: 100%;
    margin: 0 3px;
    width: 100%;
}
.owl-carousel .card-body{
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    height: 48px;
    width: 48px;
    border-radius: 24px !important;
    background-color: var(--bs-primary-color) !important;
    color: var(--bs-light-color) !important;
}
.owl-next, .owl-prev{
    font-size: 24px !important;
    color: var(--bs-light-color);
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    
    background-color: var(--bs-secondary-alt-color) !important;
    color: var(--bs-primary-color) !important;
}
@media (max-width:992px){
    .owl-carousel .item{
        margin: 0 2px;
        
    }
}

/* footer starts */
.heading-footer{
    color: var(--bs-light-color);
    opacity: .7;
    line-height: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600; 
    font-family: "Oxanium", sans-serif;
}
.hr-style3{
    background-color: rgba(255,255,255, .2);
}
.social-media-icons a{
    color: rgba(255,255,255, .5);
    transition: all 0.3s linear;
}
.social-media-icons i{
    font-size: 1.5rem;
}
.social-media-icons a:hover{
    color: rgba(255,255,255, 1);
}
footer p{
    color: var(--bs-light-color);
    opacity: .7;
    font-weight: 200;
    font-size: 1rem;
    
}
.contact-btn i{
    font-size: 24px;
    padding:5px 10px;
}
.contact-btn a{
    
    color: var(--bs-light-color);
    
}
.contact-btn:hover a{
    
    color: var(--bs-primary-color);
}
.copyright-text{
    font-size: .75rem;
}
