body {
    --font1: WF Visual Sans Text, Arial, sans-serif;
    --font2: serif;
    --theme1: rgb(24, 43, 87);
    --theme2: rgb(75, 75, 75);
    --theme3: rgb(77, 120, 157);
}
::selection {
    background-color: rgb(49, 155, 255);
    color: rgb(255, 255, 255);
}
.menu-container {
    position: fixed;
    height: 4em;
    width: 100%;
    left: 0;
    top: 0;
    right: 0;
    border-bottom: 1px rgb(225, 225, 225) solid;
    box-shadow: 10px 1px 6px 1px rgb(225, 225, 225);
    z-index: 100;
    background: white;
    background-color: var(--theme1);
}
.menu-container .header {
    position: absolute;
    font-family: var(--font1);
    color: var(--theme2);
    margin: auto;
    margin-left: 1em;
    top: 0;
    bottom: 0;
    height: fit-content;
    font-weight: 600;
    font-size: 19px;
    text-transform: capitalize;
    letter-spacing: 0.6px;
    user-select: none;
    text-transform: uppercase;
    color: white;
}
.grid {
    width: fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    display: grid;
    grid-template-columns: auto
}
.menu-container .grid {
    position: absolute;
    width: fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    margin-right: 3em;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-column-gap: 2em;
}
.menu-container .grid div {
    color: var(--theme2);
    color: var(--theme3);
    font-family: var(--font1);
    letter-spacing: 0.7px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    color: white;
}
.page-section.content2 {
    display: grid;
    width: 100%;
    height: fit-content;
    left: 0;
    right: 0;
    position: absolute;
    margin-top: 3.5em;
    grid-template-columns: 100%;
    grid-template-rows: auto;
}
.hero {
    overflow: hidden;
    height: 65vh;
    width: 100%;
    position: relative;
}
.hero img.hero {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 0;
    margin-top: auto !important;
    height: 65vh;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    object-fit: cover;
    object-position: center;
}
.header {
    font-family: var(--font2);
    text-transform: capitalize;
    color: var(--theme2);
    font-weight: 500;
    font-size: 46px;
    letter-spacing: 0.6px;
    margin-left: 0;
    color: var(--theme1);
}
.header1 {
    margin-top: 0;
}
.header2 {
    margin-top: -1em;
    color: var(--theme3);
    font-family: var(--font1);
    font-size: 40px;
}
.container {
    position: relative;
    width: 90%;
    max-width: 80em;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 4em;
    display: grid;
    grid-template-columns: auto 16em;
}
.body {
    font-family: var(--font1);
    color: var(--theme2);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.4px;
    margin-left: 0;
    margin-top: -1em;
    line-height: 1.4em;
    color: rgb(75, 75, 75);
}
.href {
    all: inherit;
    display: inline-block;
    position: relative;
    color: rgb(35, 137, 255);
    cursor: pointer;
    overflow: visible !important;
}
a.redirect {
    position: relative;
    background: var(--theme1);
    border: 2px white solid;
    color: white;
    font-family: var(--font1);
    text-transform: capitalize;
    letter-spacing: 0.4px;
    padding: 2em;
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 17px;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
}
.footer {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--theme1);
    height: fit-content;
    min-height: 17em;
    margin-top: 10em;
    border-top: 2px var(--theme3) solid;
    padding-top: 2em;
    padding-bottom: 4em;
}
.footer .header.header2 {
    color: white;
    font-size: 29px;
    text-align: center;
    margin-top: 0em;
}
.footer .grid {
    grid-gap: 7em;
    grid-row-gap: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}
