/********** Template CSS **********/
:root {
    --primary: #2878EB;
    --secondary: #F14D5D;
    --light: #ECF4FF;
    --dark: #120F2D;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
    font-size: inherit;
    margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PT Serif', serif;
}

h1,
h2,
.font-weight-bold {
    font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
    font-weight: 500 !important;
}
 p
 {
    font-family: 'Federo', sans-serif;
    font-size: 16px;
    font-style: normal;
}

.btn {
   font-family: 'Quantico', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary,
.btn-primary:hover,
.btn-secondary:hover {
    color: #FFFFFF;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
   font-family: 'Quantico', sans-serif;
    position: relative;
    margin-left: 30px;
    padding: 30px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--dark);
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   background: rgba(18, 15, 45, .2);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.carousel-indicators {
    align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
    width: 5px;
    height: 25px;
}

.carousel-indicators .active {
    height: 45px;
}

.hero-header {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../images/contact.jpg) top right no-repeat;
    background-size: cover;
}

.service-item div {
    z-index: 1;
}

.service-item div::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transition: .5s;
    z-index: -1;
}

.service-item div:hover::after {
    width: 100%;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

.bg-offer {
    background: linear-gradient(rgba(18, 15, 45, .5), rgba(18, 15, 45, .5)), url(../img/carousel-2.jpg) top right no-repeat;
    background-size: cover;
}

.testimonial-carousel .owl-dots {
    height: 45px;
    margin-top: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 5px;
    height: 25px;
    background: #DDDDDD;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    height: 45px;
    background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.blog-date {
    position: absolute;
    width: 90px;
    height: 65px;
    top: 75px;
    left: -25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--secondary);
}

.blog-date::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -25px;
    left: 0;
    border: 13px solid;
    border-color: transparent #D34351 #D34351 transparent;
    z-index: -1;
}

    .gallery-box{
    background:#fff;
    padding:6px;
    border:2px solid #fff;
    overflow:hidden;
}

.gallery-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.gallery-box:hover img{
    transform:scale(1.05);
}


    /* OUR FACTS */

.facts-section{
    background:#ea7b72;
}

.fact-item h4{
    color:#fff;
    font-weight:700;
    margin-top:20px;
    margin-bottom:15px;
}

.fact-item p{
    color:#fff;
    line-height:28px;
    margin:0;
}

.fact-icon{
    width:80px;
    height:80px;
    border:3px solid #fff;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
}


/* VISION */

.vision-section{
    background:#0056b3;
}

.vision-icon{
    width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#0056b3;
}

.vision-section h2{
    color:#fff;
    font-weight:700;
    margin-top:25px;
    margin-bottom:20px;
}

.vision-section p{
    color:#fff;
    line-height:30px;
    font-size:16px;
}

    .gallery-box{
    background:#fff;
    padding:6px;
    border:2px solid #fff;
    overflow:hidden;
}

.gallery-box img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:.4s;
}

.gallery-box:hover img{
    transform:scale(1.05);
}
.contact-circle{
    width:60px;
    height:60px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0000F7;
    color:#fff;
    border-radius:50%;
    font-size:28px;
    transition:all .3s ease;
    cursor:pointer;
}

.contact-circle:hover{
    background:#ff0000;
    color:#fff;
    transform:scale(1.1);
}

.about-section{
    background:#fff;
}

.about-main-img{
    width:100%;
    height:590px;
    object-fit:cover;
}

.section-title{
    font-family:'Quantico',sans-serif;
    font-size:40px;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
    position:relative;
}

.section-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#0d6efd;
    position:absolute;
    left:0;
    bottom:-8px;
}

.about-section p{
    text-align:justify;
    line-height:2;
    color:#222;
    margin-bottom:25px;
    font-family:'PT Serif',serif;
}

.counter-card{
    position:absolute;
    top:50%;
    right:-1px;
    transform:translateY(-50%);
    width:180px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    z-index:10;
}



.counter-item{
    text-align:center;
    padding:35px 15px;
    border-bottom:1px solid #e5e5e5;
}

.counter-item:last-child{
    border-bottom:none;
}

.counter-item i{
    font-size:24px;
    color:#000;
    margin-bottom:15px;
}

.counter-item h2{
    color:#0d39ff;
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-item p{
    margin:0;
    color:#000;
    font-size:18px;
}

.btn-about{
    display:inline-block;
    background:#003cff;
    color:#fff;
    padding:12px 28px;
    text-decoration:none;
    font-weight:600;
    margin-top:15px;
    transition:.3s;
}

.btn-about:hover{
    background:#001cb8;
    color:#fff;
}

.btn-about i{
    margin-left:8px;
}

@media(max-width:991px){

.about-main-img{
    height:350px;
    
}

.counter-card{
    position:relative;
    right:0;
    top:20px;
    transform:none;
    width:100%;
}


.section-title{
    font-size:32px;
}

}



/*==========================
      OUR PRODUCTS
===========================*/

.products-section{
    background:linear-gradient(to bottom,#ffffff 40%,#587396 40%);
    padding:80px 0;
}

.section-title h2{
    font-family:'Quantico',sans-serif;
    font-size:34px;
    font-weight:700;
    color:#000;
    margin-bottom:8px;
}

.section-title span{
    width:70px;
    height:3px;
    background:#1d4ed8;
    display:inline-block;
}

.product-card{

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    position:relative;

    transition:.4s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-img{

    background:#d8d8d8;

    text-align:center;

    padding:30px;

}

.product-img img{

    width:220px;

    height:170px;

    object-fit:contain;

}

.product-content{

    padding:30px;

}

.product-content h4{

    font-family:'Quantico',sans-serif;

    font-size:24px;

    margin-bottom:20px;

    color:#222;

}

.product-content p{

    font-family:'PT Serif',serif;

    color:#666;

    line-height:30px;

    font-size:15px;

    text-align:justify;

}

.arrow-btn{

    position:absolute;

    bottom:-25px;

    left:50%;

    transform:translateX(-50%);

}

.arrow-btn a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#1d4ed8;

    text-decoration:none;

    box-shadow:0 5px 15px rgba(0,0,0,.2);

    transition:.3s;

}

.arrow-btn a:hover{

    background:#1d4ed8;

    color:#fff;

}

@media(max-width:991px){

.products-section{

    background:#587396;

}

.product-card{

    margin-bottom:40px;

}

.product-img img{

    width:180px;

}

}


/* Business Overview */
.business-overview h2{
    font-weight:700;
}

.business-overview p{
    font-size:15px;
    color:#666;
    line-height:30px;
}

.business-overview img{
    transition:0.4s;
}

.business-overview img:hover{
    transform:scale(1.08);
}

.business-overview h5{
    font-size:18px;
    margin-top:15px;
}

@media(max-width:768px){
    .business-overview img{
        width:140px !important;
        height:140px !important;
    }

    .business-overview h2{
        text-align:center;
    }

    .business-overview p{
        text-align:justify;
    }
}




