body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.call-us {
    position: fixed;
    right: 20px;
    top: 50%;
    width: 60px;
    height: 60px;
    background: #5db567;
    border-radius: 50%;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.call-us a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.call-us i {
    color: #fff;
    font-size: 20px;
}

/* NAV */
.navigation {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.hamburger-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.hamburger--emphatic .hamburger-inner {
    transition: none;
}

.hamburger-menu .hamburger-inner, .hamburger-menu .hamburger-inner:after, .hamburger-menu .hamburger-inner:before {
    background-color: #fff;
}

.hamburger-black .hamburger-inner, .hamburger-black .hamburger-inner:after, .hamburger-black .hamburger-inner:before {
    background-color: #000;
}

.nav-wrapper {
    margin: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-fixed {
    position: fixed;
    background-color: #fff;
    animation: slide-down 0.7s;
    box-shadow: 0px 3px 3px rgba(1, 1, 1, 0.3);
}

.nav-fixed .nav-wrapper {
    margin: 0 50px;
}

@-webkit-keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@-moz-keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.nav-fixed .nav-wrapper .logo img {
    width: 150px;
}

.nav-fixed .nav-wrapper ul li a {
    color: #000;
}

.nav-wrapper .logo img {
    width: 200px;
}

.nav-wrapper ul {
    display: flex;
    margin-bottom: 0;
}

.nav-wrapper ul li {
    list-style: none;
    margin: 0 50px;
}

.nav-wrapper ul li:last-child {
    margin-right: 0;
}

.nav-wrapper ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 5px;
    font-size: 0.9rem;
}

.nav-wrapper ul li a:hover {
    border-bottom: 3px solid #d43a3a;
}

.anchor-active {
    border-bottom: 3px solid #d43a3a;
}

.contact-info {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
}

.contact-info i {
    margin: 0 20px;
    font-size: 20px;
}

.contact-info .nav-phone {
    color: #5db567;
}

.contact-info .nav-mail {
    color: #f48639;
}

/*MAIN PAGE*/

.full-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/1.jpg");*/
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.85)), url("../images/1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.full-page .title h1 {
    color: #5db567;
    font-size: 3.5rem;
    text-align: center;
    margin: 0;
    font-weight: 800;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.8);
}

.full-page .title p {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 0;
    font-weight: 600;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
}

.full-page .buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.full-page .buttons a {
    margin: 0 25px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    padding: 10px 25px;
    border-radius: 10px;
    transition: 0.5s;
    text-shadow: 1px 1px 1px rgba(1, 1, 1, 0.7);
}

.full-page .buttons a:first-child {
    background-color: #fae04b;
    border: 2px solid #fae04b;
}

.full-page .buttons a:first-child:hover {
    background-color: transparent;
    color: #fae04b;
}

.full-page .buttons a:last-child {
    background-color: #d43a3a;
    border: 2px solid #d43a3a;
}

.full-page .buttons a:last-child:hover {
    background-color: transparent;
    color: #d43a3a;
}

.coming-soon .buttons {
    display: block;
}

.coming-soon .message {
    background-color: rgba(0 0 0/ 70%);
    padding: 25px;
    border-radius: 8px;
    text-shadow: 1px 1px 1px rgba(1, 1, 1, 0.7);
    border: 2px solid #fff;
    box-shadow: 0 3px 6px rgba(0 0 0 / 30%);

}

.coming-soon .message p {
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.coming-soon .message p:last-child {
    margin-bottom: 0;
}

.coming-soon .buttons .review {
    display: flex;
}

.coming-soon .buttons .review a {
    background-color: #d43a3a;
    box-shadow: 0 3px 6px rgba(0 0 0 / 30%);
    padding: 12px 50px;
    border-radius: 8px;
    text-shadow: 1px 1px 1px rgba(1, 1, 1, 0.7);
    margin: 50px auto;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    border: 2px solid #d43a3a;
    font-size: 1rem;
}

.coming-soon .buttons .review a:hover {
    background-color: transparent;
    color: #d43a3a;
}

.page-section {
    padding: 100px 0;
}

.title-section {
    text-align: center;
}

.title-section h1 {
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
    padding-bottom: 10px;
}

#about-us {
    position: relative;
}

.asset img {
    position: absolute;
    width: 35%;
    z-index: -1;
}

.top-left img {
    top: 25px;
    left: 25px;
}

.bottom-right img {
    bottom: 25px;
    right: 25px;
}

#about-us .title-section h1 {
    border-bottom: 5px solid #5db567;
}

.information {
    margin-top: 100px;
    z-index: 1;
    position: relative;
}

.information p {
    margin-bottom: 0;
}

.flex-center {
    display: flex;
    align-items: center;
}

