﻿/* =========================================================
   SCS CONTACT PAGE V3
   HORIZONTAL CORPORATE CONTACT DESIGN
   4 BLOCKS - ADDRESS / CONTACT / EMAIL / WEBSITE
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.scs-contact-v2-page,
.scs-contact-v2-page * {
    box-sizing: border-box;
}


.scs-contact-v2-page {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: "Roboto", sans-serif;

    color: #082d58;

    overflow: hidden;

    background: #ffffff;
}


/* =========================================================
   CONTACT BANNER
========================================================= */

.scs-contact-v2-banner {
    position: relative;

    width: 100%;
    height: 285px;

    overflow: hidden;

    background-image: url("../images/contact.jfif");

    background-size: cover;

    background-position: center;
}


/* =========================================================
   BANNER OVERLAY
========================================================= */

.scs-contact-v2-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.94) 36%,
            rgba(255,255,255,0.60) 62%,
            rgba(255,255,255,0.12) 100%
        );
}


/* =========================================================
   BANNER INNER
========================================================= */

.scs-contact-v2-banner-inner {
    position: relative;

    z-index: 2;

    width: calc(100% - 100px);

    max-width: 1200px;

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;
}


/* =========================================================
   BANNER CONTENT
========================================================= */

.scs-contact-v2-banner-content {
    width: 100%;

    max-width: 620px;
}


/* =========================================================
   BANNER LABEL
========================================================= */

.scs-contact-v2-label {
    margin: 0 0 8px;

    color: #f15a16;

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 0.4px;

    text-transform: uppercase;
}


/* =========================================================
   BANNER HEADING
========================================================= */

.scs-contact-v2-banner h1 {
    margin: 0;

    color: #082d58;

    font-size: 38px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.5px;
}


.scs-contact-v2-banner h1 span {
    display: block;

    margin: 0;

    color: #f15a16;
}


/* =========================================================
   BANNER DESCRIPTION
========================================================= */

