/* ==========================================
                GLOBAL
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Jost", sans-serif;
    color: #444;
}

a {
    text-decoration: none;
}


/* ==========================================
                NAVBAR
========================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: #3d5a8a;

    transition: all 0.3s ease;
}

.navbar {
    min-height: 70px;
}

.logo {
    color: #fff !important;

    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;

    border: 2px solid #fff;
    border-radius: 4px;

    padding: 2px 5px;
}

.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: #fff !important;

    font-size: 14px;
    font-weight: 500;

    padding: 8px 10px !important;

    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #47b2e4 !important;
}

.get-started-btn {
    display: inline-block;

    padding: 9px 22px;

    background: #47b2e4;
    color: #fff;

    border-radius: 25px;

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s;
}

.get-started-btn:hover {
    background: #5bc0eb;
    color: #fff;
}

.dropdown-menu {
    border: none;
    border-radius: 5px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    font-size: 13px;
    padding: 8px 18px;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* ==========================================
                HERO
========================================== */

.hero-section {
    min-height: 695px;

    background: #3d5a8a;

    display: flex;
    align-items: center;

    padding-top: 90px;
}

.hero-content {
    padding-top: 25px;
}

.hero-content h1 {
    max-width: 520px;

    color: #fff;

    font-size: 45px;
    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 12px;
}

.hero-content p {
    max-width: 530px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 20px;
    line-height: 1.45;

    font-weight: 500;

    margin-bottom: 25px;
}


/* ==========================================
                HERO BUTTONS
========================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-btn {
    display: inline-block;

    padding: 11px 25px;

    background: #47b2e4;
    color: #fff;

    border-radius: 25px;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.hero-btn:hover {
    background: #5bc0eb;
    color: #fff;
}

.watch-btn {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;
}

.play-icon {
    width: 27px;
    height: 27px;

    border: 2px solid #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon i {
    font-size: 13px;
}

.watch-btn:hover {
    color: #47b2e4;
}


/* ==========================================
                HERO IMAGE
========================================== */

.hero-image {
    text-align: center;

    animation: floating 4s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    max-width: 570px;
    height: auto;
}


/* Floating Animation */

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}


/* ==========================================
                CLIENTS
========================================== */

.clients-section {
    background: #f5f6f8;

    padding: 20px 0;
}

.client-logo {
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 105px;
    max-height: 35px;

    filter: grayscale(100%);

    opacity: 0.75;

    transition: 0.3s;
}

.client-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}


/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .main-header {
        background: #3d5a8a;
    }

    .navbar-collapse {
        margin-top: 10px;

        padding: 15px;

        background: #304b76;

        border-radius: 8px;
    }

    .navbar-nav {
        gap: 2px;
    }

    .get-started-btn {
        display: inline-block;
        margin-top: 8px;
    }

    .hero-section {
        min-height: auto;

        padding: 130px 0 70px;
    }

    .hero-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-content h1 {
        margin-left: auto;
        margin-right: auto;

        font-size: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }
}


@media (max-width: 576px) {

    .logo {
        font-size: 21px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-image img {
        max-width: 380px;
    }

    .clients-section {
        padding: 15px 0;
    }
}
/* ==========================================
                ABOUT SECTION
========================================== */

.about-section {
    padding: 85px 0 80px;
    background: #fff;
}


/* ==========================================
                SECTION TITLE
========================================== */

.section-title {
    text-align: center;
    margin-bottom: 85px;
}

.section-title h2 {
    margin: 0;

    color: #37517e;

    font-size: 36px;
    font-weight: 700;
}

.title-line {
    width: 180px;
    height: 2px;

    background: #ddd;

    margin: 20px auto 0;

    position: relative;
}

.title-line span {
    position: absolute;

    width: 65px;
    height: 3px;

    background: #47b2e4;

    left: 50%;
    top: -1px;

    transform: translateX(-50%);
}


/* ==========================================
                CONTENT
========================================== */

.about-content {
    max-width: 1500px;
    margin: 0 auto;
}

.about-content p {
    color: #444;

    font-size: 19px;
    line-height: 1.55;

    margin-bottom: 25px;
}


/* ==========================================
                LIST
========================================== */

.about-list {
    list-style: none;

    padding: 0;
    margin: 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;

    gap: 7px;

    margin-bottom: 13px;

    color: #444;

    font-size: 19px;
    line-height: 1.4;
}

.about-list li i {
    color: #47b2e4;

    font-size: 21px;

    flex-shrink: 0;

    margin-top: 1px;
}


/* ==========================================
                READ MORE BUTTON
========================================== */

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 30px;

    border: 2px solid #47b2e4;

    border-radius: 5px;

    color: #47b2e4;

    font-size: 16px;
    font-weight: 600;

    letter-spacing: .5px;

    transition: .3s ease;
}

