/* scrolling container */

.container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    overflow-x: hidden;
}


/* slide container */

.slideContainer {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    scroll-snap-align: start;
}


/* slide animation */

.overlay {
    background-color: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

@keyframes fade {
    0% {
        opacity: 1;
    }
    20% {
        opacity: 0;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    animation: fade 15s ease-in-out infinite alternate;
}

#slide1 {
    animation-delay: 0s;
}

#slide2 {
    animation-delay: 3s;
}

#slide3 {
    animation-delay: 6s;
}

#slide4 {
    animation-delay: 9s;
}

#slide5 {
    animation-delay: 12s;
}


/* Landing heading */

.landingHeading {
    font-size: 60px;
    font-weight: 400;
    color: white;
    position: relative;
    z-index: 100;
    text-align: center;
    max-width: 80%;
    margin: auto;
    border-right: 2px solid white;
    border-left: 2px solid white;
}

.topBorder {
    border-top: 2px solid;
    border-image: linear-gradient(to right, #ffffff 33%, transparent 33%) 100% 1;
    padding-left: 1vw;
}

.bottomBorder {
    border-bottom: 2px solid;
    border-image: linear-gradient(to left, #ffffff 33%, transparent 33%) 100% 1;
    padding-right: 1vw;
}


/* Our mission page */

.mission {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    background-color: rgb(255, 255, 255);
}

.missionHeading {
    color: #000;
    font-size: 40px;
    text-align: center;
    padding-top: 4vh;
}

.missionHeading2 {
    color: #000;
    font-size: 30px;
    text-align: center;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

.design {
    width: 70%;
    height: 100%;
    float: left;
}

.pic1 {
    width: 68vw;
    height: 68vh;
}

.stores {
    width: 30%;
    height: 100%;
    float: right;
}

.pic2 {
    width: 29vw;
    height: 68vh;
}


/* About us page */

.aboutUs {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    background-color: rgb(0, 0, 0);
}

.aboutUsHeading {
    font-size: 50px;
    color: white;
    text-align: center;
    max-width: 80%;
    margin: auto;
    padding-top: 5vh;
}

.aboutUsHeading2 {
    color: #fff;
    font-size: 25px;
    text-align: center;
    padding-top: 3vh;
    padding-left: 23vw;
    padding-right: 23vw;
    padding-bottom: 3vh;
}

.pic3 {
    width: 99vw;
    height: 64vh;
}

.aboutUsContainer {
    position: relative;
}

.aboutUsCaption {
    font-size: 35px;
    background-color: rgba(30, 171, 236, 0.699);
    color: white;
    position: absolute;
    z-index: 100;
    text-align: center;
    left: 35vw;
    top: 32vh;
    max-width: 80%;
    margin: auto;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-top: 1%;
    padding-bottom: 1%;
}


/* contacts */

.contacts {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    background-color: rgb(0, 0, 0);
}

.slideContainer {
    position: relative;
}

#contacts>div {
    float: left;
    width: 50%;
    height: 50%;
}

.imageContainer>i {
    display: flex;
}

.icon>a {
    padding-top: 20px;
    padding-left: 10px;
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.imageContainer>img {
    width: 50vw;
    height: 50vh;
}

.imageContainer .icon {
    position: relative;
    font-size: 25px;
    top: -50%;
    left: 35%;
    color: white;
}


/* responsivness */

@media screen and (max-width: 576px) {
    /* navbar */
    .navbar {
        display: none;
    }
    /* landing */
    .container {
        height: auto;
    }
    .slideContainer {
        height: 35vh;
    }
    .overlay {
        height: 35vh;
    }
    .slide {
        height: 35vh;
    }
    .landingHeading {
        font-size: 20px;
    }
    /*mission */
    .mission {
        height: 100%;
    }
    .missionHeading {
        font-size: 20px;
        padding-top: 1vh;
    }
    .missionHeading2 {
        font-size: 18px;
        padding-top: 0%;
    }
    .design {
        float: none;
        width: 100%;
    }
    .pic1 {
        width: 100vw;
        height: 50vh;
    }
    .stores {
        float: none;
        width: 100%;
    }
    .pic2 {
        width: 100vw;
        height: 50vh;
        padding-top: 2vh;
    }
    /* about us */
    .aboutUs {
        margin-top: 2vh;
        height: auto;
    }
    .aboutUsHeading {
        font-size: 20px;
        padding-top: 2vh;
    }
    .aboutUsHeading2 {
        font-size: 18px;
        padding-left: 4vw;
        padding-right: 4vw;
        padding-top: 2ch;
    }
    .pic3 {
        width: 100%;
        height: 28vh;
    }
    .aboutUsCaption {
        font-size: 24px;
        left: 22vw;
        top: 15vh;
        padding-top: 1vh;
        padding-bottom: 1vh;
    }
    /* contacts */
    .imageContainer {
        float: none !important;
        width: 100% !important;
        height: 25vh !important;
    }
    .imageContainer>img {
        width: 100%;
        height: 25vh;
    }
    .icon>a {
        font-weight: 300;
        padding-left: 0%;
        padding-top: 10px;
    }
    /* footer */
    .footer {
        display: none;
    }
}