/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    font-family: 'Montserrat';
    color: #2a4a71;
    font-weight: 400;
    background: #ffffff;
}

a {
    color: #000000;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #757575;
    outline: none;
    text-decoration: none;
}

p {
    color: #000000;
    padding: 0;
    margin: 0 0 15px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat';
    color: #757575;
    margin: 0 0 15px 0;
    padding: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #2a4a71;
    color: #ffffff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffffff;
}


/**********************************/
/********* Header Nav CSS *********/
/**********************************/
#nav {
    padding: 20px 0;
    height: 92px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    transition: all 0.5s;
    z-index: 9;
}

#nav.header-scrolled {
    background: #ffffff;
    padding: 10px 0;
    height: 72px;
    transition: all 0.5s;
}

#nav #logo {
    float: left;
}

#nav #logo img {
    padding: 0;
    margin: 0;
    max-height: 70px;
}

#nav-menu-container {
    position: relative;
    float: right;
    margin: 0;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    position: relative;
    float: left;
    margin: 15px 15px 0 15px;
    white-space: nowrap;
}

.nav-menu a {
    padding: 0 0 3px 0;
    text-decoration: none;
    display: inline-block;
    color:  #2a4a71 ;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    outline: none;
    font-weight: 600;
    font-family: 'Montserrat';
}

.nav-menu a::after {
    position: absolute;
    content: "";
    width: 35px;
    height: 2px;
    bottom: 2px;
    left: 1px;
    background:  #b11f2c;
    opacity: 0;
    transition: .3s;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
    color: #b11f2c;
}

.nav-menu li:hover > a::after,
.nav-menu > .menu-active > a::after {
    opacity: 1;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 25px 15px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #757575;
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 30px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.8);
    left: -100%;
    width: 100%;
    text-align: center;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
    font-weight: 600;
}

#mobile-nav ul li a:hover {
    color: #2a4a71;
}

#mobile-nav ul li.menu-active a {
    color: #2a4a71;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

@media (min-width: 992px) {
    #nav #logo {
        padding-left: 60px;
    }

    #nav-menu-container {
        padding-right: 60px;
    }
}

@media (max-width: 767.98px) {
    #nav-menu-container {
        display: none;

    }

    #mobile-nav-toggle {
        display: inline;
    }
}



/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 10px 0;
    margin-top: 90px;
    background: 
    linear-gradient(rgba(256, 256, 256, .9), rgba(256, 256, 256, .9)), url(../img/header.jpg);

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header .header-content {
    width: 100%;
    text-align: left;
}

#header .header-content h2 {
    color: #2a4a71;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat';
}

#header .header-content h2 span {
    color:   #b11f2c;
}

#header .header-content ul {
    margin-left: 32px;
    margin-bottom: 30px;
}

#header .header-content ul li {
    font-size: 22px;
    font-family: 'Montserrat';
}

#header .header-content ul li i {
    color: #2a4a71;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#header .header-content .btn {
    padding: 7px 20px;
    color: #2a4a71;
    font-size: 22px;
    border: 2px solid #2a4a71;
    font-family: 'Montserrat';
}

#header .header-content .btn:hover {
    color: #ffffff;
    background: #cf1828;
}

#header .header-img {
    position: relative;
    overflow: hidden;
    text-align: right;
}

#header .header-img img {
    max-height: calc(100vh - 180px);
}

@media (max-width: 767.98px) {
    #header .header-img {
        text-align: left;
        margin-top: 45px;
    }
}




/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 8px;
    left: calc(50% - 25px);
    bottom: 0;
    background: #cccccc;
    border-radius: 10px;
}

.section-header h2 {
    position: relative;
    color: #2a4a71;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.section-header p {
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    font-family: 'Montserrat';
}



/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 45px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 70px;
    height: inherit;
    float: left;
}

#feature .product-icon i {
    color: #2a4a71;
    font-size: 50px;
    margin-top: 5px;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 70px);
    float: left;
}

#feature .product-feature h2 {
    color: #2a4a71;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

#feature .product-feature p {
    margin-bottom: 0;
}

#feature .product-img {
    position: relative;
    width: 100%;
    padding: 0 30px;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
    -webkit-animation: scale-up-center 9s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate ;
            animation: scale-up-center 9s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite alternate ;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}



/**********************************/
/********** Process CSS ***********/
/**********************************/
#process {
    position: relative;
    padding: 75px 0 45px 0;
    background: #cf1828;
}

#process .process-col {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

#process .process-col::after {
    position: absolute;
    top: 12px;
    right: -12px;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 45px;
    color: #dddddd;
}

#process .col-md-4:last-child .process-col::after {
    display: none;
}

#process .process-col i {
    color: #e0dfe5;
    font-size: 90px;
    margin-bottom: 15px;
}

#process .process-col h2 {
    color: #dfdee4;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

#process .process-col p {
    font-size: 16px;
    margin: 0;
    font-family: 'Montserrat';
}

@media (max-width: 767.98px) {
    #process .process-col::after {
        opacity: 0;
    }
}



/**********************************/
/********** Products CSS **********/
/**********************************/
#products {
    position: relative;
    padding: 90px 0;
}

#products .product-single {
    position: relative;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: #dfdee4;
    border-radius: 5px;
}

#products .product-single .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

#products .product-img img {
    max-width: 100%;
}

#products .product-content {
    position: relative;
    width: 100%;
}

#products .product-content h2 {
    color: #2a4a71;
    font-size: 20px;
    font-weight: 600;
}

#products .product-content h3 {
    color: #2a4a71;
    font-size: 25px;
    font-weight: 700;
}

