@font-face {
    font-family: "trebuc";
    src: url(../fonts/trebuc.ttf);
}

@font-face {
    font-family: "neutra";
    src: url(../fonts/NeutraDisp-Bold.otf);
}

body {
    font-family: "trebuc", sans-serif;
    color: #444444;
    margin: 0;
    position: relative;
}

body:before {
    content: "";
    background: url(../img/body-bg.png) no-repeat;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    left: 0;
    background-position: 90px 125px;
    background-size: 85%;
    z-index: -1;
}



body:after {
    content: "";
}

a {
    color: #2487ce;
    text-decoration: none;
}

a:hover {
    color: #469fdf;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 9;
    background: #4d57a6;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #4d57a6;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #4d57a6;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
.product-img{
    margin-bottom: 50px;
}
.prod-name{
    position: absolute;
    bottom: 0px;
    padding: 25px 0px;
    width: 100%;
    background: #464fc5;
    color: #fff;
    left: 0;
    border-radius: 24px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    font-size: 24px;
    justify-content: center;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-align: center;
    min-height: 55px;
}


@-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;
    }
}

@media screen and (max-width:991px) {
    .navbar-header {
        float: none;
    }

    .navbar-left,
    .navbar-right {
        float: none !important;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }

    .navbar-nav>li {
        float: none;
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .collapse.in {
        display: block !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
    position: fixed;
    width:100%;
}

#hero{
    padding-top:153.5px;
}

header#header::after {
    border: 3px solid #ffffffd1;
    content: "";
    width: 100%;
    position: absolute;
    bottom: -15px;
    z-index: 950;
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
    margin: 0;
    padding: 0;
    line-height: 1;
}

#header .logo a {
    color: #16507b;
}

#header .logo img {
    max-height: 120px;
    margin: 5px 15px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.site-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 45px;
    font-size: 21px;
    color: #4d57a6 !important;
    white-space: nowrap;
    transition: 0.3s;
    font-family: "trebuc";
    text-transform: uppercase;
    font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #2487ce;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #2487ce;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #3194db;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #2487ce;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

