@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/myriad-pro/MYRIADPRO-BOLD.OTF') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    min-height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
}

.banner {
    padding: 50px;
    position: relative;
    min-height: calc(100vh - 135px);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('assets/BG.jpg') no-repeat center center/cover;
    font-family: 'Myriad Pro', sans-serif;
}

.banner .wrapper {
    margin: auto;
    text-align: center;
}

.banner .wrapper h1 {
    font-size: clamp(24px, 6vw, 100px);
}

.banner .wrapper .highlight {
    font-size: clamp(14px, 3vw, 45px);
    background: white;
    color: #00143c;
    padding: 10px 15px;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
}

.banner .contact-button  a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 26px;
    text-decoration: none;
}

.footer {
    width: 100%;
    background: #00143c;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    bottom: 0;
}

p {
    margin: 0;
}

.footer .address {
    color: white;
    font-size: 14px;
    text-align: left;
}

.footer .link {
    color: white;
    text-align: center;
    font-size: clamp(14px, 3vw, 80px);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-content: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer .since {
    max-width: 100px;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

#contact {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
    color: #000;
    min-height: 100vh;
}

.form-control {
    background-color: rgba(0, 20, 60, 0.11);
    border-radius: 0;
    border: none;
}