@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Brockmann';
    src: url("../fonts/brockmann-bold-webfont.d405d75e3ed4.eot");
    src: url("../fonts/brockmann-bold-webfont.d405d75e3ed4.eot?#iefix") format('embedded-opentype'),
         url("../fonts/brockmann-bold-webfont.df79448a18e4.woff2") format('woff2'),
         url("../fonts/brockmann-bold-webfont.f42193d7720b.woff") format('woff'),
         url("../fonts/brockmann-bold-webfont.f84547cc30ec.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*********************** General ************************/
html {
    font-family: 'Roboto', sans-serif !important;
    -ms-text-size-adjust: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: #22333B;
    font-size: 16px;
    line-height: 1.6;
    color: #F2F4F3;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --light-grey: #f1f1f1;
    --grey: #616161;
    --form-grey: #707582;
    --white: #f2f4f3;
    --black: #22333b;
    --beaver: #A8927D;
    --brown: #5d503f;
    --blue: #483f68;
    --red: #FF4141;
    --orange: #C0A751;
    --light-green: #6A994E;
    --green: #FF906A;
    --trans-white: rgba(242, 244, 243, 0.2);
    --trans-brown: rgba(93, 80, 63, 0.2);
}

.blue { background-color: var(--blue); }
.red { background-color: var(--red); }
.orange { background-color: var(--orange); }
.light_green { background-color: var(--light-green); }
.green { background-color: var(--green); }

/* width */
body::-webkit-scrollbar {
    width: 5px;
}
  
/* Track */
body::-webkit-scrollbar-track {
    background: var(--black);
}
  
/* Handle */
body::-webkit-scrollbar-thumb {
    background: var(--beaver);
}

/*********************** Fonts ************************/
h1, h2, h3, h4 {
    font-style: normal;
    font-family: 'Brockmann' !important;
    color: var(--white);
    font-weight: 400;
}

h1 {
    font-size: 60px;
    line-height: 1.3;
    margin-top: 0;
}

@media (max-width: 650px) {
    h1 {
        font-size: 52px;
    }
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 26px;
}


p {
    font-size: 16px;
    font-weight: 400;
}

ul, li {
    list-style: none;
    padding-inline-start: 0px;
    font-size: 16px;
}

a {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/*********************** Wrappers ************************/
.wrapper_large, .wrapper_small, .wrapper_main {
    position: relative;
    max-width: 80%;
    margin: 0 auto;
    /* z-index: 4; */
}

.wrapper_large {
    width: 1550px;
}

.wrapper_small {
    max-width: 45%;
    width: 750px;
}

.wrapper_main {
    max-width: calc(100% - 80px);
}

@media (max-width: 1350px) {
    .wrapper_large {
        max-width: calc(100% - 80px);
    }

    .wrapper_small {
        max-width: 60%;
    }
}

@media (max-width: 1150px) {
    .wrapper_main,
    .wrapper_large {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 950px) {
    .wrapper_small {
        max-width: 73%;
    }
}

@media (max-width: 750px) {
    .wrapper_large,
    .wrapper_small {
        max-width: calc(100% - 40px);
    }
}

.wrapper_small h1 {
    text-align: center;
}

.page {
    width: 100%;
}

/*********************** Buttons ************************/
.buttons_container {
    display: flex;
    align-items: stretch;
}

.buttons_container .button:first-of-type {
    margin-right: 20px;
}

.button,
.button_2,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    padding: 0 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: 46px !important;
    background-color: var(--beaver);
    text-align: center;
    color: var(--black);
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    border: none;
    outline: none;
    cursor: pointer;
    opacity: 1;
    text-transform: uppercase;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: 0.1s all ease-in-out;
}

.button_2 {
    background-color: var(--brown);
    color: var(--white);
}

.button i,
.button_2 i,
input[type="submit"] i,
input[type="reset"] i,
input[type="button"] i {
    margin-right: 8px;
}

.button:hover,
.button_2:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #B29D89;
    transition: 0.15s all ease-in-out;
}

.button_2:hover {
    background-color: #6B5D4B;
}

.button:active,
.button_2:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
    transform: scale(0.96);
    opacity: 1;
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}

.disabled {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.2 !important;
}

@media (max-width: 500px) {
    .buttons_container {
        display: block;
    }

    .button,
    input[type="submit"],
    input[type="reset"],
    input[type="button"] {
        width: 100%;
        margin-left: 0;
    }
}

/*********************** Page Banner ************************/
.introduction {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
    background-color: var(--black);
}

.home_introduction {
    height: 100vh;
    height: calc(var(--mobile_vh, 1vh) * 100);
}

.home_introduction .background_logo {
    width: 100%;
    opacity: 0.1;
    position: absolute;
    margin-left: 40px;
    height: 100vh;
    height: calc(var(--mobile_vh, 1vh) * 100);
    top: -96px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.introduction_image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.introduction img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.introduction .introduction_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.introduction h1 {
    color: var(--white);
    margin-top: 0;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
    width: calc(100% - 40px);
    -webkit-tap-highlight-color: transparent;
}

.home_introduction h1 {
    font-size: 90px;
    margin-left: 40px;
    margin-right: 40px;
    line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
}

.home_introduction h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.introduction p {
    color: var(--white);
    text-align: center;
    margin: 0;
    width: 500px;
}

.home_introduction .explore_link {
    color: var(--black);
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -77.8px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 5;
}

#page_jump {
    position: absolute;
    margin-top: -126px;
}

.error_page {
    text-align: center;
    margin: 100px auto 120px;
}

@media (max-width: 1350px) {
    .home_introduction .explore_link {
        bottom: 20px;
    }
}

@media (max-width: 1150px) {
    #page_jump {
        position: absolute;
        margin-top: -86px;
    }
}

@media (max-width: 950px) {
    .home_introduction h1 {
        font-size: 80px;
    }
}

@media (max-width: 750px) {
    .introduction {
        height: max-content;
        padding: 0 0 170px;
    }

    .home_introduction {
        height: 100vh;
        height: calc(var(--mobile_vh, 1vh) * 100);
    }

    .introduction .introduction_content {
        padding-top: 190px;
    }

    .introduction h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .home_introduction .introduction_content {
        padding-top: 100px;
    }

    .home_introduction h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .home_introduction h1 {
        font-size: 60px;
    }

    .introduction p {
        width: 80%;
    }    
}

@media (max-width: 500px) {
    .home_introduction .explore_link {
        bottom: 22px;
        left: 20px;
        margin-left: 0;
        width: calc(100% - 40px);
    }

    .home_introduction .introduction_content {
        padding-top: 120px;
    }
}

@media (max-width: 420px) {
    .home_introduction h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .introduction p {
        width: calc(100% - 40px);
    }    

    .home_introduction h1 {
        font-size: 50px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px var(--trans-white) inset !important;
  -webkit-background-clip: text !important;
  /* This is a bonus from here: https://github.com/nextui-org/nextui/issues/1346#issuecomment-1855635162*/
  transition: background-color 5000s ease-in-out 0s !important;
  font-size: 16px !important;
  -webkit-text-fill-color: var(--white) !important;
}