/********** Template CSS **********/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,500');

:root {
    --primary: #1e3954;
    --secondary: #1e3954;
    --light: #F7F8FC;
    --dark: #111111;
    
    
    
    /*    --background-dark: #2d3548;*/
    /*--text-light: rgba(255, 255, 255, 0.6);*/
    /*--text-lighter: rgba(255, 255, 255, 0.9);*/
    /*--accent-color: #F67B50;*/
    /*--spacing-s: 16px;*/
    /*--spacing-m: 24px;*/
    /*--spacing-l: 32px;*/
    /*--spacing-xl: 48px;*/
    /*--spacing-xxl: 64px;*/
    /*--width-container: 1200px;*/
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/*.bg-icon {*/

/*    background: url(../img/bg-icon.png) center center repeat;*/

/*    background-size: contain;*/

/*}*/

.new-heading {
    font-size: 10px;
}

#contact-btn {
    position: absolute;
    top: 57px;
    left: 60px;
}

/* popup form started  */

.form-popup-bg {
    position: absolute;
    top: -100;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-popup-bg {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #55555570;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 10000;
}

.form-popup-bg.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

.form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 40px;
    color: #fff;
}

.close-button {
    background: none;
    color: #000;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background-color: #1e3954;
}

.img-padding {
    border: none !important;
}

.img-product {
    width: 300px;
    height: 400px;
}

.form-popup-bg:before {
    content: '';
    background-color: #fff;
    opacity: .25;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* popup form ended  */

/*** Button ***/

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/

.bg-color {
    background: rgb(219, 253, 217);
    background: linear-gradient(90deg, rgba(219, 253, 217, 1) 13%, rgba(219, 253, 217, 1) 48%, rgba(255, 255, 255, 1) 100%);
}

.hover-color:hover {
    color: #1e3954;
    cursor: pointer;
}

#about-us {
    scroll-margin-top: 60px;
}

#product {
    scroll-margin-top: 80px;
}

#feedback {
    scroll-margin-top: 60px;
}

#blogs {
    scroll-margin-top: 120px;
}

#contact-us {
    scroll-margin-top: 90px;
}

.fixed-top {
    transition: .5s;
    background-color: #FFFFFF;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    background-color: #orange;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #1e3954 !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }
    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .openform {
        width: 110px;
        height: 30px;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* banner section start  */

.hero-sec {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 60px;
    width: 100%;
}

.openform {
    rotate: 90deg;
    position: relative;
    right: 40px;
    bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* banner sectioin ends here  */

/*** Section Header ***/

.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /*background: var(--primary);*/
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

.about-img {
    border: 1.5px solid white;
    box-shadow: 10px 10px 15px -10px #272323;
    border-radius: 10px;
}

/*** About ***/

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    font-size: 200px;
    box-shadow: #111111;
}

/*** Product ***/

/*.nav-pills .nav-item .btn {*/

/*    color: var(--dark);*/

/*}*/

/*.nav-pills .nav-item .btn:hover,*/

/*.nav-pills .nav-item .btn.active {*/

/*    color: #FFFFFF;*/

/*}*/

/*.product-item {*/

/*    box-shadow: 0 0 45px rgba(0, 0, 0, .07);*/

/*}*/

/*.product-item img {*/

/*    transition: .5s;*/

/*}*/

/*.product-item:hover img {*/

/*    transform: scale(1.1);*/

/*}*/

/*.product-item small a:hover {*/

/*    color: var(--primary) !important;*/

/*}*/





/*our services section ends here */

.section-services {
    font-family: "Poppins", sans-serif;
    color: #202020;
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-services .header-section {
    margin-bottom: 34px;
}

.section-services .header-section .title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 32px;
}

.section-services .header-section .description {
    font-size: 14px;
    color: #282828;
}

.section-services .single-service {
    position: relative;
    margin-top: 30px;
    background-color: #fff;
    border: 2px solid #1e3954;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 40px 30px;
    overflow: hidden;
}

.section-services .single-service .content {
    position: relative;
    z-index: 20;
}

/*.section-services .single-service .circle-before {*/

/*    position: absolute;*/

/*    top: 0;*/

/*    right: 0px;*/

/*    transform: translate(40%, -40%);*/

/*    width: 150px;*/

/*    height: 150px;*/

/*    background-color: #ff4156;*/

/*    border: 6px solid #504f93;*/

/*    border-radius: 50%;*/

/*    opacity: 0.5;*/

/*    z-index: 10;*/

/*    transition: all .6s;*/

/*}*/

/*.section-services .single-service:hover .circle-before {*/

/*	width: 100%;*/

/*	height: 100%;*/

/*	transform: none;*/

/*	border: 0;*/

/*	border-radius: 0;*/

/*	opacity: 1;*/

/*}*/

.section-services .single-service .icon {
    display: inline-block;
    margin-bottom: 26px;
    width: 70px;
    height: 70px;
    background-color:#1e3954 !important;
    border-radius: 5px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    transition: all .3s;
}

/*.section-services .single-service:hover .icon {*/

/*	background-color: #fff;*/

/*	color: #ff4156;*/

/*}*/

.section-services .single-service .title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 21px;
    transition: color .3s;
}

/*.section-services .single-service:hover .title {*/

/*	color: #fff;*/

/*}*/

.section-services .single-service .description {
    margin-bottom: 20px;
    font-size: 14px;
    transition: color .3s;
}

/*.section-services .single-service:hover .description {*/

/*	color: #fff;*/

/*}*/

.section-services .single-service a {
    position: relative;
    font-size: 18px;
    color: #202020;
    text-decoration: none;
    font-weight: 500;
    transition: color .3s;
    border: 2px  solid #1e3954 !important;
}

/*.section-services .single-service:hover a {*/

/*	color: #e6edf7;*/

/*}*/

/*.section-services .single-service a:after {*/

/*	content: "";*/

/*	position: absolute;*/

/*	bottom: 0;*/

/*	left: 0;*/

/*	right: 0;*/

/*	height: 1px;*/

/*	background-color: #ff4500;*/

/*	transition: background-color .3s;*/

/*}*/

/*.section-services .single-service:hover a:after {*/

/*	background-color: #fff;*/

/*}*/

/* service section ends here  */

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/*** Footer ***/

.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* faq section start here  */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.faq {
    box-sizing: border-box;
    background: transparent;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.faq:not(:first-child) {
    border-top: 1px solid #e6e6e6;
    margin-bottom: 20px;
}

.faq-title {
    margin: 0 35px 0 0;
    font-size: 20px;
}

.faq-text {
    margin: 30px 0 0;
    display: none;
    line-height: 1.5rem;
}

.faq.active {
    background-color: #f8f8f8;
    box-shadow: inset 4px 0px 0px 0px var(--primary);
}

.faq.active .faq-title {
    color: var(--primary);
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: 1px solid #e6e6e6;
    color: inherit;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-top: 3px;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
    transition: 0.3s ease;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}