/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */


body {
    color: #222222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    background: #ffffff;
}

a {
    color: #69aaff;
    transition: 0.3s;
}

/* Add this to your existing CSS file */
.logo {
    width: 200px; /* Adjust the width as needed */
    height: 200px; /* Maintain aspect ratio */
}

a:hover,
a:active,
a:focus {
    color: #222222;
    outline: none;
    text-decoration: none;
}

p {
    color: #222222;
    font-size: 16px;
    font-weight: 200;
    line-height: 22px;
    padding: 0;
    margin: 0 0 15px 0;
}

h2 {
    margin: 0;
    padding: 0;
    color: #222222;
    font-weight: 200;
}

@media (max-width: 767.98px) {
    h2 {
        font-size: 26px;
    }
}

@media (max-width: 575.98px) {
    h2 {
        font-size: 18px;
    }
}

/* ================================================= */
/* ------------------ Header Style ----------------- */
/* ================================================= */

.header {
    display: table;
    position: relative;
    background-image: url(../img/header-bg.jpg);
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    width: 100%;
    height: 100vh;
}

.header:after {
    content: '';
    z-index: 0;
    position: absolute;
    background: rgba(256, 256, 256, 0.8);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.header .container {
    position: relative;
    z-index: 1;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.header .brand {
    font-size: 75px;
    font-weight: 100;
    margin-bottom: 35px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.header .brand:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    top: 0;
    left: calc(50% - 75px);
    background: #69aaff;
}

.header .brand:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 1px;
    bottom: 42px;
    left: calc(50% - 75px);
    background: #69aaff;
}

/* Add this to your existing CSS file */
.logo {
    width: 150px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

.header .brand:hover {
    color: #222222;
}

.header .brand:hover img {
    opacity: .9;
}

.header h1 {
    font-size: 50px;
    font-weight: 100;
    color: #222222;
    letter-spacing: 2px;
}

.header .tagline {
    font-size: 26px;
    font-weight: 200;
    line-height: 32px;
    margin-bottom: 60px;
    color: #222222;
}

.header .btn img {
    max-width: 200px;
    border-radius: 5px;
}

@media (max-width: 61.9em) {
    .header {
        padding: 75px 0;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }

    .header .brand {
        font-size: 3rem;
        margin-bottom: 35px;
    }

    .header .tagline {
        margin: 35px 0;
        font-size: 22px;
        line-height: 28px;
    }
}

/* ================================================= */
/* -------------- Section Header Style ------------- */
/* ================================================= */

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #69aaff;
    font-size: 45px;
    font-weight: 100;
}

.section-header::before {
    position: absolute;
    content: '';
    height: 1px;
    width: 150px;
    bottom: -10px;
    left: calc(50% - 75px);
    background: #69aaff;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 25px;
    }
}

