
@font-face {
    font-family: 'Perpetua';
    src: url("../fonts/Perpetua.ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'Perpetua';
    src: url("../fonts/PerpetuaItalic.ttf");
    font-weight: 500;
    
    font-style: italic;
}

body {
    margin: 0;
    background-color: #EDEDED;
    
    font-family: 'Perpetua';
}

div {
    border-width: 2.5px !important;
    box-sizing: border-box;

}

a {
    color: black;
}

a:active {
    color: black;
}
/*-----------CONTENT----------*/
.fullImage {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    
    box-sizing: border-box;
    border:none;
    
    width: 100%;
    height: 100%;
    
    background-size: cover;
    background-position: center top;
}

.paddedImage {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    
    transform: translate(-50%,-50%);
    
    box-sizing: border-box;
    border:none;
    
    width: calc(100% - 120px);
    height: calc(100% - 120px);
    
    
    background-color: white;
    background-size: cover;
    background-position: center top;
    
    border: solid;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    
    width: 100%;
    
    transform: translate(-50%,-50%);
    text-align: center;
}

.leftText {
    text-align: left;
    width: 80%;
    
    max-width: 280px;
    
    margin: auto;
}

.centerText {
    text-align: center;
    width: 80%;
    
    max-width: 260px;
    
    margin: auto;
}

.rectangle .centerText {
    max-width: 300px;
}

.button {
    background-color: #EDEDED;
    width: 120px;
    
    
    margin: auto;
    margin-top: 25px;
    padding: 10px;
    
    letter-spacing: 1px;   
}

.button:hover {
    background-color: #cfcfcf;
    cursor: pointer;
    
}

.contact {
    width: 100vw;
    height: 100vh;
    
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    
    z-index: 2;
}

.contact .centerText {
    width:100%;
    max-width: none;
    
}

.contact h1 {
    
}
/*-----------TEXT----------*/

h1 {
    font-weight: normal;
}
h2 {
    font-weight: normal;
    text-transform: uppercase;
    font-style: italic;
    
    margin-bottom: 18px;
    font-size: 22px;
    marker-top: 0;
}

.grande {
    font-size: 30px;
}

h3 {
    font-weight: normal;
    text-transform: uppercase;

    margin: auto;
    
    margin-bottom: 15px;
    letter-spacing: 1px;
}

p {
    font-size: 18px;
    line-height: 27px;
    margin: 0 0 8px 0;
}

.quote {
    font-size: 20px;
    font-style: italic;
}

hr {
    width: 40px;
    border: solid;
    border-width: 1px;
    text-align: left;
    
    margin: 20px 0;
}

.centerText hr {
    margin: auto;
    margin-bottom: 15px;
}

/*-----------FRAME----------*/
.whiteFrame div { 
    position: fixed;
    
    background-color: white;
    z-index: 2;
    
    border: none;
}

.frame div {
    box-sizing: border-box;
    position: fixed;
    
    z-index: 4;
}

.horz {
    width: 100%;
    height: 60px;
    
    border-bottom: solid;
    border-top: solid;
}

.vert {
    width: 60px;
    height: 100vh;
    
    border-left: solid;
    border-right: solid;
    
}

.topBar {
    top: 0;
    left: 0;
}

.bottomBar {
    bottom: 0;
    left: 0;
}

.leftBar { 
    top: 0;
    left: 0;
}

.rightBar {    
    top: 0;
    right: 0;
}

.horzText {
    position: absolute;
    left: 50%;
    top: 50%;
    
    transform: translate(-50%,-50%);
    margin: 0;
    
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    
    letter-spacing: 1px;
    width: 100%;
    

    text-align: center;
}

.horzText.lefter {
    left: 25%;
    
}

.horzText.righter {
    left: 75%;   
}

@media (max-width: 700px) {
    .horz {
        height: 50px;
    }
    
    .vert {
        width: 50px;
    }
    
    .row {
        border-bottom: none;
    }
    
    .cuerpo {
        padding: 50px !important;
    }
}

/*-----------STRUCTURE----------*/
.cuerpo {
    max-width: 900px;
    width: 100%;
    
    margin: auto;
    padding: 60px;    
}

.sideBorder {
    border-left: solid;
    border-right: solid;
}

.row {
    width: 100%;
}

.lastRow .square {
    border-bottom: none !important;
}

.lastRow .rectangle {
    border-bottom: none !important;
}

.row:after {
    content: "";
    clear: both;
    display: table;
}

.square {
    float: left;
    width: 50%;
    padding-top: 50%;
    
    background-color: white;   
    border-bottom: solid;
    
    position: relative;
}

.rectangle {
    float: left;
    width: 100%;
    padding-top: 50%;
    
    background-color: white;   
    border-bottom: solid;
    
    position: relative;
}

.left {
    border-right: solid;
}

@media (max-width: 900px) {
    .sideBorder {
        border: none;
    }
}

.mobileOnly {
    display: none;
}
@media (max-width: 700px) {
    .deskOnly {
        display: none;
    }
    
    .mobileOnly {
        display: inherit;
    }
    
    .rectangle {
        width: 100%;
        height: calc(100vh - 100px);
        
        border-top: none;

    }
    .square {
        width: 100%;
        height: calc(100vh - 100px);
        
        border-top: none;

    }
    
    .row {
        
    }
    
    .left {
        border-right: none;
    }
}

/*------------MAP----------*/