.grey {
    background-color: #f2f2f2;
}

.shape-wrapper {
    position: relative;
}

.shape {
    width: 400px;
    height: 0;
}

.shape i {
    position: absolute;
    font-size: 100px;
    color: #fff;
}

.about .shape i, .steps .shape i {
    top: 50%;
    left: 35%;
    transform: translate(-35%, -50%);
}

.services .shape i, .bags .shape i {
    top: 50%;
    left: 65%;
    transform: translate(-65%, -50%);
}


.about .shape {
    border-bottom: 250px solid #5db567;
    border-right: 150px solid transparent;
}

.services .shape {
    border-bottom: 250px solid #d43a3a;
    border-left: 150px solid transparent;
}

.steps .shape {
    border-bottom: 250px solid #fae04b;
    border-right: 150px solid transparent;
}

.bags .shape {
    border-bottom: 250px solid #f48639;
    border-left: 150px solid transparent;
}

.content {
    padding: 0 25px;
}

.content h2 {
    font-weight: 700;
}

#gallery {
    background-image: url("../images/gallery-background.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

#gallery .title-section h1 {
    border-bottom: 5px solid #d43a3a;
}

.gallery {
    position: relative;
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.image-asset img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.gallery .box {
    height: 250px;
}

.gallery .box a {
    width: 100%;
}

.gallery .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#contact .title-section h1 {
    border-bottom: 5px solid #fae04b;
}

.contact-box {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-column-gap: 100px;
}

.contact-form h4 {
    font-weight: 700;
    margin-bottom: 50px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form .name-email {
    display: grid;
    grid-template-columns: auto auto;
    grid-column-gap: 20px;
}

.contact-form input, .contact-form textarea {
    background-color: #f2f2f2;
    border: none;
    box-shadow: 1px 1px 3px rgba(1, 1, 1, 0.3);
}

.info {
    margin-top: 50px;
}

.box {
    display: flex;
}

.box i {
    font-size: 20px;
    margin-right: 10px;
}

.box a {
    color: #000;
}

.box h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.location i {
    color: #d43a3a;
}

.phone i {
    color: #5db567;
}

.mail i {
    color: #f48639;
}


#map iframe {
    width: 500px;
    height: 100%;
}

.is-invalid {
    border-color: #e74a3b;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e74a3b' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e74a3b' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #e74a3b;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 50px;
    background-color: #5db567;
    color: #fff;
    text-align: center;
}

.footer a {
    color: #fff;
}

.footer p {
    margin-bottom: 0;
}

/*COOKIES*/
#cookies {
    padding: 100px 0;
}

#cookies .back-to-home {
    margin-bottom: 50px;
}

#cookies .back-to-home a {
    color: #000;
}

#cookies h1 {
    text-align: center;
    margin-bottom: 50px;
}

#cookies .bold {
    font-weight: 700;
}

@media screen and (min-width: 2560px) {
    .nav-wrapper .logo img {
        width: 250px;
    }

    .nav-wrapper ul li a {
        font-size: 1.2rem;
    }

    .nav-fixed .nav-wrapper .logo img {
        width: 200px;
    }

    .full-page .title h1 {
        font-size: 4.5rem;
    }

    .full-page .title p {
        font-size: 1.8rem;
    }

    .full-page .buttons a {
        font-size: 1.3rem;
    }

    .title-section h1 {
        font-size: 3rem;
    }

    .container {
        max-width: 1300px;
    }

    .content {
        width: 100%;
    }

    .asset img {
        width: 30%;
    }

    h2 {
        font-size: 2.3rem;
    }

    .information p {
        font-size: 1.2rem;
    }

    .gallery .box {
        height: 300px;
    }

    h4 {
        font-size: 2rem;
    }

    .contact-form label, .btn {
        font-size: 1.2rem;
    }

    .box h4 {
        font-size: 1.5rem;
    }

    p, .footer a {
        font-size: 1.2rem;
    }

    .box i {
        font-size: 25px;
    }
}

@media screen and (max-width: 1500px) {
    .nav-wrapper .logo img {
        width: 180px;
    }

    .nav-wrapper ul li {
        list-style: none;
        margin: 0 40px;
    }

    .nav-fixed .nav-wrapper .logo img {
        width: 130px;
    }

    .full-page .title h1 {
        font-size: 3rem;
    }

    .full-page .title p {
        font-size: 1.2rem;
    }

    .full-page .buttons a {
        font-size: 0.9rem;
    }

    .title-section h1 {
        font-size: 2.3rem;
    }

    .top-left img {
        top: 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    .shape {
        width: 350px;
    }

    .shape i {
        font-size: 80px;
    }
}

@media screen and (max-width: 1200px) {
    .asset img {
        width: 45%;
    }

    .gallery .box {
        height: 230px;
    }

    .contact-box {
        grid-column-gap: 50px;
    }

    #map iframe {
        width: 450px;
        height: 100%;
    }
}

