/* RESET START */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    height: 100%;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* RESET END */

/* VARIABLES START */
:root {
    --main-color: #FC5103;
    --text-color: rgba(0, 0, 0, 0.4);
}

@font-face {
    font-family: "Lota Grotesque";
    src: url("../fonts/Los\ Andes\ \ Lota\ Grotesque\ Regular.otf");
}

/* VARIABLES END */

br {
    content: '';
    margin: 40px;
    line-height: 40px;
}


body {
    background-image: url('../images/background_desktop.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    min-height: 100vh;
    min-width: 100%;
    /* FONTS */
    font-family: 'Lota Grotesque';
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    color: var(--text-color);
    /* LAYOUT */
    display: flex;
}

nav {
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.logo {
    display: flex;
    justify-content: center;
}

nav>ul>li>a {
    line-height: 33px;
    text-decoration: none;
    color: var(--text-color);
}

nav>ul>li>a:hover {
    color: var(--main-color);
    opacity: 100%;
}

main.main {
    background: url('../images/placeholder_desktop.png') no-repeat left center;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    padding: 168px 100px 168px 0px;
}

main.project {
    background: url('../images/placeholder_desktop.png') no-repeat right top;
background-origin: content-box;
    display: flex;
flex-grow: 1;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding: 168px 100px 168px 0px;
}

main.company,
main.contact {
    display: flex;
    justify-content: center;
    padding: 200px 150px;
}

main.company p {
    text-align: justify;
}

h1 {
    font-family: 'Roboto';
    font-size: 32px;
    font-weight: 400;
    line-height: 40px;
    margin-bottom: 40px;
    color: var(--main-color)
}

h2 {
    color: var(--main-color);
    margin-bottom: 20px;
}

.link {
    color: var(--main-color);
    text-decoration: none;
}

.active-nav {
    color: var(--main-color);
}

p {
    margin-bottom: 12px;
}

a.email-link {
    color: var(--text-color)
}

.max-width {
    max-width: 295px;
}

/* Styles for mobile */
@media screen and (max-width: 767px) {
    body {
        flex-direction: column;
    }
    nav {
        padding: 50px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-self: center;
    }
    nav ul {
        display: flex;
        gap: 20px
    }
    main {
        padding: 50px !important;
        padding-top: 0px !important;
    }
    main.main {
        justify-content: flex-end !important;
    }
    main.project {
        justify-content: flex-end !important;
        background-origin: border-box;
    }
    /* main.contact {
        justify-content: flex-start;
    } */
    main div {
        align-self: center;
    }
  }
  
  
  
  
  
  