@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;300;400;600;700&family=Ubuntu:wght@300;400&display=swap');* {
    box-sizing: border-box;
}

:root {
    --pd: 10%;
    --gr33n: #083e1c;
}

body {
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    color: #303030;
}
.grecaptcha-badge {
	opacity: 0;
}
header{
    height: 100vh;
    position: relative;
}
.bgc{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}
nav{
    display: grid;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 5;
    grid-template-columns: 1fr 60% 1fr;
    padding: .5rem 1.5rem;
    align-items: center;
    transition: background-color .5s;
}
.expan{
    background-color: #121212DD !important;
}
nav > *{
    align-items: center;
}
nav img{
    display: block;
    height: 100%;
}
.hamburger_container{
    display: none;
}
.logo{
    display: grid;
    justify-items: left;
    height: 100%;
}
.nav{
    display: grid;
    grid-gap: 2rem;
}
.nav a, .nav a img{
    display: block;
}
nav img{
    height: 60px;
}
.nav_first{
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
}
.nav_second{
    justify-content: right;
    grid-gap: 1rem;
    grid-template-columns: repeat(2, max-content);
}
nav a{
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}
.nav_second img{
    height: 40px;
}
h1{
    color: #fff;
    text-align: center;
    font-size: 5.5rem;
    font-weight: 300;
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
    display: block;
}
h1 span{
    display: block;
}
.header_overlay{
    background-color: #0006;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-auto-rows: max-content;
    align-content: center;
    grid-gap: 1.5rem;
}
.header_overlay p{
    color: #fff;
    font-size: 2rem;
    margin: 0;
    display: block;
    text-align: center;
    font-weight: 300;
}
.header_overlay p span{
    display: block;
    font-size: 2.25rem;
}
.down_btn{
    position: absolute;
    z-index: 4;
    top: 82.5%;
    left: 50%;
    transform: translateX(-50%);
}
main{
    min-height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
    padding-top: 90px;
    grid-auto-rows: max-content;
    align-content: space-evenly;
}
h2{
    font-size: 4rem;
    color: #303030;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 300;
    text-align: center;
    margin: 0;
}
.offer_grid{
    display: grid;
    grid-template-columns: repeat(3, 350px);
    grid-gap: 2rem;
}
.offer_grid img{
    transition: .2s;
    width: 100%;
    transform: scale(1.01);
    overflow: hidden;
    height: 220px;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}
