@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

/* html { font-size: clamp(0.25rem, 1vw + 0.25rem, 4rem); } */

/* Fonts */
:root {
    --font-default: "Montserrat", Roboto, "Helvetica Neue", Arial;
    --font-primary: "Montserrat", Roboto, "Helvetica Neue", Arial;
    --font-secondary: "Montserrat", Roboto, "Helvetica Neue", Arial;
}

/* Colors */
:root {
    --color-default: #364d59;
    /* --color-primary: #0E2B5C; */
    /* --color-primary: #05103B; */
    --color-primary: #003366;
    --color-secondary: #FF5E14;
    --color-white: #ffffff;
    /* --color-bg: #fbfbfb; */
    --color-bg: #f5f5f5;

}

/* Font Sizes */
:root {
    --fontsize-default: 0.875rem;
    --fontsize-12: 0.75rem;
    --fontsize-14: 0.875rem;
    --fontsize-16: 1rem;
    --fontsize-20: 1.25rem;
    --fontsize-24: 1.5rem;
    --fontsize-32: 2rem;
    --fontsize-36: 2.25rem;
    --fontsize-40: 2.5rem;
    --fontsize-48: 3rem;

}
@media screen and (max-width: 769px) {
    :root {
        --fontsize-default: 0.875rem;
        /* --fontsize-12: 0.375rem;
        --fontsize-14: 0.4375rem; */
        --fontsize-12: 0.55rem;
        --fontsize-14: 0.55rem;
        --fontsize-16: 0.6rem;
        --fontsize-20: 0.625rem;
        --fontsize-24: 0.75rem;
        --fontsize-32: 1rem;
        --fontsize-36: 1.125rem;
        --fontsize-40: 1.25rem;
        --fontsize-48: 1.5rem;
    
    }
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}
.wow {
     visibility: hidden;
}

/*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
    overflow-x: hidden;
}

a {
    color: #00e;
    text-decoration: none;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}


/*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
#preloader .show{
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}
.hide-loader{
    display: none;
}
#preloader .show:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 30px solid #fff;
    border-color: var(--color-primary) transparent var(--color-primary) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#header {
    z-index: 997;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}


#header .logo img {
    margin-right: 6px;
}

.logo_image {
    width: 50px;
    height: 54px;
    margin-left: 20px;
    border-radius: 50%;
}
.navbar-brand:hover .logo_image{
    filter: drop-shadow(0px 0 5px rgba(0, 0, 0, 0.5));
}

.navbar-brand span {
    color: #ffffff;
    margin-left: 15px;
    font-size: var(--fontsize-24);
    font-weight: 900;
    letter-spacing: 5px;
}
.nv-menu-bg .navbar-brand span {
    color: var(--color-primary);
}


.collapse ul li {
    margin-right: -8px;
}

.nv-menu {
    background: none;
}

.nv-menu-bg {
    background: #0052A1;
    background: #fff;
    opacity: 1;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1) !important;
}


.nv_text {
    margin: 0px 30px;
}

.nv_text a {
    margin: 0px 10px;
    padding: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--fontsize-14);
    text-transform: uppercase;
    position: relative;
}
.nv-menu-bg .nv_text a {
    color: var(--color-primary);
}

.nv_text a:hover {
    color: #ffffff;
}
.nv-menu-bg .nv_text a:hover {
    color: var(--color-primary);
}

.nv_text a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nv_text a:hover:before,
.nv_text li:hover>a:before,
.nv_text .active:before {
    visibility: visible;
    width: 100%;
}

.nv_text a:hover,
.nv_text .active,
.nv_text .active:focus,
.nv_text li:hover>a {
    color: #fff !important;
}
.nv-menu-bg .nv_text a:hover,
.nv-menu-bg .nv_text .active,
.nv-menu-bg .nv_text .active:focus,
.nv-menu-bg .nv_text li:hover>a {
    color: var(--color-primary) !important;
}

.navbar-toggler {
    color: #ffffff !important;
    /*background:#ffffff !important;*/
}
.nv-menu-bg .navbar-toggler {
    color: var(--color-primary) !important;
    /*background:#ffffff !important;*/
}

