@font-face {
    font-family: 'Camsay';
    src: url('font/Camsay.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Futura PT";
    src: url("font/futura-pt-light.otf");
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: 'Lato', sans-serif;
}

div,figure,section,p,main,html,body,nav {
    margin:0;
    padding:0;
    font-size:1em;
    box-sizing: border-box;
}

a {
    color:inherit;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
}

:root {
    --maincolor:#C5B686;
}


p {
    font-family: 'Lato', sans-serif;
    text-align: justify;
}

.intro > section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width:80%;
    margin: auto;
    text-align: justify;
}

.intro > section > h1 {
    text-align: left;
}

.head {
    width:100%;
    height:100vh;
    animation: 3s cropin;
    animation-delay: 2s;
    animation-fill-mode: forwards;
    margin:auto;
}

.head > figure {
    overflow: hidden;
    background-position: center;
    background-size: cover;
    width:100%;
    height:100%;
}
.head > figure > img {
    height:300px;
    width:auto;
    margin-top: calc(50vh - 150px);
    margin-left: calc(50vw - 150px);
    animation: 3s cropinLogo;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

nav {
    display: flex;
    width:100%;
    height:0;
    justify-content: space-around;
    align-items: center;
    opacity: 0;
    background-color: var(--maincolor);
    color:white;
    animation: 1s cropinnav;
    animation-delay: 4s;
    animation-fill-mode: forwards;
}

@keyframes cropin {
    from{
        height:calc(100vh);
    }
    to{
        height:150px;
    }
}

@keyframes cropinnav {
    from{
        height:0;
        opacity:0;
    }
    to{
        height:50px;
        opacity:1;
    }
}

@keyframes cropinLogo {
    from{
        height:300px;
        margin-top: calc(50vh - 150px);
        margin-left: calc(50% - 150px);
    }
    to{
        height:100px;
        margin-top: 25px;
        margin-left: calc(50% - 50px);
    }
}

h1 {
    font-family: 'camsay';
    color:var(--maincolor);
    font-size: 3rem;
}

.contact {
    display: flex;
    justify-content: space-around;
    width:70%;
    margin: 60px auto 60px 15%;
    border-top:1px solid var(--maincolor);
}

.contact > section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact > section > h1 {
    width:100%;
    text-align: center;
    color: var(--maincolor)
}

.contact > section:first-of-type{
    width:60%;
}

.contact > section:last-of-type {
    width:40%;
}

.contact input {
    border: none;
    border-bottom: 1px solid var(--maincolor);
    padding:10px;
    width:80%;
    outline:none;
}

footer {
    width: 100%;
    height:200px;
    background-color: var(--maincolor);
    display: flex;
    justify-content: center;
    align-items: center
}

footer > div > figure {
    width:160px;
    height:auto;
}

.madrid {
    width:250px;
    height:auto;
    float: left;
    padding:2rem;
}

.malta {
    width:100%;
    max-width: 70vw;
    height:auto;
    padding:2rem;
}

.mtp {
    width:250px;
    height:auto;
    float: left;
    padding: 2rem;
}

.rdvButton {
    margin-top: 2rem;
    background-color: var(--maincolor);
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.or {
    color: var(--maincolor);
}

h2 {
    font-family: "Futura PT";
    padding-top: 2rem;
    font-size: 1.5rem;
}

h3 {
    /*padding-top: 2rem;*/
    font-family: Camsay;
    font-size: 3rem;
    margin-bottom: 0;
}

#toupper {
    padding-top: 2rem;
}

.massage {
    padding-top: 2rem;
}

.massage h2 {
    margin-top: 4rem;
    margin-bottom: 0;
}