.footer .grid a.href {
    font-family: var(--font1);
    color: white;
    font-size: 15px;
    letter-spacing: 0.2px;
    text-align: left;
    width: fit-content;
    height: fit-content;
    margin-left: 0;
}
@keyframes openpopup {
    0% {
        margin-top: -20em;
    }
    100% {
        margin-top: 4em;
    }
}
@keyframes closepopup {
    0% {
        margin-top: 4em;
    }
    100% {
        margin-top: -20em;
    }
}
.popup {
    position: fixed;
    width: 100%;
    height: fit-content;
    min-height: unset;
    padding-bottom: 6em;
    padding-top: 1em;
    background: white;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    margin-top: -20em;
    border-top: 1px rgb(225, 225, 225) solid;
    border-bottom: 1px rgb(225, 225, 225) solid;
    box-shadow: 1px 1px 3px 1px rgb(225, 225, 225);
    opacity: 0%;
    animation: 0.5s openpopup forwards;
}
.menu-container .grid * {
    user-select: none;
}
.popup .header.header2 {
    margin-top: 1em;
    font-size: 27px;
    text-align: center;
    width: 100%;
    position: relative;
}
.popup .grid {
    position: relative;
    margin-top: 3em;
    grid-gap: 1em;
    grid-column-gap: 6em;
}
.popup .grid a.href {
    position: relative;
    height: fit-content;
    width: fit-content;
    margin-top: 0;
    margin: 0 auto;
    margin-left: 0;
    width: fit-content;
    text-align: left;
    color: var(--theme2);
    font-size: 20px;
}
@keyframes openup {
    0% {
        margin-right: -30em;
    }
    100% {
        margin-right: 1em;
    }
}
@keyframes closeinquirydisplay {
    0% {
        margin-right: 1em;
    }
    100% {
        margin-right: -30em;
    }
}
.contact {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    height: fit-content;
    width: fit-content;
    margin-bottom: 1em;
    margin-right: 1em;
    background: var(--theme1);
    width: calc(21% - 4em);
    padding: 2em;
    min-width: 13em;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 7px;
    border: 1px var(--theme1) solid;
    box-shadow: 1px 1px 3px 1px var(--theme1);
    z-index: 90;
    animation: 0.4s openup forwards;
    max-height: calc(96vh - 7em);
    overflow: auto;
    box-shadow: 1px 1px 4px 1px rgb(225, 225, 225);
}
@media screen and (min-width: 1005px) {
    .contact {
        width: calc(21% - 2em);
    }
    .container {
        left: -3%;
    }
}
.contact .header.header2 {
    position: relative;
    width: 90%;
    text-align: center;
    line-height: 1em;
    font-size: 23px;
    margin-top: 0.4em;
    text-align: center;
    width: 100%;
    color: white;
}
.contact .x {
    position: relative;
    width: 90%;
    text-align: center;
    line-height: 1em;
    font-size: 23px;
    margin-top: 0.4em;
    text-align: center;
    width: 100%;
    color: white;
    font-family: var(--font1);
    font-weight: 900;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    margin-top: 1.41em;
    margin-left: auto;
    left: 0;
    right: 0;
    margin-right: 1em;
    width: fit-content;
    cursor: pointer;
}
.contact .grid {
    position: relative;
    grid-gap: 0.6em;
}
.contact .grid input.text {
    position: relative;
    font-family: var(--font1);
    color: var(--theme2);
    font-size: 16px;
    background: white;
    padding: 0.8em;
    border-radius: 6px;
    border: 1px rgb(255, 255, 255) solid;
    box-shadow: 1px 1px 2px 1px white;
    width: calc(100% - 1.6em);
    outline: 0;
    font-weight: 500;
    height: fit-content;
}
.contact .submit {
    position: relative;
    margin-bottom: 1em;
    margin-top: 0em;
    width: calc(100% - 0em);
    padding: 2em;
    font-family: var(--font1);
    font-size: 17px;
    background: black;
    color: white;
    letter-spacing: 0.4px;
    cursor: pointer;
    border: 2px var(--theme1) solid;
    border-radius: 9px;
    padding: 1em;
    max-width: unset;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme3);
}
.contact .body {
    color: white;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.1px;
    height: 4em;
    overflow: auto;
}
.contact .body a {
    height: 1.1em;
    overflow: hidden;
}
/*
    Mobile
*/
@media screen and (max-width: 570px) {
    .footer {
        display: none !important;
    }
    .popup {
        display: none;
    }
    .page-section.content2 {
        padding-bottom: 2em !important;
    }
    .menu-container .grid {
        display: none;
    }
    .menu-container .header {
        margin-left: auto;
        text-align: center;
        left: 0;
        right: 0;
    }
    .container {
        display: block;
        margin-top: 4em !important;
    }
    .hero {
        height: 76vw;
        max-height: 70vh;
    }
    .hero img.hero {
        height: 100%;
        width: auto;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .header {
        font-size: 29px;
    }
    .grid {
        grid-template-columns: auto !important;
    }
    .header.header2 {
        margin-top: -0.8em;
    }
    .contact {
        display: none;
    }
}
@media screen and (min-width: 570px) and (max-width: 871px) {
    .footer {
        display: none !important;
    }
    .popup {
        display: none;
    }
    .page-section.content2 {
        padding-bottom: 2em !important;
    }
    .menu-container .grid {
        display: none;
    }
    .menu-container .header {
        margin-left: auto;
        text-align: center;
        left: 0;
        right: 0;
    }
    .container {
        display: block;
        margin-top: 4em !important;
    }
    .hero {
        height: 76vw;
        max-height: 70vh;
    }
    .hero img.hero {
        height: 100%;
        width: auto;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .header {
        font-size: 29px;
    }
    .header.header2 {
        margin-top: -0.8em;
    }
    .grid {
        grid-template-columns: auto auto !important;
    }
}
.hm {
    display: none !important;
    height: 1.9em;
    width: 1.9em;
    margin: 0 auto;
    top: 0;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    margin-left: 1em;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    z-index: 101;
    top: 0;
    transform: none;
    margin-top: 1em;
}
.hm .line {
    background: white;
    height: 0em;
    border: 0.126em white solid;
    border-radius: 100px;
    top: 0;
    bottom: 0;
    position: relative;
    margin: auto;
    width: calc(100% - 0.24em);
    user-select: none;
}
@keyframes openmobileselector {
    0% {
        margin-left: -17em;
    }
    100% {
        margin-left: 0em;
    }
}
@keyframes closemobileselector {
    0% {
        margin-left: 0em;
    }
    100% {
        margin-left: -17em;
    }
}
.mobile-selector {
    display: none;
    position: fixed;
    background: white;
    background: var(--theme1);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-left: -17em;
    width: 90%;
    max-width: 20em;
    border-right: 1px rgb(215, 215, 215) solid;
    z-index: 100;
    overflow: auto;
    animation: 0.4s openmobileselector forwards;
    padding-bottom: 2em;
}
.mobile-selector .grid {
    grid-template-columns: auto !important;
    grid-gap: 0.5em;
    margin-left: 1em;
    margin-top: 6em;
    max-height: 86vh;
    overflow: auto;
}
.mobile-selector .grid .body {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    font-family: var(--font2);
    text-transform: capitalize;
    color: var(--theme2);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.2px;
    color: white;
}
.mobile-selector .grid .body.outer {
    height: 1.3em;
    overflow: hidden;
    grid-template-columns: auto !important;
    grid-gap: 0.23em;
}
.mobile-selector .grid .body.inner {
    padding-left: 0 !important;
}
.mobile-selector .grid .body.outer .body {
    padding-left: 0.6em;
}
a.redirect {
    text-decoration: none !important;
}
.mobile-only .body {
    margin-top: 1em;
}
.mobile-only div.hero {
    height: 18em;
}
.mobile-only .wrapper {
    margin-top: 3em;
    grid-template-columns: auto auto auto;
}
.mobile-only a.redirect {
    margin-top: 0em;
    top: 2em;
}
.mobile-only {
    padding-bottom: 4em;
    display: none;
}
@media screen and (max-width: 871px) {
    .hm {
        display: grid !important;
    }
    .mobile-selector {
        display: block;
    }
    .container .body {
        font-size: 21px;
    }
    .menu-container .header {
        width: fit-content;
    }
    .mobile-only {
        display: block;
    }
}
@keyframes slideleft {
    0% {
        right: -29em;
    }
    100% {
        right: 1em;
    }
}
@keyframes slideright {
    0% {
        right: 1em;
    }
    100% {
        right: -29em;
    }
}
@keyframes slideup {
    0% {
        bottom: -16em;
    }
    100% {
        bottom: 1em;
    }
}
@keyframes slidedown {
    0% {
        bottom: 1em;
    }
    100% {
        bottom: -16em;
    }
}
.cookie-manager {
    position: fixed;
    width: calc(96vw - 2em);
    padding: 1em;
    height: fit-content;
    max-width: 28em;
    top: auto;
    bottom: 1em;
    right: 1em;
    left: auto;
    border-radius: 4px;
    background: white;
    z-index: 125;
    border: 1px rgb(225, 225, 225) solid;
    box-shadow: 0px 0px 2px 1px rgb(225, 225, 225);
    animation: 0.4s slideup forwards;
}
.cookie-manager .head {
    position: relative;
    font-family: var(--font1);
    color: rgb(45, 45, 45);
    font-size: 18px;
    letter-spacing: 0.1px;
    margin-top: 0em;
    font-weight: 600;
    text-align: justify;
    text-align-last: center;
    word-break: break-word;
    text-align: center;
    font-family: var(--font1);
    color: var(--theme2);
    font-size: 21px;
    letter-spacing: 0.44px;
    margin-top: 0;
    text-align: center;
    text-align-last: left;
    word-break: break-word;
    width: 100%;
    text-align: center;
    padding-top: 0.1em;
    padding-bottom: 0.4em;
    text-align: left;
}
.cookie-manager .body {
    font-family: var(--font1);
    color: var(--theme2);
    font-size: 17px;
    letter-spacing: 0.1px;
    margin-top: 0;
    text-align: center;
    text-align-last: left;
    word-break: break-word;
    width: 100%;
    text-align: left;
    padding-top: 0.1em;
    padding-bottom: 0.99em;
}
.cookie-manager .confirm {
    position: relative;
    width: 100%;
    padding: 1em;
    height: fit-content;
    font-family: var(--font1);
    color: white;
    background: var(--theme1);
    border: 1px var(--theme1) solid;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
}
.contact .body.outside {
    padding-top: 1em;
    display: grid;
    grid-template-columns: auto auto;
    max-width: fit-content !important;
    position: relative;
    height: fit-content;
}
.contact .checkbox {
    position: relative;
    width: 1em;
    height: 1em;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-left: 0;
    margin-top: 1em;
}
.contact .body.inside {
    width: 96%;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-right: 0;
    height: fit-content;
    position: relative;
}
@media screen and (max-width: 495px) {
    .cookie-manager {
        margin-left: auto !important;
        margin-right: auto !important;
        left: 0;
        right: 0;
    }
}