body {
    font-family: "Open Sans", sans-serif;
    color: #444444;

}

a {
    /* color: #3BCC97; */
    color: var(--primary-color);
    transition: 0.5s;
    text-decoration: none;
}

a:hover {
    /* color: #245A7F; */
    color: var(--secondary-color);
    transition: 0.5s;
    text-decoration: none;
}

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

:root {
    --front-site-theme-color: #e9f9f3;
    --primary-color: #0cae74;
    --secondary-color: #245a7f;
    --preloader-img: url("../img/Logo.svg");
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    /* background: #c4f0e0; */
    background: var(--front-site-theme-color);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;

}

#preloader:before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-top-color: #fff;
    border-bottom-color: #fff;
    /* border: 6px solid #37517e;
    border-radius: 50%;
    width: 60px;
    height: 60px; */
    width: 260px;
    height: 260px;
    background-image: var(--preloader-img);
    background-position: center center;
    background-repeat: no-repeat;
    animation: animate-preloader 5s linear infinite;
    filter: drop-shadow(2px 4px 6px black);
    background-size: contain;
}



@keyframes animate-preloader {
    0% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 1;
    }
    10% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 0.5;
    }
    30% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 1;
    }
    60% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 0.5;
    }
    80% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 1;
    }
    90% {
        /* transform: rotate(0deg); */
        transition: 0.5s;
        opacity: 0.5;
    }

    100% {
        /* transform: rotate(360deg); */
        transition: 0.5s;
        opacity: 1;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    /* background: #3BCC97; */
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

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

.back-to-top:hover {

    color: #fff;
}

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    /* padding: 15px 0; */
}

@media screen and (max-width:576px) {
    #header {
        padding: 15px 0;
    }
}


#header.header-scrolled,
#header.header-inner-pages {
    /* background: #E9F9F3; */
    background: var(--front-site-theme-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;


}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}

#header .logo a {
    color: #fff;
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
    background-color: transparent !important;
}

.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 0 10px 30px; */
    font-size: 15px;
    font-weight: 500;
    color: #212121;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 8px;
    margin: 0px 5px;
}

.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>.nav-link {
    /* color: #3BCC97; */
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 8px;
    opacity: 1;
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
}


.navbar .register,
.navbar .register:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    /* background-color: #3BCC97; */
    background: var(--primary-color);
    color: #212121;
    font-size: 14px;
    /* border: 2px solid #3BCC97; */
    border: 2px solid var(--primary-color);
    font-weight: 600;
    margin: 15px;
}


.navbar .login,
.navbar .login:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #212121;
    font-size: 14px;
    /* border: 2px solid #3BCC97; */
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.navbar .login:hover,
.navbar .login:focus:hover {
    color: #fff;
    /* background: #3BCC97; */
    background: var(--primary-color);
    text-decoration-line: none !important;
}

.navbar .register:hover,
.navbar .register:focus:hover {
    color: #212121;
    /* background: #3BCC97; */
    background: var(--primary-color);
    text-decoration-line: none !important;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 10px;
    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;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.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: #3BCC97; */
    color: var(--primary-color);
}

.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%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    /* color: #3BCC97; */
    color: var(--primary-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    /* color: #3BCC97; */
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    /* background: rgba(40, 58, 90, 0.9); */
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 75px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    /* color: #3BCC97; */
    color: var(--primary-color);
}

.navbar-mobile .login,
.navbar-mobile .login:focus {
    margin: 15px;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    /* color: #3BCC97; */
    color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    /* background: #E9F9F3; */
    background: var(--front-site-theme-color);
    
}
#header
{
    /* background: #E9F9F3; */
    background: var(--front-site-theme-color);
}

#hero .container {
    padding-top: 72px;
}

.section-title {
    top: 324px;
    left: 274px;
    /* width: 677px;
  height: 260px; */
    /* UI Properties */
    text-align: left;
    font: normal normal bold 48px/68px Raleway;
    letter-spacing: 0px;
    color: #212121;
    opacity: 1;
}

