/* ! ********** RESETS ********** */
* {
    box-sizing: border-box;
    transition-duration: 0.3s;
}
*:not(input) {
    margin: 0;
    padding: 0;
    border: 0;
}

/* * Global Styling */

/* ** FONTS ** */

/* Copperplate */
@import url("/fonts/copperplate.css");

/* Varela Round */
@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

a {
    font-family: 'Varela Round', sans-serif;
    color: #333333;
    text-decoration: none !important;
}

a:hover {
    color: #f99b1c;
}

ul {
    list-style: none;
}

p {
    font-family: 'Varela Round', sans-serif;
    color: #333;
}

h2 {
    font-family: 'Varela Round', sans-serif;
    color: #333333;
}

h3 {
    font-family: 'Varela Round', sans-serif;
    color: #fff;
    padding-top: 1rem;
}

h4 {
    font-family: 'Varela Round', sans-serif;
}

.wrapper p {
    font-size: 1.2em;
}

/* Global Gradients */

.global-gradient {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f89b00+1,ffbe50+100 */
    background: #f89b00;
    /* Old browsers */
    background: -moz-linear-gradient(top, #f89b00 1%, #ffbe50 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f89b00 1%, #ffbe50 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f89b00 1%, #ffbe50 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f89b00', endColorstr='#ffbe50', GradientType=0);
    /* IE6-9 */
}

.black-gradient {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#898989+0,484848+100 */
    background: #898989;
    /* Old browsers */
    background: -moz-linear-gradient(top, #898989 0%, #484848 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #898989 0%, #484848 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #898989 0%, #484848 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#898989', endColorstr='#484848', GradientType=0);
    /* IE6-9 */
}

/* Global Drop-shadow  */

.global-shadow {
    -webkit-box-shadow: 10px 10px 50px -25px rgba(0, 0, 0, 0.62);
    -moz-box-shadow: 10px 10px 50px -25px rgba(0, 0, 0, 0.62);
    box-shadow: 10px 10px 50px -25px rgba(0, 0, 0, 0.62);
}

/* * Top Nav styling */

.top-nav {
    display: grid;
    grid-template-rows: auto auto auto;
}

.hero {
    grid-row: 1fr;
    grid-row-start: 1 / 4;
    align-items: center;
    justify-content: center;
}

/* * Hero Styling */

.hero {
    background-image: url("../assets/imgs/vianden.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: 'Copperplate CC';
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    color: #333;
    font-size: 4em;
    margin: 0 30px;
    padding: 15px 30px;
}

.hero-title span {
    color: #f89b00;
}

.styled {
    font-family: 'Varela Round', sans-serif;
    background-color: #f89b00;
    color: #fff;
    border: none;
    margin-top: 50px;
    height: 50px;
    width: 200px;
}

.styled:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #f89b00;
}

/* Separators */

.separator {
    min-height: 50vh;
    display: grid;
}

.separator-usp {
    min-height: 300px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 0px 60px;
    align-items: center;
}

.usp-item {
    display: grid;
    justify-items: center;
    padding: 15px;
    transition-duration: 0.0s;
}

.usp-item img {
    width: 75px;
}

.usp-item:hover {
    border: 5px solid white;
    border-radius: 5px;
}

.active-usp {
    border: 5px solid white;
    border-radius: 5px;
}

.list-row {
    display: grid;
    grid-template-columns: 15px 1fr;
}

@media only screen and (max-width: 768px) {
    /* * NAVBAR */
    /* hide the social media buttons in nav */
    /* #social-media {
        display: none;
    } */
    /* * HERO * */
    /* resize the header & CTA */
    .hero-title {
        font-size: 3em;
        width: 75%;
    }
    .styled {
        height: 40px;
        width: 200px;
    }
    /* * USP's * */
    .separator-usp {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 2rem;
    }
    .usp-item>img {
        width: 50px;
    }
    .usp-item>h3 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 580px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 500px) {
    /* .navbar-brand {
        grid-row: 1;
        text-align: center;
        margin-left: 0;
    }
    .right-nav-parent>ul {
        padding: 0;
    } */
    .hero-title {
        font-size: 2rem;
    }
    /* * USP's * */
    .usp-item>img {
        width: 30px;
    }
    .usp-item>h3 {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 380px) {
    /* .nav {
        flex-direction: column;
    }
    .right-nav-parent {
        text-align: center;
        margin: auto;
    } */
    .hero-title {
        /* margin-top: 400px; */
        font-size: 1rem;
        padding: 10px;
        width: 75%;
    }
}