/* Font Faces */
@font-face {
    font-family: bol;
    src: url(fonts/bol.ttf);
}

@font-face {
    font-family: sem;
    src: url(fonts/sem.ttf);
}

@font-face {
    font-family: san;
    src: url(fonts/san.ttf);
}

/* Global Styles */
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    margin: auto;
    padding: 0;
    font-family: 'san', sans-serif;
}

/* Header Styles */
header {
    width: 100%;
    height: 600px;
    display: block;
    background-size: cover;
    background-position: center top;
    text-align: center;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
    header {
        background-image: url(./img/slide-min.jpg);
    }
    .video_wrap {
        display: none;
    }
}

/* Menu Styles */
.menu {
    display: flex;
    justify-content: flex-end;
    margin: 35px 10px 35px 10px;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    list-style: none;
    padding: 0px;
    height: auto;
}

.menu li {
    display: inline-block;
    padding: 0px 10px;
}

.menu li:hover {
    opacity: 0.7;
}

.menu li a {
    color: white;
    text-decoration: none;
}

/* Label Styles */
label[for="chbxmenu"] {
    position: relative;
    width: 50px;
    height: 50px;
    display: none;
    float: right;
    margin: 20px 0px 20px 5px;
}

/* Section Styles */
section {
    display: block;
    width: 100%;
    text-align: center;
}

/* Infographics Styles */
.infographics {
    display: inline-block;
    margin: 70px 20px;
    width: 230px;
    padding: 50px 15px 0px 15px;
    position: relative;
}

.infographics div {
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
    font-size: 22px;
}

.infographics:before {
    position: absolute;
    font-size: 166px;
    content: attr(data-infographic);
    color: #e7e7e7;
    font-weight: bold;
    bottom: 30px;
    left: 80px;
    z-index: -1;
    font-family: bol;
}

/* Gallery Styles */
.gallery {
    width: 33.3%;
    height: 350px;
    display: block;
    background-size: cover;
    position: relative;
    cursor: pointer;
}

.gallery:after {
    content: '';
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background-color: rgba(1, 1, 1, 0.6);
    position: absolute;
    top: 50%;
    display: none;
    left: 50%;
    background-image: url(./img/lup.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40% auto;
}

.gallery:hover:after {
    display: block;
}

/* Footer Styles */
footer {
    background-color: #2f2f2f;
    width: 100%;
    text-align: center;
}

.footerflex {
    margin: 30px 0px 40px 0px;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.mapfoter,
.footerform {
    width: 50%;
    box-sizing: border-box;
}

.footerards {
    margin: 0px;
    list-style: none;
    color: white;
    font-size: 18px;
}

.footerards li {
    background-repeat: no-repeat;
    padding: 0px 5px 5px 30px;
    background-position: left 5px;
    background-size: 16px auto;
    margin: 0px 0px 10px 0px;
}

.foterzago,
.foterzago0 {
    color: white;
    font-family: 'sem', sans-serif;
}

.foterforam input[type="text"],
.foterforam textarea {
    border: solid 1px white;
    background-color: transparent;
    margin: 10px 0px;
    color: white;
    padding: 15px;
    width: 100%;
    font-family: 'san', sans-serif;
}

.foterforam button[type="submit"] {
    border: solid 1px white;
    background-color: transparent;
    margin: 40px 0px 0px 0px;
    color: white;
    padding: 12px 15px;
    width: 100%;
    font-size: 20px;
    font-family: 'bol', sans-serif;
    transition: 0.5s;
}

.foterforam button[type="submit"]:hover {
    color: white;
    background-color: #2f2f2f;
}

/* Modal Styles */
.fixedh {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 1);
    z-index: 51;
}

.modalbg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(11, 11, 11, 0.9);
    z-index: 300;
    display: none;
}

.modaldisplay {
    position: fixed;
    top: 10%;
    width: 320px;
    box-sizing: border-box;
    background-color: white;
    margin-left: -160px;
    z-index: 301;
    left: 50%;
    display: none;
    transition: all 0.5s;
}

.modalrepad {
    padding: 25px 15px 15px 15px;
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'Gilroy-Light', sans-serif;
    text-align: center;
    box-sizing: border-box;
}

.modalcross {
    background-color: #2f2f2f;
    width: 40px;
    height: 40px;
    position: absolute;
    top: -15px;
    right: -15px;
}

.modalcross:before,
.modalcross:after {
    content: '';
    width: 4px;
    height: 40px;
    position: absolute;
    top: 0px;
    background-color: white;
    z-index: 302;
}

.modalcross:before {
    left: 18px;
    transform: rotate(45deg);
}

.modalcross:after {
    left: 18px;
    transform
    : rotate(315deg);
}

.modalcrossb {
    width: 100%;
    height: 100%;
    z-index: 303;
    position: relative;
    cursor: pointer;
}

/* Form Block Styles */
.cizblock {
    font-family: 'sem', sans-serif;
}

.cizblock > input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: solid 1px #2f2f2f;
    color: #2f2f2f;
}

.cizblock > button[type="submit"] {
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background-color: #2f2f2f;
    color: white;
    border: solid 1px #2f2f2f;
}

.cizblock textarea {
    width: 100%;
    height: 60px;
    font-family: 'san', sans-serif;
    font-size: 18px;
}

/* Full RGB Background Styles */
.fullrgbabg {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(15, 15, 15, 0.8);
    display: none;
    z-index: 900;
    width: 100%;
    height: 100%;
}

/* Portfolio Zoom Styles */
.potrtflzoom {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    display: none;
    z-index: 901;
}

.potrtflzoom img {
    height: 100%;
}

.portzoomrel {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    text-align: center;
}

/* Portfolio Zoom Controls Styles */
.pcrossport {
    height: 80px;
    width: 80px;
    position: absolute;
    border-radius: 0px 0px 0px 15px;
    top: 0px;
    right: 0px;
    z-index: 901;
    background-color: rgba(15, 15, 15, 0.5);
}

.crossport {
    background-image: url(./img/cros.png);
    height: 60px;
    width: 60px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50px auto;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 902;
}

.arrozoo {
    position: absolute;
    top: 46%;
    height: 40px;
    width: 40px;
}

.leftarrows {
    left: 10px;
    transform: rotate(45deg);
    border-left: solid 5px white;
    border-bottom: solid 5px white;
    cursor: pointer;
}

.righarrows {
    border-right: solid 5px white;
    border-top: solid 5px white;
    right: 10px;
    transform: rotate(45deg);
    cursor: pointer;
}