.about-btn i {
    transition: .3s ease;
}

.about-btn:hover {
    background: #47b2e4;

    color: #fff;
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 55px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-content p,
    .about-list li {
        font-size: 17px;
    }

    .about-content .col-lg-6 + .col-lg-6 {
        margin-top: 25px;
    }

}


@media (max-width: 576px) {

    .about-section {
        padding: 55px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .about-content p,
    .about-list li {
        font-size: 16px;
    }

}

/* ==========================================
            FAQ / ABOUT DETAILS
========================================== */

.about-faq-section {
    padding: 75px 0;
    background: #f3f5f7;
}


/* ==========================================
            LEFT CONTENT
========================================== */

.faq-title {
    max-width: 850px;

    margin: 0 0 10px;

    color: #37517e;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 400;
}

.faq-title strong {
    font-weight: 700;
}

.faq-description {
    max-width: 850px;

    margin-bottom: 20px;

    color: #6c757d;

    font-size: 18px;
    line-height: 1.55;
}


/* ==========================================
            FAQ ITEM
========================================== */

.faq-item {
    margin-bottom: 18px;

    background: #fff;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

    transition: .3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .09);
}


/* ==========================================
            QUESTION
========================================== */

.faq-question {
    width: 100%;

    padding: 20px 22px;

    border: none;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    color: #37517e;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-question b {
    color: #47b2e4;

    font-size: 17px;
}

.faq-question i {
    color: #47b2e4;

    font-size: 17px;

    transition: .3s ease;
}


/* Open question */

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}


/* ==========================================
            ANSWER
========================================== */

.faq-answer {
    padding: 0 22px 22px;

    color: #444;

    font-size: 17px;

    line-height: 1.6;
}


/* ==========================================
            IMAGE
========================================== */

.faq-image {
    padding-left: 35px;

    text-align: center;
}

.faq-image img {
    width: 100%;

    max-width: 430px;

    height: auto;

    transition: .4s ease;
}

.faq-image img:hover {
    transform: translateY(-8px);
}


/* ==========================================
            RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-faq-section {
        padding: 65px 0;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-description {
        font-size: 17px;
    }

    .faq-image {
        padding-left: 0;

        margin-top: 45px;
    }

}


@media (max-width: 576px) {

    .about-faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 27px;
    }

    .faq-description {
        font-size: 16px;
    }

    .faq-question {
        padding: 17px;

        font-size: 15px;
    }

    .faq-question span {
        gap: 8px;
    }

    .faq-question b {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 17px 18px;

        font-size: 14px;
    }

    .faq-image img {
        max-width: 330px;
    }

}
/* ==========================================
                SERVICES SECTION
========================================== */

.services-section {
    padding: 80px 0 75px;

    background: #f3f5f7;
}


/* ==========================================
                HEADING
========================================== */

.services-title {
    margin-bottom: 65px;
}

.services-title h2 {
    color: #37517e;

    font-size: 36px;
    font-weight: 700;
}