.offer_tile{
    display: grid;
    border-radius: 5px;
    overflow: hidden;
    grid-template-rows: max-content 1fr;
    text-decoration: none;
    color: #fff;
}
.offer_tile_img{
    position: relative;
    display: grid;
}
.offer_tile_img::after{
    content: 'Galeria';
    background-color: #303030dd;
    z-index: 4;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.5rem;
    display: grid;
    justify-content: center;
    align-content: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    opacity: 0;
    transition: .2s;

}
.offer_tile:hover img{
    transform: scale(1.05);
}
.offer_tile:hover .offer_tile_img::after{
    opacity: 1;
}
.offer_tile h3{
    margin: 0;
    display: grid;
    text-align: center;
    padding: 1rem 0;
    color: #fff;
    background-color: #303030;
    font-weight: 300;
    letter-spacing: .5px;
    align-items: center;
    z-index: 3;
    height: 100%;
}
.offer_tile_content {
	display: grid;
	align-items: center;
    height: 100%;
}
.scrolled {
	background-color: #121212DD;
}
.about_section{
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
}
.about_container {
	width: 100%;
	min-height: 100vh;
	padding-left: 4rem;
	display: grid;
	grid-auto-rows: max-content;
	align-content: center;
	grid-gap: 1.75rem;
	padding-top: 90px;
	background-image: url("/imgs/default2.jpg");
	grid-template-columns: 50%;
	background-size: cover;
    background-position: center;
}
.about_container h2{
    text-align: left;
}
.about_text{
    display: grid;
    grid-gap: 1.25rem;
    font-size: 1.25rem;
}
.about_text p{
    line-height: 1.4;
    margin: 0;
}
.contact_btn{
    background-color: var(--gr33n);
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 1rem 4rem 1rem 1.5rem;
    width: max-content;
    border-radius: 5px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: .5rem;
    background-image: url("/imgs/icons8_more_than_96px1.png");
    background-repeat: no-repeat;
    background-position: 90% center;
}
.contact_section{
    padding-top: 90px;
    min-height: calc(100vh - 60px);
    background-color: #181818;
    color: #fff;
    justify-content: center;
    align-items: center;
    display: grid;
}
address{
    font-size: 1rem;
    font-style: normal;
    display: grid;
    grid-gap: 1.5rem;
    grid-auto-rows: max-content;
    width: max-content;
    grid-template-columns: repeat(2, max-content);
}
.address_side{
    display: grid;
    grid-gap: 1rem;
}
address > div > div{
    padding: .75rem 1rem;
    background-color: #303030;
    border-radius: 5px;
}
address h3{
    margin: 0;
}
picture{
    display: block;
    height: 0;
}
.contact_section h2{
    color: #fff;
    grid-column: 1/-1;
}
.contact_container{
    display: grid;
    grid-template-columns: max-content 400px;
    grid-gap: 4rem 1.5rem;
}
form{
    display: grid;
    grid-gap: 1rem;
    grid-auto-rows: max-content;
}
input, textarea, form button{
    font-family: 'Source Sans Pro', sans-serif;
    padding: .5rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    border: unset;
    width: 400px;
    height: 50px;
}
.rodo{
    font-size: 10px;
    line-height: 1;
    text-align: justify;
    margin: 0;
}
form div{
    order: 1;
}
textarea{
    height: 75px;
}
form button{
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background-color: var(--gr33n);
}
.contact_group{
    display: grid;
    background-color: #303030;
    grid-template-columns: 40px 1fr;
    grid-gap: 1rem;
    align-items: center;
}
.address_side a{
    color: #fff;
    text-decoration: none;
}
.contact_group div{
    display: grid;
    align-items: center;
}
.contact_group img{
    width: 40px;
}
.contact_group div span{
    display: block;
}
.open_day{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    grid-gap: 1rem;
    align-content: center;
}
footer{
    height: 60px;
    background-color: #121212;
    display: grid;
    align-items: center;
    padding: 0 4rem;
    color: #fff;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer img{
    height: 20px;
}
.pp{
    list-style-type: disc;
    list-style-position: outside;
}
@media screen and (max-width: 1600px) {
    .about_text p {
        line-height: 1.2;
    }
}
@media screen and (max-width: 1400px) {

    h1{
        font-size: 5rem;
    }
    h2{
        font-size: 3.5rem;
    }
    .about_text{
        font-size: 18px;
    }
}
@media screen and (max-width: 1300px) {
    .offer_grid{
        grid-gap: .75rem;
    }
}
@media screen and (max-width: 1200px) {
    .offer_grid{
        grid-template-columns: repeat(3, 300px);
        grid-gap: 1.25rem;
    }
}
@media screen and (max-width: 1000px) {
    .offer_grid{
        grid-template-columns: repeat(2, 300px);
        grid-gap: 1.25rem;
    }
    .contact_container{
        grid-template-columns: 1fr;
        justify-items: center;
    }
    form{
        width: 400px;
    }
}
@media screen and (max-width: 900px) {
    .hamburger_container{
        display: grid;
    }
    .hamburger_container img{
        height: 50px;
    }
    nav{
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
        min-height: 90px;
        height: unset;
    }
    .nav{
        grid-column: 1/-1;
        justify-content: center;
        display: none;
        grid-template-columns: 1fr;
        justify-items: center;
        grid-gap: 1rem;
        padding-bottom: 1rem;
    }
    h1{
        font-size: 3rem;
    }
}
@media screen and (max-width: 700px) {
    .offer_grid{
        grid-template-columns: 300px;
        justify-content: center;
    }
}
@media screen and (max-width: 600px) {
    address{
        grid-template-columns: 1fr;
    }
    .address_side:first-of-type{
        order: 1;
    }
}

@media screen and (max-height: 800px) {
    main, section, header{
        padding-bottom: 2rem;
    }
    main h2{
        padding-bottom: 2rem;
    }
    .about_text{
        grid-gap: .75rem;
    }
    .about_container{
        padding-bottom: 2rem;
    }
}
@media screen and (max-height: 700px) {
    .about_text{
        font-size: 1rem;
    }
    h2{
        font-size: 3rem;
        padding-top: 2rem;
    }
}
@media screen and (max-height: 600px) {
    h1{
        font-size: 3rem;
    }
    .header_overlay p{
        font-size: 1.5rem;
    }
    .header_overlay p span{
        font-size: 1.75rem;
    }
    .down_btn{
        top: unset;
        bottom: 0;
    }
}
@media screen and (max-height: 500px) {
    .header_overlay p{
        font-size: 1.25rem;
    }
    .header_overlay p span{
        font-size: 1.5rem;
    }
}
@media screen and (max-height: 400px) {
    .down_btn img{
        width: 70px;
    }
}
@media screen and (max-width: 500px) {
    footer{
        grid-template-columns: 1fr;
        justify-items: center;
        height: unset;
        grid-gap: .5rem;
        padding: 1rem 0;
    }
    .about_container{
        background-image: unset;
        background-color: #eaeaea;
        grid-template-columns: 1fr;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    h1, h2{
        font-size: 2.5rem;
    }
    .about_section, .about_container h2{
        text-align: center;
    }
    .about_text{
        font-size: 18px;
    }
    .contact_btn{
        justify-self: center;
    }
    .nav_first{
        padding-top: 1rem;
    }
    form button{
        width: 100%;
    }
}
@media screen and (max-width: 450px) {
    form, input, textarea{
        width: 100%;
    }
    form{
        padding-left: 2rem;
        padding-right: 2rem;
    }
    h1{
        font-size: 2rem;
    }
    .header_overlay p{
        font-size: 1.25rem;
    }
    .header_overlay p span{
        font-size: 1.5rem;
    }
    .down_btn{
        top: 75%;
    }
}
@media screen and (max-width: 350px) {
    .offer_grid{
        grid-template-columns: 1fr;
        padding-left: .5rem;
        padding-right: .5rem;
    }
    form, .about_container{
        padding-left: 1rem;
        padding-right: 1rem;
    }
}