.scs-contact-v2-banner p {
    max-width: 520px;

    margin: 14px 0 0;

    color: #30465e;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   ORANGE LINE
========================================================= */

.scs-contact-v2-orange-line {
    width: 42px;

    height: 3px;

    margin-top: 15px;

    background: #f15a16;
}


/* =========================================================
   MAIN CONTACT SECTION
========================================================= */

.scs-contact-v2-main {
    width: 100%;

    margin: 0;

    padding: 65px 0 70px;

    background: #ffffff;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.scs-contact-v2-content {
    width: calc(100% - 100px);

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.scs-contact-v2-heading {
    width: 100%;

    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}


/* =========================================================
   SMALL TITLE
========================================================= */

.scs-contact-v2-small-title {
    margin: 0 0 8px;

    color: #f15a16;

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN TITLE
========================================================= */

.scs-contact-v2-heading h2 {
    margin: 0;

    color: #082d58;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}


.scs-contact-v2-heading h2 span {
    color: #f15a16;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.scs-contact-v2-heading p {
    max-width: 620px;

    margin: 14px auto 0;

    color: #536477;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   HORIZONTAL CONTACT GRID
========================================================= */

.scs-contact-v2-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top: 1px solid #dce4eb;

    border-bottom: 1px solid #dce4eb;

    background: #ffffff;
}


/* =========================================================
   CONTACT CARD
========================================================= */

.scs-contact-v2-card {
    position: relative;

    min-width: 0;

    min-height: 160px;

    padding: 30px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;
}


/* =========================================================
   VERTICAL SEPARATOR
========================================================= */

.scs-contact-v2-card:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;

    right: 0;

    width: 1px;

    height: calc(100% - 60px);

    background: #dce4eb;
}


/* =========================================================
   ICON
========================================================= */

.scs-contact-v2-card-icon {
    width: 46px;

    height: 46px;

    margin-bottom: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #f15a16;

    border-radius: 50%;

    background: #ffffff;

    color: #f15a16;

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.scs-contact-v2-card-content {
    width: 100%;

    min-width: 0;
}


/* =========================================================
   CARD TITLE
========================================================= */

.scs-contact-v2-card-content h3 {
    margin: 0 0 9px;

    color: #082d58;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 0.2px;

    text-transform: uppercase;
}


/* =========================================================
   CARD TEXT
========================================================= */

.scs-contact-v2-card-content p {
    margin: 0;

    color: #263b50;

    font-size: 14px;

    line-height: 1.65;

    font-weight: 400;
}


/* =========================================================
   CARD LINKS
========================================================= */

.scs-contact-v2-card-content a {
    display: block;

    width: 100%;

    margin: 0 0 6px;

    color: #263b50;

    font-size: 14px;

    line-height: 1.5;

    text-decoration: none;

    word-break: break-word;

    transition: color 0.2s ease;
}


.scs-contact-v2-card-content a:last-child {
    margin-bottom: 0;
}


.scs-contact-v2-card-content a:hover {
    color: #f15a16;
}


/* =========================================================
   WEBSITE HIGHLIGHT
========================================================= */

.scs-contact-v2-card:last-child
.scs-contact-v2-card-content a {
    color: #f15a16;

    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) and (min-width: 901px) {

    .scs-contact-v2-banner-inner {
        width: calc(100% - 70px);
    }


    .scs-contact-v2-content {
        width: calc(100% - 70px);
    }


    .scs-contact-v2-card {
        padding: 27px 18px;
    }


    .scs-contact-v2-card-icon {
        width: 42px;

        height: 42px;

        font-size: 17px;
    }


    .scs-contact-v2-card-content h3 {
        font-size: 10px;
    }


    .scs-contact-v2-card-content p,
    .scs-contact-v2-card-content a {
        font-size: 10px;
    }

}


/* =========================================================
   SMALL DESKTOP / TABLET
========================================================= */

@media (max-width: 900px) and (min-width: 601px) {

    /* BANNER */

    .scs-contact-v2-banner {
        height: 250px;
    }


    .scs-contact-v2-banner-inner {
        width: calc(100% - 60px);
    }


    .scs-contact-v2-banner h1 {
        font-size: 32px;
    }


    /* MAIN */

    .scs-contact-v2-main {
        padding: 50px 0 55px;
    }


    .scs-contact-v2-content {
        width: calc(100% - 60px);
    }


    /* HEADING */

    .scs-contact-v2-heading {
        margin-bottom: 35px;
    }


    .scs-contact-v2-heading h2 {
        font-size: 28px;
    }


    /* GRID */

    .scs-contact-v2-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    /* CARD */

    .scs-contact-v2-card {
        min-height: 155px;

        padding: 25px 20px;
    }


    /* VERTICAL SEPARATOR */

    .scs-contact-v2-card:not(:last-child)::after {
        top: 25px;

        height: calc(100% - 50px);
    }


    /* Remove separator from 2nd card */

    .scs-contact-v2-card:nth-child(2)::after {
        display: none;
    }


    /* Second row */

    .scs-contact-v2-card:nth-child(n + 3) {
        border-top: 1px solid #dce4eb;
    }


    .scs-contact-v2-card-icon {
        width: 40px;

        height: 40px;

        font-size: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       BANNER
    ===================================================== */

    .scs-contact-v2-banner {
        height: 230px;

        background-position: center right;
    }


    .scs-contact-v2-banner-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255,255,255,0.98) 0%,
                rgba(255,255,255,0.91) 65%,
                rgba(255,255,255,0.35) 100%
            );
    }


    .scs-contact-v2-banner-inner {
        width: calc(100% - 36px);
    }


    .scs-contact-v2-banner-content {
        max-width: 330px;
    }


    .scs-contact-v2-label {
        font-size: 9px;
    }


    .scs-contact-v2-banner h1 {
        font-size: 26px;

        line-height: 1.12;
    }


    .scs-contact-v2-banner p {
        max-width: 300px;

        margin-top: 10px;

        font-size: 9px;

        line-height: 1.5;
    }


    .scs-contact-v2-orange-line {
        width: 32px;

        height: 3px;

        margin-top: 11px;
    }


    /* =====================================================
       MAIN
    ===================================================== */

    .scs-contact-v2-main {
        padding: 45px 0 50px;
    }


    .scs-contact-v2-content {
        width: calc(100% - 30px);

        max-width: 500px;
    }


    /* =====================================================
       HEADING
    ===================================================== */

    .scs-contact-v2-heading {
        margin-bottom: 30px;
    }


    .scs-contact-v2-small-title {
        font-size: 9px;
    }


    .scs-contact-v2-heading h2 {
        font-size: 25px;

        line-height: 1.2;
    }


    .scs-contact-v2-heading p {
        margin-top: 11px;

        font-size: 10px;

        line-height: 1.6;
    }


    /* =====================================================
       GRID
    ===================================================== */

    .scs-contact-v2-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        border-top: 1px solid #dce4eb;

        border-bottom: 1px solid #dce4eb;
    }


    /* =====================================================
       CARD
    ===================================================== */

    .scs-contact-v2-card {
        min-height: 155px;

        padding: 22px 12px;

        justify-content: flex-start;
    }


    /* =====================================================
       VERTICAL SEPARATORS
    ===================================================== */

    .scs-contact-v2-card:not(:last-child)::after {
        top: 22px;

        height: calc(100% - 44px);
    }


    /* Remove separator from every second card */

    .scs-contact-v2-card:nth-child(2n)::after {
        display: none;
    }


    /* =====================================================
       HORIZONTAL SEPARATORS
    ===================================================== */

    .scs-contact-v2-card:nth-child(n + 3) {
        border-top: 1px solid #dce4eb;
    }


    /* =====================================================
       ICON
    ===================================================== */

    .scs-contact-v2-card-icon {
        width: 38px;

        height: 38px;

        margin-bottom: 12px;

        font-size: 15px;
    }


    /* =====================================================
       TITLE
    ===================================================== */

    .scs-contact-v2-card-content h3 {
        margin-bottom: 7px;

        font-size: 9px;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .scs-contact-v2-card-content p,
    .scs-contact-v2-card-content a {
        font-size: 9px;

        line-height: 1.5;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .scs-contact-v2-banner {
        height: 220px;
    }


    .scs-contact-v2-banner h1 {
        font-size: 23px;
    }


    .scs-contact-v2-main {
        padding-top: 35px;
    }


    .scs-contact-v2-content {
        width: calc(100% - 24px);
    }


    .scs-contact-v2-heading h2 {
        font-size: 22px;
    }


    .scs-contact-v2-heading p {
        font-size: 9px;
    }


    .scs-contact-v2-card {
        min-height: 145px;

        padding: 20px 9px;
    }


    .scs-contact-v2-card-icon {
        width: 34px;

        height: 34px;

        margin-bottom: 10px;

        font-size: 13px;
    }


    .scs-contact-v2-card-content h3 {
        font-size: 8px;
    }


    .scs-contact-v2-card-content p,
    .scs-contact-v2-card-content a {
        font-size: 8px;
    }

}