@media (max-width: 1024px) {

    .navbar a,
    .navbar a:focus {
        padding: 10px 20px;
        font-size: 18px;
    }

    .testimonials-item {
        border-radius: 20px;
        flex-direction: column;
        border: none;
        background: #ebebeb;
        padding: 65px 6px;
        position: relative;
    }

    .contact-map {
        position: relative;
        width: 360px;
        height: 300px;
        margin-left: 70px;
    }

    .testimonials-item {
        width: 25%;
        border: 5px solid #464fc5;
        border-radius: 30px;
        height: 330px;
        margin: 0 25px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
    }

    .product-item {
        width: 30% !important;
        border: 5px solid #464fc5;
        border-radius: 30px;
        height: 330px;
        margin: 0 20px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
    }
    .product-img {
        margin-bottom: 80px;
    }
    .testimonials-item {
        border-radius: 20px;
        flex-direction: column;
        border: none;
        background: #ebebeb;
        padding: 80px 30px 10px !important;
        position: relative;
        margin: 0px 15px !important;
        justify-content: flex-start !important;
        height:auto !important;
    }

    .testimonials-content p {
        font-size: 18px;
    }

    .contact-info {
        width: 70% !important;
    }

    .contact-map {
        position: relative;
        width: 360px;
        height: 300px;
        margin-left: 65px;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #124265;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}


/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/

.about {
    position: relative;
    margin: 100px 0;
}

.about:after {
    content: "";
    height: 3px;
    width: 80%;
    background: #4d57a6;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.about .content .txt {
    font-size: 31px;
    line-height: 40px;
    color: #4e4e4e;
    margin: auto;
    padding-left: 20px;
}

.about .content {
    padding: 20px;
}


/*--------------------------------------------------------------
# product
--------------------------------------------------------------*/

.product-list {
    margin: 150px 0;
}

.product .section-footer .btn {

    background-color: #464fc5;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    font-size: 26px;

}
.testimonials-item {
    margin-bottom: 60px;
    padding: 15px;
    width: 50%;
}

.product .section-footer {
    text-align: center;
}

.product-list,
.testimonials-list {
    display: flex;
    justify-content: center;
    margin: 100px 25px;
}

.product-item,
.testimonials-item {
    width: 25%;
    border: 5px solid #464fc5;
    border-radius: 30px;
    height: 400px;
    margin: 0 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    cursor: pointer;
}

.product-item:after {
    content: "";
    width: 103%;
    position: absolute;
    height: 100%;
    background: #707070;
    border-radius: 30px;
    z-index: -1;
    transform: rotate(8deg);
}

.hero-slider .slick-slide img {
    width: 100%;
}

.hero-slider .slick-dots {
    bottom: 35px;
}

.hero-slider .slick-dots li button:before {
    font-size: 18px;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: #fff;
}


/*--------------------------------------------------------------
# testimonial
--------------------------------------------------------------*/

.testimonials-item {
    border-radius: 20px;
    flex-direction: column;
    border: none;
    background: #ebebeb;
    padding: 30px;
    position: relative;
}

.testimonials-item:before,
.testimonials-item:after {
    content: "";
    background: url(../img/quote.png) no-repeat;
    width: 95px;
    height: 80px;
    position: absolute;
    top: -25px;
    left: -10px;
}

.testimonials-item:after {
    right: -10px;
    bottom: -48px;
    top: unset;
    left: unset;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.testimonials-img {
    width: 150px;
    height: 150px;
    background: #464fc5;
    border-radius: 100%;
    overflow: hidden;
    position: absolute;
    top: -75px;
}
.purple{
    color: #464fc5 !important;
}
.subtestimonial{
    margin: 20px 0px;
}
.subtest{
    margin: 0;
}

.testimonials-img img {
    width: 100%;
    object-fit: cover;
}
.dash{
    border: 1.5px solid #000;
    width: 75%;
    margin: auto;
    background: #000;
}

.testimonials-content p {
    font-size: 21px;
    line-height: 26px;
    color: #4e4e4e;
    font-weight: 600;
    text-align: center;
}

.testimonials {
    padding-bottom: 280px;
    position: relative;
    z-index: 99;
}


.testimonials-list {
    margin-bottom: 0;
    margin-top: 149px;
}

.slick-next.slick-arrow:before,
.slick-prev.slick-arrow:before {
    content: "";
    background: url(../img/arrow.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
}

.slick-next.slick-arrow,
.slick-prev.slick-arrow {
    z-index: 1;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 40%;
}

.slick-next.slick-arrow {
    right: 50px;
}

.slick-prev.slick-arrow {
    left: -15px;

}

.slick-prev.slick-arrow:before {
    transform: scale(-1);
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    margin-bottom: 70px;
}

.section-title {
    position: relative;
    width: 225px;
    padding: 0 35px;
    background-color: #464fc5;
    display: flex;
    align-items: center;
    height: 50px;
    z-index: 21;
}

.section-title:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border-top: 50px solid #fff;
    border-left: 45px solid #464fc5;
    width: 0;
}

.grey:before {
    border-top: 50px solid #ebebeb !important;
}

.section-title h2 {
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
    padding-bottom: 0;
    color: #fff;
    font-size: 31px;
    line-height: 42px;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

#contact {
    margin-bottom: 0;
    position: relative;
    padding-top: 200px;
    margin-top: -250px;
}

.contact:before {
    content: "";
    background: url(../img/contact-bg.png);
    width: 100%;
    position: absolute;
    background-repeat: no-repeat;
    left: 0;
    background-size: 101% 88%;
    z-index: -1;
    top: -58px;
    height: 300px;
    background-position: 100%;
}

.contact-wrapper {
    display: flex;
    background: #172337;
    position: relative;
    padding: 0px 0 100px;
}

.contact .section-title:before {
    border-top: 50px solid #182336;
}

.contact-head {
    width: 50%;
    position: relative;
}

.contact-info {
    font-size: 21px;
    line-height: 32px;
    color: #ffffff;
    margin: 20px 0;
    width: 50%;
    padding: 0 50px;
    position: relative;
    z-index: 19;
}

/* .contact-head:after {
    content: "";
    width: 3px;
    height: 300px;
    position: absolute;
    background: #464fc5;
    top: 20px;
    right: 0;
} */
.section-wrapper{

}

.footbg{
    position: absolute;
    z-index: 11;
    left: 0;
    right: 0;
    margin: auto;
    top: 25px;
}

.name{
    font-size: 31px;
    margin: 40px 0px 15px !important;
}
.number, .email , .add{
    font-size: 21px;
    color: #fff;
}
.number a{
    color:#fff;
}
.mail a{
    color:#fff;
}

.contact-info p {
    margin: 0;
}

.contact-map {
    position: relative;
    width: 380px;
    height: 380px;
    margin-left: 150px;
}

.contact-map iframe {
    height: 100% !important;
    position: relative;
}

.contact-map:before {
    content: "";
    background: #464fc5;
    width: 104%;
    height: 104%;
    position: absolute;
    left: -5px;
    top: -5px;
    border-radius: 20px;
    transform: rotate(8deg);
}
.modalbox1, .modalbox2, .modalbox3, .modalbox4, .modalbox5, .modalbox6, .modalbox7, .modalbox8, .modalbox9{
    display: none;
    position: fixed;
    z-index: 9999;
    background: #ffffffa8;
    width: 100%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
}
.productBox{
    background: #464fc5f2;
    color: #fff;
    padding: 40px 50px;
    width: 55%;
    margin: auto;
    border-radius: 50px;
    position: absolute;
    left: 0;
    right: 0;
    top: 10%;
    bottom: 10%;
    word-break: break-all;
    min-height: 350px;
}

.closebtn{
    text-align: right;
    font-size: 26px;
    cursor: pointer;
    margin: 15px 0px;
}
.producttitle{
    font-size: 44px;
    font-family: "neutra";
    padding: 10px 0 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
}
.productdesc p{
    font-size: 21px;
    margin: 20px 0;
    text-transform: uppercase;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-links {
    font-size: 14px;
    color: #4d57a6;
    white-space: nowrap;
    transition: 0.3s;
    font-family: "trebuc";
    text-transform: uppercase;
    font-weight: 600;
    background: #464fc5;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-links:before {
    content: "";
    width: 100%;
    height: 12px;
    background: #464fc5;
    position: absolute;
    top: -25px;
}

.footer-links a {
    margin: 0px 30px;
    color: #fff;
    font-size: 21px;
}

.border-boxline {
    border: 5px solid #fff;
}

.mobile-nav-toggle {
    width: 40px;
    height: 40px;
}

.mobile-nav-toggle img {
    width: 100%;
    height: 100%;
}

.mobile-close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display:none;
}

.mobile-close-button img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

@media only screen and (max-width: 768px) {
    body:before {
        background-position: 50% 2%;
        background-size: 135%;
    }
    .footbg {
        position: absolute;
        z-index: 11;
        left: 0;
        right: 0;
        margin: auto;
        top: 240px;
        width: 100%;
    }
    .productBox {
        background: #464fc5f2;
        color: #fff;
        padding: 40px 40px;
        width: 80%;
        margin: auto;
        border-radius: 50px;
        position: absolute;
        left: 0;
        right: 0;
        top: 10%;
        bottom: 10%;
        word-break: break-all;
        min-height: 300px;
    }

    #header .logo img {
        max-height: 120px;
    }

    .product-list,
    .testimonials-list {
        flex-direction: column;
        margin: 50px 0;
    }

    .product-item,
    .testimonials-item {
        margin: 25px auto;
        height: 470px;
        width: 60% !important;
    }

    .testimonials-item {
        margin-bottom: 60px;
        padding: 15px;
        margin: 60px auto !important;
    }

    .contact-map {
        width: 80%;
        padding: 0;
        margin: 80px auto;
    }

    .contact-map:before {
        content: "";
        background: #464fc5;
        width: 104%;
        height: 104%;
        position: absolute;
        left: -5px;
        top: -5px;
        border-radius: 20px;
        transform: rotate(4deg);
    }

    .testimonials-img {
        width: 140px;
        height: 140px;
    }

    .contact:before {
        display: none;
    }

    .contact-info,
    .contact-head {
        width: 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .slick-next.slick-arrow, .slick-prev.slick-arrow {
        width: 30px;
        height: 30px;
    }

    .slick-next.slick-arrow {
        right: 15px;
    }

    .slick-prev.slick-arrow {
        left: -10px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .about .content .txt {
        font-size: 24px;
    }

    .testimonials {
        padding-bottom: 0;
        position: relative;
    }

    .testimonials-list {
        margin: 80px 0 0;
    }

    footer {
        display: none;
    }

    .hero-slider .slick-dots {
        bottom: 5px;
    }

    .navbar.active {
        display: block;
        position: fixed;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        background: #464fc5;
        z-index: 999;
        padding-top: 50px;
    }

    .navbar ul {
        display: none;
    }

    .navbar.active>ul {
        display: block;
    }

    .navbar.active .mobile-nav-toggle {
        display: none;
    }

    .active .mobile-close-button {
        position: absolute;
        top: 2rem;
        right: 2rem;
        display:block;
    }

    .navbar a,
    .navbar a:focus,
    .navbar a:hover {
        padding: 20px;
        color: #fff !important;
    }

    .mobile-nav-toggle {
        display: block;
    }
}
@media screen and (max-width:500px) {
    #header .logo img {
        max-height: 70px;
    }
    .grey:before {
        border-top: 50px solid #ffffff !important;
    }
    .mobile-nav-toggle {
        width: 30px;
        height: 25px;
    }
    .about .content .txt {
        font-size: 18px;
    }
    .slick-next.slick-arrow,
    .slick-prev.slick-arrow {
        width: 15px;
        height: 15px;
    }
    .slick-prev.slick-arrow {
        left: 0px;
    }
    .product-item, .testimonials-item {
        width: 70% !important;
        margin: 25px auto;
        height: 350px;
    }
    .productBox {
        background: #464fc5f2;
        color: #fff;
        padding: 0px 30px;
        width: 80%;
        margin: auto;
        border-radius: 30px;
        position: absolute;
        left: 0;
        right: 0;
        top: 10%;
        bottom: 10%;
        height: auto;
    }
    .productdesc p {
        font-size: 16px;
        margin: 15px 0;
        text-transform: uppercase;
    }
    .producttitle {
        font-size: 28px;
        font-family: "neutra";
        padding: 10px 0 15px;
        text-transform: uppercase;
        border-bottom: 2px solid #fff;
    }
    .closebtn {
        text-align: right;
        font-size: 21px;
        cursor: pointer;
        margin: 25px 0px 15px;
    }
    .contact-wrapper {
        display: flex;
        background: #172337;
        position: relative;
        padding: 50px 0 50px;
    }
    .testimonials-item {
        width: 70%;
        margin: 25px auto 60px;
        height: 350px;
    }
    #header{
        padding: 5px 0;
    }
    #hero{
        padding-top:93.5px;
    }
    .active .mobile-close-button {
        position: absolute;
        top: 2rem;
        right: 2rem;
        display:block;
    }
}