.saas {
    top: 289px;
    left: 274px;
    /* width: 677px; */
    height: 19px;
    /* UI Properties */
    text-align: left;
    font: normal normal 600 16px/19px Raleway;
    letter-spacing: 0px;
    /* color: #3BCC97; */
    color: var(--primary-color);
    opacity: 1;
}

#hero h1 {
    /* padding: 1%; */
    /* top: 324px;
    left: 274px; */
    /* width: 183%; */
    /* height: 215px; */
    /* UI Properties */
    text-align: left;
    font: normal normal bold 48px/68px Raleway;
    letter-spacing: 0px;
    color: #212121;
    opacity: 1;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 8px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    /* background: #3BCC97; */
    background: var(--primary-color);
}

#hero .btn-get-started:hover {
    background: white;
    color: #212121;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    /* color: #3BCC97; */
    color: var(--primary-color);
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .animated {
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }

    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #FFFFFF;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    /* background: #3BCC97; */
    background: var(--primary-color);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    /* color: #3BCC97; */
    color: var(--primary-color);
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    /* color: #3BCC97; */
    color: var(--primary-color);
    animation-delay: 0.8s;
    margin-top: 6px;
    /* border: 2px solid #3BCC97; */
    border: 2px solid var(--primary-color);
}

.about .content .btn-learn-more:hover {
    /* background: #3BCC97; */
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #2D69F0;
    color: #FFFFFF;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #FFFFFF;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    /* color: #37517e; */
    color: var(--secondary-color);
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    /* color: #3BCC97; */
    color: var(--primary-color);
}


@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 40px 40px;
    /* padding: 40px 40px 100px 40px; */
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    transition: 0.5s;
    background: #fff;
    height: 100%;
    border-radius: 16px;
    /* margin-bottom: -15%; */
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 20px;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.pricing h4 {
    font-size: 48px;
    /* color: #37517e; */
    color: var(--secondary-color);
    font-weight: 400;
    font-family: "Jost", sans-serif;
    margin-bottom: 25px;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    /* color: #3BCC97; */
    color: var(--primary-color);
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    /* color: #3BCC97; */
    color: var(--primary-color);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    /* border: 1px solid #3BCC97; */
    border: 1px solid var(--primary-color);
    /* margin-left: 10%; */
    background-color: white;
}

.pricing .featured {
    /* border-top-color: #3BCC97; */
    border-top-color: var(--primary-color);
    /* background-color: #3BCC97; */
    background-color: var(--primary-color);
}

.featured h3,
.featured ul,
.featured ul li i,
.featured h4,
.featured h4 span {
    color: white !important;
}


.pricing .featured .buy-btn {
    background: white;
    /* color: #3BCC97; */
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 30px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    /* color: #3BCC97; */
    color: var(--primary-color);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: white;
    border-radius: 6px;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    /* color: #37517e; */
    color: var(--secondary-color);
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    /* color: #3BCC97; */
    color: var(--primary-color);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    /* background-color: #E9F9F3; */
    background: var(--front-site-theme-color);
    padding-bottom: 6rem;
}

.contact .info {
    /* border-top: 3px solid #3BCC97; */
    /* border-bottom: 3px solid #3BCC97; */
    padding: 30px;
    background: #fff;
    width: 100%;
    /* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1); */
}

.contact .info i {
    font-size: 20px;
    /* color: #3BCC97; */
    color: var(--primary-color);
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {

    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.contact .info p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #212121;
    margin-left: 2%;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #3BCC97;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    /* background: #3BCC97; */
    background: var(--primary-color);
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    /* border-top: 3px solid #3BCC97; */
    /* border-bottom: 3px solid #3BCC97; */
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    /* box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12); */
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    /* border-color: #3BCC97; */
    border-color: var(--primary-color);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    /* background: #3BCC97; */
    background: var(--primary-color);
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 8px;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--secondary-color);
    color: #FFFFFF;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    /* color: #37517e; */
    color: var(--secondary-color);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    font-size: 14px;
    background: #FFFFFF;
    color: #212121;
    padding: 85px 0 0px 0 !important;
}

