@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');

/* Main */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;
}
section {
    height: 100vh;
    color: #fff;
    scroll-snap-align: start;
    padding-top: 100px;
}
.wrapper {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}
.container {
    width: 90%;
    margin: 0 auto;
}
.left {
    float: left;
    width: 50%;
}
.right {
    float: right;
    width: 50%;
}

.mobile-card {
    display: none;
}

/* Scroll Spy */
.navbar-link:hover,
section#home:hover ~ .navbar-link[href="#home"],
section#info:hover ~ .navbar-link[href="#info"],
section#contact:hover ~ .navbar-link[href="#contact"] {
    background: rgb(34, 34, 34);
}

/* Navigation */
#navbar {
    --navbar-height: 80px;
    position: fixed;
    height: var(--navbar-height);
    background-color: #000;
    left: 0;
    right: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: .2s;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}
.navbar-item {
    margin: 0.4em;
    width: 100%;
}
.home-link,
.navbar-link {
    color: #fff;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    transition: background-color 0.2s ease-in-out,
                color 0.2s ease-in-out;
}
.navbar-link {
    justify-content: center;
    width: 100%;
    padding: 100% 0.8em;
    border-radius: 5px;
}
.navbar-logo {
    width: 110px;
    height: inherit;
    margin-right: 0.5em;
}
.navbar-toggle {
    cursor: pointer;
    border: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.icon-bar {
    display: block;
    width: 25px;
    height: 4px;
    margin: 2px;
    transition: background-color 0.2s ease-in-out,
                transform 0.2s ease-in-out,
                opacity 0.2s ease-in-out;
    background-color: #fff;
    border-radius: 40px;
}
#navbar.opened .navbar-toggle .icon-bar:first-child,
#navbar.opened .navbar-toggle .icon-bar:last-child {
    position: absolute;
    margin: 0;
    width: 30px;
}
#navbar.opened .navbar-toggle .icon-bar:first-child {
    transform: rotate(45deg);
}
#navbar.opened .navbar-toggle .icon-bar:nth-child(2) {
    opacity: 0;
}
#navbar.opened .navbar-toggle .icon-bar:last-child {
    transform: rotate(-45deg);
}
.navbar-menu {
    position: fixed;
    top: var(--navbar-height);
    bottom: 0;
    transition: opacity 0.2s ease-in-out,
                visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
}
#navbar.opened .navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
}
.navbar-links {
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    position: absolute;
    background-color: var(--navbar-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    margin: 1.4rem;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#navbar.opened .navbar-links {
    padding: 1em;
    max-height: none;
}
/* Navigation Mobile */
@media screen and (min-width: 700px) {
    .navbar-toggle {
        display: none;
    }
    #navbar .navbar-menu,
    #navbar.opened .navbar-menu {
        visibility: visible;
        opacity: 1;
        position: static;
        display: block;
        height: 100%;
    }
    #navbar .navbar-links,
    #navbar.opened .navbar-links {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        flex-direction: row;
        list-style-type: none;
        max-height: max-content;
        width: 100%;
        height: 100%;
    }
    #navbar .navbar-link:last-child {
        margin-right: 0;
    }
}
@media screen and (max-width: 768px) {
    .navbar-links {
        background: #000;
        border-radius: 20px;
    }
    .navbar-link {
        padding: 0.4em 0.8em!important;
    }
}

.hero {
    width: 100%;
}
.hero img {
    width: 100%;
    height: 100vh;
}

.one {
    background: url('./img/background-2.jpg');
    background-size: cover;
    /* background: #fff; */
    color: #000;
    align-items: center;
    justify-content: center;
    display: flex;
    padding-top: 0;
}
.two {
    background: #fff;
    color: #000;
}
.three {
    background: url('./img/background-3.jpg');
    background-size: cover;
    align-items: center;
    display: flex;
}

.one img, .two img {
    width: 90%;
    height: inherit;
    border-radius: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.two img {
    float: right;
    margin-top: 130px;
}

.contact {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 35px;
    width: 90%;
    margin: 0 auto;
    height: auto;
    color: #000;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.mapouter {
    width: 600px!important;
    height: 500px!important;
}

.gmap_canvas {
    border-top-left-radius: 35px;
    border-bottom-left-radius: 35px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    float: left;
    width: 600px!important;
    height: 500px!important;
}
.call-to-action {
    float: right;
    text-align: left;
    width: 100%;
    margin: 0 auto;
}
.local, .global {
    padding: 15px;
    background: #efefef;
    width: 90%;
    margin: 0 auto;
    border-radius: 13px;
    text-align: center;
}
.global-home {
    padding: 15px;
    background: #59aed4;
    color: #fff;
    border-radius: 13px;
    text-align: center;
    width: 40%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.call-to-action-home a {
    text-decoration: none;
    color: #000;
}
.contact-text {
    width: 87%;
    margin: 0 auto;
}

.copyright {
    text-align: center;
    margin-top: 35px;
}

.stripe {
    margin-top: -50px;
}
.spacer-sm {
    height: 10px;
    width: 100%;
}

/* Mobile Version */
@media screen and (max-width: 1024px) {
    .one img, .two img {
        width: 90%;
        margin-top: 50px;
    }
    .two img {
        margin-top: 180px;
    }
    .contact {
        width: 100%;
    }
}
@media screen and (max-width: 840px) {
    .home-left {
        display: none;
    }
    .home-right {
        width: 100%;
    }
    .info-left {
        width: 100%;
    }
    .info-right {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .left, .right {
        float: none;
        width: 100%;
    }
    .home-left {
        display: unset;
        order: 2;
    }
    .home-right {
        order: 1; 
    }
    .normal-card {
        display: none;
    }
    .one img {
        width: 50%;
        margin-bottom: 25px;
    }
    .mobile-card {
        display: unset;
    }
    .contact {
        display: unset;
    }
    .call-to-action {
        margin-bottom: 20px;
        background: #fff;
        padding: 20px 0px;
        border-radius: 20px;
    }
    .mapouter, .gmap_canvas {
        width: 450px!important;
    }
}
@media screen and (max-width: 500px) {
    .one img {
        width: 80%;
    }
    .call-to-action-home {
        margin-bottom: 20px;
    }
    .mapouter {
        width: 450px!important;
        height: 100%!important;
    }
    
    .gmap_canvas {
        width: 450px!important;
        height: 100%!important;
    }
}
@media screen and (max-width: 375px) {
    .one img, .two img {
        width: 100%;
        margin-bottom: 20px;
    }
    .stripe {
        margin-top: -40px;
    }
    .two {
        height: 150vh;
    }
    .two img {
        margin-top: 25px;
    }
    .three .container {
        width: 95%;
    }
    .gmap_canvas {
        border-radius: 0;
        width: 100%;
    }
    .mapouter {
        text-align: inherit;
    }
    .normal-card {
        display: none;
    }
    .call-to-action {
        margin-top: -70px;
        margin-bottom: 40px;
        background: #fff;
        padding: 20px 0px;
        border-radius: 20px;
    }
    .copyright {
        margin-top: 230px;
    }
}