
/* =========================================================
   SERVICES PAGE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    background: #f8f9fb;
    padding: 110px 0 80px !important;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.section-title {
    margin-bottom: 38px;
}

.section-title h2 {
    text-align: center;
    color: #111;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px;
}

.section-title p {
    text-align: center;
    color: #666 !important;
    font-size: 14px !important;
    letter-spacing: .5px !important;
    text-transform: none !important;
    margin: 0 !important;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.services-section .row {
    display: grid !important;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 28px !important;

    margin: 0 !important;
}


/* =========================================================
   COLUMN
   ========================================================= */

.services-section .col-md-4 {
    width: auto !important;
    padding: 0 !important;

    display: flex !important;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    width: 100%;
    min-height: 100%;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    overflow: hidden;

    color: #111;

    text-decoration: none !important;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, .055);

    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(2, 7, 246, .25);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .10);
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.service-card img {
    width: 100%;

    height: 210px !important;

    object-fit: cover;

    display: block;

    transition:
        transform .45s ease;
}


.service-card:hover img {
    transform: scale(1.035);
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.service-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 23px 22px 22px !important;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.service-content h4 {
    margin: 0 0 9px !important;

    color: #111 !important;

    font-size: 19px !important;

    font-weight: 700 !important;

    line-height: 1.35 !important;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.service-content p {
    margin: 0 !important;

    color: #626262 !important;

    font-size: 14px !important;

    line-height: 1.65 !important;
}


/* =========================================================
   VIEW SERVICE
   ========================================================= */

.service-view {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: auto;

    padding-top: 19px;

    color: #0207f6;

    font-size: 13px;

    font-weight: 700;
}


.service-view i {
    font-size: 11px;

    transition:
        transform .25s ease;
}


.service-card:hover .service-view i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width: 992px) {

    .services-section {
        padding:
            100px 20px 65px !important;
    }

    .services-section .row {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 24px !important;
    }

    .service-card img {
        height: 200px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width: 600px) {

    .services-section {
        padding:
            90px 16px 55px !important;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 13px !important;
    }

    .services-section .row {
        grid-template-columns: 1fr;

        gap: 20px !important;
    }

    .service-card img {
        height: 210px !important;
    }

    .service-content {
        padding: 20px !important;
    }

}


/* =========================================================
   HEADER
   ========================================================= */

.brand-banner {
    font-size: 20px;
    font-weight: 700;
    color: #fff;

    line-height: 1.2;

    white-space: nowrap;
}


.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-left: 7px;
}


.logo img {
    width: 50px;
    height: 50px;

    object-fit: contain;

}


.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 80px;

    z-index: 1000;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

@media(max-width:768px) {

    .brand-banner {
        font-size: 18px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

}