#footer .footer-newsletter {
    padding: 50px 0;
    background: #f3f5fa;
    text-align: center;
    font-size: 15px;
    color: #6d4040;
}

#footer .footer-newsletter h4 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    /* color: #37517e; */
    color: var(--secondary-color);
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    /* background: #3BCC97; */
    background: var(--primary-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #209dd8;
}

#footer .footer-top {
    /* padding: 60px 0 30px 0; */
    background: #fff;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    /* color: #37517e; */
    color: var(--secondary-color);
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    /* color: #37517e; */
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 5px;
    /* color: #3BCC97; */
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    /* color: #3BCC97; */
    color: var(--primary-color);
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;

    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    /* background: #209dd8; */
    color: #fff;
    text-decoration: none;
}

.social-links a img {
    height: 45px;
    width: 45px;
}

#footer .footer-bottom p{
    /* padding-top: 10px; */
    color: #212121 !important;
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

#footer .credits a {
    transition: 0.3s;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 10px;
        padding-bottom: 8px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

.book-img {
    position: absolute;
    top: 28%;
    left: 5%;
    width: 94px;
    height: 76px;
    opacity: 1;
}

.calc-img {
    position: absolute;
    top: 80%;
    left: 90%;
    width: 60px;
    height: 81px;
    opacity: 1;
}

.cap-img {
    position: absolute;
    top: 15%;
    left: 82%;
    width: 147px;
    height: 121px;
    opacity: 1;
}

.glass-img {
    position: absolute;
    top: 80%;
    left: 33%;
    width: 80px;
    height: 42px;
    opacity: 1;
}

.idea-img {
    position: absolute;
    top: 25%;
    left: 55%;
    width: 57px;
    height: 62px;

    opacity: 1;
}

.rocket-img {
    position: absolute;
    top: 90%;
    left: 2%;
    width: 63px;
    height: 66px;
    opacity: 1;
}

.scale-img {
    position: absolute;
    top: 75%;
    left: 40%;
    width: 107px;
    height: 70px;
    opacity: 1;
}

.feature-tag {
    text-align: center;
    font: normal normal 600 14px/16px Raleway;
    letter-spacing: 0px;
    color: #21212180;
    opacity: 1;
}

.pricing {
    /* background-color: #E9F9F3; */
    background: var(--front-site-theme-color);

}

.card .card-body .card-title {
    color:white !important;
}

.feature-div-1 {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.4s;
    background: #2D69F0;
    color: white !important;
}

.feature-div-1:hover {
    transition: 0.5s;
    transform: translateY(-20px);
    box-shadow: 0px 0px 35px #2D69F0;
}

.feature-div-2 {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.4s;
    background: #DD246E;
    color: white !important;
}

.feature-div-2:hover {
    transition: 0.5s;
    transform: translateY(-20px);
    box-shadow: 0px 0px 35px #DD246E;
}

.feature-div {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transition: all ease-in-out 0.4s;
    /* background: #0CAE74; */
    background: var(--primary-color);
    color: white !important;
}

.feature-div:hover {
    transition: 0.5s;
    transform: translateY(-20px);
    /* box-shadow: 0px 0px 35px #0CAE74; */
    box-shadow: 0px 0px 35px var(--primary-color);
}

.box:hover {
    transition: 0.5s;
    /* background-color: #3BCC97; */
    background-color: var(--primary-color);
}

.box:hover a {
    /* color: white !important; */
    transition: 0.5s;
    background-color: white;
}


.box:hover * {
    transition: 0.5s;
    color: white !important;
}

.box:hover a {
    transition: 0.5s;
    /* color: #3BCC97 !important; */
    color: var(--primary-color) !important;
}

.faq-question {
    /* background-color: #E9F9F3 !important; */
    background: var(--front-site-theme-color) !important;
}

.form-control {
    border: 0px;
    border: none;
}
.form-control-1
{
    border: 1px solid #ebedf2;
    font-family: "ubuntu-regular", sans-serif;
    font-size: 0.8125rem;
}