.services-title p {
    max-width: 850px;

    margin: 25px auto 0;

    color: #444;

    font-size: 18px;
    line-height: 1.5;
}


/* ==========================================
                SERVICE CARD
========================================== */

.service-card {
    min-height: 310px;

    padding: 60px 34px;

    background: #fff;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: all .35s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}


/* ==========================================
                ICON
========================================== */

.service-icon {
    width: 55px;
    height: 55px;

    margin-bottom: 28px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    color: #47b2e4;

    font-size: 42px;
}

.service-icon i {
    line-height: 1;
}


/* ==========================================
                TITLE
========================================== */

.service-card h3 {
    margin: 0 0 16px;

    color: #37517e;

    font-size: 22px;
    font-weight: 700;
}

.service-card p {
    margin: 0;

    color: #444;

    font-size: 17px;

    line-height: 1.6;
}


/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .services-section {
        padding: 70px 0;
    }

    .services-title {
        margin-bottom: 45px;
    }

    .services-title h2 {
        font-size: 32px;
    }

    .service-card {
        min-height: 290px;

        padding: 45px 28px;
    }

}


@media (max-width: 576px) {

    .services-section {
        padding: 55px 0;
    }

    .services-title h2 {
        font-size: 28px;
    }

    .services-title p {
        font-size: 16px;
    }

    .service-card {
        min-height: auto;

        padding: 40px 28px;
    }

    .service-icon {
        margin-bottom: 22px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
    }

}
/* ==========================================
             WORK PROCESS SECTION
========================================== */

.work-process-section {
    padding: 80px 0 75px;
    background: #fff;
}


/* ==========================================
             HEADING
========================================== */

.process-title {
    margin-bottom: 45px;
}

.process-title h2 {
    color: #37517e;

    font-size: 28px;
    font-weight: 700;
}

.process-title p {
    margin: 18px auto 0;

    color: #444;

    font-size: 13px;
}


/* ==========================================
             PROCESS ROW
========================================== */

.process-row {
    max-width: 1000px;
    margin: 0 auto;
}


/* ==========================================
             PROCESS CARD
========================================== */

.process-card {
    overflow: hidden;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .07);

    transition: .35s ease;
}

.process-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .11);
}


/* ==========================================
             IMAGE
========================================== */

.process-image {
    height: 205px;

    position: relative;

    background: #f5f8fb;

    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ==========================================
             NUMBER
========================================== */

.process-number {
    position: absolute;

    left: 20px;
    bottom: -1px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #47b2e4;

    color: #fff;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;

    border: 4px solid #fff;
}


/* ==========================================
             CONTENT
========================================== */

.process-content {
    padding: 22px 22px 25px;
}

.process-content h3 {
    margin: 0 0 10px;

    color: #37517e;

    font-size: 19px;
    font-weight: 700;
}

.process-content p {
    min-height: 66px;

    margin: 0 0 15px;

    color: #666;

    font-size: 12px;

    line-height: 1.55;
}


/* ==========================================
             LIST
========================================== */

.process-content ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.process-content li {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color: #71808c;

    font-size: 12px;
}

.process-content li:last-child {
    margin-bottom: 0;
}

.process-content li i {
    color: #47b2e4;

    font-size: 15px;
}


/* ==========================================
             RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .work-process-section {
        padding: 70px 0;
    }

    .process-row {
        max-width: 700px;
    }

}


@media (max-width: 767px) {

    .work-process-section {
        padding: 55px 0;
    }

    .process-title h2 {
        font-size: 26px;
    }

    .process-card {
        max-width: 430px;

        margin: 0 auto;
    }

    .process-image {
        height: 220px;
    }

}

/* ==========================================
             CALL TO ACTION SECTION
========================================== */

.cta-section {
    position: relative;

    min-height: 260px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            rgba(29, 78, 121, 0.88),
            rgba(29, 78, 121, 0.88)
        ),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center center;

    /* Image stays fixed while scrolling */
    background-attachment: fixed;
}


