*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
    color: black;
}
body{
    background-color: rgb(255, 255, 255);
}
/* HEADING */


/* MAIN */
.intro-strip{
    position: relative;
}
.intro-strip img{
    max-width: 100%;
}
.intro-strip h1{
    text-align: center;
    position: absolute;
    color: whitesmoke;
    z-index: 1;
    top: 50px;
    left: 50%;
    width: 800px;
    font-size: 70px;
    transform: translateX(-50%);
}
/* Main Strip */

.galleryContainer{
    position: relative;
    margin: 0 auto;
    width: 1200px;
    height: 500px;
    max-width: 100%;
    user-select: none;
    box-sizing: border-box;
}
.galleryContainer .slideShowContainer{
    width: 100%;
    height: 90%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    position: relative;
}
.galleryContainer .slideShowContainer .imageHolder{
    width: 50%;
    height: 100%;
    position: absolute;
    opacity: 0;
}
.galleryContainer .slideShowContainer .imageHolder img{
    width: 100%;
    height: 100%;
}
.galleryContainer .slideShowContainer .imageHolder .captionText{
    display: none;
}

.galleryContainer .slideShowContainer .leftArrow,.galleryContainer .slideShowContainer .rightArrow{
    width: 50px;
    background: #00000036;
    position: absolute;
    left: 0;
    z-index: 1;
    transition: background 0.3s;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;

}
.galleryContainer .slideShowContainer .leftArrow{
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.galleryContainer .slideShowContainer .rightArrow{

    display: flex;
    justify-content: center;
    align-items: center;
    left: auto;
    z-index: 2;
    right: 0;
    border-radius: 50%;
}
.arrowLeft{
    position: absolute;
    right: 17px;
}
.arrowRight{
    position: absolute;
    left: 17px;
}
.galleryContainer .slideShowContainer .leftArrow:hover,.galleryContainer .slideShowContainer .rightArrow:hover{
    background: #000000a8;
    cursor: pointer;
}
.galleryContainer span{
    display: flex;
    justify-content: center;
    align-items: center;
}
.galleryContainer i{
    font-size: 30px;
    color: rgba(255, 255, 255, 0.658);
}

.galleryContainer .slideShowContainer>.captionTextHolder{
    position: absolute;
    bottom: 0;
    z-index: 1;
    color: #2c2c2c;
    font-family: sans-serif;
    font-size: 20px;
    text-align: center;
    width: 50%;
    background: #00000000;
    height: 100%;
    line-height: 50px;
    overflow: hidden;
    right: 0;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText1{
    margin-top: -1000px;
    color: #004666e8;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText2{
    margin: 0 50px;
    margin-top: -1000px;
    line-height: 27px;
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText3{
    display: inline-block;
    margin-top: -1000px;
    position: relative;
    border: 1px solid #2c2c2c;
    border-radius: 25px;
    width: 150px;
    margin: 0 auto;
    background-color: rgb(238, 238, 238);
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText3:hover{
background-color: rgb(206, 206, 206);
}
.galleryContainer .slideShowContainer>.captionTextHolder>.captionText3:active{
    background-color: rgb(247, 247, 247);
    }

.galleryContainer #dotsContainer{
    width: 100%;
    height: 10%;
    text-align: center;
    padding-top: 20px;
    box-sizing: border-box;
}
.galleryContainer #dotsContainer .dots{
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    background-color: #bbb;
    cursor: pointer;
    transition:background-color 0.5s;
}
.galleryContainer #dotsContainer .dots:first-child{
    margin-left: 0;
}
.galleryContainer #dotsContainer .dots:hover,.galleryContainer #dotsContainer .dots.active{
    background-color: #717171;;
}
.galleryContainer .moveLeftCurrentSlide{
    animation-name: moveLeftCurrent;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;

}
.galleryContainer .moveLeftNextSlide{
    animation-name: moveLeftNext;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
}
@keyframes moveLeftCurrent {
    from {margin-left: 0;opacity: 1;}
    to {margin-left: -100%;opacity: 1;}
}
@keyframes moveLeftNext {
    from {margin-left: 100%;opacity: 1;}
    to {margin-left: 0%;opacity: 1;}
}


.galleryContainer .moveRightCurrentSlide{
    animation-name: moveRightCurrent;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
}
.galleryContainer .moveRightPrevSlide{
    animation-name: moveRightPrev;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode:forwards;
}
@keyframes moveRightCurrent {
    from {margin-left: 0;opacity: 1;}
    to {margin-left: 100%;opacity: 1;}
}
@keyframes moveRightPrev {
    from {margin-left: -100%;opacity: 1;}
    to {margin-left: 0%;opacity: 1;}
}
.slideTextFromBottom {
    animation-name: slideTextFromBottom;
    animation-duration: 1s;
    animation-delay: 0.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}
@keyframes slideTextFromBottom {
    from {opacity: 0;margin-top: 100px}
    to {opacity: 1;margin-top: 45px;}
}
.slideTextFromTop {
    animation-name: slideTextFromTop;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}
@keyframes slideTextFromTop {
    from {opacity: 0;margin-top: -500px}
    to {opacity: 1;margin-top: 45px;}
}
.outro-strip{
    display: flex;
}
.outro1{
    height: 65px;
    display: flex;
    width: 33.3%;
    border-left: 2px solid black;
    justify-content: center;
    align-items: center;
    background-color: #004666c4;
}
.outro-strip i{
    margin-right: 30px;
    font-size: 36px;
    color: #e2e2e2;
}
.outro1:first-child{
    border-left: none;
}
.outro-strip p{
    font-size: 20px;
    color: #e4e4e4;
}

/* Mobile Strip */

.mobileGallery{
    display: none;
}

.mobileGallery div{
    height: 330px;
}
.mobileGallery h1{
    text-align: center;
    padding: 30px 0;
}
.mobileGallery p{
    margin: 0 10px;
    line-height: 25px;
    text-align: center;
}
.mobileGallery p:last-of-type{
    font-size: 18px;
    display: inline-block;
    position: absolute;
    border: 1px solid #005279;
    border-radius: 25px;
    width: 140px;
    margin: 0 auto;
    color: #013e5a;
    font-weight: 600;
    background-color: rgb(238, 238, 238);
    margin: 30px 0;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.mobileGallery .m1{
    background-color: #00466677;
}
.mobileGallery .m1 h1, .m1 p:first-of-type{
color: whitesmoke;
}
.mobileGallery .m2{
    background-color: #e0e0e027;
}
.mobileGallery .m3{
    background-color: #00466677;
}
.mobileGallery .m3 h1, .m3 p:first-of-type{
    color: whitesmoke;
    }
.mobileGallery .m4{
    background-color: #e0e0e027;
}

/* Footer */
footer{
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 250px;
    height: auto;
    background-color: rgb(240, 240, 240);
}

#navbar-logo {
    max-width: 250px !important;
    margin-left: 50px;
}

#footer-logo {
    max-width: 350px !important;
    margin-left: 50px;
}

@media screen and (max-width: 685px){
    footer {
        min-height: 350px;
    }
    #navbar-logo {
        margin-left: 0px;
    }
    
    #footer-logo {
        margin-left: 0px;
    }
}


#contact{
width: 33.3%;
}

#footer-container{
    margin: 0 40px;
    position: relative;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
#logo-footer p{
    font-size: 40px;
    color: gray;
}
.copyright{
    position: absolute;
    display: block;
    height: 20px;
    width: 100%;
    color: rgb(136, 136, 136);
    background-color: rgb(70, 70, 70);
    bottom: 0px;
}
.copyright p{
    text-align: center;
    color: white;
    background-color: #666;
}