* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: quicksand, sans-serif;
    background-color: #323232;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    color: #ececec;
}

.landingPage {
    background-image: url(/img/background.jpg);
    height: 100vh;
}

/* -------------------- Header --------------------*/

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-top: 10px;
    margin-left: 10px;
}

.sticky {
    position: sticky;
    width: 100vw;
    z-index: 100;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

nav ul {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin-right: 20px;
}


nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

nav ul li a:hover {
    color: #ecce47;
}

/* -------------------- Hero --------------------*/

.hero_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    max-width: fit-content;
    border-radius: 0px 0 20px 0px;
}

.hero_image {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 10%;
}

.hero_title {
    margin-left: 10px;
    font-size: 64px;
    background: -webkit-linear-gradient(#f5e499, #9d7541);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* -------------------- Slogan --------------------*/

.slogan {
    /*margin-top: 40px;*/
    margin-left: 5.5%;
    width: 500px;
    font-size: 32px;
    font-weight: 800;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0 0 20px 20px;
    padding: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
}

/* -------------------- Call to action Button --------------------*/

.cta {
    display: flex;
    /*justify-content: center;
    align-items: center;*/
    margin-left: 12.5%;
    margin-top: 20px;
}

.btn {
    font-size: 32px;
    font-family: quicksand;
    font-weight: 600;
    text-transform: uppercase;
    border-style: none;
    border-radius: 50px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: linear-gradient(to right, #f5e499, #9d7541);
    margin-bottom: 100px;
    margin-top: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn:hover {
    cursor: pointer;
    font-size: 34px;
    color: white;
    background-image: linear-gradient(to left, #f5e499, #9d7541);
    transition: .3s;
    font-weight: 500;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

/* -------------------- Services --------------------*/

.main_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.main_container h1 {
    font-size: 48px;
}

.services {
    width: 100vw;
    top: 450px;
}

.services_container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}

.serviceBox {
    position: relative;
    margin-bottom: 100px;
    margin-top: 80px;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    background-color: #111;
}

.serviceBox::after,
.serviceBox::before {
    content: '';
    border-radius: 20px;
    padding: 5px;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(#f5e499, #9d7541, #f5e499);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -10;
}

.serviceBox::before {
    filter: blur(1.5rem);
    opacity: .5;

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.serviceBox hr {
    border: none;
    height: 4px;
    background-color: #9d8841;
    border-radius: 25px;
    width: 100%;
    margin-bottom: 30px;
}

.serviceDescription {
    font-weight: 400;
}

/* -------------------- Benefits --------------------*/
.benefits_container {
    background-image: url(/img/benefits_bg_cropped.jpg);
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .9);
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.benefits {
    display: flex;
    flex-direction: row;
}

.ben_cont_section {
    display: flex;
    flex-direction: row;
}

.benefits_container h1 {
    margin-bottom: 20px;
    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.benefits_box {
    background-image: linear-gradient(to bottom right, #f5e499, #9d7541);
    border-radius: 50%;
    color: black;
    font-weight: 700;
    padding: 20px;
    margin: 50px;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.benefits_box .icon {
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
}

/* -------------------- CUSTOMER EXPERIENCE --------------------*/

.customer_experience {
    padding-top: 80px;
    padding-bottom: 50px;
    background-color: #323232;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer_experience h1 {
    margin-top: 20px;
    margin-bottom: 20px;

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.customer_experience p {
    font-size: .9em;
    line-height: 23px;
}

.customer_experience h2 {
    margin: 0;
}

.skewed {
    width: 45em;
    color: #f1f1f1;
    display: flex;
    background: #111;
    margin: 2em 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);

    scale: 0.8;
    opacity: 0.3;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.skewed_left {
    scale: 0.8;
    opacity: 0.3;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.customer_experience .text {
    padding: 1.5em;
    width: 50%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
}

.customer_experience .image {
    width: 50%;
    height: 17em;
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.skewed .image::before {
    content: '';
    position: absolute;
    left: -6.1em;
    top: 50%;
    transform: translateY(-50%) rotate(20deg);
    background: #111;
    width: 40%;
    height: 140%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.skewed_left .image::before {
    left: initial;
    right: -6.1em;
    top: 50%;
    transform: translateY(-50%) rotate(-20deg);
}

/* -------------------- INDUSTRIES --------------------*/

.industries {
    background-color: #ececec;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industries h1 {
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.industries_container {
    padding-bottom: 50px;
    background-color: #ececec;
    color: #111;
    display: flex;
    flex-direction: row;
}

.industries_box {
    padding: 20px;
    margin: 20px;
    background-color: #111;
    color: #ececec;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    text-align: center;
    border-radius: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.industries_box .icon {
    width: 80px;
    height: 80px;
    fill: #9d8841;
}

.industries_box .title {
    margin-top: 10px;
    font-weight: 500;
}

/* -------------------- Overview --------------------*/

.overview {
    background-color: #ececec;
    color: #ececec;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overview_container {
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 50px;
    background-color: #323232;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 30px 0 rgba(0, 0, 0, 0.3);
    width: 450px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    scale: .8;
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: entry 0;
}

.overview_title {
    background-color: #323232;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
    color: #ececec;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.overview_text {
    font-size: 20px;
    font-weight: 600;
}

/* -------------------- Call to action 2 --------------------*/

.cta2 {
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.btn2 {
    font-size: 32px;
    font-family: quicksand;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid black;
    border-radius: 50px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: linear-gradient(to right, #f5e499, #9d7541);
    margin-bottom: 40px;
    margin-top: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn2:hover {
    cursor: pointer;
    font-size: 34px;
    border: 2px solid white;
    color: white;
    background-image: linear-gradient(to left, #f5e499, #9d7541);
    transition: .3s;
    font-weight: 500;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

/* -------------------- Footer --------------------*/

footer {
    background-color: black;
    color: darkgrey;
    padding: 20px;
    text-align: center;
}

.goldLine_box {
    padding-bottom: 50px;
    background-color: #323232;
}

.goldLine {
    height: 10px;
    width: 100vw;
    background-image: linear-gradient(to right, #f5e499, #9d7541, #f5e499, #9d7541);
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 1.6);
}

.goldline_boxup {
    padding-top: 50px;
    background-color: #323232;
}

/* -------------------- Animations --------------------*/

@keyframes fade-in {
    to {
        scale: 1;
        opacity: 1;
    }
}

@keyframes left-to-right {
    to {
        margin-right: 0;

        opacity: 1;
    }
}

@keyframes right-to-left {
    to {
        margin-left: 0;

        opacity: 1;
    }
}

/* -------------------- Media queries --------------------*/

@media (max-width: 1482px) {
    .benefits_box {
        width: 150px;
        height: 150px;
        font-size: 12px;
        margin: 20px;
    }

    .benefits_box .icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1200px) {
    .industries_box {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 1022px) {

    .hero_container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .hero_section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        border-radius: 15px;
    }

    .hero_image {
        margin-left: 0;
        margin-right: 30px;
        margin-top: 0;
        width: 150px;
        height: 150px;
    }

    .hero_title {
        margin-left: 0;
        margin-top: 50px;
        font-size: 48px;
    }

    .slogan_container {
        margin-left: 0;
        justify-content: center;
    }

    .cta {
        justify-content: center;
        margin-left: 0;
    }

    .slogan {
        margin-left: 0;
    }

    .industries_container {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 800px) {

    .hero_container {
        justify-content: center;
    }

    .hero_image {
        scale: 90%;
        margin-right: 40px;
        margin-bottom: 0;
    }

    .hero_title {
        margin-top: 100px;
        font-size: 40px;
    }

    .slogan {
        font-size: 22px;
        width: 320px;
    }

    .cta {
        margin-top: 0;
    }

    .btn {
        margin-top: 20px;
        font-size: 24px;
    }

    main h1 {
        margin-top: 30px;
    }

    .services_container {
        margin: 0;
    }

    .benefits_box {
        font-size: 12px;
        height: 120px;
        width: 120px;
    }

    .benefits_box .icon {
        margin-bottom: 4px;
        height: 50px;
        width: 50px;
    }

    .skewed {
        width: 40em;
    }

    .skewed .image::before {
        left: -5em;
    }

    .skewed_left .image::before {
        left: initial;
        right: -5em;
    }

    .customer_experience h1 {
        font-size: 24px;
    }

    .industries h1 {
        font-size: 24px;
    }

    .overview_container {
        width: 400px;
    }

    .overview_title {
        font-size: 36px;
    }

    .overview_text {
        font-size: 16px;
    }

    .btn2 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {

    .sticky nav ul li a {
        font-size: 18px;
    }

    .hero_title {
        font-size: 48px;
        margin-top: 60px;
    }

    main h1 {
        font-size: 24px;
    }

    .service_box {
        width: 300px;
    }

    .benefits {
        flex-direction: column;
    }

    .benefits_container {
        flex-direction: column;
    }

    .benefits_container h1 {
        font-size: 24px;
    }

    .benefits_box {
        font-size: 10px;
        width: 100px;
        height: 100px;
        margin: 10px;
    }

    .skewed {
        width: 28em;
    }

    .customer_experience h1 {
        font-size: 24px;
    }

    .customer_experience .text {
        width: 60%;
    }

    .customer_experience .image {
        width: 40%;
    }

    .skewed .image::before {
        transform: translateY(-50%) rotate(-10deg);
        left: -3em;
    }

    .skewed_left .image::before {
        transform: translateY(-50%) rotate(-10deg);
        left: initial;
        right: -3em;
    }
}

@media (max-width: 450px) {

    .logo {
        display: none;
    }

    .sticky {
        z-index: 100;
    }

    .sticky nav ul li a {
        font-size: 18px;
    }

    .hero_image {
        scale: 80%;
    }

    .hero_title {
        font-size: 38px;
    }

    .slogan {
        font-size: 20px;
    }

    .service_box {
        width: 250px;
    }

    .customer_experience h2 {
        padding-bottom: 5;
    }

    .customer_experience .text {
        width: 100%;
    }

    .skewed {
        flex-direction: column;
        width: 18em;
    }

    .customer_experience .image {
        width: 100%;
    }

    .skewed .image::before {
        left: -5em;
        transform: translateY(-50%) rotate(15deg);
    }

    .skewed_left .image::before {
        transform: translateY(-50%) rotate(-15deg);
        right: -5em;
        left: initial;
    }

    .industries_container {
        padding-bottom: 20px;
    }

    .overview_container {
        width: 300px;
    }
}

@media only screen and (max-width: 400px) {

    .sticky nav ul li a {
        font-size: 14px;
        text-align: center;
    }

    nav ul li {
        margin-left: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: center;
    }

    .logo {
        scale: 70%;
        margin: 0;
    }

    nav ul {
        margin: 10px;
    }
}