html{
    scroll-behavior: smooth;
}

.hero-section-container {
    width: 100%;
    height: 500px;
    position: relative;
}

/* .hero-section-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
} */

.extra-layer,
.video-hero-section {
    width: 100%;
    height: 500px;
    position: relative;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.extra-layer{
    width: 100%;
    filter: brightness(30%);
    
}

.hero-section-sub-container {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0px;
    left: 0;
    z-index: 2;
    color: #fff;
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section-content{
    width: 700px;
}

.hero-special-text {
    /* font-size: 40px; */
    font-weight: bolder;
    color: #C6D93B;

}

.hero-text-head {
    color: #fff;
}

.btn-hero-section {
    background-color: #0798ff;
    border: none;
    border-radius: 4px;
    /* font-size: 16px; */
    font-weight: 500;
    color: #fff;
    margin-top: 20px;
    padding: 10px 20px;
}

.btn-hero-section:hover {
    background-color: #0677C7;
    z-index: 3;
}

.hero-head-1{
    font-size: 45px !important;
    font-weight: 600;
}
.hero-head-2{
    font-size: 35px !important;
    font-weight: 500;
}
.hero-head-3{
    font-size: 25px !important;
    font-weight: 500;
}

.hero-text-1,
.hero-text-2{
    font-size: 18px;
    font-weight: 400;
}

.hero-text-btn{
    color: #FFF;
    background-color: transparent;
    text-decoration: none;
    border: 1px solid #fff;
    margin: 20px 10px 20px 0;
    padding: 10px;
}

.hero-text-btn:hover{
    background-color: #0798ff;
    color: #fff;
    border: none;
}

.about-us-container {
    padding: 70px 0px;
    text-align: start;
    background: #111;
    color: #fff;
    font-size: 17px;
}

.about-us-text {
    font-size: 21px !important;
    font-weight: 600;
    color: #C6D93B;
}

.about-us-sub-container {
    margin: 0 10%;
}

.experties-container {
    background-color: #282f31;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.experties-header {
    font-weight: 700;
}

.experties-sub-container {
    display: flex;
    flex-direction: column;
    grid-gap: 25px;
    /* padding: 10%; */
}

.experties-content-container {
    min-height: 300px;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    grid-gap: 40px;
}

.experties-img{
    border-radius: 4px;
    width: 100%;
    height: 150px;
}

.card-body {
    max-width: 400px;
    /*height: 100%;*/
    padding: 50px;
    border-radius: 4px;
    background-color: #0798ff;
}

.card-body>img {
    margin-bottom: 20px;
}

.experties-head-text {
    margin-top: 10px;
}

.upcoming-events {
    background: #222222;
    padding: 80px 0 110px 0;
}

.upcoming-events-container {
    display: flex;
    justify-content: space-between;
}

.conference-container{
    display: flex;
    flex-direction: row;
    grid-gap: 40px;
    justify-content: flex-start;
    align-items: center;
    /* flex-wrap: wrap; */
    margin: 40px 0;
}

.conference-img-container{
    border: none;
    border-radius: 4px;
    max-width: 400px;
    width: 400px;
    height: 180px;
}

.conference-img{
    max-width: 400px;
    height: 180px;
}

.past-conference{
    margin-top: 80px;
}

.sponsors-container {
    padding: 30px 0 30px 0;
    background-color: #FFF;
    color: #111;
}

.sponsors-heading {
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    color: #0798ff;
}

.sponsors-content {
    width: 90%;
    background: #FFFFFF;
    height: auto;
    margin: auto;
    overflow: hidden;
    position: relative;
    border: none;
    border-radius: 4px;
}

.sponsors-logo {
    width: 200px;
    height: auto;
    margin: 0 100px 0 0;
    perspective: 100%;
}

.sponsors-logo:nth-child(1){
    margin-left: 100px;
}

.sponsors-line-one {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: auto;
    width: calc(350px * 8);
    animation: scroll 20s linear infinite;
    margin: 30px 0;
}

.sponsors-line-two{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    height: auto;
    transform: translateX(-1600px);
    width: calc(350px * 6);
    animation: scroll-reverse 20s linear infinite;
    margin: 30px 0;
}

.sponsors-content::before {
    content: '';
    background-image: linear-gradient(90deg, #FFFFFF 30%, hsla(0, 0%, 100%, 0));
    left: 0;
    top: 0;
    position: absolute;
    width: 50px;
    height: 100%;
    z-index: 2;
}

.sponsors-content::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 100%;
    background-image: linear-gradient(270deg, #FFFFFF 30%, hsla(0, 0%, 100%, 0));
    right: 0;
    top: 0;
    z-index: 2;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-2605px)
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-1914px);
    }

    100% {
        transform: translateX(-30px)
    }
}

.tesseract-logo{
    width: 240px;
}

.adobe-logo{
    width: 180px;
}

.gofluent-logo{
    width: 200px;
}

.uniphore-logo{
    width: 165px;
}

.betterplace-logo{
    width: 220px;
}

.knolskape-logo{
    width: 220px;
}

.unext-logo{
    width: 150px;
    height: auto;
}

.kissflow-logo{
    width: 190px;
}

.stratbeans-logo{
    width: 120px;
}

.courseplay-logo{
    width: 180px;
}

.zhypility-logo{
    width: 120px;
}

.awarathon-logo{
    width: 170px;
}

.intercell-logo{
    width: 140px;
}

.hireed-logo{
    width: 100px;
}

.salesforce-logo{
    width: auto;
    height: 100px;
}

@media (max-device-width: 1400px) {
    .conference-img-container{
        width: 345px;
    }
}

@media (max-device-width: 1200px) {
    .conference-container{
        flex-direction: column;
    }
    .conference-img-container{
        width: 400px;
        max-width: 400px;
    }
}

@media (max-device-width: 992px) {
    .hero-section-sub-container {
        left: 0%;
    }

    .experties-content-container {
        grid-template-columns: auto auto;
    }

    .hero-head-1{
        font-size: 35px;
    }
    .hero-head-2{
        font-size: 30px;
    }
}

@media (max-device-width: 768px) {
    .hero-section-content {
        left: 5%;
        width: 90%;
    }

    .experties-content-container {
        grid-template-columns: auto;
    }
}

@media (max-device-width: 576px) {
    .hero-head-1{
        font-size: 25px !important;
    }
    .hero-head-2{
        font-size: 22px !important;
    }
    .hero-head-3{
        font-size: 18px !important;
    }
}
/* @media (max-device-width: 395px){
    .hero-section-sub-container {
        top: 30px;
    }
} */