/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
}

/* HEADER */

/* ==========================
   HEADER
========================== */

.header{
    width:100%;
    height:70px;

    background:#fff;

    position:sticky;
    top:0;

    z-index:9999;

    box-shadow:0 3px 20px rgba(0,0,0,.08);
}

/* ==========================
   CONTAINER
========================== */

.container{

    width:100%;
    max-width:1800px;

    margin:auto;

    padding:0 15px;

    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

}

/* ==========================
   LOGO
========================== */

.logo{
    flex-shrink:0;
}

.logo img{

    height:55px;
    width:auto;

    display:block;

}

/* ==========================
   NAVBAR
========================== */

.navbar{

    height:100%;

}

.nav-menu{

    display:flex;
    align-items:center;

    height:100%;

    gap:2px;

    list-style:none;

}

/* ==========================
   MENU ITEMS
========================== */

.nav-menu > li{

    position:relative;

}

.nav-menu > li > a{

    display:flex;
    align-items:center;
    justify-content:center;

    height:70px;

    padding:0 8px;

    text-decoration:none;

    color:#222;

    font-size:14px;
    font-weight:500;

    white-space:nowrap;

    transition:.3s;

}

.nav-menu > li > a:hover{

    color:#0d6efd;

}

/* ==========================
   UNDERLINE
========================== */

.nav-menu > li::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:12px;

    width:0;
    height:2px;

    background:#0d6efd;

    transform:translateX(-50%);

    transition:.4s;

}

.nav-menu > li:hover::after{

    width:70%;

}

/* ==========================
   DROPDOWN
========================== */

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:300px;

    background:#fff;

    list-style:none;

    border-radius:12px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s ease;

    overflow:visible;

}

/* remove underline */

.dropdown-menu li::after{
    display:none;
}

.dropdown-menu li{

    width:100%;

}

.dropdown-menu li a{

    display:block;

    padding:14px 20px;

    text-decoration:none;

    color:#222;

    font-size:14px;

    white-space:normal;

    line-height:1.5;

    transition:.3s;

}

.dropdown-menu li a:hover{

    background:#0d6efd;

    color:#fff;

}

/* SHOW MENU */

.dropdown:hover .dropdown-menu{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

/* ==========================
   ARROW
========================== */

.dropdown > a::after{

    content:"\f107";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    font-size:11px;

    margin-left:6px;

}

/* ==========================
   MOBILE TOGGLE
========================== */

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .header{

        height:70px;

    }

    .container{

        justify-content:space-between;

    }

    .menu-toggle{

        display:block;

    }

    .navbar{

        position:absolute;

        top:70px;
        left:-100%;

        width:100%;

        background:#fff;

        transition:.4s;

        box-shadow:
        0 5px 20px rgba(0,0,0,.08);

        height:auto;

    }

    .navbar.active{

        left:0;

    }

    .nav-menu{

        flex-direction:column;

        align-items:flex-start;

        width:100%;

        gap:0;

    }

    .nav-menu li{

        width:100%;

    }

    .nav-menu > li > a{

        width:100%;

        height:auto;

        padding:16px 20px;

        border-bottom:1px solid #eee;

        justify-content:space-between;

    }

    .nav-menu > li::after{

        display:none;

    }

    .dropdown-menu{

        position:static;

        display:none;

        opacity:1;
        visibility:visible;

        transform:none;

        width:100%;

        min-width:100%;

        box-shadow:none;

        border-radius:0;

    }

    .dropdown.active .dropdown-menu{

        display:block;

    }

    .logo img{

        height:50px;

    }
    .dropdown-menu,
.sub-menu{

    position:static;

    display:none;

    opacity:1;
    visibility:visible;

    transform:none;

    width:100%;

    min-width:100%;

    box-shadow:none;

    border-radius:0;

    background:#f8f9fa;

}
.dropdown.active .dropdown-menu{
    display:block;
}

.dropdown-sub.active .sub-menu{
    display:block;
}

}

@media(max-width:768px){

    .logo img{

        height:45px;

    }

    .nav-menu > li > a{

        font-size:14px;

    }

}
/* =====================================
   SUB DROPDOWN (LEVEL 2)
===================================== */

.dropdown-sub{
    position:relative;
}

.dropdown-sub > a{
    display:flex !important;
    justify-content:space-between;
    align-items:center;
}

/* Right Side Arrow */

.dropdown-sub > a i{
    font-size:12px;
    margin-left:10px;
}

/* Sub Menu */

.sub-menu{

    position:absolute;

    top:0;
    left:100%;

    min-width:280px;

    background:#fff;

    list-style:none;

    border-radius:12px;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateX(20px);

    transition:.35s ease;

    overflow:hidden;

    z-index:99999;

}