@media screen and (max-width: 992px) {
    .page-section, #cookies {
        padding: 50px 0;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        flex-wrap: wrap;
        margin: 0;
        transition: 0.5s;
        height: 100vh;
        width: 300px;
        left: -300px;
        background-color: #fff;
        box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-active {
        left: 0;
    }

    .nav-wrapper .logo {
        width: 100%;
    }

    .nav-wrapper .logo img {
        width: 220px;
        display: block;
        margin: auto;
    }

    .nav-wrapper ul {
        display: block;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .nav-wrapper ul li {
        margin: 50px 0;
        text-align: center;
    }

    .nav-wrapper ul li:first-child {
        margin-top: 0;
    }

    .nav-wrapper ul li:last-child {
        margin-bottom: 0;
    }

    .nav-wrapper ul li a {
        color: #000;
    }

    .contact-info {
        display: flex;
    }

    .asset {
        display: none;
    }

    .gallery {
        grid-template-columns: repeat(2, auto);
    }

    .contact-box {
        margin-top: 100px;
        grid-template-columns: auto;
        grid-column-gap: initial;
    }

    #map {
        margin-top: 25px;
    }

    #map iframe {
        width: 100%;
        height: 90vh;
    }
}

@media screen and (max-width: 768px) {
    .coming-soon .message {
        width: 75%;
        margin: auto;
    }

    .coming-soon .buttons .review a {
        width: 75%;
        text-align: center;
    }

    .flex-center {
        flex-wrap: wrap;
        background-color: #f2f2f2;
        margin: 50px auto;
        height: 500px;
        width: 400px;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    }

    .services, .bags {
        flex-direction: column-reverse;
    }

    .shape-wrapper {
        width: 100%;
        height: 100%;
    }

    .shape {
        display: flex;
        justify-content: center;
        padding: 0;
        width: 100%;
        text-align: center;
        position: relative;
        height: 100%;
        clip-path: circle(230px at center 0);
        border-bottom: initial !important;
        border-right: initial !important;
        border-left: initial !important;
        border-top: initial !important;
    }

    .about .shape {
        background-color: #5db567;
    }

    .services .shape {
        background-color: #d43a3a;
    }

    .steps .shape {
        background-color: #fae04b;
    }

    .bags .shape {
        background-color: #f48639;
    }

    .shape i {
        position: relative;
        left: initial !important;
        top: initial !important;
        right: initial !important;
        border-bottom: initial !important;
        transform: initial !important;
        font-size: 80px;
        padding: 70px 0;
        z-index: 3;
    }

    .content {
        padding: 0 25px;
        text-align: center;
        position: absolute;
        top: 60%;
        transform: translateY(-10%);
    }

    .gallery .box {
        height: 180px;
    }

    .footer {
        padding: 10px 25px;
    }

    .footer p, .footer a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 500px) {
    .call-us {
        top: 15px;
        width: 50px;
        height: 50px;
    }

    .call-us i {
        font-size: 18px;
    }

    .nav-wrapper .logo img {
        width: 200px;
    }

    .nav-wrapper ul li {
        margin: 40px 0;
    }

    .nav-wrapper ul li a {
        font-size: 0.8rem;
    }

    .full-page .title h1 {
        font-size: 2.5rem;
    }

    .full-page .title p {
        font-size: 1rem;
    }

    .full-page .buttons a {
        font-size: 0.7rem;
        padding: 8px 20px;
    }

    .full-page .buttons a {
        margin: 0 10px;
    }

    .title-section h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p,
    .coming-soon .buttons .review a {
        font-size: 0.9rem;
    }

    .flex-center {
        height: 450px;
        width: 300px;
    }

    .shape {
        clip-path: circle(200px at center 0);
    }

    .shape i {
        font-size: 70px;
        padding: 60px 0;
    }

    .information {
        margin-top: 50px;
    }

    .gallery {
        grid-template-columns: repeat(1, auto);
        margin-top: 50px;
    }

    .gallery .box {
        height: 250px;
    }

    .contact-box {
        margin-top: 50px;
    }

    .contact-form .name-email {
        grid-template-columns: auto;
        grid-column-gap: initial;
    }

    label, .btn {
        font-size: 0.9rem;
    }

    .box h4 {
        font-size: 1rem;
    }

    .box i {
        font-size: 18px;
    }

    .footer p, .footer a {
        font-size: 0.8rem;
    }

    #cookies h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 400px) {
    .footer p {
        margin-bottom: 5px;
    }

    .footer p, .footer a {
        width: 100%;
    }
}
