:root {
    --animate-delay1: 0.5s;
    --animate-delay2: 1s;
    --animate-delay3: 1.5s;
    --animate-delay4: 2s;
}


body {
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    color: #0A0A0A;
}

a {
    text-decoration: none;
}
input, textarea, button {
    background: none;
    border: none;
}
input:focus, textarea:focus {
    outline: none;
}


/* GLOBAL CLASS*/
/* FLEX BOX */
.dp-f {
    display: flex;
}
.jc-sb {
    justify-content: space-between;
}
.jc-r {
    justify-content: right;
}
.ai-c {
    align-items: center;
}
.fd-c {
    flex-direction: column;
}
.fd-r {
    flex-direction: row;
}

/* END GLOBAL CLASS*/



/* HEADER */
#logo {
    height: 30px;
    margin-right: 10px;
}
h1 {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 15px;
    font-weight: 500;
    background: linear-gradient(to left, #46b9e7, #2072a5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#map {
    height: 35px;
}
/* END HEADER */

/* MAIN */
.line-1 {
    font-family: "LostaMasta", sans-serif;
    font-weight: 400;
}
.line-2 {
    font-family: "DupincelLargeTest", sans-serif;
    font-weight: 700;
}
.line-3 {
    font-family: "LostaMasta", sans-serif;
    font-weight: 400;
}
.line-4 {
    font-family: "Juana", sans-serif;
    font-weight: 700;
}
.main-line-5 {
    text-align: right;
}
.line-5 {
    font-size: 1em;
    font-family: "Juana", sans-serif;
    font-weight: 600;
}
/* END MAIN */
/* MAIN 2 */
.main-2 {
    padding-bottom: 50px;
}
.mail {
    padding-bottom: 7px;
    font-family: "LostaMasta", sans-serif;
    font-weight: 300;
    border-bottom: solid 1px #0A0A0A;
}
.links {
    display: flex;
}
.link-1 {
    margin-right: 50px;
}
.link-1, .link-2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
}
.links div a {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    color: #0A0A0A;
    font-weight: 500;
}
.links div a img {
    margin-right: 10px;
}
/* END MAIN 2 */

/* CONTACT */
.contact h2 {
    margin-bottom: 30px;
    font-family: "DupincelLargeTest", sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    transform: scaleY(1.8);
}
.input {
    width: 100%;
    font-size: 16px;
    padding: 0 5px 5px;
    background: none;
    border-bottom: 1px solid #0A0A0A;
}
.input-1 {
    margin-right: 5px;
}
.input-3 {
    margin: 40px 0;
    width: 100%;
}
.input-4 {
    width: 100%;
    resize: none;
}
.input-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding: 10px 26px;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    border: solid 1px #0A0A0A;
}
.input-5 img {
    height: 20px;
    margin-left: 10px;
}
/* END CONTACT*/



/* LOAD */
.load {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FAFAFA;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #151515;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    animation: pulse 1s linear infinite;
}
.loader:after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 5px solid #151515;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scaleUp 1s linear infinite;
}

@keyframes scaleUp {
    0% { transform: translate(-50%, -50%) scale(0) }
    60% , 100% { transform: translate(-50%, -50%)  scale(1)}
}
@keyframes pulse {
    0% , 60% , 100%{ transform:  scale(1) }
    80% { transform:  scale(1.2)}
}
/* END LOAD */



/* Animation */










