@charset "UTF-8";

/*====================SITE WIDE===================*/
html{
    font-size: 16px;
}

body {
    font-family: urw-din-semi-condensed, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 1.4rem;
    color: #372f30;
}

p {
    word-wrap: normal;
}

a {
    color:#372f30;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.page_Container {
    max-width: 100vw !important;
}

ul li {
    display: inline;
    list-style: none;
    padding-left: 1rem;
}

#hideMe {
    display: none;
}



/*===================MASTHEAD====================*/

.masthead {
    position: fixed;
    top:0;
    z-index: 1000;
    justify-content: space-between;
    align-items: baseline;
    padding: 0 10vw;
    height: 6rem;
    width: 80vw;
    max-width: 80vw;
    border-bottom: 1px solid rgba(0,0,0, 0.05);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: rgba(50, 50, 93, 0.05) 0px 2px 25px -1px;
}

.logo {
    font-family: urw-din-condensed, sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 4.5rem;
    letter-spacing: -0.15rem;
    margin: 0;
    transition-property: transform;
    transition-duration: 0.5s;
}


/*==================BODY========================*/

.flex_container {
    display: flex;
    flex-flow: row wrap;
}


.contents {
    position: relative;
    top: 6rem;
    width: 100vw;
    height: calc(100vh - 6rem);
    max-height: calc(100vh - 6rem); 
    background: url(https://pigmo.es/assets/background.jpg);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 600;
}

.emphasis {
    font-weight: 700;
}



.introText {
    position: relative;
    width: 25vw;
    top: 50vh;
    padding: 0 4rem;
    text-align: center;
    margin-left: 1rem;
}


.contact {
    position: relative;
    width: 100vw;
    height: calc(100vh - 6rem);
    max-height: calc(100vh - 6rem); 
    padding-top: 6rem;
    background: url(https://pigmo.es/assets/background2.jpg);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    z-index: 1;
}
.contactame {
    position: relative;
    width: 25vw;
    top: 16vh;
    padding-left: 4rem;
    text-align: center;
    margin-left: 64vw;
    line-height: 0.7rem;
}

.addSpace {
    padding-bottom: 2rem;
}


.hiddenDiv {
    display:none;
}


/*======================= MEDIA QUERIES =========================*/

@media screen and (max-width: 1240px){
    .contents{
        background-size: contain;
        top: 3rem;
    }
    
    .introText{
        margin-left: -0.7rem;
    }
    
    .contact{
        top:-5rem;
    }
    
    .contactame{
        margin-left: 66vw;
        top: 22vh;
    }
}

@media screen and (max-width: 1024px){
    .contents {
        top:-1rem;
    }
    
    .introText{
        top:40vh;
    }
    
    .contact{
        top:-17rem;
    }
    
    .contactame{
        top: 25vh;
    }
}

@media screen and (max-width: 768px){
    body{
        font-size: 1.3rem;
    }
    .contents {
        top:-7rem;
    }
    
    .introText{
        top:33vh;
        margin-left: -1.7rem;
    }
    
    .contact{
        top:-32rem;
    }
    
    .contactame{
        top: 28vh;
        padding-left: 3rem;
    }
}

@media screen and (max-width: 480px){
    
    .hiddenDiv{
        display: block;
        width: 100vw;
        max-width: 100vw;
        height: 34vh;
        position: relative;
    }
    
    .top{
        background: url(https://pigmo.es/assets/background.jpg);
        background-position: right;
        background-size: contain;
        background-repeat: no-repeat;
        top:-29rem;
        
    }
    
    .contents {
        background: unset;
        top:-10rem;
    }
    
    .introText{
        width: 80vw;
        margin-left: 10vw;
        padding: unset;
    }
    
    .contact{
        top:-52rem;
        background: unset;
    }
    
    .contactame{
        top: 28vh;
        padding-left: unset;
        width: 80vw;
        margin-left: 10vw;
        line-height: 0.3rem;
    }
    
    .bottom{
        background: url(https://pigmo.es/assets/background2.jpg);
        background-position: left;
        background-size: contain;
        background-repeat: no-repeat;
        top:-70rem;
    }
}

@media screen and (max-width: 390px){
    .masthead{
        height: 4.5rem;
    }
    .logo{
        font-size: 3.5rem;
    }
    
    .top{
        top: -26rem;
    }
    
    .contactame{
        top:37vh;
    }
    
    .bottom{
        top:-63rem;
    }
}

@media screen and (max-width: 360px){
    
    .top{
        top: -21rem;
    }
    
    .contactame{
        top:55vh;
    }
    
    .bottom{
        top:-49rem;
    }
}