:root {
    --primary: #453550;
    --secondary: #988485;
    --theme: #564743;
    --bg: #FBF5F4;
}

@font-face {
    font-family: 'BIG CASLON CC';
    src: url('../fonts/Big-Caslon-CC.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Pro Light';
    src: url('../fonts/Sofia-Pro-Light-Az.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    font-family: "Sofia Pro Light", sans-serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

h1 {
    font-family: 'BIG CASLON CC', serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-family: "Sofia Pro Light", sans-serif;
}

p {
    font-family: "Sofia Pro Light", sans-serif;
}

a {
    text-decoration: none;
    color: var(--theme);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.banner-section {
    position: relative;
    padding: 40px 0;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/mark.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.banner-section .content-box {
    padding: 40px;
    background-color: var(--bg);
    text-align: center;
    opacity: 0.9;
    box-shadow: rgba(0, 0, 0, 0.25) 3px 3px 5px;
}

.banner-section .content-box img {
    margin-bottom: 50px;
}

.banner-section .content-box h1 {
    font-size: 30px;
    letter-spacing: 6px;
    line-height: 42px;
    text-transform: uppercase;
    color: var(--primary);
}

.banner-section .content-box p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 24px;
    letter-spacing: 1px;
}

.banner-section .content-box .address-box {
    margin-top: 60px;
}

.banner-section .content-box .address-box h4 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.banner-section .content-box .address-box h6 {
    font-size: 20px;
    color: var(--theme);
    margin-bottom: 16px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.banner-section .content-box .address-box h6:hover a {
    color: var(--primary);
}

@media (max-width: 767.98px) {

    .banner-section .content-box {
        padding: 40px 20px;
    }

    .banner-section .content-box h1 {
        font-size: 28px;
        letter-spacing: 5px;
        line-height: 42px;
    }
}