*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

li{
    list-style-type: none;
}

body::-webkit-scrollbar {
    display: none;          /* width of the entire scrollbar */
}

.navigation{
    top: 0;
    z-index: 3;
    width: 100vw;
    height: 15vh;
    display: flex;
    position: fixed;
    transition: .75s;
    font-weight: 400;
    font-size: 1.25rem;
    align-items: center;
    padding: .25rem 4rem;
    border-radius: 0 0 15px 15px ;
    justify-content: space-between;
    box-shadow: 2px 3px 10px gray;
    font-family: "Exo 2", sans-serif;
    background: linear-gradient(90deg, #5a3431, #c27f54);
}

.big{
    height: 48vh;
}

.navBarlogo{
    gap: 1rem;
    display: flex;
    cursor: pointer;
    align-items: center;
}

.navBarlogo img{
    height: 4rem;
    filter: drop-shadow(1px 2px 1px black);
}

.background{
    right: 2.5vw;
    top: 200px;
	width: 95px;
    display: none;
	height: 95px;
	color: #333;
	overflow: hidden;
	position: absolute;
	margin-top: -200px;
	border-radius: 2px;
	margin-left: -200px;
    background-color: transparent;
	font-family: "Open Sans", Helvetica, sans-serif;
}

.center {
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
}

#menu {
	width: 60px;
	height: 40px;
	display: flex;
	cursor: pointer;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.bar {
	width: 100%;
	height: 5px;
	border-radius: 4px;
	position: absolute;
	background-color: #fff;
	box-shadow: 0px 0px 5px #555;
}

.bar:nth-child(1) {
	animation: menu-close 1s forwards;
}

.bar:nth-child(2) {
	animation: menu-close2 1s forwards;
}

.bar:nth-child(3) {
	animation: menu-close3 1s forwards;
}

.open .bar:nth-child(1) {
	animation: menu-open 1s forwards;
}

.open .bar:nth-child(2) {
	animation: menu-open2 1s forwards;
}

.open .bar:nth-child(3) {
	animation: menu-open3 1s forwards;
}

@keyframes menu-open {
	0% {
		transform: translateY(-15px);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: rotate(45deg);
	}
}

@keyframes menu-open2 {
	0% {
		transform: scale(100%);
	}
	100% {
		transform: scale(0%);
	}
}

@keyframes menu-open3 {
	0% {
		transform: translateY(15px);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: rotate(135deg);
	}
}

@keyframes menu-close {
	0% {
		transform: rotate(45deg);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-15px);
	}
}

@keyframes menu-close2 {
	0% {
		transform: scale(0%);
	}
	100% {
		transform: scale(100%);
	}
}

@keyframes menu-close3 {
	0% {
		transform: rotate(135deg);
	}
	50% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(15px);
	}
}

.navSections ul{
    gap: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 1px 2px black;
}

.navSections ul li a{
    display: flex;
    color: white;
    cursor: pointer;
    transition: .5s;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    text-shadow: 2px 1px 2px black;
}

.navSections ul li a:hover{
    transition: .5s;
    color: rgb(24, 243, 24);
    transform: translateY(-3px);
}

.main{
    margin-top: 14vh;
    background-color: #c1bca6;
}

.swiper {
    z-index: 2;
    width: 100%;
    max-height: 83.5vh;
}

.swiper-slide{
    max-width: 100vw;
}

.swiper-slide img{
    width: 100%;
    object-fit: fill;
}

.about{
    position: relative;
    padding: 0 5rem 15rem;
}

.about::after{
    top: -4rem;
    z-index: 1;
    content: "";
    width: 100px;
    right: 2.5rem;
    height: 400px;
    position: absolute;
    background: linear-gradient(#3e6e3e, #529851);
    box-shadow: 3px -5px 3px black;
}

.about::before{
    top: 212px;
    width: 0px;
    z-index: 2;
    height: 0px;
    content: "";
    right: 2.5rem;
    position: absolute;
    border-style: solid;
    transform: rotate(0deg);
    border-width: 50px 50px 75px 50px;
    border-color: transparent transparent #c1bca6 transparent;
}

.aboutInfo{
    width: 70vw;
}

#who{
    color: #f3f3f3;
    text-shadow: 2px 1px 2px #8d8d8d;
}


.title{
    z-index: 1;
    color: #f3f3f3;
    margin: 3rem 0;
    font-size: 3rem;
    position: relative;
    text-shadow: 2px 1px 2px black;
}

.title::after{
    left: -1px;
    bottom: -4px;
    z-index: 0;
    content: "";
    width: 310px;
    height: 3px;
    position: absolute;
    background-color: #3e6e3e;
}

.textAbout{
    width: 70vw;
    color: #3f3f3f;
    margin: 1.5rem 0;
    font-size: 1.5rem;
}

.find{
    gap: 1rem;
    display: flex;
    color: #f3f3f3;
    align-items: center;
    flex-direction: row-reverse;
    padding: 5rem 5rem 5rem;
    justify-content: center;
    background-color: #072e33;
}

#findUs{
    margin: 0;
}

.copy{
    cursor: pointer;
}

.address{
    display: flex;
    width: 50vw;
    align-items: end;
    flex-direction: column;
    justify-content: center;
}