.fa-bars {
    color: #ffffff !important;
}
.nv-menu-bg .fa-bars {
    color: var(--color-primary) !important;
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* ====== Carousel Start ====== */
.hero {
    overflow-x: hidden;
    padding: 0;
}

.hero .carousel {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    position: relative;
}
.hero .carousel .carousel-inner{
    width: 100%;
    height: 100%;
}
.hero .carousel .carousel-inner .carousel-item{
    width: 100%;
    height: 100%;
}

.hero .carousel .carousel-item img {
    height: 100%;
    position: relative;

}
@media (max-width: 980px) {
    .hero .carousel {
        height: 50vh;
    }
}
@media (max-width: 768px) {
    .hero .carousel {
        height: 45vh;
    }
}
@media (max-width: 470px) {
    .hero .carousel {
        height: 35vh;
    }
}

.hero .carousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: #003366; */
    /* background-image: linear-gradient(to right bottom, #003366, #003e71, #00487c, #005387, #005e91); */
    /* background-image: url(../images/dots.png); */
    background-color: var(--color-primary);
    opacity: 0.7;
    z-index: 2;
}


.carousel-indicators {
    z-index: 3;
}
.carousel-indicators [data-bs-target] {
    background-color: white;
    opacity: 1;
}
.carousel-indicators .active {
    opacity: 1;
    background-color: var(--color-secondary);
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 4;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 3rem;
    height: 3rem;
}
.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-next:focus .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E7512F'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-prev:focus .carousel-control-prev-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E7512F'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-prev:focus .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon,
.carousel-control-next:focus .carousel-control-next-icon {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 50%;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
    transform: translate(0, 50%);
    z-index: 9;
}

.carousel-caption h5 {
    color: #fff;
    text-align: center;
    font-size: var(--fontsize-48);
    margin-bottom: 40px;
}

.carousel-caption .carousel-made-button {
    margin-top: 40px;
}

.carousel-caption .carousel-made-button .btn {
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: var(--fontsize-16);
    margin: 0 30px;
    padding: 10px 35px;
    outline: none;
    border: none;
    border-radius: 30px;
}

.carousel-caption .carousel-made-button .btn-primary {
    color: #fff;
    background-color: transparent;
    border: 2px solid var(--color-secondary);
}

.carousel-made-button .btn-primary:hover,
.carousel-made-button .btn-primary:focus {
    color: var(--color-secondary);
    background-color: #fff;
    border: 2px solid var(--color-secondary);
}

.carousel-caption .carousel-made-button .btn-warning {
    color: #fff;
    background-color: var(--color-secondary);
}

.carousel-made-button .btn-warning:hover,
.carousel-made-button .btn-warning:focus {
    color: var(--color-secondary);
    background-color: #fff;
}



.section-description {
    height: auto;
}

.section-description .section-topic {
    font-size: var(--fontsize-16);
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--color-secondary);
}

.section-description .section-heading {
    font-size: var(--fontsize-32);
    font-weight: 700;
    margin-bottom: 1.8rem;
    /* color: white; */
    /* color: var(--color-primary); */
    color: #05103B;
}
.section-description .section-heading-2 {
    color: white;
}

.section-description .section-para {
    font-size: var(--fontsize-14);
    font-weight: 400;
    margin-bottom: 1rem;
    /* color: #EEEEEE; */
    color: #51668a;
    font-weight: 400;
}
.section-description .section-para-2 {
    color: #f9f9f9;
}
/* ====== Carousel End ====== */







/* ====== Service Start ====== */
#service {
    background-color: var(--color-bg);
}

#service .card {
    border-width: 2px;
    box-shadow: 0px 0px 0px 0px rgb(51 51 51 / 10%);
}
#service .card:hover {
    box-shadow: 0px 10px 40px 0px rgb(51 51 51 / 10%);
}
#service .card .card-icon {
    width: 100px;
    height: 100px;
    background-color: #FCE8E4;
    border-radius: 50%;
}

