/* --------------- start landing */

.headImage {
    width: 100%;
    max-height: 24vh;
    object-fit: cover;
    margin-top: 2vh;
}

.slideshow {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 712px;
}

.slideshow img {
    display: block;
    width: 100%;
    height: 712px;
    object-fit: cover;
    margin: auto;
    position: relative;
    transition: all 0.35s ease-in-out;
    position: absolute;
    right: 100vw;
}
.slideshow i {
    position: absolute;
    top: calc(50% - 20px);
    font-size: 22px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a1a1a18c;
    cursor: pointer;
    color: #4b4b4b;
}
.slideshow .fa-chevron-right {
    right: 0.7rem;
}
.slideshow .fa-chevron-left {
    left: 0.7rem;
}
/* slideshow end */
.about {
    display: flex;
    margin: 18vh 8%;
}
.about p {
    max-width: 50vw;
    text-align: justify;
    padding-left: 4vw;
    padding-bottom: 10px;
}
.about h1 {
    margin-bottom: 1rem;
}
.about img,
.about video {
    border-radius: 0.6rem;
    object-fit: cover;
    box-shadow: 0px 0px 10px 2px #828282;
    width: 46%;
}
/* ---------items start */
.items {
    display: flex;
    padding: 5vh 16vw;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    justify-content: space-around;
}
.items a {
    transition: all 0.35s ease-in-out;
}
.items a:first-child:hover img,
.items a:last-child:hover img {
    transform: scale(1.3);
    padding-bottom: 0.5rem;
}
.items a:nth-child(2):hover img {
    transform: scale(1.15);
    filter: drop-shadow(0px 2px 2px #133c43);
}
.items a:hover p {
    margin-top: 2rem;
}
.items img {
    transition: all 0.35s ease-in-out;
}
.items p {
    transition: all 0.35s ease-in-out;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 1rem;
}
/* ---------items end */
@media only screen and (max-width: 1600px) {
    .items img {
        width: 380px;
    }
    .items a:last-child img,
    .items a:first-child img {
        width: 180px;
    }
}
@media only screen and (max-width: 1200px) {
    .items img {
        width: 310px;
    }
    .items a:last-child img,
    .items a:first-child img {
        width: 140px;
    }
}
@media only screen and (max-width: 920px) {
    .items {
        flex-direction: column;
    }
    .items a {
        margin-bottom: 8vh;
    }
    .items a p {
        font-size: 1.1rem;
    }
    .items img {
        width: 280px;
    }
    .items a:last-child img,
    .items a:first-child img {
        width: 140px;
    }
    .slideshow img {
        object-fit: contain;
    }

    .about {
        flex-direction: column-reverse;
    }
    .about p {
        max-width: 96vw;
        padding-left: 0;
    }
    .about img {
        width: auto;
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width: 480px) {
    .items img {
        width: 190px;
    }
    .items a:last-child img,
    .items a:first-child img {
        width: 120px;
    }
}