/* ==========================================
             CONTENT
========================================== */

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 45px 55px;
}


/* ==========================================
             TEXT
========================================== */

.cta-text {
    max-width: 780px;
}

.cta-text h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 25px;
    font-weight: 700;
}

.cta-text p {
    margin: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
             BUTTON
========================================== */

.cta-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 145px;

    padding: 10px 25px;

    border: 2px solid #fff;
    border-radius: 30px;

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #47b2e4;

    border-color: #47b2e4;

    color: #fff;

    transform: translateY(-2px);
}


/* ==========================================
             RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .cta-section {
        min-height: 300px;

        /* Fixed background can behave differently
           on some mobile browsers */
        background-attachment: scroll;
    }

    .cta-content {
        padding: 45px 25px;
    }

    .cta-text {
        max-width: 650px;
    }

}


@media (max-width: 767px) {

    .cta-section {
        min-height: auto;
    }

    .cta-content {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        padding: 50px 20px;
    }

    .cta-text h2 {
        font-size: 23px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-button {
        min-width: 135px;
    }

}


/* ==========================================
                PORTFOLIO
========================================== */

.portfolio-section {
    padding: 80px 0;

    background: #fff;
}


/* ==========================================
                TITLE
========================================== */

.portfolio-title {
    margin-bottom: 35px;
}

.portfolio-title h2 {
    color: #37517e;

    font-size: 28px;
    font-weight: 700;
}

.portfolio-title p {
    margin: 17px auto 0;

    color: #555;

    font-size: 13px;
}


/* ==========================================
                FILTERS
========================================== */

.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 7px;

    margin-bottom: 15px;
}

.filter-btn {
    border: none;

    padding: 5px 13px;

    background: transparent;

    color: #333;

    border-radius: 20px;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;

    transition: .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #47b2e4;

    color: #fff;
}


/* ==========================================
                GRID
========================================== */

.portfolio-grid {
    max-width: 1000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 140px;

    gap: 10px;
}


/* ==========================================
                ITEM
========================================== */

.portfolio-item {
    position: relative;

    overflow: hidden;

    background: #eee;

    cursor: pointer;
}

.portfolio-item:nth-child(1) {
    grid-row: span 2;
}

.portfolio-item:nth-child(4) {
    grid-row: span 2;
}

.portfolio-item:nth-child(5) {
    grid-row: span 2;
}

.portfolio-item:nth-child(7) {
    grid-row: span 2;
}


/* ==========================================
                IMAGE
========================================== */

.portfolio-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}


/* ==========================================
                OVERLAY
========================================== */

.portfolio-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 18px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, .75)
        );

    color: #fff;

    opacity: 0;

    transform: translateY(15px);

    transition: .35s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;

    transform: translateY(0);
}

.portfolio-overlay h3 {
    margin: 0 0 3px;

    font-size: 15px;
    font-weight: 600;
}

.portfolio-overlay p {
    margin: 0;

    font-size: 10px;

    color: rgba(255,255,255,.8);
}


/* ==========================================
                PLUS BUTTON
========================================== */

.portfolio-link {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.8);

    border-radius: 50%;

    color: #fff;

    font-size: 12px;

    transition: .3s ease;
}

.portfolio-link:hover {
    background: #47b2e4;

    border-color: #47b2e4;

    color: #fff;
}


/* ==========================================
                FILTER ANIMATION
========================================== */

.portfolio-item.hide {
    display: none;
}


/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .portfolio-grid {
        max-width: 750px;

        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 170px;
    }

}


@media (max-width: 576px) {

    .portfolio-section {
        padding: 55px 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 240px;
    }

    .portfolio-item:nth-child(1),
    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5),
    .portfolio-item:nth-child(7) {
        grid-row: span 1;
    }

}

/* ==========================================
                    TEAM
========================================== */

.team-section {
    padding: 70px 0 30px;
    background: #fff;
}

.team-section .section-title {
    margin-bottom: 45px;
}

