﻿
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .about .intro-content .section-badge i {
        font-size: 1rem;
    }

.about .intro-content h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .about .intro-content h2 {
        font-size: 2.4rem;
    }
}

.about .intro-content .lead-text {
    font-size: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about .intro-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about .founder-highlight {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

    .about .founder-highlight .founder-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        float: left;
        margin-right: 1rem;
        margin-bottom: 1rem;
        border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .about .founder-highlight .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .about .founder-highlight .founder-info {
        overflow: hidden;
    }

        .about .founder-highlight .founder-info blockquote {
            font-style: italic;
            font-size: 1rem;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .about .founder-highlight .founder-info .founder-details h5 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--heading-color);
        }

        .about .founder-highlight .founder-info .founder-details span {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 500;
        }

.about .visual-section {
    position: relative;
}

    .about .visual-section .main-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

        .about .visual-section .main-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

            .about .visual-section .main-image img:hover {
                transform: scale(1.02);
            }

@media (max-width: 768px) {
    .about .visual-section .main-image img {
        height: 350px;
    }
}

.about .visual-section .experience-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--surface-color);
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-color);
}

    .about .visual-section .experience-badge .badge-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .about .visual-section .experience-badge .badge-text {
        font-size: 0.8rem;
        color: var(--heading-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.about .visual-section .overlay-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
/*    border-radius: 15px;*/
    overflow: hidden;
   /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--surface-color);*/
}

@media (max-width: 992px) {
    .about .visual-section .overlay-image {
        display: none;
    }
}