.sub-menu li{
    width:100%;
}

.sub-menu li a{

    display:block;

    padding:14px 20px;

    text-decoration:none;

    color:#222;

    font-size:14px;

    transition:.3s;

}

.sub-menu li a:hover{

    background:#0d6efd;

    color:#fff;

}

/* SHOW SUB MENU */

.dropdown-sub:hover .sub-menu{

    opacity:1;
    visibility:visible;

    transform:translateX(0);

}
.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;

    background-size:cover;
    background-position:center;

    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.65);

    z-index:1;
}

/* CENTER CONTENT */

.hero-content{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1000px;

    height:100%;

    margin:auto;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:20px;
}

.hero-subtitle{
    font-size:20px;
    font-weight:500;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:50px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    max-width:850px;

    font-size:22px;
    line-height:1.8;

    margin-bottom:35px;

    color:#f1f1f1;
}

.hero-btn{
    display:inline-block;

    padding:18px 45px;

    background:#ff7b00;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-size:18px;
    font-weight:600;

    transition:.4s;
}

.hero-btn:hover{
    background:#e96f00;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-subtitle{
        font-size:16px;
    }

    .hero-content p{
        font-size:15px;
    }

}
/* =========================
   WELCOME SECTION
========================= */

.welcome-section{

    padding:30px 8%;
    background:#ffffff;

}

.welcome-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;

}

/* IMAGE */

.welcome-image{

    position:relative;

}

.welcome-image img{

    width:100%;
    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}

/* EXPERIENCE BOX */

.experience-box{

    position:absolute;

    bottom:-30px;
    right:-20px;

    background:#ff7b00;

    color:#fff;

    padding:25px 35px;

    border-radius:15px;

    text-align:center;

    box-shadow:
    0 10px 30px rgba(255,123,0,.4);

}

.experience-box h3{

    font-size:35px;
    font-weight:800;

}

.experience-box p{

    margin-top:5px;

}

/* CONTENT */

.sub-title{

    color:#ff7b00;

    font-size:16px;
    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.welcome-content h2{

    font-size:35px;
    font-weight:800;

    margin:10px 0 20px;

    color:#0f172a;

}

.welcome-content p{

    color:#64748b;

    line-height:1.9;
    margin-bottom:20px;

    font-size:17px;

}

/* FEATURES */

.welcome-features{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;

    margin:30px 0;

}

.feature-item{

    font-weight:600;
    color:#0f172a;

}

.feature-item i{

    color:#ff7b00;
    margin-right:10px;

}

/* BUTTON */

.welcome-btn{

    display:inline-block;

    padding:15px 35px;

    background:#ff7b00;
    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.welcome-btn:hover{

    background:#e66f00;

    transform:translateY(-5px);

}

/* RESPONSIVE */

@media(max-width:992px){

    .welcome-wrapper{

        grid-template-columns:1fr;

    }

    .welcome-content h2{

        font-size:38px;

    }

}

@media(max-width:576px){

    .welcome-content h2{

        font-size:30px;

    }

    .welcome-features{

        grid-template-columns:1fr;

    }

    .experience-box{

        right:10px;
        bottom:10px;

    }

}
/* ==========================
   COURSES SECTION
========================== */

.courses-section{
    padding:0px 8%;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:10px;
}

.section-heading span{
    color:#ff7a00;
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:48px;
    color:#1a1a1a;
    margin:15px 0;
    font-weight:800;
}

.section-heading p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* Main Wrapper */

.course-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
    background:#ffffff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    width: 100%;
}

/* Image Section */

.course-image{
    flex:1;
}

.course-image img{
    width:100%;
    height:100%;
    min-height:790px;
    object-fit:cover;
    display:block;
}

/* Content Section */

.course-content{
    flex:1;
    padding:50px;
}

.course-badge{
    display:inline-block;
    background:#fff4ea;
    color:#ff7a00;
    padding:10px 15px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.course-content h3{
    font-size:32px;
    color:#111827;
    margin-bottom:20px;
    line-height:1.2;
}

.course-description{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:30px;
}

/* Specializations */

.specialization-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:35px;
}

.specialization-item{
    background:#f5f7fa;
    padding:16px;
    border-radius:12px;
    font-weight:600;
    transition:0.4s;
    cursor:pointer;
}

.specialization-item:hover{
    background:#ff7a00;
    color:#fff;
    transform:translateY(-5px);
}

/* Highlights */

.course-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-bottom:35px;
}

.highlight-card{
    text-align:center;
    background:#ffffff;
    border:1px solid #eaeaea;
    padding:20px 10px;
    border-radius:15px;
    transition:0.4s;
}