.team-section .section-title h2,
.pricing-section .section-title h2 {
    color: #37517e;
    font-size: 25px;
    font-weight: 700;
}

.team-section .section-title p,
.pricing-section .section-title p {
    margin-top: 15px;
    color: #666;
    font-size: 12px;
}

.team-row {
    max-width: 650px;
    margin: auto;
}

.team-row > div {
    margin-bottom: 12px;
}

.team-card {
    min-height: 112px;
    padding: 15px;

    display: flex;
    align-items: center;

    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card > img {
    width: 76px;
    height: 76px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;
}

.team-info {
    padding-left: 18px;
}

.team-info h3 {
    margin: 0 0 2px;

    color: #37517e;

    font-size: 13px;
    font-weight: 700;
}

.team-info span {
    display: block;

    margin-bottom: 7px;

    color: #555;

    font-size: 10px;
}

.team-info p {
    margin: 0 0 7px;

    color: #777;

    font-size: 9px;
    line-height: 1.4;
}

.team-social {
    display: flex;
    gap: 6px;
}

.team-social a {
    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f1f1;

    border-radius: 50%;

    color: #777;

    font-size: 9px;

    transition: .3s;
}

.team-social a:hover {
    background: #47b2e4;
    color: #fff;
}


/* ==========================================
                    PRICING
========================================== */

.pricing-section {
    padding: 55px 0 70px;

    background: #f3f5f7;
}

.pricing-section .section-title {
    margin-bottom: 35px;
}

.pricing-row {
    max-width: 650px;
    margin: auto;
}

.pricing-card {
    position: relative;

    height: 100%;

    padding: 28px 20px;

    background: #fff;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);

    border-top: 2px solid transparent;

    transition: .3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-top-color: #47b2e4;
}

.popular {
    position: absolute;

    top: -11px;
    right: 15px;

    padding: 4px 9px;

    background: #47b2e4;

    color: #fff;

    border-radius: 3px;

    font-size: 8px;
    font-weight: 600;
}

.pricing-card h3 {
    margin: 0 0 10px;

    color: #37517e;

    font-size: 12px;
    font-weight: 700;
}

.price {
    margin-bottom: 18px;

    color: #47b2e4;

    font-size: 28px;
    font-weight: 500;
}

.price sup {
    font-size: 13px;
}

.price span {
    color: #999;

    font-size: 9px;
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;

    padding: 0;
    margin: 0 0 22px;
}

.pricing-card li {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 10px;

    color: #777;

    font-size: 9px;
}

.pricing-card li i {
    color: #20b26b;

    font-size: 11px;
}

.pricing-card li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-card li.disabled i {
    color: #aaa;
}

.buy-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 68px;

    padding: 6px 14px;

    border: 1px solid #47b2e4;

    border-radius: 20px;

    color: #47b2e4;

    font-size: 9px;
    font-weight: 600;

    transition: .3s;
}

.buy-btn:hover,
.buy-btn.filled {
    background: #47b2e4;
    color: #fff;
}


/* ==========================================
                 RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .team-row,
    .pricing-row {
        max-width: 700px;
    }

    .pricing-row > div {
        margin-bottom: 20px;
    }

}


@media (max-width: 576px) {

    .team-card {
        align-items: flex-start;
    }

    .team-card > img {
        width: 65px;
        height: 65px;
    }

    .team-info {
        padding-left: 12px;
    }

    .team-info p {
        font-size: 10px;
    }

    .pricing-card {
        max-width: 350px;
        margin: auto;
    }

}

/* ==========================================
                TESTIMONIALS
========================================== */

.testimonials-section {
    padding: 65px 0 55px;

    background: #fff;
}

.testimonials-section .section-title {
    margin-bottom: 30px;
}


/* Testimonial */

.testimonial-box {
    max-width: 850px;

    margin: auto;

    text-align: center;
}

.testimonial-img {
    width: 65px;
    height: 65px;

    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 8px;
}