.address button{
    gap: 1rem;
    border: none;
    display: flex;
    color: white;
    margin-top: 1rem;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.address p{
    text-align: right;
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.address button p{
    margin-top: 0;
}

.map{
    width: 30rem;
    height: 25rem;
    border-radius: 10px;
    box-shadow: 3px 3px 10px black;
}

.contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 7rem 5rem;
    background-color: #05161a;
}

.Content{
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    color: #f3f3f3;
    align-items: center;
    flex-direction: column;
    justify-content: start;
}

#contactUs::after{
    width: 275px;
}

.Content a{    
    color: #f3f3f3;
    text-decoration: none;
}

.contactLink{
    gap: 1rem;
    color: #f3f3f3;
    border: none;
    display: flex;
    cursor: pointer;
    font-size: 24px;
    padding: 1.75rem;
    align-items: center;
    border-radius: 10px;
    justify-content: center;
}

.contactLink img{
    width: 2rem;
    animation: bounce-icons 2s infinite;
}

.qrcode{
    gap: 1rem;
    font-size: 32px;
    justify-content: space-between;
}

.qrcode img{
    width: 16rem;
}

#whatsapp{
    box-shadow: 0px 0px 10px rgb(78, 149, 81);
}

#instagram{
    box-shadow: 0px 0px 10px #aa2b7d;
}

#phone{
    background-color: #05161a;
    box-shadow: 0px 0px 10px #4f82d8;
}

@keyframes bounce-icons {
	0% {
		transform: translateY(0px);
	}
	20% {
		transform: translateY(-10px) scale(0.9, 1.1);
	}
    40%{
        transform: translateY(0px);
    }
    60% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(0px);
	}
}

.notification{
    opacity: 0;
    width: 6rem;
    z-index: 10;
    bottom: 7vh;
    display: none;
    padding: .5rem;
    position: fixed;
    border-radius: 5px;
    visibility: visible;
    align-items: center;
    left: calc(50vw - 3rem);
    justify-content: center;
    background-color: #d6e9f2;
    box-shadow: 2px 2px 10px black;
}

.showNotification{
    display: flex;
    transition: 2s;
    animation: show-notification 3s forwards;
}

@keyframes show-notification {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
    80% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


@media (max-width: 900px) {
    .about::after{
        height: 430px;
    }
    
    .about::before{
        top: 242px;
    }

    .contact{
        flex-direction: column;
    }

    .qrcode{
        margin-top: 2rem;
    }
}

@media (max-width: 860px) {
    .navigation{
        padding: 0.25rem 3rem;
    }

    .about::after{
        right: 1rem;
    }
    
    .about::before{
        right: 1rem;
    }

    .find{
        padding: 6rem 4rem 4rem;
    }

}

@media (max-width: 780px) {
    .navigation{
        padding: 0.25rem 1rem;
    }

    .about{
        padding: 0 5rem 8rem;
    }

    .about::after{
        right: 2rem;
        width: 80px;
        height: 430px;
    }
    
    .about::before{
        top: 262px;
        right: 2rem;
        border-width: 40px 40px 65px 40px;
    }

    .find{
        flex-direction: column;
    }

    .address{
        align-items: center;
    }

    .address p{
        text-align: center;
    }

}

@media (max-width: 680px) {

    .navigation{
        padding: 1rem 1rem;
        flex-direction: column;
    }

    .littleNav{
        display: block;
    }

    .about::after{
        height: 350px;
    }
    
    .about::before{
        top: 182px;
    }

    .textAbout{
        width: 60vw;
        margin: 2rem 0;
        font-size: 1.15rem;
    }

    .background{
        display: flex
    }

    .navSections ul{
        opacity: 0;
        display: none;
        font-size: 30px;
        visibility: hidden;
        margin-bottom: 3rem;
        flex-direction: column;
    }

    .big ul{
        display: flex;
        animation: show-sections 1.5s forwards;
    }

    @keyframes show-sections {
        0% {
            opacity: 0;
            visibility: hidden;
        }
        100% {
            opacity: 1;
            visibility: visible;
        }
    }
}

@media (max-width: 630px) {
    #findUS{
        font-size: 2rem;
    }

    .address{
        width: 70vw;
    }

    .map{
        width: 20rem;
        height: 15rem;
        border-radius: 10px;
        box-shadow: 3px 3px 10px black;
    }

    .contact{
        padding: 3rem 5rem 5rem;
    }

    .contactLink{
        gap: 2rem;
        text-align: center;
        font-size: 20px;
        flex-direction: column;
    }

}

@media (max-width: 500px) {
    .about{
        display: flex;
        align-items: center;
        padding: 0 3rem 3rem;
        flex-direction: column;
        justify-content: center;
    }

    .aboutInfo{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .about::after{
        display: none;
    }

    .about::before{
        display: none;
    }

    .textAbout{
        text-align: center;
        margin-top: 0;
    }
}

@media (max-width: 450px) {
    
    .navigation{
        gap: 1rem;
        align-items: start;
    }

    .navSections{
        width: 100%;
    }

    .title{
        font-size: 2rem;
    }

    .title::after{
        width: 210px;
    }

    .address{
        width: 80vw;
    }

    .contact{
        padding: 3rem 3rem 5rem;
    }

    #contactUs::after{
        width: 185px;
    }

}

@media (max-width: 400px) {
    .title{
        font-size: 2rem;
    }

    .address{
        width: 80vw;
    }
    
    .bar{
        width: 80%;
    }

}