.highlight-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.highlight-card h4{
    color:#ff7a00;
    font-size:24px;
    margin-bottom:8px;
}

.highlight-card p{
    font-size:14px;
    color:#666;
}

/* Button */

.apply-btn{
    display:inline-block;
    background:#ff7a00;
    color:#fff;
    padding:16px 40px;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:0.4s;
}

.apply-btn:hover{
    background:#e86800;
    transform:translateY(-3px);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .course-wrapper{
        flex-direction:column;
    }

    .course-image img{
        min-height:350px;
    }

    .course-content{
        padding:30px;
    }

    .section-heading h2{
        font-size:36px;
    }

    .course-content h3{
        font-size:30px;
    }

    .course-highlights{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .specialization-grid{
        grid-template-columns:1fr;
    }

    .course-highlights{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:30px;
    }

    .course-content h3{
        font-size:26px;
    }
}
/* ==========================
   PREMIUM FOOTER
========================== */

.footer{
    position:relative;
    background:linear-gradient(135deg,#00142d,#002b5c,#00142d);
    color:#fff;
    overflow:hidden;
}

.footer-overlay{
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,123,0,.08);
    border-radius:50%;
    top:-250px;
    right:-200px;
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
    padding:80px 0;
    position:relative;
    z-index:2;
}

.footer-about img{
    width:90px;
    margin-bottom:20px;
}

.footer-about h3{
    font-size:28px;
    margin-bottom:15px;
}

.footer-about p{
    color:#d1d5db;
    line-height:1.9;
    margin-bottom:25px;
}

.footer-links h4,
.footer-contact h4{
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer-links h4::after,
.footer-contact h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#ff7b00;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#d1d5db;
    transition:.4s;
}

.footer-links ul li a:hover{
    color:#ff7b00;
    padding-left:8px;
}

.contact-card{
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:20px;
    padding:18px;
    background:rgba(255,255,255,.05);
    border-radius:12px;
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-5px);
    background:rgba(255,123,0,.15);
}

.contact-card i{
    color:#ff7b00;
    font-size:18px;
    margin-top:4px;
}

.contact-card span{
    color:#d1d5db;
    line-height:1.7;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.4s;
    text-decoration: none;
}

.social-icons a:hover{
    background:#ff7b00;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:20px 0;
}

.footer-bottom-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#d1d5db;
    margin:0;
}

.footer-bottom span{
    color:#ff7b00;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom-flex{
        flex-direction:column;
        text-align:center;
    }

}
/* COPYRIGHT */

.copyright{

    border-top:
    1px solid rgba(255,255,255,.1);

    padding:20px 0;

}

.copyright .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

}

.copyright p{

    color:#cbd5e1;
    font-size:14px;

}

/* RESPONSIVE */

@media(max-width:1100px){

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

    }

    .copyright .container{

        flex-direction:column;
        text-align:center;

    }

}
/* ===========================
   TOP BRANDING
=========================== */

