/* ============ CSS ============ */

/* ---- Common ---- */
/* ---- Header ---- */
/* ---- Sections ---- */
/* ---- Footer ---- */

/* ============ CSS ============ */

/* Common ================================================== */

body {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
        font-family: "Montserrat", sans-serif;
        font-weight: 700;
}

.hidden {
        display: none;
}

.text-justify {
        text-align: justify;
}

.section {
        padding-bottom: 80px;
        padding-top: 80px;
}

p {
        line-height: 32px;
        word-spacing: 2px;
        letter-spacing: 0px;
}

a {
        text-decoration: none;
}

.section h1 {
        text-align: center;
        margin-top: 1rem;
}

.desktop-only {
        display: block;
}

.mobile-only {
        display: none;
}

.cursor-pointer {
        cursor: pointer;
}

textarea {
        resize: none;
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
        .desktop-only {
                display: none;
        }

        .mobile-only {
                display: block;
        }

        .section {
                padding-bottom: 60px;
                padding-top: 60px;
        }
}

@media (max-width: 767px) {
        .desktop-only {
                display: none;
        }

        .mobile-only {
                display: block;
        }

        .section {
                padding-bottom: 60px;
                padding-top: 60px;
        }
}

/* Header ================================================== */

nav#navbar {
        background: white;
        border-bottom: 1px solid #eaeaea;
        height: 90px;
}

.navbar-brand {
        margin-top: 1.5rem;
}

.logo {
        width: 18%;
}

.navbar-brand p {
        margin-top: -0.2rem;
        color: #0e5ca3;
        font-size: 1rem;
}

.fixed-top {
        top: -40px;
        transform: translateY(40px);
        transition: transform 0.3s;
}

li.nav-item {
        margin-right: 2.5rem;
        font-weight: 600;
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
        button.navbar-toggler {
                display: none;
        }

        .navbar-brand {
                text-align: center;
        }
}

@media (max-width: 767px) {
        button.navbar-toggler {
                display: none;
        }

        .navbar-brand {
                text-align: center;
                margin-top: 0.2rem;
        }

        .logo { 
                width: 30%;
        }
}

/* Sections ================================================== */

.banner {
        position: relative;
        z-index: 2;
}

.about p {
        margin-bottom: 2.5rem;
        margin-top: 2rem;
}

.contact {
        background: #f3f3f3;
}

.cta-button {
        -webkit-transition: background 1s; /* Safari */
        transition: background 1s;
        background: #f1592a;
        padding: 10px 25px;
        border-radius: 4px;
        font-weight: 500;
        font-size: 20px;
        border: none;
        color: white;
}

.cta-button:hover {
        background: #0e5ca3;
        color: white;
}

/* Footer ================================================== */

.bottom-footer {
        background: #0e5ca3;
        padding: 15px 0px;
        text-align: center;
        font-weight: 200;
        font-size: 14px;
        margin: 0px;
        color: white;
}