.about .visual-section .overlay-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about .achievements-grid {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 5rem 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

    .about .achievements-grid .achievement-item {
        padding: 1.5rem;
    }

        .about .achievements-grid .achievement-item .achievement-icon {
            width: 80px;
            height: 80px;
            background: color-mix(in srgb, var(--accent-color), transparent 88%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

            .about .achievements-grid .achievement-item .achievement-icon i {
                font-size: 2rem;
                color: var(--accent-color);
            }

            .about .achievements-grid .achievement-item .achievement-icon:hover {
                background: var(--accent-color);
                transform: translateY(-5px);
            }

                .about .achievements-grid .achievement-item .achievement-icon:hover i {
                    color: var(--contrast-color);
                }

        .about .achievements-grid .achievement-item .achievement-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

@media (max-width: 768px) {
    .about .achievements-grid .achievement-item .achievement-number {
        font-size: 2.5rem;
    }
}

.about .achievements-grid .achievement-item .achievement-label {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about .timeline-section {
    margin: 5rem 0;
}

    .about .timeline-section .section-header h3 {
        font-size: 2.5rem;
        color: var(--heading-color);
        margin-bottom: 1rem;
    }

    .about .timeline-section .section-header p {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        max-width: 600px;
        margin: 0 auto;
    }

    .about .timeline-section .timeline {
        position: relative;
        padding: 2rem 0;
    }

        .about .timeline-section .timeline .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item {
        padding-left: 60px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    padding-right: 2rem;
    padding-left: 0;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-right: 0;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-year {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/*@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-year {
    position: absolute;
    left: -40px;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}*/

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item .timeline-year {
        position: absolute;
        left: -10px;
        width: 60px;
        height: 60px;
        font-size: 1rem;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-content {
    flex: 1;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item .timeline-content {
        padding-left: 0;
        margin-top: 1rem;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-content h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.about .timeline-section .timeline .timeline-item .timeline-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
}

.about .team-preview {
    text-align: center;
    margin: 5rem 0;
}

    .about .team-preview h3 {
        font-size: 2.5rem;
        color: var(--heading-color);
        margin-bottom: 1rem;
    }

    .about .team-preview .team-description {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about .team-preview .team-member {
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
        height: 100%;
    }

        .about .team-preview .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about .team-preview .team-member .member-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--accent-color);
        }

            .about .team-preview .team-member .member-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .about .team-preview .team-member .member-info h5 {
            color: var(--heading-color);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .about .team-preview .team-member .member-info span {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

    .about .team-preview .view-team-btn {
        display: inline-block;
        margin-top: 2rem;
        padding: 1rem 2.5rem;
        background: var(--accent-color);
        color: var(--contrast-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

        .about .team-preview .view-team-btn:hover {
            background: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: var(--contrast-color);
        }


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: none;
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

    .features .nav-tabs .nav-item {
        margin-bottom: 15px;
    }

        .features .nav-tabs .nav-item:last-child {
            margin-bottom: 0;
        }

    .features .nav-tabs .nav-link {
        padding: 20px;
        border: none;
        border-radius: 12px;
        background: var(--surface-color);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .features .nav-tabs .nav-link .d-flex {
            position: relative;
            z-index: 1;
        }

        .features .nav-tabs .nav-link .icon-box {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: color-mix(in srgb, var(--accent-color), transparent 92%);
            transition: all 0.4s ease;
        }

            .features .nav-tabs .nav-link .icon-box i {
                font-size: 24px;
                color: var(--accent-color);
                transition: all 0.4s ease;
            }

        .features .nav-tabs .nav-link h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 5px 0;
            color: var(--heading-color);
            transition: all 0.4s ease;
        }

        .features .nav-tabs .nav-link p {
            font-size: 14px;
            margin: 0;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            transition: all 0.4s ease;
        }

        .features .nav-tabs .nav-link:hover {
            transform: translateY(-2px);
        }

            .features .nav-tabs .nav-link:hover::before {
                opacity: 1;
            }

            .features .nav-tabs .nav-link:hover .icon-box {
                background: var(--accent-color);
            }

                .features .nav-tabs .nav-link:hover .icon-box i {
                    color: var(--contrast-color);
                }

            .features .nav-tabs .nav-link:hover h4 {
                color: var(--accent-color);
            }

            .features .nav-tabs .nav-link:hover p {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

        .features .nav-tabs .nav-link.active {
            background: var(--accent-color);
        }

            .features .nav-tabs .nav-link.active::before {
                opacity: 0;
            }

            .features .nav-tabs .nav-link.active .icon-box {
                background: color-mix(in srgb, var(--contrast-color), transparent 85%);
            }

                .features .nav-tabs .nav-link.active .icon-box i {
                    color: var(--contrast-color);
                }

            .features .nav-tabs .nav-link.active h4 {
                color: var(--contrast-color);
            }

            .features .nav-tabs .nav-link.active p {
                color: color-mix(in srgb, var(--contrast-color), transparent 20%);
            }

.features .tab-content .content-box {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

    .features .tab-content .content-box h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }

        .features .tab-content .content-box h3::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 3px;
        }

    .features .tab-content .content-box p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

        .features .tab-content .content-box p.highlight {
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 95%));
            padding: 20px;
            border-radius: 12px;
            position: relative;
        }

    .features .tab-content .content-box .features-list {
        list-style: none;
        padding: 0;
        margin: 30px 0 0 0;
    }

        .features .tab-content .content-box .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-left: 8px;
            transition: all 0.3s ease;
        }

            .features .tab-content .content-box .features-list li:last-child {
                margin-bottom: 0;
            }

            .features .tab-content .content-box .features-list li i {
                font-size: 20px;
                color: var(--accent-color);
                margin-right: 12px;
            }

            .features .tab-content .content-box .features-list li span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

            .features .tab-content .content-box .features-list li:hover {
                transform: translateX(5px);
            }

                .features .tab-content .content-box .features-list li:hover span {
                    color: var(--default-color);
                }

    .features .tab-content .content-box .image-box {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

        .features .tab-content .content-box .image-box img {
            transition: all 0.6s ease;
        }

        .features .tab-content .content-box .image-box:hover img {
            transform: scale(1.05);
        }

        .features .tab-content .content-box .image-box::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
            pointer-events: none;
        }

.features .tab-pane {
    transition: all 0.4s ease;
}

    .features .tab-pane.fade {
        transform: translateY(10px);
        opacity: 0;
    }

    .features .tab-pane.show {
        transform: translateY(0);
        opacity: 1;
    }

@media (max-width: 991px) {
    .features .nav-tabs {
        margin-bottom: 30px;
    }

        .features .nav-tabs .nav-link {
            padding: 15px;
        }

            .features .nav-tabs .nav-link .icon-box {
                width: 40px;
                height: 40px;
            }

                .features .nav-tabs .nav-link .icon-box i {
                    font-size: 20px;
                }

    .features .tab-content .content-box {
        padding: 30px;
    }

        .features .tab-content .content-box h3 {
            font-size: 24px;
        }
}

@media (max-width: 767px) {
    .features .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .features .nav-tabs .nav-link h4 {
        font-size: 15px;
    }

    .features .nav-tabs .nav-link p {
        font-size: 13px;
    }

    .features .tab-content .content-box {
        padding: 25px;
    }

        .features .tab-content .content-box h3 {
            font-size: 22px;
        }

        .features .tab-content .content-box p {
            font-size: 15px;
        }
}


.services-detail {
    padding-bottom: 10px;
}

    .services-detail .card {
        border: 0;
        padding: 0 30px;
        margin-bottom: 60px;
        position: relative;
    }

    .services-detail .card-img {
        width: calc(100% + 60px);
        margin-left: -30px;
        overflow: hidden;
        z-index: 9;
        border-radius: 0;
    }

        .services-detail .card-img img {
            max-width: 100%;
            transition: all 0.3s ease-in-out;
        }

    .services-detail .card-body {
        z-index: 10;
        background: #fff;
        border-top: 4px solid #fff;
        padding: 30px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        margin-top: -60px;
        transition: 0.3s;
    }

    .services-detail .card-title {
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
    }

        .services-detail .card-title a {
            color: #2f0909;
            transition: 0.3s;
        }

    .services-detail .card-text {
        color: #5e5e5e;
    }

    .services-detail .read-more a {
        color: #777777;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 12px;
        transition: 0.3s;
    }

        .services-detail .read-more a:hover {
            color: #68A4C4;
        }

    .services-detail .card:hover img {
        transform: scale(1.1);
    }

    .services-detail .card:hover .card-body {
        border-color: #2c74f1;
    }

        .services-detail .card:hover .card-body .card-title a {
            color: #2c74f1;
        }

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .container {
    box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
    background: #fff;
}

.why-us .icon-box + .icon-box {
    margin-top: 50px;
}

.why-us .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f3f8fa;
    border-radius: 6px;
    transition: 0.5s;
}

    .why-us .icon-box .icon i {
        color: #68A4C4;
        font-size: 32px;
    }

.why-us .icon-box:hover .icon {
    background: #68A4C4;
}

    .why-us .icon-box:hover .icon i {
        color: #fff;
    }

.why-us .icon-box .title {
    margin-left: 95px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

    .why-us .icon-box .title a {
        color: #343a40;
        transition: 0.3s;
    }

        .why-us .icon-box .title a:hover {
            color: #68A4C4;
        }

.why-us .icon-box .description {
    margin-left: 95px;
    line-height: 24px;
    font-size: 14px;
}

.why-us .video-box {
    position: relative;
}

    .why-us .video-box img {
        padding-top: 15px;
        padding-bottom: 15px;
    }

.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

    .why-us .play-btn::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 100;
        transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    .why-us .play-btn::before {
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        animation-delay: 0s;
        animation: pulsate-btn 2s;
        animation-direction: forwards;
        animation-iteration-count: infinite;
        animation-timing-function: steps;
        opacity: 1;
        border-radius: 50%;
        border: 5px solid rgba(104, 164, 196, 0.7);
        top: -15%;
        left: -15%;
        background: rgba(198, 16, 0, 0);
    }

    .why-us .play-btn:hover::after {
        border-left: 15px solid #68A4C4;
        transform: scale(20);
    }

    .why-us .play-btn:hover::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-40%) translateY(-50%);
        width: 0;
        height: 0;
        border: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-left: 15px solid #fff;
        z-index: 200;
        animation: none;
        border-radius: 0;
    }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.ftco-section {
    padding: 7em 0;
    position: relative;
    width: 100%;
}

@media (max-width: 575.98px) {
    .ftco-section {
        padding: 6em 0;
    }
}

.ftco-no-pt {
    padding-top: 0 !important;
}

.ftco-no-pb {
    padding-bottom: 0 !important;
}

.ftco-intro {
    color: rgba(255, 255, 255, 0.8);
    z-index: 0;
    position: relative;
    padding: 6em 0;
}

    .ftco-intro .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        opacity: .9;
        background: #5ea51d;
        z-index: -1;
    }

@media (max-width: 767.98px) {
    .ftco-intro {
        background-position: center center !important;
    }
}

.ftco-intro h1,
.ftco-intro .h1 {
    color: #fff;
    font-weight: 600;
}

.ftco-intro h2,
.ftco-intro .h2 {
    color: #fff;
    font-weight: 600;
    font-size: 40px !important;
}

@media (max-width: 575.98px) {

    .ftco-intro h2,
    .ftco-intro .h2 {
        font-size: 20px;
    }
}

.ftco-intro h2 span,
.ftco-intro .h2 span {
    background: #5ea51d;
}

.ftco-gallery .gallery-wrap {
    width: 100%;
    height: 300px;
    display: block;
    position: relative;
    z-index: 0;
}

    .ftco-gallery .gallery-wrap:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        z-index: -1;
        background: #000000;
        opacity: 0;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .ftco-gallery .gallery-wrap .icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #5ea51d;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0;
    }

        .ftco-gallery .gallery-wrap .icon span {
            color: #fff;
        }

    .ftco-gallery .gallery-wrap:hover:after {
        opacity: .3;
    }

    .ftco-gallery .gallery-wrap:hover .icon {
        opacity: 1;
    }

.ftco-footer {
    padding: 7em 0 0 0;
    background: #06112a;
    color: rgba(255, 255, 255, 0.7);
}

    .ftco-footer .logo a {
        position: relative;
        text-decoration: none;
    }

    .ftco-footer .ftco-footer-widget h2,
    .ftco-footer .ftco-footer-widget .h2 {
        color: #fff;
        margin-bottom: 40px;
        font-size: 20px;
        font-weight: 700;
        font-family: "Nunito Sans", Arial, sans-serif;
    }

    .ftco-footer .ftco-footer-widget ul li {
        margin-bottom: 10px;
    }

        .ftco-footer .ftco-footer-widget ul li a {
            color: rgba(255, 255, 255, 0.7);
        }

            .ftco-footer .ftco-footer-widget ul li a span {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.7);
            }

            .ftco-footer .ftco-footer-widget ul li a:hover {
                color: #5ea51d;
            }

                .ftco-footer .ftco-footer-widget ul li a:hover span {
                    color: #5ea51d;
                }

    .ftco-footer .ftco-footer-widget .btn-primary {
        background: #fff !important;
        border: 2px solid #fff !important;
    }

        .ftco-footer .ftco-footer-widget .btn-primary:hover {
            background: #fff;
            border: 2px solid #fff !important;
        }

    .ftco-footer .block-23 ul {
        padding: 0;
    }

        .ftco-footer .block-23 ul li {
            font-size: 15px;
        }

            .ftco-footer .block-23 ul li,
            .ftco-footer .block-23 ul li > a {
                display: table;
                line-height: 1.5;
                margin-bottom: 15px;
                font-size: 15px;
            }

                .ftco-footer .block-23 ul li span {
                    color: rgba(255, 255, 255, 0.7);
                    color: #5ea51d;
                }

                .ftco-footer .block-23 ul li .icon,
                .ftco-footer .block-23 ul li .text {
                    display: table-cell;
                    vertical-align: top;
                    color: rgba(255, 255, 255, 0.8) !important;
                }

                .ftco-footer .block-23 ul li .icon {
                    width: 40px;
                    font-size: 15px;
                    padding-top: 2px;
                    color: #5ea51d !important;
                }

    .ftco-footer .bg-darken {
        background: #050d21 !important;
    }

.ftco-footer-social li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block;
}

    .ftco-footer-social li a {
        height: 40px;
        width: 40px;
        display: block;
        float: left;
        color: #fff;
        border-radius: 50%;
        position: relative;
        background: #5ea51d;
    }

        .ftco-footer-social li a span {
            position: absolute;
            font-size: 18px;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            color: #fff !important;
        }

        .ftco-footer-social li a:hover {
            color: #5ea51d;
        }

#map {
    width: 100%;
}

@media (max-width: 767.98px) {
    #map {
        height: 300px;
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(94, 165, 29, 0.4);
        -webkit-box-shadow: 0 0 0 0 rgba(94, 165, 29, 0.4);
        box-shadow: 0 0 0 0 rgba(94, 165, 29, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 30px rgba(94, 165, 29, 0);
        -webkit-box-shadow: 0 0 0 30px rgba(94, 165, 29, 0);
        box-shadow: 0 0 0 30px rgba(94, 165, 29, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(94, 165, 29, 0);
        -webkit-box-shadow: 0 0 0 0 rgba(94, 165, 29, 0);
        box-shadow: 0 0 0 0 rgba(94, 165, 29, 0);
    }
}

.ftco-agent {
    position: relative;
    z-index: 0;
}

    .ftco-agent .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 65%;
        content: '';
        /*background: #050d21;*/
        background: #0e2879;
        z-index: -1;
    }

.agent {
    position: relative;
    width: 100%;
    display: block;
    background: #5ea51d;
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 5px 21px -14px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 0px 5px 21px -14px rgba(0, 0, 0, 0.14);
    box-shadow: 0px 5px 21px -14px rgba(0, 0, 0, 0.14);
}

@media (max-width: 575.98px) {
    .agent {
        margin-bottom: 30px;
    }
}

.agent .img {
    position: relative;
    width: 100%;
    height: 300px;
    display: block;
    overflow: hidden;
    z-index: 0;
    background-position: top center !important;
}

    .agent .img:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        content: '';
        background: #000000;
        opacity: 0;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

.agent img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: -1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.agent .desc {
    padding: 30px;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .agent .desc h3,
    .agent .desc .h3 {
        font-size: 22px;
        font-weight: 600;
    }

        .agent .desc h3 a,
        .agent .desc .h3 a {
            color: #fff;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .agent .desc .h-info {
        margin-bottom: 5px;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .agent .desc .h-info span {
            margin-right: 10px;
            color: #fff;
        }

        .agent .desc .h-info .position {
            color: #fff;
        }

.agent:hover .img:after,
.agent:focus .img:after {
    opacity: .3;
}

.agent:hover img,
.agent:focus img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.heading-section .subheading {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
    color: #5ea51d;
    text-transform: uppercase;
    font-weight: 700;
}

.heading-section h2,
.heading-section .h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
}

    .heading-section h2 span,
    .heading-section .h2 span {
        font-weight: 400;
    }

@media (max-width: 575.98px) {

    .heading-section h2,
    .heading-section .h2 {
        font-size: 28px;
    }
}

.heading-section.heading-section-white .subheading {
    color: #5ea51d;
}

.heading-section.heading-section-white h2,
.heading-section.heading-section-white .h2 {
    color: #fff;
}

.ftco-social {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0;
    margin-bottom: 0;
}

    .ftco-social li {
        width: 34px;
        height: 34px;
        position: relative;
        display: inline-block;
    }

        .ftco-social li a {
            color: #fff;
            width: 34px;
            height: 34px;
            /*background: rgba(255, 255, 255, 0.1);*/
            border-radius: 50%;
        }

/*   .ftco-social li a:hover {
                        color: #fff;
                        background: #081637;
                    }*/

.about-author img {
    border-radius: 50%;
}

.about-author .desc h3,
.about-author .desc .h3 {
    font-size: 30px;
    font-weight: 700;
}


.pricing .row {
    padding-top: 40px;
}

.pricing .box {
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
    background: #fff;
    text-align: center;
}

.pricing h3 {
    font-weight: 300;
    margin-bottom: 15px;
    font-size: 28px;
}

.pricing h4 {
    font-size: 46px;
    color: #68A4C4;
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 25px;
}

    .pricing h4 span {
        color: #bababa;
        font-size: 18px;
        display: block;
    }

.pricing ul {
    padding: 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

    .pricing ul li {
        padding-bottom: 12px;
    }

    .pricing ul i {
        color: #68A4C4;
        font-size: 18px;
        padding-right: 4px;
    }

    .pricing ul .na {
        color: #ccc;
    }

        .pricing ul .na i {
            color: #ccc;
        }

        .pricing ul .na span {
            text-decoration: line-through;
        }

.pricing .get-started-btn {
    background: #1e4356;
    display: inline-block;
    padding: 6px 30px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    transition: 0.3s;
}

    .pricing .get-started-btn:hover {
        background: #68A4C4;
    }

.pricing .featured {
    z-index: 10;
    margin: -30px -5px 0 -5px;
}

    .pricing .featured .get-started-btn {
        background: #68A4C4;
    }

        .pricing .featured .get-started-btn:hover {
            background: #85b6cf;
        }

@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;
    }
}

