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

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

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

body {
    background-color: #F4F4F4;
    font-size: 14px;
    line-height: 1.6;
    color: #1f1f1f;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/************ Variables *************/
:root {
    --black: #101020;
    --white: #FFFFFF;
    --dark-blue: #083554;
    --purple: #720D4F;
    --orange: #D4A12F;
    --light-grey: #F4F4F4;
    --grey: #C0C7D7;
}

h1, h2, h3 {
    font-family: 'Italiana', serif;
    font-weight: 400;
}

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

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

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

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

.wrapper_small {
    max-width: 50%;
    width: 900px;
}

.wrapper_large {
    width: 1250px;
}

@media (max-width: 1200px) {
    .wrapper_large {
        max-width: 90%;
    }

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

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

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