@font-face {
    font-family: merchx;
    /* src: url(../fonts/f-regular.woff); */
    src: url(../fonts/Regular.woff);
    font-weight: 400;
}

@font-face {
    font-family: merchx;
    /* src: url(../fonts/f-medium.woff); */
    src: url(../fonts/Bold.woff);
    font-weight: 500;
}

@font-face {
    font-family: merchx;
    src: url(../fonts/f-bold.woff);
    font-weight: 600;
}

* {
    box-sizing: border-box;
}

html {}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    font-family: merchx;
    font-weight: 400;
    /* color: #4b4b4b; */
    color: #383838;
    background-color: #e9e9ff;
    letter-spacing: -0.3px;
}

section {
    position: relative;
}

a,
a * {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}

.trans {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

img {
    width: 100%;
    display: block;
}

input,
button {
    outline: none;
    box-shadow: none;
}

p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

p b {
    font-weight: 500;
}

p.bigger {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.readmore-ib {
    color: #00afaa;
    font-size: 18px;
}

.readmore-ib:hover {
    color: #00afaa;
    text-decoration: underline;
}

b {}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    opacity: 0;
    background: linear-gradient(45deg, rgba(34, 58, 118, 1) 0%, rgba(34, 61, 128, 1) 46%, rgba(9, 26, 60, 1) 98%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

header.scrolled:before {
    height: 100%;
    opacity: 1;
}

header.scrolled .navbar {
    padding: 15px 0px;
}

section {
    padding: 90px 0px;
}

.up {
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--fo3);
}

.btn {
    display: table;
    text-transform: uppercase;
    border-radius: 17px;
    padding: 13px 40px 12px 20px;
    font-weight: 500;
    font-size: 14px;
    border: 0;
    border-bottom: solid 2px #ffffff80;
}

.btn:hover,
.btn:active {
    border: 0;
    background: #008290;
    color: #fff;
    border-bottom: solid 2px #ffffff80;
}

.btn.sm {
    border-radius: 5px;
    padding: 7px 30px 6px 13px;
    font-size: 13px;
}

.btn.sm img {
    right: 6px;
}

.btn.sm.gap {
    margin-top: 15px;
}





.btn.btn-yellow {
    background-color: #e2a819;
    color: #0b1522;
}

.btn.btn-green {
    background-color: #00afaa;
    color: #fff;
}

.btn.readmore {
    padding: 10px 40px 9px 15px;
}

.btn img {
    width: 20px;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    background-color: #ffffff00;
    border-radius: 50px;
    padding: 3px;
}

.btn.btn-yellow:hover img {
    background-color: #fff;
}

.btn.btn-green:hover img {
    background-color: #ffffff6e;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0px auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.rel {
    position: relative;
}

.abs {
    position: absolute;
}

.bgcmn {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.wave-text span {
    display: inline-block;
}

.wave-text:hover span {
    animation: wave .6s ease-in-out;
    animation-delay: calc(var(--i) * 0.05s);
}

.btn.blue {
    background-image: none;
    background-color: #182957;
    color: #fff;
}

.btn.gap {
    margin-top: 30px;
}

.flex {
    display: flex;
}

.jcsp {
    justify-content: space-between;
}

.aic {
    align-items: center;
}

.flashing {
    width: 55%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
    mix-blend-mode: lighten;
}

.flash-item {
    width: 30px;
    height: 30px;
    position: absolute;
    border-radius: 18px;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.75);
    transition:
        opacity 0.8s ease,
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.flash-item.active {
    opacity: 1;
    transform: translate3d(var(--x), var(--y), 0) scale(1);
}

.flash-item.exit {
    opacity: 0;
    transform: translate3d(var(--x), var(--y), 0) scale(0.9);
}

.navbar {
    padding: 30px 0px;
}

.brand {
    max-width: 209px;
}

.navbar .menu a {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    margin: 0px 10px;
    padding: 10px 0px;
    letter-spacing: 0.5px;
}

.navbar .menu a:hover,
.navbar .menu a.active {
    color: #e0a719;
}

.menu-toggle,
.close-menu {
    display: none;
}

.banner {
    background: linear-gradient(45deg, rgba(34, 58, 118, 1) 0%, rgba(34, 61, 128, 1) 46%, rgba(9, 26, 60, 1) 98%);
    padding: 5.5% 0%;
    max-height: 100vh;
    overflow: hidden;
}

.banner .d-block {
    width: 50%;
    color: #e2a819;
    margin-top: 15%;
    font-family: var(--fo3);

}

.banner .d-block h1 {
    color: #fff;
    font-size: 55px;
}

.banner .d-block h2 {
    font-size: 55px;
    color: #e2a819;
}

.banner .d-block h3 {
    font-size: 20px;
    display: table;
    padding: 5px 15px;
    color: #fff;
    letter-spacing: -0.5px;
    background-color: #062446;
    border-radius: 15px;
    margin: 29px 0px;
    font-weight: 600;
}

.banner .tagline {
    font-size: 30px;
    color: #fff;
    margin-top: 40px;
    margin-top: 16%;
}

.tagline img {
    width: 13px;
}

.banner .tagline {
    font-size: 30px;
    color: #fff;
    margin-top: 5%;
    margin-bottom: 7%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: fit-content;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 19px;
    letter-spacing: 3px;
}

.tagline img {
    width: 20px;
    margin: 0 12px;
}

.tagline img:last-child {
    width: 28px;
    position: relative;
    top: -3px;
    left: -10px;
}

.wave-text span {
    display: inline-block;
    animation: wave 1.8s ease-in-out infinite;
}

/* Stagger delays */
.wave-text span:nth-child(1) {
    animation-delay: 0s;
}

.wave-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.wave-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.wave-text span:nth-child(4) {
    animation-delay: 0.3s;
}

.wave-text span:nth-child(5) {
    animation-delay: 0.4s;
}

.wave-text span:nth-child(7) {
    animation-delay: 0.5s;
}

.wave-text span:nth-child(8) {
    animation-delay: 0.6s;
}

.wave-text span:nth-child(9) {
    animation-delay: 0.7s;
}

.wave-text span:nth-child(10) {
    animation-delay: 0.8s;
}

.wave-text span:nth-child(12) {
    animation-delay: 0.9s;
}

.wave-text span:nth-child(13) {
    animation-delay: 1s;
}

.wave-text span:nth-child(14) {
    animation-delay: 1.1s;
}

.wave-text span:nth-child(15) {
    animation-delay: 1.2s;
}

@keyframes wave {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-6px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(3px);
    }
}

.b-animate {
    width: 50%;
    right: 5vw;
    bottom: -4px;
    transition: filter 2.5s ease-in-out;
    will-change: filter;
}

.b-animate.blur {
    filter: blur(50px);
}

.b-animate img {
    display: block;
    width: 100%;
}

.b-animate .demo {
    width: 100%;
    opacity: 0;
}

.b-animate .b-stand {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    filter: blur(60px);
    transform: scale(3);
    animation: cinematicReveal .45s cubic-bezier(.17, .89, .32, 1.28) forwards,
        logoPulse 2s ease-in-out infinite;
    will-change: transform, filter, opacity;
    backface-visibility: hidden;
}

/* Layer order */
.b-animate .b-stand:nth-child(2) {
    z-index: 3;
    animation-delay: .5s, 2s;
}

.b-animate .b-stand:nth-child(3) {
    z-index: 2;
    animation-delay: 1s, 3.3s;
}

.b-animate .b-stand:nth-child(4) {
    z-index: 1;
    animation-delay: 1.5s, 4.6s;
}

@keyframes cinematicReveal {

    0%,
    20% {
        opacity: 0;
        filter: blur(60px);
        transform: scale(3);
    }

    80% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

/* Small zoom loop */
@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.bh-animate {
    width: 27%;
    right: 16vw;
    bottom: -4px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: opacity .6s ease;
}

.bh-animate.show {
    opacity: 1;
    visibility: visible;
}

.b-animate.blur {
    filter: blur(50px);
}

.bh-animate .bh-stand {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: 85vh;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity, filter;
}

.bh-animate .bh-stand.active {
    visibility: visible;
    animation: bhEnter .8s ease forwards;
}

.bh-animate .bh-stand.prev {
    visibility: visible;
    animation: bhExit .8s ease forwards;
}

/* Image entering */
@keyframes bhEnter {
    from {
        opacity: 0;
        filter: blur(25px);
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

/* Image leaving */
@keyframes bhExit {
    from {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }

    to {
        opacity: 0;
        filter: blur(25px);
        transform: translateX(-50px);
    }
}

.bh-animate .bh-milestone {
    position: absolute;
    background-color: #fff;
    width: fit-content;
    border-radius: 10px;
    padding: 20px 25px;
    text-align: center;
    z-index: 1;
    box-shadow:
        rgba(50, 50, 93, .25) 0px 50px 100px -20px,
        rgba(0, 0, 0, .3) 0px 30px 60px -30px,
        rgba(10, 37, 64, .35) 0px -2px 6px 0px inset;
    /* POSITION 1 (default) */
    left: 18%;
    top: -5%;
    right: auto;
    bottom: auto;
    opacity: 0;
    filter: blur(20px);
    transform: translateY(20px);
    transition:
        opacity .6s ease,
        filter .6s ease,
        transform .6s ease,
        left .8s ease,
        right .8s ease,
        top .8s ease,
        bottom .8s ease;
}

.bh-animate .bh-milestone.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* POSITION 2 */
.bh-animate .bh-milestone.bh-mt2 {
    left: auto;
    right: -15%;
    top: 40%;
    bottom: auto;
}

/* POSITION 3 */
.bh-animate .bh-milestone.bh-mt3 {
    left: -28%;
    right: auto;
    top: 40%;
    bottom: auto;
}

.bh-animate .bh-milestone b {
    display: block;
    /* font-weight: 600; */
    font-family: var(--fo3);
    font-size: 40px;
    color: #00afaa;
    line-height: 40px;
}

.bh-animate .bh-milestone span {
    font-weight: 400;
    font-size: 15px;
    color: #062446;
}

.d-block h1,
.d-block h2,
.d-block h3,
.d-block .btn,
.d-block .tagline {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

/* Delay each element */
.d-block h1 {
    animation-delay: 0.2s;
}

.d-block h2 {
    animation-delay: 0.6s;
}

.d-block h3 {
    animation-delay: 1s;
}

.d-block .btn {
    animation-delay: 1.4s;
}

.d-block .tagline {
    animation-delay: 1.8s;
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.subtitle {
    color: #e2a819;
    font-size: 20px;
    text-transform: uppercase;
    /* font-weight: 600; */
    letter-spacing: 1px;
    padding-bottom: 0px;
}

.title {
    color: #182957;
    font-size: 40px;
    /* line-height: normal; */
    line-height: 48px;
}

.title .title-mask {
    background-color: #00b4a1;
    color: #fff;
    border-radius: 10px;
    font-size: 19px;
    padding: 2px 25px 4px 8px;
    position: relative;
    top: -5px;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    font-weight: 500;


}

.home-course {
    background-color: #fff;
}

.home-course p {
    margin-top: 38px;
}

.course-card-holder {
    margin-top: 140px;
}

.course-card-holder .course-card {
    width: 48%;
    border-radius: 20px;
    color: #fff;
    padding: 30px 40px;
    height: 240px;
    background-image: url(../img/shade-white.png);
    background-position: center left;
    background-size: 80%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

@keyframes borderLoop {
    0% {
        border-radius: 60px 20px 20px 20px;
        /* top-left */
    }

    25% {
        border-radius: 20px 60px 20px 20px;
        /* top-right */
    }

    50% {
        border-radius: 20px 20px 60px 20px;
        /* bottom-right */
    }

    75% {
        border-radius: 20px 20px 20px 60px;
        /* bottom-left */
    }

    100% {
        border-radius: 60px 20px 20px 20px;
        /* back to top-left */
    }
}

.course-card-holder .course-card:first-child {
    /* background-color: #e2a819; */
    position: relative;
    background: url(../img/shade-white.png), url(../img/home-card-bg1.jpg);
    background-size: 80%, cover;
    background-repeat: no-repeat;
    background-position: left center, center center;
    animation: borderLoop 4s infinite linear;
}

.course-card-holder .course-card:first-child::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* background: #e2a9193b; */
    background: #0082906e;
    left: 0;
    top: 0;
    z-index: -1;
    animation: borderLoop 4s infinite linear;
}


.course-card-holder .course-card:last-child {
    /* background-color: #008290; */
    position: relative;
    background: url(../img/shade-white.png), url(../img/home-card-bg2.jpg);
    background-size: 80%, cover;
    background-repeat: no-repeat;
    background-position: left center, center center;
    animation: borderLoop 4s infinite alternate ease-in-out;
}

.course-card-holder .course-card:last-child::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #0082906e;
    left: 0;
    top: 0;
    z-index: -1;
    animation: borderLoop 4s infinite alternate ease-in-out;
}




.course-card-holder .course-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-family: var(--fo3);
    font-weight: 600;
}

.course-card-holder .course-card h4 {
    width: 67%;
    font-size: 18px;
    font-weight: 500;
}

.course-card-holder .course-card img {
    height: 350px;
    width: auto;
    right: 0;
    bottom: 0;
}

.home-abt {
    background-color: #182957;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(34, 58, 118, 1) 0%, rgba(34, 61, 128, 1) 46%, rgba(9, 26, 60, 1) 98%);
}

.home-abt .officepic {
    left: -8%;
    top: 0;
    width: auto;
    height: 100%;
}

.home-abt p:first-child {
    margin-bottom: 20px;
}

.c-white {
    color: #fff;
}

/* .home-infra {
    background-image: url(../img/infra-shade.png), url(../img/infra-shade.png);
    background-repeat: no-repeat;
    background-position: 94% -17%;
    background-size: 30%;
} */


.home-infra {
    background-image: url("../img/infra-shade.png"), url("../img/infra-shade-top.png");
    background-repeat: no-repeat, no-repeat;
    background-position: 95% -13%, left 60px bottom -130px;
    background-size: 25%;
}

.home-infra .infra-data {
    margin-top: 50px;
}

.home-infra table {
    width: 100%;
    border: 0;
}

.home-infra table .infra-img {
    height: 260px;
    border-radius: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.home-infra table .infra-img:nth-child(1) {
    margin-bottom: 20px;

}

.home-infra table .infra-img2 {
    width: calc(100% - 10px);
}

.home-infra table .infra-img3 {
    width: calc(100% - 10px);
    left: 10px;
    top: -10px;
}

.home-infra p:first-child {
    margin-bottom: 20px;
}

@keyframes t-bgmove {
    from {
        background-position: left top;
    }

    to {
        background-position: botom right;
    }
}

@keyframes t-bgmove2 {
    from {
        background-position: top left;
    }

    to {
        background-position: bottom right;
    }
}

@keyframes t-bgmove3 {
    from {
        background-position: bottom left;
    }

    to {
        background-position: top right;
    }
}

.homevideo iframe {
    border-radius: 10px;
}


.videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block
}

.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}


.mentors {
    background-color: #008290;
    background-image: url(../img/shade-white.png);
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topleft: 20px;
    -moz-border-radius-topright: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-size: auto;
    text-align: center;
}

.mentors .title {
    text-align: center;
}

.mentors .card {
    display: table;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    text-align: center;

}

.mentors .card .m-pic {
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    padding-top: 20px;
    overflow: hidden;
    height: 260px;
    width: 260px;
    border-radius: 100%;
    margin-bottom: 20px;
    border-right: 10px solid #05274d;
    border-top: 10px solid #e2a819;
    border-bottom: 10px solid #013a67;
    border-left: 10px solid #00b2a8;
}


.mentors .card h5 {
    color: #ffffff;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
}

.mentors .card h6 {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
}

.mentors .owl-carousel {
    margin-top: 50px;
}

.mentors .owl-theme .owl-dots .owl-dot.active span,
.mentors .owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}

.mentors .owl-theme .owl-dots .owl-dot span {
    background: #987e2d;
}

.mentors .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.hiring {
    padding-bottom: 150px;
}

.hiring .title {
    text-align: center;
}

.hiring .marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 80px 0px 0px 0px;
}

.hiring .marquee:before,
.hiring .marquee:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.hiring .marquee:after {
    left: inherit;
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.hiring .items {
    display: flex;
    gap: 90px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.hiring .item img {
    max-height: 30px;
    width: auto;
    display: block;
    margin: 0px 0px;
    opacity: 0.7;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}




.home-news-events .cont-wrap .items p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.home-news-events .cont-wrap .items h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--fo3);
    font-size: 18px;
    color: var(--co1);
    margin-bottom: 10px;
}

.home-news-events .cont-wrap .items figure {
    border-radius: 10px;
    overflow: hidden;
}

.home-news-events .cont-wrap .items:nth-child(1) {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 0;
}

.home-news-events .cont-wrap .items:nth-child(1) p {
    -webkit-line-clamp: 8;
}

.home-news-events .cont-wrap .items:nth-child(1) h3 {
    font-size: 24px;
}

.home-news-events .cont-wrap .items:nth-child(1) figure,
.home-news-events .cont-wrap .items:nth-child(1) .videowrapper{
    margin-bottom: 20px;
}


.home-news-events .cont-wrap .items:nth-child(1) {
    grid-area: 1/1/4/2;
}

.home-news-events .cont-wrap .items:nth-child(2) {
    grid-area: 1/2/2/3;
}

.home-news-events .cont-wrap .items:nth-child(3) {
    grid-area: 2/2/3/3;
}

.home-news-events .cont-wrap .items:nth-child(4) {
    grid-area: 3/2/4/3;
}

.home-news-events .videowrapper{
    border-radius: 10px;
	overflow: hidden;
}


.news-events figure {
    border-radius: 10px;
    overflow: hidden;
}


.news-events h2 {
    font-weight: 600;
    font-family: var(--fo3);
    font-size: 24px;
    margin-bottom: 15px;
}

.news-events p {
    margin-bottom: 10px;
    font-size: 16px;
}

.news-events p strong {
    font-weight: 500;
}



.news-events h3 {
    font-weight: 600;
    font-family: var(--fo3);
    font-size: 18px;
    margin-bottom: 10px;
}

.news-events ul {
    list-style: none;
    padding-left: 0;
}

.news-events ul li {
    position: relative;
    padding: 3px;
    padding-left: 25px;
    font-weight: 500;
}

.news-events ul li::before {
    position: absolute;
    content: "";
    top: 9px;
    left: 0;
    width: 12px;
    height: 12px;
    background: url(../img/pen-tool2.svg) no-repeat;
    background-size: 100%;
}

.news-events .news-list a {
    display: block;
    color: var(--co1);
    padding: 10px;
    background: #FFFFFF91;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-events .news-list a:hover {
    background: #ffffff48;
}

.news-list .news-list-title {
    font-size: 15px;
    font-weight: 500;
}

.home-testimonials {
    background: #FFF;
}


/**/

/* .videowrapper {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

.video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.videowrapper .videoHover {
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 10;
    opacity: 0;
} */

.home-testimonials :is(h1, h6) {
    text-align: center;
}

.home-testimonials h1 {
    color: var(--co1);
}

.htestimonal ul {
    display: flex;
    margin-top: 40px;
    padding: 0;
}

.htestimonal ul li {
    background: var(--co1);
    /* padding: 15px; */
    display: block;
    border-radius: 10px;
    position: relative;
    margin: 0 3px;
}

.htestimonal ul li img {
    border-radius: 10px;
}

.htestimonal ul li h4 {
    font-size: 20px;
    padding: 15px;
    padding-top: 20px;
    color: var(--co2);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.htestimonal ul li h4 span {
    font-size: 13px;
    display: block;
    margin-top: 5px;
    color: #FFF;
    font-weight: 400;
}

.htestimonal ul li h4 b {
    position: absolute;
    top: -10px;
    background: #FFF;
    font-size: 13px;
    color: var(--co5);
    font-family: var(--fo3);
    font-weight: 400;
    padding: 3px 5px 2px 5px;
    border-radius: 5px;
    letter-spacing: 0;
}

.htestimonal ul li .play {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    width: 60px;
    filter: drop-shadow(8px 8px 10px rgba(0, 0, 0, 0.5));
}

/**/

.whatapp_icon {
    position: fixed;
    right: 30px;
    bottom: 20px;
    line-height: 50px;
    z-index: 1000;
}

.whatapp_icon a {
    background: #25d366;
    color: #FFF;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


footer {
    color: #fff;
    padding-top: 130px;
    background-color: #072048;
}

footer .f-logo {
    width: 209px;
}

footer p {
    margin: 50px 0px;
    color: #ccc;
}

footer .social {
    width: 200px;
}

footer .social a {}

footer .social a img {
    width: auto;
    height: 30px;
}

footer .f-title {
    color: #b59739;
    margin-bottom: 19px;
    font-size: 30px;
    font-weight: 600;
    font-family: var(--fo3);
    text-transform: uppercase;
}

footer .q-links {}

footer .q-links a {
    display: block;
}

footer .f-block1 {
    width: 30%;
}

footer .copy {
    text-align: center;
    opacity: 0.6;
    font-size: 13px;
    border-top: solid 1px #cccccc4d;
    margin-top: 80px;
    padding: 20px 0px;
}

footer .copy a {
    color: #ccc;
}

.f-block2 {
    color: #ccc;
    line-height: 34px;
}

.f-block2 a {
    display: block;
    font-size: 15px;
    color: #ccc;
}

.f-block2 a:hover {
    color: #fff;
}

.f-block3 {}

.f-block3 a {
    display: block;
    font-size: 15px;
    color: #ccc;
    line-height: 34px;
}

.f-block3 a:hover {
    color: #fff;
}

.quick-con {
    background-color: #fff;
    width: fit-content;
    padding: 20px 20px;
    border-radius: 30px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -44px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

.quick-con p {
    margin-right: 20px;
    font-size: 21px;
    font-weight: 500;

}

.home-abt figure {
    border-radius: 20px;
    overflow: hidden;
}

/* #Mobie Only */
@media (max-width: 767px) {
    body {
        background-color: #fff;
    }

    section {
        padding: 45px 0px;
    }

    p {
        font-size: 15px;
        line-height: 22px;
    }

    footer .f-logo {
        display: none;
    }

    .f-sm-wrap {
        flex-wrap: wrap;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .subtitle {
        font-size: 18px;
    }

    .title {
        font-size: 28px;
        margin-top: 0px;
        line-height: 33px;
    }


    .banner {
        height: 100vh;
        align-items: flex-start;
        padding-top: 115px;
    }

    .btn {
        padding: 10px 38px 8px 12px;
        font-size: 13px;
    }

    .banner .d-block {
        width: 100%;
        margin-top: 0;
        position: relative;
        z-index: 10;
    }

    .d-block .btn {
        margin: 0;
    }

    .banner .d-block h1,
    .banner .d-block h2 {
        font-size: 35px;
        line-height: 34px;

    }

    .d-block .tagline {
        display: none;
    }

    .banner .d-block h3 {
        font-size: 16px;
        max-width: 100%;
        padding-top: 4px;
        margin: 10px 0px;
    }

    .b-animate {
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .bh-animate .bh-milestone {
        top: auto;
        bottom: 20px;
        left: 50px;
    }

    .bh-animate .bh-milestone.bh-mt2 {
        left: auto;
        right: 10px;
        top: auto;
        bottom: 50px;
        ;
    }

    .bh-animate .bh-milestone.bh-mt3 {
        left: 10px;
        right: auto;
        top: auto;
        bottom: 100px;
    }

    .bh-animate {
        width: 100%;
        right: 0;
        bottom: 0;
    }

    .bh-animate .bh-stand {
        height: 54vh;
        right: 23%;
    }

    .bh-animate .bh-milestone {
        padding: 10px;
    }

    .bh-animate .bh-milestone b {
        font-size: 30px;
        line-height: 26px;
    }

    .bh-animate .bh-milestone span {
        font-size: 13px;
        font-weight: 500;
    }

    .banner .banner-img {
        height: 381px;
        margin: auto;
        margin-top: 8%;
    }

    .home-course p {
        margin-top: 25px;
        width: 100%;
    }

    .course-card-holder {
        margin-top: 50px;
    }

    .course-card-holder .course-card {
        width: 100%;
        height: 180px;
        padding: 25px;
    }

    .course-card-holder .course-card:last-child {
        margin-top: 50px;
    }

    .course-card-holder .course-card img {
        height: 200px;
    }

    .course-card-holder .course-card h4 {
        font-size: 16px;
        width: 100%;
    }

    .course-card-holder .course-card h3 {
        font-size: 28px;
    }

    .home-infra .infra-data {
        margin-top: 25px;
    }

    .btn.blue {
        font-size: 14px;
        margin: auto;
    }

    .quick-con {
        max-width: 90%;
        left: 0;
        right: 0;
        transform: translateX(0);
        margin: auto;
    }

    .quick-con p {
        margin-right: 0;
        width: 100%;
        font-size: 16px;
    }

    .quick-con .btn.btn-yellow {
        margin: 0px auto;
    }

    .hiring .marquee {
        margin: 80px 0px 80px 0px;
    }

    .course-card-holder .course-card:last-child :is(h3, h4) {
        padding-left: 100px;
    }

    .course-card-holder .course-card:last-child img {
        left: 0;
    }

    .title .title-mask {
        border-radius: 5px;
        font-size: 12px;
        padding: 3px;
        top: -5px;
        clip-path: none;
    }

    p.bigger {
        font-size: 17px;
    }

    .readmore-ib {
        font-size: 16px;
    }

    .home-abt .officepic {
        width: 100%;
        height: auto;
        position: static;
    }

    .home-abt {
        padding-top: 0;
    }

    /* .mentors {
        padding-bottom: 100px;
    } */

    .mentors .owl-carousel {
        margin-top: 0;
    }

    .mentors .card .m-pic {
        height: 230px;
        width: 230px;
        margin: 0px auto;
    }

    .mentors .card {
        display: block;
    }

    .mentors .owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0;
    }

    footer .copy {
        font-size: 11px;
        margin-top: 20px;
        padding: 20px 20px;
    }

    footer .copy a {
        color: #ccc;
        font-size: 11px;
    }

    .home-news-events {
        padding-bottom: 100px;
    }

    .home-news-events .cont-wrap .items {
        margin-bottom: 30px;
    }

    .home-news-events .cont-wrap .items figure,
    .home-news-events .videowrapper {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {


    .home-news-events .cont-wrap {
        display: grid;
        grid-template-columns: 2fr 3fr;
        grid-auto-rows: 170px;
        gap: 50px;
    }

    .home-news-events .cont-wrap .items {
        height: 100%;
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap: 30px;
    }

    .home-news-events .cont-wrap .items:nth-child(1) {
        padding: 30px;
        background: #fff6;
        border-radius: 10px;
        box-shadow: 0 0 30px -1px #0000001a;
    }


}