.top-branding{
    width:100%;
    background:#fff;
    border-top:8px solid #0a2f66;
    border-bottom:3px solid #d4a017;
    padding:10px 0;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.branding-container{
    width:95%;
    max-width:1500px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* College Logo */

.branding-logo img{
    width:120px;
    height:auto;
}

/* Institute Name */

.branding-content{
    flex:1;
    text-align:center;
}

.branding-content h1{
    font-size:30px;
    color:#0a2f66;
    font-weight:800;
    line-height:1.2;
}

.branding-content h3{
    font-size:20px;
    color:#444;
    margin-top:5px;
}

.branding-content p{
    font-size:14px;
    color:#FF7B00;
    margin-top:5px;
    font-weight: 600;
}

/* Recognition Logos */

.branding-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.recognition-logo{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:50%;
    border:1px solid #e5e5e5;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.3s;
}

.recognition-logo:hover{
    transform:translateY(-5px);
}

.recognition-logo img{
    max-width:60px;
    max-height:60px;
    object-fit:contain;
}

/* Tablet */

@media(max-width:991px){

    .branding-container{
        flex-direction:column;
        text-align:center;
    }

    .branding-logo img{
        width:100px;
    }

    .branding-content h1{
        font-size:30px;
    }

    .branding-content h3{
        font-size:16px;
    }

    .branding-right{
        justify-content:center;
        flex-wrap:wrap;
        margin-top:10px;
    }

}

/* Mobile */

@media(max-width:576px){

    .top-branding{
        padding:8px 0;
    }

    .branding-logo img{
        width:80px;
    }

    .branding-content h1{
        font-size:20px;
        line-height:1.3;
    }

    .branding-content h3{
        font-size:13px;
    }

    .branding-content p{
        font-size:12px;
    }

    .branding-right{
        gap:10px;
    }

    .recognition-logo{
        width:60px;
        height:60px;
    }

    .recognition-logo img{
        max-width:42px;
        max-height:42px;
    }

}
/* ==================================
   WELCOME HEADER
================================== */

.welcome-header{
    text-align:center;
    margin-bottom:70px;
    position:relative;
}

.welcome-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 25px;

    background:rgba(255,153,0,.12);
    color:#ff9800;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.welcome-tag i{
    font-size:16px;
}

.welcome-header h2{
    margin-top:25px;

    font-size:52px;
    font-weight:800;
    line-height:1.2;

    color:#0b2c5f;
}

.welcome-header h2 span{
    display:block;
    color:#ff9800;
}

.header-divider{
    width:100px;
    height:5px;

    margin:25px auto;

    background:linear-gradient(
    90deg,
    #0b2c5f,
    #ff9800);

    border-radius:20px;
}

.welcome-header p{
    max-width:800px;
    margin:auto;

    color:#6b7280;

    font-size:18px;
    line-height:1.9;
}

/* Tablet */

@media(max-width:992px){

    .welcome-header h2{
        font-size:42px;
    }

}

/* Mobile */

@media(max-width:768px){

    .welcome-header{
        margin-bottom:50px;
    }

    .welcome-header h2{
        font-size:30px;
    }

    .welcome-header p{
        font-size:15px;
        padding:0 10px;
    }

    .welcome-tag{
        font-size:12px;
    }

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-choose{
    padding:80px 0;
    background:#f7f2f2;
}

.why-title{
    text-align:center;
    margin-bottom:50px;
}

.why-title h2{
    font-size:42px;
    font-weight:800;
    color:#003b78;
    letter-spacing:2px;
    margin-bottom:15px;
}

.why-title p{
    color:#34526f;
    font-size:18px;
    max-width:550px;
    margin:auto;
    line-height:1.7;
}

/* Top Row */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

/* Bottom Row */

.why-bottom{
    margin-top:20px;
    display:flex;
    justify-content:center;
}

/* Card */

.why-box{
    background:#fff;
    border-radius:15px;
    padding:35px 20px;

    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);

    transition:.3s;
}

.why-box:hover{
    transform:translateY(-5px);
}

.why-box i{
    color:#f5a623;
    font-size:28px;
    margin-bottom:15px;
}

.why-box h4{
    color:#003b78;
    font-size:17px;
    font-weight:600;
    line-height:1.5;
    margin:0;
}

/* Highlighted Card */

.why-box.active{
    border:1px solid #f5a623;
}

/* Center Card Width */

.why-bottom .why-box{
    width:270px;
}

/* Tablet */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-bottom{
        justify-content:center;
    }
}

/* Mobile */

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-title h2{
        font-size:30px;
    }

    .why-bottom .why-box{
        width:100%;
    }
}
/* ==========================
   LATEST NEWS
========================== */

.latest-news{

    width:100%;

    display:flex;

    align-items:center;

    background:#f5f5f5;

    border-top:1px solid #ddd;

    border-bottom:1px solid #ddd;

    overflow:hidden;

}

/* Left Label */

.news-label{

    position:relative;

    background:#0A3C6B;

    color:#fff;

    font-weight:700;

    font-size:18px;

    padding:14px 35px;

    white-space:nowrap;

    z-index:2;

}

/* Arrow Shape */

.news-label::after{

    content:"";

    position:absolute;

    top:0;
    right:-25px;

    width:0;
    height:0;

    border-top:26px solid transparent;

    border-bottom:26px solid transparent;

    border-left:25px solid #0A3C6B;

}

/* Marquee */

.news-marquee{

    flex:1;

    padding-left:40px;

    font-size:15px;

    color:#222;

    font-weight:500;

}

/* NEW Badge */

.new-badge{

    background:#fff;

    color:#000;

    font-size:13px;

    font-weight:700;

    padding:3px 8px;

    border-radius:15px;

    border:1px solid #ddd;

}

/* Responsive */

@media(max-width:768px){

    .news-label{

        font-size:14px;

        padding:12px 20px;

    }

    .news-label::after{

        right:-20px;

        border-top:22px solid transparent;

        border-bottom:22px solid transparent;

        border-left:20px solid #263f90;

    }

    .news-marquee{

        font-size:14px;

        padding-left:30px;

    }

}
.welcome-video{
    width:100%;
    position:relative;
}

.welcome-video iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

@media(max-width:768px){

    .welcome-video iframe{
        height:250px;
    }

}