#service .card .card-icon i {
    font-size: var(--fontsize-40);
    color: var(--color-secondary);
}

#service .card:hover>.card-icon {
    background-color: var(--color-secondary);
}

#service .card:hover>.card-icon i {
    color: #fff;
}

#service .card .card-body .card-title {
    font-size: var(--fontsize-20);
    color: var(--color-primary);
    font-weight: 600;
    position: relative;
    padding: 0 0 0.75rem 0;
}

#service .card .card-body .card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    width: 50%;
    background-color: #818181;
    transform: translate(-50%, 0);
}

#service .card:hover>.card-body .card-title::after {
    background-color: var(--color-secondary);
}

#service .card .card-body .card-text {
    font-size: var(--fontsize-12);
    color: #51668a;
    font-weight: 400;
}
/* ====== Service End ====== */







/* ====== Subscriber Start ====== */
#subscribers {
    color: rgb(255, 255, 255);
    position: relative;
    background-color: rgba(255, 90, 14, 0.7);
    /* background: url(../images/bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; */
}
#subscribers::after {
    content: "";
    background: url(../images/bg-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* background-color: var(--color-secondary); */
    opacity: 0.8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
}

.count_val {
    color: #FFF;
    /* color: #000; */
    font-size: 28px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    /* letter-spacing: 2px; */
}

.count_sub {
    font-weight: 600;
    color: #FFF;
    /* color: #000; */
}

.counters1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counters1 img {
    height: 50px;
    width: 50px;
    filter: drop-shadow(0px 0 5px rgba(0, 0, 0, 0.5));
}
/* ====== Subscriber End ====== */

.pb-4 {
    padding-bottom: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}


/* ====== About Starts ====== */
.bg-2{
    background-color: #05103B;
}
#about .section-description{
    margin-top: 15px;
}
#about .owl-theme .owl-dots .owl-dot.active span,
#about .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-secondary);
}
#about .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 20px;
}
#about .item {
    border: 2px solid var(--color-secondary);
    border-radius: var(--bs-border-radius);
    /* overflow: hidden; */
}
#about .card-body .card-title{
    color: var(--color-secondary);
    font-size: var(--fontsize-16);
}
#about .card-body .card-title strike{
    color: #364d59;
    font-size: var(--fontsize-14);
}
#about .card-body .card-title-2{
    color: var(--color-secondary);
    font-size: var(--fontsize-16);
    color: #000;
    font-weight: 700;
}
#about a.btn-contact {
    color: #fff;
    background-color: var(--color-secondary);
    text-align: center;
    font-weight: 600;
    font-size: var(--fontsize-16);
    margin: 30px 0;
    padding: 10px;
    border-radius: 30px;
    width: 170px;
    height: auto;
}

#about a.btn-contact:hover,
#about a.btn-contact:focus {
    color: var(--color-secondary);
    background-color: #fff;
    border: 2px solid var(--color-secondary);
    padding: 8px;
}
#about .owl-stage {
    margin: 35px 0 30px 0;
    /* left: -0.5rem; */
}
#about .item:hover .shadow {
    box-shadow: 0 0 1.5rem rgba(255, 255, 255, 0.3) !important;
}
/* ====== About End ====== */







/* ====== Gallery Start ====== */
#gallery {
    background-color: var(--color-bg);
}

#gallery .owl-stage {
    margin: 30px;
    left: -1.5rem;
}

#gallery .item {
    border: 1px solid var(--color-secondary);
    border-radius: var(--bs-border-radius);
    /* overflow: hidden; */
}

#gallery .item .gallery-item-img {
    overflow: hidden;
    transition: all 0.3s;
}

#gallery .item .gallery-item-img img {
    transition: all 0.3s;
}

#gallery .item:hover img {
    transform: scale(1.5);
    transform-origin: 50% 50%;
}