#products .product-content .btn {
    color: #2a4a71;
    font-size: 18px;
    border: 2px solid #2a4a71;
}

#products .product-content .btn:hover {
    color: #ffffff;
    background: #cf1828;
}

@media (max-width: 767.98px) {
    #products .product-single {
        margin-bottom: 45px;
    }
    
    #products .col-md-3:last-child .product-single {
        margin-bottom: 0;
    }
}



/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonials {
    position: relative;
    padding: 90px 0;
    background: #dfdee4;
}

#testimonials .testimonial-item {
    position: relative;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

#testimonials .testimonial-img {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

#testimonials .testimonial-item img {
    margin: 0 auto;
    max-width: 100px;
    max-height: 100px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
}

#testimonials .testimonial-content {
    position: relative;
    width: 100%;
    text-align: center;
}

#testimonials .testimonial-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2a4a71;
    margin-bottom: 5px;
}

#testimonials .testimonial-content h4 {
    color: #999999;
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
}

#testimonials .testimonial-item p {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
    margin-top: 15px;
    text-align: center;
}

#testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .1);
}

#testimonials .owl-dot.active {
    background: #2a4a71;
}



/**********************************/
/************ FAQs CSS ************/
/**********************************/
#faqs {
    position: relative;
    padding: 90px 0;
}

#faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

#faqs .card:last-child {
    margin-bottom: 0;
}

#faqs .card-header {
    padding: 0;
    border: none;
}

#faqs .card-header span {
    display: block;
    float: left;
    width: 50px;
    height: inherit;
    margin-right: 10px;
    padding: 15px 0;
    text-align: center;
    color: #ffffff;
    background: #cf1828;
}

#faqs .card-header a {
    display: block;
    float: right;
    width: calc(100% - 65px);
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;


}

#faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    margin-right: 15px;
    color: #2a4a71;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    margin-right: 15px;
    color: #2a4a71;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-body {
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    border-color: rgba(0, 0, 0, .03) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05) rgba(0, 0, 0, .05);
    font-family: 'Montserrat';
    text-align: justify;
}

#faqs .contact-info {
    position: relative;
    width: 100%;
}

#faqs .contact-info h2 {
    color: #2a4a71;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Montserrat';
}

#faqs .contact-info p {
    color: #4e4d4d;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Montserrat';
}

#faqs .contact-info h3 {
    color: #4e4d4d;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Montserrat';
}

#faqs .contact-info h3 i {
    width: 20px;
    color: #2a4a71;
    margin-right: 5px;
}

#faqs .contact-info a {
    margin: 10px 0 15px 0;
    font-size: 18px;
    color: #2a4a71;
    border: 2px solid #2a4a71;
    font-family: 'Montserrat';
}

#faqs .contact-info a:hover {
    color: #ffffff;
    background: #cf1828;
}

#faqs .social {
    position: relative;
    width: 100%;
}

#faqs .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #2a4a71;
    border-radius: 4px;
}

#faqs .social a i {
    color: #2a4a71;
}

#faqs .social a:hover {
    background: #cf1828;
}

#faqs .social a:hover i {
    color: #ffffff;
}

@media (max-width: 767.98px) {
    #faqs .contact-info {
        margin-top: 45px;
    }
}



/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 30px 0;
    background: #2a4a71;
}

#footer .col-md-6:first-child p {
    text-align: left;
}

#footer .col-md-6:last-child p {
    text-align: right;
}

@media (max-width: 767.98px) {
    #footer .col-md-6:first-child p,
    #footer .col-md-6:last-child p {
        text-align: center;
    }
}

#footer p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#footer p a {
    font-weight: 700;
}

#footer p a:hover {
    color: #ffffff;
}

div#whatsapp-btn {
    position: fixed;
    right: 2em;
    bottom: 55px;
    background-color: #00ba3b;
    color: #fff;
    padding: .5em 1em;
    z-index: 999999;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 2px 2px 3px #999;
    text-align: center;
    bottom: 10% !important; 
}

@keyframes stretch {
  /* declare animation actions here */
}

@-webkit-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@-moz-keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
.in-down {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}


.fa-li {
  animation: cssAnimation_0 2994ms infinite linear 349ms;
  animation-direction: alternate;
}

@keyframes cssAnimation_0 {
  to {
    transform: translate(0px, 0px) scale(1.5, 1.4);
  }
}

.fa {
  animation: cssAnimation_0 2994ms infinite linear 349ms;
  animation-direction: alternate;
}

@keyframes cssAnimation_0 {
  to {
    transform: translate(0px, 0px) scale(1.5, 1.4);
  }
}

.fab {
  animation: cssAnimation_0 2994ms infinite linear 349ms;
  animation-direction: alternate;
}



@keyframes cssAnimation_0 {
  to {
    transform: translate(0px, 0px) scale(1.5, 1.4);
  }
}



/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


.slide-right {
    -webkit-animation: slide-right 0.9s cubic-bezier(0.600, 0.040, 0.980, 0.335) ;
            animation: slide-right 0.9s cubic-bezier(0.600, 0.040, 0.980, 0.335) ;
}


/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
}

.slide-left {
    -webkit-animation: slide-left 0.9s cubic-bezier(0.445, 0.050, 0.550, 0.950) ;
            animation: slide-left 0.9s cubic-bezier(0.445, 0.050, 0.550, 0.950) ;
}



/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}




.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1;
  }
  }
  @keyframes zoomIn {
  0% {
  opacity: 0;
  -webkit-transform: scale3d(.3, .3, .3);
  transform: scale3d(.3, .3, .3);
  }
  50% {
  opacity: 1;
  }
  } 