/* Google fonts */
@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i');

/* Global Styles */
html {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;

    /* Variables */
    --color_1: #003440;
    --color_2: #1a5c68;
    --color_3: #70b2c0;
    --color_4: #aadeeb;
    --color_5: #bd9c69;

    --color_white: #fff;
    --color_black: #222;
}

body {
    #position: relative;
    background-color: #fff;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    font-size: 18px;
    font-family: 'Poppins', Helvetica, sans-serif;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    color: #003440;
}

p {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

a {
    color: #003440;
    font-size: 1.25rem;
    text-decoration: underline #bd9c69;
}

.page {
    height: 100%;
    margin: 0;
    padding: 0;
}

.content {
    max-width: 40%;
    height: 100%;
    margin: 0 auto;
    padding: 0;
}

.header {
    align-content: center;
}

.company {
    font-family: "Helvetica Neue", serif;
    font-weight: 800;
    font-size: 2.5rem;
}

.company-logo {
    width: 100%;
    max-width: 363px;
    max-height: 363px;
    aspect-ratio: 1;
    margin: 120px auto 30px auto;
}

.company-logo img {
    width: 100%;
    max-width: 363px;
    max-height: 363px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.contact {
    margin: 0 auto;
    text-align: center;
}
.footer {
    width: 40%;
    font-size: 12px;
    color: #888;

    position: absolute;
    bottom: 0;
    text-align: center;
    margin-bottom: 20px;
}
/* ##### Bootstrap ##### */

/* ##### MEDIA #### */

/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default in Bootstrap */
@media only screen and (max-width: 576px) {
}

/* Small devices (landscape phones, 576px - 768px) */
/* landscape design */
@media only screen and (min-width: 576px) {

}

/* Medium devices (tablets, 768px  - 992px) */
@media only screen and (min-width: 768px) {

}

/* Large devices (desktops, 992px - 1200px)*/
@media only screen and (min-width: 992px) {

}

/* X-Large devices (large destops, 1200px - 1400px)*/
@media only screen and (min-width: 1200px) {

}

/* XX-Large devices (large desktops, less than 1400px)*/
@media only screen and (min-width: 1400px) {

}