.testimonial-box h3 {
    margin: 0 0 3px;

    color: #37517e;

    font-size: 13px;
    font-weight: 700;
}

.testimonial-box > span {
    color: #666;

    font-size: 9px;
}

.testimonial-stars {
    margin: 8px 0;

    color: #ffc107;

    font-size: 13px;
    letter-spacing: 1px;
}

.testimonial-text {
    max-width: 750px;

    margin: 10px auto 15px;

    color: #666;

    font-size: 10px;

    line-height: 1.6;

    font-style: italic;
}

.testimonial-dots {
    display: flex;

    justify-content: center;

    gap: 5px;
}

.testimonial-dots span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ddd;
}

.testimonial-dots span.active {
    background: #47b2e4;
}


/* ==========================================
                    FAQ
========================================== */

.faq-section {
    padding: 55px 0 65px;

    background: #f3f5f7;
}

.faq-section .section-title {
    margin-bottom: 35px;
}

.section-title {
    text-align: center;
}

.section-title h2 {
    color: #37517e;

    font-size: 25px;
    font-weight: 700;
}

.section-title p {
    max-width: 750px;

    margin: 14px auto 0;

    color: #666;

    font-size: 11px;

    line-height: 1.5;
}

.title-line {
    width: 80px;

    height: 2px;

    margin: 10px auto;

    background: #bbb;

    position: relative;
}

.title-line span {
    position: absolute;

    width: 32px;
    height: 3px;

    left: 50%;
    top: -1px;

    transform: translateX(-50%);

    background: #47b2e4;
}


/* FAQ Wrapper */

.faq-wrapper {
    max-width: 750px;

    margin: auto;
}


/* FAQ Box */

.faq-box {
    margin-bottom: 10px;

    background: #fff;
}


/* Question */

.faq-question {
    width: 100%;

    padding: 13px 15px;

    border: none;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    text-align: left;

    color: #37517e;

    font-size: 10px;

    font-weight: 600;

    cursor: pointer;
}

.faq-question span {
    display: flex;

    align-items: center;

    gap: 8px;
}

.faq-question span > i {
    color: #47b2e4;

    font-size: 11px;
}

.faq-arrow {
    color: #47b2e4;

    font-size: 10px;
}


/* Answer */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 15px;

    color: #666;

    font-size: 10px;

    line-height: 1.5;

    transition: max-height .35s ease,
                padding .35s ease;
}

.faq-box.active .faq-answer {
    padding-bottom: 15px;
}


/* Hover */

.faq-box:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
}


/* ==========================================
                RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .testimonials-section {
        padding: 50px 20px;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .testimonial-text {
        font-size: 11px;
    }

    .faq-question {
        font-size: 11px;

        padding: 14px 12px;
    }

    .faq-answer {
        font-size: 10px;
    }

}

/* ==========================================
             NEWSLETTER SECTION
========================================== */

.newsletter-section {
    padding: 35px 0 30px;

    background: #fff;
}

.newsletter-box {
    max-width: 660px;
    min-height: 255px;

    margin: auto;

    padding: 35px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    overflow: hidden;

    background: #f8f8f8;

    border-radius: 7px;
}

.newsletter-content {
    width: 65%;
}

.newsletter-content h2 {
    margin: 0 0 8px;

    color: #37517e;

    font-size: 21px;
    font-weight: 700;
}

.newsletter-content p {
    margin: 0 0 15px;

    color: #444;

    font-size: 10px;
    line-height: 1.5;
}


/* Newsletter form */

.newsletter-form {
    width: 285px;

    display: flex;

    border: 1px solid #47b2e4;

    border-radius: 20px;

    overflow: hidden;

    background: #fff;
}

.newsletter-form input {
    width: 100%;

    padding: 7px 12px;

    border: none;
    outline: none;

    font-size: 9px;
}

.newsletter-form button {
    padding: 0 16px;

    border: none;

    background: #47b2e4;

    color: #fff;

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;
}