.contact-img {
    top: 4729px;
    left: 1133px;
    width: 30px;
    height: 30px;
    /* UI Properties */
    /* background-color: #C4F0E0; */
    /* background-color: var(--front-site-theme-color); */
    border-radius: 8px;
    padding: 5px;
    opacity: 1;
}

.contact-form {
    color: #212121;
    text-align: left;
    font: normal normal 600 24px/29px Raleway;
    letter-spacing: 0px;
    color: #212121;
    border-radius: 8px;
    opacity: 1;
    resize: none;
}

textarea {
    resize: none !important;
}

.contact-title {
    text-align: left;
    font: normal normal 600 18px/21px Raleway;
    letter-spacing: 0px;
    color: #212121;
    opacity: 1;
    margin-left: 2%;
}

.address {
    margin-top: 3%;
}

.info {
    border-radius: 8px;
}

.download-app {
    /* background-color: #245A7F; */
    background-color: var(--secondary-color);
    border-radius: 1px 16px 16px 165px;
    padding: 3%;
}

.btn-apple {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: transparent;
    border: 1px solid;
    text-decoration: none !important;
}

.btn-apple:hover {
    transition: 0.5s;
    color: #212121;
    background: white;
    border: 1px white;
}

.btn-apple:hover img {
    transition: 0.5s;
    filter: brightness(0%);
}

.btn-play {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #212121;
    background: white;
    border-color: white !important;
    border: 1px solid white;
    text-decoration: none !important;
}

.btn-play:hover {
    color: #212121;
}

.footer-1 {
    /* background-color: #3CCB9B; */
    background-color: var(--primary-color);
    border-radius: 16px;
    margin-top: -5%
}

.form-control:focus {
    transition: 0.5s;
    /* border: 1px solid #3CCB9B; */
    border: 1px solid var(--primary-color);
}

.feature-div {
    border-radius: 8px;
}

/* @media screen and (max-width:576px) {
    .app-link {
        display: block !important;
    }
} */

.mobile-footer {
    /* background-color: #245A7F; */
    background-color: var(--secondary-color);
    width: 100%;
}

.mobile-app-download-title {
    /* background-color: #3CCB9B; */
    background-color: var(--primary-color);
    padding: 3%;
    border-radius: 0px 0px 100px 100px;
    width: 100%;
}

.mobile-app-download-button {
    /* background-color: #245A7F; */
    background-color: var(--secondary-color);
    padding: 3%;
    width: 100%;
}
.price
{
    font-size: 20px;
}

.modal-content
{
    background-color: white;
}
.form-control
{
    border: 1px solid #ebedf2;
    border-radius: 8px;
}
.btn-submit {
    /* background-color: #3CCB9B; */
    background-color: var(--primary-color);
    border-radius: 8px;
    color: white;
    transition: 0.5s;
}
.btn-submit:hover {
    /* background-color: #245A7F; */
    background-color: var(--secondary-color);
    border-radius: 8px;
    color: white;
    transition: 0.5s;
}

.scrolled-down{
    transform:translateY(-100%); transition: all 0.3s ease-in-out;
}
.scrolled-up{
    transition: all 0.3s ease-in-out;
}

.grid-margin {
    margin-bottom: 2.5rem;
}

.card {
    border: 0px solid !important;
}

.navbar-mobile {
    position: fixed !important;
}

.btn-home-theme {
    background: var(--primary-color) !important;
    color: #FFFFFF !important;
}

.btn-home-theme:hover {
    background: var(--secondary-color) !important;
    
}

/* ************************************************************************************************************************ */


/* Preloader-1 */
#preloader-1 {
background-color: #C4F0E0;
    height: 100%;
    width: 100%;
    position: fixed;
    margin-top: 0px;
    top: 0px;
    z-index: 9999;
}


#preloader-1 .loader .loader-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid var(--tg-color-gray-1);
    border-radius: 50%;
}

#preloader-1 .loader .loader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    text-align: center;
}

#preloader-1 .loader .loader-icon img {
    animation: loaderpulse alternate 900ms infinite;
    width: 40px;
}