#gallery .gallery-item-title {
    font-size: var(--fontsize-14);
    font-weight: 700;
}
@media (max-width: 768px) {
    #gallery .gallery-item-title {
        font-size: var(--fontsize-16);
    }
}

#gallery a.gallery-item-arrow {
    color: var(--color-secondary);
}

#gallery a.gallery-item-arrow:hover,
#gallery a.gallery-item-arrow:focus {
    color: var(--color-secondary);
}

#gallery .owl-carousel .owl-nav .owl-prev,
#gallery .owl-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    position: relative;
}

#gallery .owl-carousel .owl-nav .owl-prev span,
#gallery .owl-carousel .owl-nav .owl-next span {
    font-size: var(--fontsize-32);
    font-weight: 700;
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
}

/* ====== Gallery Ends ======= */








/* ====== TERMS Starts ====== */
#terms .section-description .section-para ol {
    color: #f9f9f9;
    padding-left: 1rem;
    margin-top: 1.1rem;

}

#terms .section-description .section-para ol li {
    margin-bottom: 0.35rem;

}

#terms .section-description .section-para ol li::marker {
    color: var(--color-secondary);
    font-weight: 700;
}

#terms .clipboard-png {
    padding: 3rem 6rem;
}

#terms .clipboard-png img {
    width: 100%;
    /* height: 100%; */
}

/* ====== TERMS End ====== */









/* ====== Contact Start ====== */
#contact {
    background-color: var(--color-bg);
}

#contact .d-grid .btn-primary {
    color: var(--color-white);
    background-color: var(--color-secondary);
    border: none;
    font-weight: 600;
}

#contact .d-grid .btn-primary:hover,
#contact .d-grid .btn-primary:focus {
    color: var(--color-secondary);
    background-color: #fff;
    border: 2px solid var(--color-secondary);
    padding: 4px 10px;
}

#contact .map-png {
    padding: 3rem 6rem;
}

/* ====== Contact End ====== */









/* ====== Footer Start ====== */

#footer h3 {
    font-weight: 700;
}

#footer .desc {
    color: #EEEEEE;
    font-size: var(--fontsize-14);
}

#footer a {
    color: #EEEEEE;
    transition: 0.3s;
}

#footer a:hover {
    color: var(--color-secondary);
    font-weight: 600;
}

#footer i {
    /* margin-right: 0.5rem; */
    color: var(--color-secondary);
}

#footer .d-flex .btn-primary {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

#footer .d-flex .btn-primary i {
    color: var(--color-white);
    width: 20px;
    height: 20px;
}

#footer .d-flex .btn-primary:hover,
#footer .d-flex .btn-primary:focus {
    color: white;
    background-color: var(--color-secondary);
}

#footer .footer-newsletter form {
    margin-top: 20px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4px;
}

#footer .footer-newsletter {
    font-size: var(--fontsize-12);
}

#footer .footer-newsletter form input[type=email] {
    border: none;
    outline: none;
    width: calc(100% - 110px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: var(--fontsize-12);
    padding: 0 20px;
    background: var(--color-secondary);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #ff5e31;
}
/* ====== Footer End ====== */







/* ====== Copyright Start ====== */
#copyright{
    background-color: #051225;
    color: rgb(255, 255, 255);
}
#copyright .special{
    color: var(--color-secondary);
}
/* ====== Copyright End ====== */





/*------Back to top button css start-----*/
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    z-index: 10000;
    background-color: var(--color-secondary);
    border: none;
}
#btn-back-to-top:hover,
#btn-back-to-top:focus{
    /* background-color: #E7512F; */
    background-color: white;
    color: #ff2f00;
    border: 2px solid #ff2f00;
    padding: 6px 14px;
}
/*------Back to top button css end-----*/

/* Whatsapp */
.wh_icon{
	
	position: fixed;
	bottom: 90px;
	right:18px;
	/*left: 20px;*/
	z-index: 2;
}



/*----- Website loading Spinner START----*/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*----- Website loading Spinner END----*/