.slideContainer {
    display: none;
}

.landingContainer {
    position: relative;
    text-align: center;
    color: white;
}

.landingContainer>img {
    width: 100%;
    height: 100vh;
}

.landingHeading {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    border-right: 2px solid white;
    border-left: 2px solid white;
    font-size: 60px;
}

.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;
}

.topContainerText>h1 {
    font-size: 45px;
    padding-top: 5vh;
    padding-bottom: 2vh;
    padding-left: 4vw;
}

h1>span {
    color: white;
    background-color: rgba(28, 160, 208, 255);
    border-radius: 100%;
    display: inline;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 10px
}

.topContainerText>h2 {
    font-size: 30px;
    padding-left: 4vw;
    padding-bottom: 5vh;
}

.topContainer {
    display: flex;
    width: 100%;
    height: 100vh;
}

.buttomContainer {
    display: flex;
    width: 100%;
    height: 55vh;
}

.topLeftContainer {
    width: 65vw;
    height: 100%;
}

.topRightContainer {
    width: 35vw;
    height: 100%;
}

.buttomLeftContainer {
    width: 65vw;
    height: 100%;
}

.buttomRightContainer {
    width: 35vw;
    height: 100%;
}

.topContainerPics {
    display: flex;
}

.topLeftPic>img {
    padding-left: 2vw;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    width: 32vw;
    height: 50vh;
}

.topMiddlePic>img {
    padding-left: 1vw;
    border-top-right-radius: 40%;
    border-top-left-radius: 40%;
    border-bottom-left-radius: 40%;
    width: 32vw;
    height: 50vh;
}

.topRightPic>img {
    padding-top: 5vh;
    padding-left: 1vw;
    border-top-right-radius: 33%;
    width: 33vw;
    height: 96vh;
}

.buttomLeftPic>img {
    padding-left: 2vw;
    border-top-left-radius: 25%;
    border-bottom-left-radius: 25%;
    border-bottom-right-radius: 25%;
    width: 64vw;
    height: 50vh;
}

.buttomRightPic>img {
    padding-left: 1vw;
    width: 33vw;
    height: 50vh;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}


/* responsivness */

@media screen and (max-width: 576px) {
    .landingContainer {
        display: none;
    }
    /* slide container */
    .slideContainer {
        width: 100%;
        height: 35vh;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        scroll-snap-align: start;
    }
    /* slide animation */
    .overlay {
        background-color: rgba(0, 0, 0, 0.3);
        height: 35vh;
        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: 35vh;
        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 */
    .landingHeading2 {
        font-size: 20px;
        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;
    }
    h1>span {
        height: 8vh;
        width: 18vw;
    }
    .topContainer {
        display: block;
        height: auto;
    }
    .topLeftContainer {
        width: 100vw;
    }
    .topContainerText>h1 {
        font-size: 30px;
    }
    .topContainerText>h2 {
        padding-right: 4vw;
        font-size: 20px;
        padding-bottom: 2vh;
    }
    .topLeftPic>img {
        width: 40vw;
        height: 22vh;
        padding-left: 4vw;
    }
    .topMiddlePic>img {
        width: 52vw;
        height: 22vh;
    }
    .topRightPic>img {
        padding-top: 2vh;
        padding-left: 4vw;
        width: 92vw;
        height: auto;
    }
    .buttomContainer {
        display: block;
        height: auto;
    }
    .buttomLeftPic>img {
        padding-left: 4vw;
        padding-top: 2vh;
        width: 92vw;
        height: auto;
    }
    .buttomRightPic>img {
        padding-left: 4vw;
        padding-top: 2vh;
        padding-bottom: 2vh;
        width: 92vw;
        height: auto;
    }
}