/* Newsletter image */

.newsletter-image {
    width: 30%;

    height: 255px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.newsletter-image img {
    width: 150px;
    height: 215px;

    object-fit: cover;

    object-position: center top;

    border-radius: 75px 75px 0 0;
}


/* ==========================================
             BLOG SECTION
========================================== */

.blog-section {
    padding: 30px 0 65px;

    background: #f3f5f7;
}

.blog-section .section-title {
    margin-bottom: 30px;
}

.blog-section .section-title h2 {
    color: #37517e;

    font-size: 18px;
    font-weight: 700;
}

.blog-section .section-title p {
    margin-top: 12px;

    color: #666;

    font-size: 9px;
}

.blog-row {
    max-width: 650px;

    margin: auto;
}


/* ==========================================
             BLOG CARD
========================================== */

.blog-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 5px 16px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}


/* ==========================================
             BLOG IMAGE
========================================== */

.blog-image {
    height: 140px;

    position: relative;

    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.06);
}

.blog-date {
    position: absolute;

    right: 0;
    bottom: 0;

    padding: 5px 8px;

    background: #47b2e4;

    color: #fff;

    font-size: 7px;
    font-weight: 600;
}


/* ==========================================
             BLOG CONTENT
========================================== */

.blog-content {
    padding: 15px;
}

.blog-content h3 {
    min-height: 32px;

    margin: 0 0 10px;

    color: #37517e;

    font-size: 10px;
    line-height: 1.4;
}


/* ==========================================
             BLOG META
========================================== */

.blog-meta {
    display: flex;

    gap: 10px;

    margin-bottom: 15px;
}

.blog-meta span {
    color: #999;

    font-size: 7px;
}

.blog-meta i {
    margin-right: 3px;

    color: #47b2e4;
}


/* ==========================================
             READ MORE
========================================== */

.read-more {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    padding-top: 10px;

    width: 100%;

    border-top: 1px solid #eee;

    color: #777;

    font-size: 8px;

    transition: .3s;
}

.read-more:hover {
    color: #47b2e4;
}

.read-more i {
    font-size: 8px;
}


/* ==========================================
             RESPONSIVE
========================================== */

@media (max-width: 767px) {

    .newsletter-box {
        flex-direction: column;

        align-items: center;

        text-align: center;

        padding: 30px 20px;
    }

    .newsletter-content {
        width: 100%;
    }

    .newsletter-form {
        width: 100%;

        max-width: 300px;

        margin: auto;
    }

    .newsletter-image {
        width: 100%;

        height: 180px;

        margin-top: 15px;
    }

    .newsletter-image img {
        width: 120px;
        height: 170px;
    }

    .blog-row > div {
        margin-bottom: 20px;
    }

    .blog-card {
        max-width: 360px;

        margin: auto;
    }

}


/* =====================================================
                    CONTACT SECTION
===================================================== */

.contact-section {
    padding: 65px 0 50px;
    background: #fff;
}


/* CONTACT HEADING */

.contact-section .section-title {
    margin-bottom: 32px;
}

.contact-section .section-title h2 {
    color: #37517e;
    font-size: 24px;
    font-weight: 700;
}

.contact-section .section-title p {
    margin-top: 14px;
    color: #666;
    font-size: 10px;
}


/* CONTACT WRAPPER */

.contact-wrapper {
    max-width: 650px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.25fr;

    gap: 12px;
}


/* CONTACT INFO */

