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

/*********************** 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: #F3F3F3;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --light-grey: #F3F3F3;
    --grey: #616161;
    --form-grey: #707582;
    --white: #FFFFFF;
    --black: #000000;
    --yellow: #FFCB4B;
    --blue: #2A3885;
    --red: #e53330;
    --orange: #dac133;
    --light-green: #6A994E;
    --green: #FF906A;
    --trans-black: rgba(0, 0, 0, 0.1);
}

.black { background-color: var(--black); }
.red { background-color: var(--red); }
.yellow { background-color: var(--yellow); }
.blue { background-color: var(--blue); }

/*********************** Fonts ************************/
h1, h2, h3, h4 {
    font-style: normal;
    font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 711;
    color: var(--black);
    text-transform: uppercase;
}

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

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

h2 {
    font-size: 48px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 26px;
}

.heading {
    margin-top: 92px;
    margin-bottom: 46px;
    text-align: center;
}

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: 85%;
    margin: 0 auto;
    /* z-index: 4; */
}

.wrapper_large {
    width: 1696px;
}

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

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

@media (max-width: 1350px) {
    .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%;
    /* min-height: 800px; */
}

/*********************** 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(--black);
    color: var(--white);
    text-align: center;
    font-style: normal;
    font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 709;
    text-transform: uppercase;
    font-size: 16px;
    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;
}

.fa-shopping-basket {
    margin-top: -2px;
}

.button_2 {
    padding: 0 31px;
    background-color: transparent;
    background-color: var(--red);
    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,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.button_2:hover {
    opacity: 0.9;
    transition: 0.15s all ease-in-out;
}

.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;
}

@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: 200px;
    box-sizing: border-box;
    background-color: var(--red);
    z-index: 2;
}

.home_introduction {
    height: 600px;
    width: 100%;
    margin-bottom: 320px;
}

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

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

.introduction h1 {
    color: var(--white);
    font-size: 50px;
    line-height: 1;
    margin-top: -60px;
    margin-bottom: 25px;
}

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

.home_introduction h2 {
    margin: 0;
    font-size: 35px;
}

.home_introduction .introduction_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

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

.home_introduction .introduction_content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
}

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

.introduction .introduction_content .durham_svg {
    position: absolute;
    width: 344px;
    height: 140px;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.home_introduction .explore_link {
    color: var(--white);
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -30px;
    text-decoration: underline;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    z-index: 5;
}

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

.opening_paragraph {
    margin: 130px auto;
    width: 900px;
}

.opening_paragraph h3 {
    margin: -10px 0;
}

.opening_paragraph h1 {
    margin: 20px 0;
}

@media (max-width: 1150px) {
    .home_introduction {
        height: 800px;
        display: block;
        margin-bottom: 330px;
    }

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

@media (max-width: 750px) {
    .home_introduction {
        height: 600px;
        margin-bottom: 1000px;
    }

    .home_introduction h2 {
        font-size: 24px;
    }

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

@media (max-width: 600px) {
    .introduction {
        height: unset;
    }

    .home_introduction {
        height: 600px;
        margin-bottom: 970px;
    }

    .introduction .introduction_content {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .introduction .introduction_content h1 {
        font-size: 30px;
        margin: 60px 0;
        z-index: 5;
    }

    .home_introduction .introduction_content h1 {
        font-size: 36px;
        margin: -100px 0 10px;
        z-index: 5;
    }

    .introduction .introduction_content .durham_svg {
        width: 232px;
        height: 95px;
        right: 50%;
        margin-right: -116px;
    }
}

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

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