@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
/* $color-yellow: #ffc400;
$color-red: #c90035;
$color-white: #ffffff; */

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 0;
    margin: 0;
    font-size: 20px;
    line-height: 1.35em;
    color: #ffffff;
    background-color: #ffc400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1 { 
    font-size: 55px;
    line-height: 1.25em;
    font-weight: 400;
    margin: 0 0 0.55em;
}
a { 
    color: inherit;
    text-decoration: none;
  /*  transition: all 0.3s ease-out; */
}
a:hover, a:focus {
    opacity: 0.7;
}
.page {
    
}
.logo { margin-bottom: 30px;}

.container {
    width: 1080px; 
    margin: 0 auto;
    position: relative;  
}
.content {
    width: 50%;
    position: relative;
    padding-top: 60px;
    z-index: 5;
}

.content img { display: block; }
.content strong { font-weight: 700; }
.contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
}
.contact > li {
    margin-bottom: 10px;
}
.contact > li:last-child {
    margin-left: 45px;
    padding-left: 45px;
    border-left: 1px solid rgba(255,255,255, 0.5);
}
.contact strong { display: block;}
.hero {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
}

.privacy .main-content {
    min-height: 100vh;
    display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
    flex-direction: column;
    
}
.privacy iframe {
    display: block;
    width: 100%;
    height: 100%;
    background: #ffc400;
    flex-grow: 1;
}

@media screen and (max-width: 800px) {
    .page .container, .page .content {
        width: 100%;
    }
    .page img { width: 100%; height: auto; }
    .page .content { padding: 0;}
    .page .row { padding: 0 20px; }
    .page .hero {
        position: relative;
        display: block;
        width: 80%;
        top: -5px;
        right: auto;
        margin: 0 auto;
    }
    .page h1 { 
        font-size: 36px;
        line-height: 1.25em;
        margin: 0 0 0.45em;
    }
    .page .logo {  
        width: 100%;
        margin: -10px auto 20px;
    }
    .page .contact {
        flex-wrap: wrap;
       
    }
    .page .contact > li {
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
        border: none;
    }
}
