@import 'nav.css';
@import 'footer.css';
@import 'contact.css';
@import 'about.css';
@import 'solution.css';

.hero-section {
    width: 100%;
    height: calc(105vh - 120px);
    background-image: url('../img/Banner.gif');
    background-size: cover;
    display: flex;
}

.hero-section .sub-heading {
    margin-top: 1vw;
    color: white;
    text-transform: capitalize;
    font-size: 3.5vw;
    position: relative;
    top: 12vw;
    left: 12.3vw;
    width: 44vw;
}


/* product */

.product {
    position: relative;
    overflow: hidden;
    padding-bottom: 6vh;
}

.product-title {
    padding: 0 10vw;
    font-size: 2.8vw;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
    line-height: 6vw;
    margin: 6vw;
}

.product-container {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    margin: 0 4vw;
}

.product-container::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 auto;
    width: 20vw;
    height: 32vw;
    margin-right: 6vw;
    background: #000;
    color: white;
    border-radius: 0.5vw;
    animation: 35s slide infinite linear;
    cursor: pointer;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-168vw);
    }
}

.product-container:hover .product-card {
    animation-play-state: paused;
}

.product-image {
    position: relative;
    width: 20vw;
    height: 20vw;
    overflow: hidden;
    border-radius: 0.5vw 0.5vw 0 0;
}

.product-thumb {
    width: 20vw;
    height: 20vw;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    padding-top: 1vw;
    align-items: center;
}

.product-brand {
    text-align: center;
    margin-top: 0.5vw;
    text-decoration: underline;
    font-size: 1.2vw;
}

.product-short-des {
    display: inline-block;
    width: 100%;
    height: 13.5vw;
    line-height: 1.2vw;
    overflow: hidden;
    padding: 0.5vw 1.5vw;
    text-align: center;
    font-weight: 300;
    font-size: 0.95vw;
}



/* main-section */

main {
    margin-top: 5vw;
    width: 100%;
    height: calc(25vh - 30px);
    background-image: url('../img/bg2.png');
    background-size: cover;
    margin-bottom: 10vw;
}

.hero-section-2 {
    display: flex;
    justify-content: center;
}

.description {
    display: flex;
    justify-content: center;
}

.hero-section-2 .sub-heading-2 {
    margin-top: 3vw;
    text-align: center;
    color: #000;
    text-transform: capitalize;
    font-size: 2.5vw;
    font-weight: 900;
    text-decoration: none;
    position: relative;
}

.hero-section-2 .sub-heading-2:after {
    content: '';

    width: 100%;
    position: absolute;
    left: 0;
    bottom: -0.1vw;

    border-width: 0 0 0.4vw;
    border-style: solid;
    color: #E18B30;
    filter: blur(1px);
}

.description .sub-heading-3 {
    margin-top: 1.9vw;
    text-align: center;
    color: #000;
    font-size: 1.2vw;
    font-weight: 300;
    text-decoration: none;
}

.content-3 {
    width: 51%;
}


/* solutions */

.solutions {
    display: flex;
    justify-content: space-around;
    margin-bottom: 8vw;
}

.solutions-services,
.venue-spaces {
    border: 0.15vw black solid;
    padding: 3vw 4vw;
}

.part-header {
    display: flex;
    justify-content: center;
}

.title {
    position: relative;
    text-align: center;
    padding: 0 0.5vw;
    line-height: 2.2vw;
    font-size: 1.8vw;
}

.part {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2vw 0;
    padding: 0 0.7vw;
    width: 40vw;
}

.part-text-title,
.title-1 {
    line-height: 1.5vw;
    font-size: 1.2vw;
}


.part-des,
.des-1 {
    line-height: 1.25vw;
    font-size: 1vw;
}

.part::after {
    content: '';

    width: 100%;
    position: absolute;
    left: 0;
    bottom: -0.1vw;

    border-width: 0 0 0.2vw;
    border-style: solid;
    color: black;
}

.part-text {
    display: flex;
    flex-direction: column;
}

.part-img img {
    height: 5vw;
}

.part-img-2 img {
    height: 5vw;
}

/* our partners */

.body {
    align-items: center;
    justify-content: center;
    margin-bottom: 6vw;
}

.slider {
    height: 10vw;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

@keyframes scroll {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(calc(-2000px*50));
    }
}

@keyframes scroll2 {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(calc(-2000px*50));
    }
}

.slider .slide-track {
    animation: scroll 3600s linear infinite;
    display: flex;
    width: calc(200px * 7);
}

.slider .slide-track2 {
    animation: scroll2 3600s linear infinite;
    display: flex;
    width: calc(200px * 18);
}

.slider .slide {
    height: 10vw;
    width: 100%;
}

.slide {
    margin: 0 2vw;
}

.slide img {
    height: 70%;
}

.sub-heading-6 {
    margin-bottom: 5vw;
    text-align: center;
    color: #000;
    text-transform: capitalize;
    font-size: 2.5vw;
    font-weight: 900;
    text-decoration: none;
    position: relative;
}

@media (max-width: 768px) {
    .hero-section .sub-heading {
        font-size: 5.5vw;
        width: 64vw;
        top: 20vw;
    }
}

@media (max-width: 450px) {
    .hero-section {
        height: calc(80vh - 120px);
    }

    main {
        height: calc(18vh - 30px);
        margin-bottom: 5vw;
    }

    .product {
        padding-bottom: 2vh;
    }

    .product-title {
        font-size: 4vw;
    }

    .product-card {
        width: 28vw;
        height: 43vw;
        border-radius: 0.8vw;
    }

    @keyframes slide {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-250vw);
        }
    }

    .product-image {
        width: 28vw;
        height: 25vw;
        border-radius: 0.8vw 0.8vw 0 0;
    }

    .product-thumb {
        width: 28vw;
        height: 25vw;
        border-radius: 0.8vw 0.8vw 0 0;
    }

    .product-brand {
        font-size: 2.18vw;
    }

    .product-info {
        padding-top: 3vw;
    }

    .product-short-des {
        font-size: 1.35vw;
        line-height: 1.5vw;
    }

    .hero-section-2 .sub-heading-2 {
        margin-top: 2vw;
        font-size: 3.5vw;
    }

    .description .sub-heading-3 {
        margin-top: 2.2vw;
        font-size: 2.2vw;
        width: 100%;
    }

    .content-3 {
        width: 85%;
    }

    .sub-heading-6 {
        font-size: 4.5vw;
    }

    .solutions {
        flex-direction: column;
    }

    .solutions-services,
    .venue-spaces {
        padding: 8vw 8vw;
        margin: auto;
        margin-bottom: 3vw;
    }

    .title {
        font-size: 3.2vw;
        line-height: 3.2vw;
        margin-bottom: 2vw;
    }

    .part {
        margin: 2vw 0;
        padding: 1vw 1vw;
        width: 60vw;
    }

    .part-text-title,
    .title-1 {
        font-size: 2vw;
        line-height: 2.5vw;
    }

    .part-des,
    .des-1 {
        line-height: 2vw;
        font-size: 1.6vw;
    }

    .part::after {
        border-width: 0 0 0.3vw;
    }

    .part-img img,
    .part-img-2 img {
        height: 9vw;
    }

}