.contact-info {
    padding: 16px;

    border-top: 1px solid #47b2e4;
    border-bottom: 1px solid #47b2e4;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}


/* CONTACT ITEM */

.contact-item {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;
}

.contact-icon {
    width: 27px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f0f9fd;

    color: #47b2e4;

    font-size: 12px;
}

.contact-item h3 {
    margin: 0 0 3px;

    color: #37517e;

    font-size: 10px;
    font-weight: 700;
}

.contact-item p {
    margin: 0;

    color: #555;

    font-size: 8px;
}


/* MAP */

.contact-map {
    width: 100%;
    height: 135px;

    margin-top: 5px;

    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* =====================================================
                    CONTACT FORM
===================================================== */

.contact-form {
    padding: 16px;

    border-top: 1px solid #47b2e4;
    border-bottom: 1px solid #47b2e4;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}


.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.form-group {
    margin-bottom: 13px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    color: #37517e;

    font-size: 8px;
}


.form-group input,
.form-group textarea {
    width: 100%;

    padding: 7px 9px;

    border: 1px solid #ddd;

    outline: none;

    background: #fff;

    font-family: inherit;

    font-size: 9px;

    transition: .3s;
}


.form-group textarea {
    resize: vertical;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #47b2e4;
}


/* SUBMIT */

.contact-submit {
    text-align: center;
}

.contact-submit button {
    padding: 7px 18px;

    border: none;

    border-radius: 20px;

    background: #47b2e4;

    color: #fff;

    font-size: 9px;

    cursor: pointer;

    transition: .3s;
}

.contact-submit button:hover {
    background: #209dd3;
}



/* =====================================================
                    NEWSLETTER
===================================================== */

.footer-newsletter {
    padding: 28px 0 32px;

    background: #f3f5f7;

    text-align: center;
}


.newsletter-title h2 {
    margin: 0 0 8px;

    color: #37517e;

    font-size: 16px;
    font-weight: 700;
}


.newsletter-title p {
    margin: 0 0 16px;

    color: #666;

    font-size: 8px;
}


.footer-subscribe {
    width: 315px;

    height: 25px;

    margin: auto;

    display: flex;

    overflow: hidden;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}


.footer-subscribe input {
    width: 100%;

    padding: 5px 12px;

    border: none;

    outline: none;

    font-size: 8px;
}


.footer-subscribe button {
    width: 65px;

    border: none;

    background: #47b2e4;

    color: #fff;

    font-size: 8px;

    cursor: pointer;
}



/* =====================================================
                        FOOTER
===================================================== */

.main-footer {
    padding: 30px 0;

    background: #fff;
}


.footer-grid {
    max-width: 650px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr 1.4fr;

    gap: 30px;
}


/* COMPANY */

.footer-company h2 {
    margin: 0 0 8px;

    color: #37517e;

    font-size: 16px;
    font-weight: 700;
}


.footer-company p {
    margin: 0 0 6px;

    color: #555;

    font-size: 8px;

    line-height: 1.5;
}


/* FOOTER COLUMN */

.footer-column h3 {
    margin: 0 0 12px;

    color: #37517e;

    font-size: 9px;
    font-weight: 700;
}


.footer-column a {
    display: block;

    margin-bottom: 9px;

    color: #666;

    font-size: 8px;

    transition: .3s;
}


.footer-column a i {
    margin-right: 3px;

    color: #47b2e4;

    font-size: 7px;
}


.footer-column a:hover {
    color: #47b2e4;
}


/* FOLLOW US */

.footer-social-column p {
    margin: 0 0 10px;

    color: #666;

    font-size: 8px;

    line-height: 1.5;
}


.footer-social {
    display: flex;

    gap: 7px;
}


.footer-social a {
    width: 21px;
    height: 21px;

    margin: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #999;

    border-radius: 50%;

    color: #666;

    font-size: 9px;
}


.footer-social a:hover {
    background: #47b2e4;

    border-color: #47b2e4;

    color: #fff;
}



/* =====================================================
                    RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .contact-wrapper {
        max-width: 700px;
    }

    .footer-grid {
        max-width: 700px;
    }

}


@media (max-width: 767px) {

    .contact-section {
        padding: 50px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        padding: 30px 20px;
    }

    .footer-subscribe {
        width: 100%;
        max-width: 315px;
    }

    .main-footer {
        padding: 35px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }

}


@media (max-width: 480px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }

}