* {
    font-family: Satoshi;
}

@font-face {
    font-family: Satoshi;
    src: url(../fonts/Satoshi-Light.otf);
    font-weight: 300;
}

@font-face {
    font-family: Satoshi;
    src: url(../fonts/Satoshi-Regular.otf);
    font-weight: 400;
}

@font-face {
    font-family: Satoshi;
    src: url(../fonts/Satoshi-Medium.otf);
    font-weight: 500;
}

@font-face {
    font-family: Satoshi;
    src: url(../fonts/Satoshi-Bold.otf);
    font-weight: 700;
}

html,
body {
    scroll-behavior: auto !important;
    overscroll-behavior: none;
}

section {
    padding: 90px 0;
}

h2 {
    font-size: 36px;
    line-height: 1.4;
    font-weight: 600;
}

p {
    font-size: 16px;
    line-height: 28px;
}

header {
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    z-index: 5555 !important;
}

header.hide {
    transform: translateY(-100%);
}

#menu-toggle {
    position: fixed;
    top: 55px;
    right: 40px;
    z-index: 100;
}

.hamburger-line {
    transition: all 0.3s ease;
    background-color: #000;
    width: 40px;
    height: 2px;
    border-radius: 2px;
    display: block;
}

/* Cross Animation */
.toggle-active .line1 {
    transform: rotate(45deg) translate(0px, 7px);
}

.toggle-active .line2 {
    transform: rotate(-45deg) translate(0px, -7px);
}

/* Disable background scroll */
body.menu-open {
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
}

.hero-section {
    background-image: url(../images/hero-img-2.jpg);
    background-repeat: no-repeat;
    /* background-color: #F4A33F; */
    border-block: 2px solid #F4A33F;
}

.introduction {
    background-image: url(../images/INTRODUCTION-BG.png);
}

.thankyou {
    background-image: url(../images/THANK-YOU.png);
}

.thankyou::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
}

.contact-us-content {
    background-image: url(../images/CONTACT-US-BG.png);
}

.contact-us-content {
    box-shadow: rgba(0, 0, 0, 0.10) 0px 0px 20px 0px;
}

.button,
input,
select,
optgroup,
textarea,
::file-selector-button {
    outline: none !important;
    outline-offset: 0 !important;
}

.education-img img {
    width: 100%;
    max-height: 600px;
    height: 100%;
    object-fit: cover;
    object-position: 0 20%;
}

.card-outer {
    --cut: 40px;
    clip-path: polygon(0% 0%,
            calc(100% - var(--cut)) 0%,
            100% var(--cut),
            100% 100%,
            var(--cut) 100%,
            0% calc(100% - var(--cut)));
}

.card-border {
    width: 100%;
    height: 220px;
    background: white;
    padding: 2px;
    /* white border thickness */
    clip-path: polygon(0% 0%,
            calc(100% - var(--cut)) 0%,
            100% var(--cut),
            100% 100%,
            var(--cut) 100%,
            0% calc(100% - var(--cut)));
}

.card-border img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0% 0%,
            calc(100% - var(--cut)) 0%,
            100% var(--cut),
            100% 100%,
            var(--cut) 100%,
            0% calc(100% - var(--cut)));
}

.edu-digital-card.text-center h5 {
    padding-top: 10px;
    font-size: 18px;
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.325px;
}

.start-up-img img {
    min-height: 550px;
}

.list-disc li {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.information-img img {
    width: 100%;
    max-height: 500px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-block: 20px;
}

.digital-ai-icon {
    width: 70px;
    height: 70px;
    border: 1px solid #F4A33F;
    border-radius: 50%;
}

.digital-ai-icon img {
    width: 40px;
    height: 40px;
}

.mask-img-1 img {
    /* mask-image: url(../images/mask-land-01.png);
    mask-size: cover;
    mask-position: center center;
    -webkit-mask-image: url(../images/mask-land-01.png);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center; */
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    display: inline-block;
    vertical-align: middle;
}

.event-img-3 img {
    /* mask-image: url(../images/mask-land-02.png);
    mask-size: cover;
    mask-position: center center;
    -webkit-mask-image: url(../images/mask-land-02.png);
    -webkit-mask-size: cover;
    -webkit-mask-position: center center; */
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center center;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width:1023px) {
    .introduction-img img {
        max-height: 500px;
        object-fit: cover;
        object-position: center;
    }

    img.health-img {
        max-height: 450px;
        object-fit: cover;
        object-position: top;
    }

    .event-img-3 img {
        -webkit-mask-image: none;
    }
}


@media (max-width:767px) {
    h2 {
        font-size: 42px;
    }

    p {
        font-size: 16px;
        line-height: 26px;
    }

    section {
        padding: 60px 0;
    }
    #menu-toggle {
        right: 32px;
    }
}

@media (max-width:640px) {
    h2{
        font-size: 36px;
    }
    #menu-toggle {
        top: 45px;
        right: 20px;
    }
}

@media (max-width:575px) {
    h2 {
        font-size: 32px;
    }

    section {
        padding: 40px 0;
    }
    .edu-digital-card.text-center h5{
        font-size: 16px;
    }
    .introduction-img img, .education-img img, .start-up-img img, img.health-img{
        min-height: 400px;
        max-height: 400px;
    }
    .mask-img-1 img{
        -webkit-mask-image: none;
        height: 400px;
    }
    .event-img-3 img{
        height: 400px;
    }
}

@media (max-width:440px) {
    h2 {
        font-size: 28px;
    }
    p{
        font-size: 15px;
    }
    .card-border{
        height: 180px;
    }
    
}