body {
    background: #ff920d;
    background: linear-gradient(150deg, #ff920d 0, #ff5e0d 65%, #ff3b00 100%);
    min-height: 100vh;
}

p {
    font-family: "Montserrat", sans-serif;
}

header {
    padding: 40px 0;   
    border-bottom: 1px solid #000;
    margin: 0 40px;   
    display: flex;
    justify-content: space-between;

}

header a {
    text-decoration: none;
    margin-left: 20px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50vh;
    padding: 40px;
    position: relative;
}

.hero-content-inner-lower {
    margin-top: 150px;
}

.hero h1 {
    font-family: "Montserrat", serif;
    font-size: 60px;
    font-weight: 600;
    max-width: 1000px;
    margin: 0;
}

.hero .label {
    padding-left: 30px;
    position: relative;
}


.hero .label::before {
    background-color: #000;
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    height: 10px;
    width: 10px;
}

.hero img {
    position: absolute;
    bottom:40px;
    right:40px;
    width: 200px;
}

.hero img.roundel-outer {
    animation: rotateRoundelOuter 20s linear infinite;
}

footer {
    border-top: 1px solid #000;
    margin: 40px;
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
}

footer p {
    margin: 0;
    text-align: right;
}

a.link-text {
    color:#000;
    display:inline-block;
    margin:40px 0;
    text-underline-offset:2px;
    transition:300ms;
}

a.link-text:hover {
    color:#FFF;
}

.button__primary {
    background: #070707;
    color: #fff;
    font-size: 13px;
    padding: 8px 8px 8px 16px;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
}

.button__primary .chevron-container {
    margin-left: 45px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #ff920d 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: .1s ease-in-out;
    -o-transition: .1s ease-in-out;
    -moz-transition: .1s ease-in-out;
}

.button__primary:hover {
    color: #ff920d;
}

.button__primary:hover .chevron-container {
    background-position: left bottom;

}

@keyframes rotateRoundelOuter{from{transform:rotate(0)}to{transform:rotate(360deg)}}

@media only screen and (max-width: 1000px) {

    .hero h1 {
        font-size: 50px;
    }

     .hero img {
        position: absolute;
        top:40px;
        right:40px;
        width: 100px;
    }

}

@media only screen and (max-width: 600px) {

    header {
        padding: 20px 0;
        margin: 0 20px;
    }

    .header .image img {
        width: 100px !important;
    }

    .hero {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 40px;
    }

    footer {
        margin: 20px;
    }
}