@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
}




/* ---------------------- Common CSS Section ---------------------- */
:root {
    --themeBlue: #3b5998;
    --darkBlue: #000d2f;
    --theme-white: #fff;
    --light-pink: #ece2fa;
    --theme-red: #ce1717;
    --textColor: #676565;
    --lightBg: #f2f5f9;
    --blueOne: #3595d5;
    --greenOne: #2ecc71;
    --purpleOne: #9b59b6;
    --redOne: #e74c3c;
    --yellowOne: #ebc113;
    --pinkOne: #db22e6;
    --boxShadow: 0px 0px 22.04px 6.96px rgba(0, 0, 0, 0.04);
    --borderRadius: 50px;
}

.dark-blue {
    background: var(--darkBlue);
}

.bluebg {
    color: #3595d5;
}



h2 {
    font-size: 60px;
    font-weight: 600;
    line-height: 60px;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.common-btn {
    width: 140px;
    height: 50px;
    background: var(--themeBlue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-btn a {
    color: var(--theme-white);
}

.apply-btn {
    width: 140px;
    height: 50px;
    background: var(--theme-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
}

.apply-btn a {
    color: var(--theme-white);
}

.section-heading {
    text-align: center;
    text-transform: uppercase;
    color: var(--darkBlue);
    margin-bottom: 40px;
}

.hall-ticket {
    width: 260px;
    height: 50px;
    background: var(--theme-red);
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
}

.common-btn {
    width: 140px;
    height: 50px;
    background: var(--themeBlue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-white);
}

/* ---------------------- Common CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Loading CSS Section ---------------------- */
.loading {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.801); */
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

@keyframes loading-item {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(180deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loading-item div {
    position: absolute;
    animation: loading-item 1s linear infinite;
    width: 128px;
    height: 128px;
    top: 36px;
    left: 36px;
    border-radius: 50%;
    box-shadow: 0 6.4px 0 0 #3b5998;
    transform-origin: 64px 67.2px;
}

.loading-inner {
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
}

.loading-item {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
    /* see note above */
}

.loading-item div {
    box-sizing: content-box;
}

/* ---------------------- Loading CSS Section ---------------------- */

/* ---------------------- Top Bar CSS Section ---------------------- */
#topbar {
    width: 100%;
    height: 36px;
    padding: 5px 10px;
    background: var(--themeBlue);
    color: var(--theme-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

#topbar .academic {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

#topbar .two {
    display: none;
}

#topbar .social-site {
    width: 100%;
    text-align: right;
}

#topbar .social-site img {
    width: auto;
    height: 20px;
    padding-inline: 5px;
}

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    #topbar .academic {
        width: 50%;
        font-size: 16px;
    }

    #topbar .social-site {
        width: 50%;
    }

    #topbar .one {
        display: none;
    }

    #topbar .two {
        display: block;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- Top Bar CSS Section ---------------------- */

/* ---------------------- Navbar CSS Section ---------------------- */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    background: var(--theme-white);
    box-shadow: 0px 3px 12px -2px rgba(0, 0, 0, 0.49);
    transition: top 0.8s ease-in-out;
    z-index: 998;
}

.navbar .nav-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .nav-menu .brand {
    width: auto;
    height: 60px;
}

.navbar .nav-menu .brand img {
    width: auto;
    height: 100%;
}

.navbar .nav-menu nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.navbar .nav-menu nav ul li {
    display: inline-block;
    padding-inline: 10px;
}

.navbar .nav-menu nav ul li i {
    font-size: 20px;
}

.navbar .nav-menu nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: var(--darkBlue);
}

.navbar .nav-menu nav ul li a:hover,
.navbar .nav-menu nav ul li a.active {
    color: var(--theme-red);
    font-weight: 500;
    transition: all 0.5s;
}

.navbar .nav-menu nav .common-btn {
    color: var(--theme-white);
}

.nav-btn {
    display: none;
}

.hamburger {
    width: 35px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.hamburger .line {
    width: 28px;
    height: 2px;
    border-radius: 50px;
    background-color: var(--darkBlue);
    display: block;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1 .line:nth-child(2) {
    width: 20px;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    width: 100%;
    height: 100%;
    /* padding: 120px 0; */
    background: var(--lightBg);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    display: none;
    /* position: relative; */
}

.mobile-menu .mobile-topbar {
    width: 100%;
    height: 36px;
    padding: 5px 10px;
    background: var(--themeBlue);
    color: var(--theme-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    /* position: absolute;
    top: 0;
    left: 0; */
}

.mobile-menu .mobile-topbar .academic {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}


.mobile-menu .mobile-topbar .social-site {
    width: 100%;
    text-align: right;
}

.mobile-menu .mobile-topbar .social-site img {
    width: auto;
    height: 20px;
    padding-inline: 5px;
}

.mobile-menu nav ul {
    padding: 0;
    margin: 100px 0;
    list-style: none;
}

.mobile-menu nav ul li {
    width: 100%;
    height: 60px;
    padding: 0 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.mobile-menu nav ul li a {
    font-size: 28px;
    font-weight: 600;
    color: var(--darkBlue);
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    color: var(--theme-red);
}

.mobile-menu nav ul li .common-btn {
    width: 260px;
    height: 50px;
    color: var(--theme-white);
}


/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    .navbar .nav-menu nav {
        display: none;
    }

    .nav-btn {
        display: block;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */
/* ---------------------- Navbar CSS Section ---------------------- */

/* ---------------------- Banner CSS Section ---------------------- */
#banner {
    width: 100%;
    height: 80%;
    background-image: url(../img/banner_1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    animation: zoomEffect 30s infinite alternate ease-in-out;    
}

@keyframes zoomEffect {
    0% {
        background-size: 100%;
    }
    100% {
        background-size: 200%;
    }
}

#banner .overlay {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    background: #000d2fd5;
}

#banner .overlay .title {
    width: 100%;
    height: 120px;
    margin: 0 auto;
    color: var(--theme-white);
    font-size: 80px;
    font-weight: 600;
    /* text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px; */
    text-align: center;
    position: relative;
}

.word {
    width: 100%;
    position: absolute;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
}

.letter {
    display: inline-block;
    position: relative;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#banner .overlay .initial-form-area {
    width: 80%;
    min-height: 400px;
    padding: 20px 20px;
    border-radius: 10px;
    background: var(--lightBg);
    margin: 0 auto;
}

#banner .overlay .initial-form-area .form-heading {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

#banner .overlay .initial-form-area .input-box input {
    width: 100%;
    height: 50px;
    padding: 10px;
    background: transparent;
    font-size: 16px;
    color: var(--darkBlue);
    outline: none;
    border: none;
    border-bottom: 1px solid var(--darkBlue);
    margin-bottom: 20px;
    border-radius: 5px;    
    z-index: 996;
    position: relative;
}

#banner .overlay .initial-form-area .input-box .label {
    background: var(--lightBg);
    font-size: 16px;
    position: absolute;
    transform: translate(10px, -56px);
    transition: 0.5s ease;
    z-index: 10px;
}

#banner .overlay .initial-form-area .input-box input:focus+.label,
#banner .overlay .initial-form-area .input-box input:valid+.label {
    color: var(--darkBlue);
    background: var(--lightBg);
    padding: 5px;
    transform: translate(-10px, -85px) scale(0.80);
    z-index: -1px;
}

#banner .overlay .initial-form-area form button {
    width: 140px;
    height: 40px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: var(--theme-red);
    color: var(--theme-white);
}

#banner .overlay .initial-form-area .banner-btn-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

#banner .overlay .initial-form-area .banner-btn-group a {
    display: inline-block;
    width: 90%;
}

/* #banner .overlay .initial-form-area .banner-btn-group .common-btn{
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
}

#banner .overlay .initial-form-area .banner-btn-group .common-btn.one, 
#banner .overlay .initial-form-area .banner-btn-group .common-btn.two {
    width: 50%;
} */

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {
    #banner .overlay .initial-form-area {
        width: 100%;
    }
    #banner .overlay .title {
        font-size: 70px;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    #banner .overlay .title {
        font-size: 50px;
    }
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- Banner CSS Section ---------------------- */

/* ---------------------- About IEMJEE CSS Section ---------------------- */
#about-iemjee {
    padding: 60px 0;
}

#about-iemjee .img-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid var(--blueOne); */
    position: relative;
}

#about-iemjee .img-content .main-image {
    width: 70%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

#about-iemjee .img-content .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about-iemjee .img-content .msg-object {
    width: 200px;
    height: 100px;
    position: absolute;
    left: 0px;
    bottom: 40px;
    animation: up-down;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes up-down {
    from {
        transform: translateX(20px)
    }

    to {
        transform: translateX(0px)
    }
}

#about-iemjee .img-content .text-box {
    width: 200px;
    height: 100px;
    padding: 10px;
    background-color: var(--lightBg);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
    border-radius: 15px;
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: var(--darkBlue);
    position: relative;
}

#about-iemjee .img-content .text-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 60px;
    height: 40px;
    background-color: var(--lightBg);
    clip-path: polygon(0% 0%, 84% 84%, 100% 100%, 0 100%);
}

#about-iemjee .img-content .image-object {
    width: 200px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    position: absolute;
    top: 50px;
    right: 0;
}

#about-iemjee .img-content .image-object img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about-iemjee .text-content {
    width: 100%;
    padding: 0 40px;
}

#about-iemjee .text-content h3 {
    color: var(--themeBlue);
    font-weight: 600;
}

#about-iemjee .text-content p {
    font-size: 16px;
    color: var(--textColor);
    font-weight: 400;
    text-align: justify;
    margin-bottom: 20px;
}

#about-iemjee .text-content p span {
    font-weight: 600;
    color: var(--themeBlue);
}

#about-iemjee .text-content .btn-group {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

#about-iemjee .exam-mode {
    width: 100%;
    padding: 100px 0;
}

#about-iemjee ul.tab-list {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
}

#about-iemjee ul.tab-list li {
    width: 180px;
    height: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border-bottom: 1px solid var(--themeBlue);
    cursor: pointer;
    transition: all 0.5s;
}

#about-iemjee ul.tab-list li.active {
    background: var(--lightBg);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
}

#about-iemjee ul.tab-list li a {
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: var(--textColor);
}

#about-iemjee ul.tab-list li.active a {
    color: var(--darkBlue);
    font-weight: 600;
}

#about-iemjee .tab-content {
    width: 100%;
    min-height: auto;
    padding: 20px 40px;
    border-radius: 0 20px 20px 20px;
}

#about-iemjee .tab-content .date {
    width: 80%;
    height: 280px;
    background: var(--lightBg);
    border-radius: 20px;
    border-bottom: 1px solid var(--darkBlue);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}

#about-iemjee .tab-content .date .dates {
    font-size: 24px;
    font-weight: 600;
    color: var(--darkBlue);
}

#about-iemjee .tab-content .date .overlay {
    width: 94%;
    height: 94%;
    padding: 40px;
    background: var(--darkBlue);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.50s;
}

#about-iemjee .tab-content .date .overlay:hover {
    opacity: 1;
}

#about-iemjee .tab-content .date .overlay>* {
    transform: translateY(40px);
    transition: transform 0.50s;
}

#about-iemjee .tab-content .date .overlay:hover>* {
    transform: translateY(0px);
    transition: transform 0.50s;
}

#about-iemjee .tab-content .date .overlay .title {
    font-size: 20px;
    font-weight: 600;
    color: var(--lightBg);
    margin-bottom: 20px;
}

#about-iemjee .tab-content .date .overlay .dated {
    font-size: 24px;
    font-weight: 600;
    color: var(--light-pink);
}

#about-iemjee .tab-content .date .overlay .dated sup {
    color: var(--light-pink);
    z-index: 20;
}

#about-iemjee .tab-content .date .img-box {
    width: 80px;
    height: 80px;
}

#about-iemjee .tab-content .date .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#about-iemjee .tab-content .time {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

#about-iemjee .tab-content .time .shift {
    width: 100%;
    height: 60px;
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    background: var(--lightBg);
    border-radius: 20px;
    border-bottom: 1px solid var(--darkBlue);
}

#about-iemjee .tab-content .time .shift i {
    font-size: 24px;
    color: var(--darkBlue);
}

#about-iemjee .tab-content .time .shift .shift-no {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: var(--darkBlue);
}

#about-iemjee .tab-content .time .shift .timing {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: var(--redOne);
}

#about-iemjee .venue-box {
    width: 100%;
    height: 60px;
    padding: 20px;
    background: var(--lightBg);
    margin-bottom: 5px;
    border-radius: 20px;
    border-bottom: 1px solid var(--darkBlue);
    overflow: hidden;
    transition: all 0.5s;
}

#about-iemjee .venue-box:nth-child(1) {
    height: 60px;
}

#about-iemjee .venue-box:nth-child(1):hover {
    height: 220px;
    transition: all 0.5s;
}

#about-iemjee .venue-box:hover {
    height: 120px;
    transition: all 0.5s;
}

#about-iemjee .venue-box .venue {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.5s;
}

#about-iemjee .venue-box .venue span {
    color: var(--redOne);
}

#about-iemjee .venue-box .center {
    width: 100%;
}

#about-iemjee .venue-box .center .center-name {
    font-size: 16px;
    color: var(--blueOne);
    text-transform: uppercase;
    font-weight: 500;
    /* margin-bottom: 5px; */
}

#about-iemjee .venue-box .center .location {
    font-size: 14px;
}

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {
    #about-iemjee .img-content .main-image {
        width: 90%;
        margin-bottom: 40px;
    }

    #about-iemjee .img-content .text-box {
        width: 180px;
        height: 80px;
        font-size: 18px;
    }
    
    #about-iemjee .img-content .text-box::after {
        right: -28px;
        width: 45px;
        height: 28px;
    }

    #about-iemjee .text-content {
        padding: 0;
    }

    #about-iemjee .text-content .btn-group {
        justify-content: center;
    }

    #about-iemjee .exam-mode {
        width: 100%;
        padding: 50px 0;
    }

    #about-iemjee .tab-content .date {
        width: 100%;
        margin: 20px auto 40px auto;
    }

    #about-iemjee .tab-content .time {
        width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #about-iemjee .img-content .image-object {
        display: none;
    }

    #about-iemjee .tab-content {
        width: 100%;
        min-height: auto;
        padding: 10px 10px;
        border-radius: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    #about-iemjee .img-content .main-image {
        width: 100%;
        margin-bottom: 40px;
    }

    #about-iemjee .tab-content .time {
        gap: 10px;
    }

    #about-iemjee .tab-content .time .shift {
        gap: 5px;
    }

    #about-iemjee .tab-content .time .shift .timing {
        font-size: 18px;
    }

    #about-iemjee .tab-content .time .shift .shift-no {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #about-iemjee .exam-mode {
        width: 100%;
        padding: 50px 0;
    }
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- About IEMJEE CSS Section ---------------------- */

/* ---------------------- Process CSS Section ---------------------- */
#process {
    padding: 100px 0;
    background: var(--lightBg);
}

#process .process {
    width: 100%;
    height: 120px;
    margin: 20px auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0px;
    position: relative;
}

.process-number {
    width: 20%;
    font-size: 120px;
    font-family: "Bangers", system-ui;
    font-weight: 600;
}

.blueOne {
    color: #3595d5;
}

.greenOne {
    color: #2ecc71;
}

.purpleOne {
    color: #9b59b6;
}

.yellowOne {
    color: #ebc113;
}

/* .redOne {
    color: #e74c3c;
}

.pinkOne {
    background: #db22e6;
} */

.step {
    width: 80%;
    height: 120px;
    background: var(--lightBg);
    box-shadow: -4px 0px 5px -3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 10px;
    margin-left: 40px;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 40px;
    transform: skewX(-20deg);
}
/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    #process .process {
        width: 100%;
        height: 120px;
        margin: 20px auto;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0px;
        position: relative;
    }

    .step {
        width: 50%;
        padding: 20px;
        left: 120px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    .step {
        width: 50%;
        padding: 20px;
        left: 80px;
    }
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- Process CSS Section ---------------------- */

/* ---------------------- Programs CSS Section ---------------------- */
#programs {
    padding: 100px 0;
    background: var(--theme-white);
}

#programs ul.tab-list {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 20px 0 0 0;
    list-style: none;
}

#programs ul.tab-list li {
    width: 180px;
    height: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border-bottom: 1px solid var(--themeBlue);
    cursor: pointer;
    transition: all 0.5s;
}

#programs ul.tab-list li.active {
    background: var(--lightBg);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
}

#programs ul.tab-list li a {
    cursor: pointer;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: var(--textColor);
}

#programs ul.tab-list li.active a {
    color: var(--darkBlue);
    font-weight: 600;
}

#programs .tab-content {
    width: 100%;
    min-height: 500px;
    padding: 20px 40px;
    border-radius: 0 20px 20px 20px;
}

#programs .tab-content .courses .course-type {
    width: auto;
    height: 40px;
    border-radius: 50px;
    margin-block: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--theme-red);
    font-size: 20px;
    font-weight: 700;
}

#programs .tab-content .courses h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--darkBlue);
    margin: 10px 0;
}

#programs .tab-content .courses ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#programs .tab-content .courses ul li {
    height: 36px;
    line-height: 16px;
    padding-left: 20px;
    position: relative;
}

#programs .tab-content .courses ul li::before {
    content: "";
    background-image: url(../img/arrow-right.svg);
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 30%;
    transform: translateY(-70%);
}

#programs .tab-content .courses ul li a {
    color: var(--textColor);
}

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {
    #programs .tab-content .courses ul li {
        height: 50px;
        padding-left: 20px;
        position: relative;
    }
    
    #programs .tab-content .courses ul li::before {
        content: "";
        background-image: url(../img/arrow-right.svg);
        background-size: 10px 10px;
        width: 10px;
        height: 10px;
        position: absolute;
        left: 0;
        top: 28%;
        transform: translateY(-70%);
    }
}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    #programs ul.tab-list {
        width: 100%;
        height: 200px;
        flex-direction: column;
        padding: 0;
    }

    #programs ul.tab-list li {
        width: 100%;
        height: 100%;
        margin-bottom: 5px;
    }

    #programs .tab-content .courses ul li {
        height: 50px;
    }

    #programs .tab-content .courses ul li::before {
        top: 28%;
    }

    #programs .tab-content {
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    #programs .tab-content .courses ul li {
        height: 70px;
        margin-bottom: 10px;
    }

    #programs .tab-content .courses ul li a {
        font-size: 16px;
        line-height: 14px;
    }

    #programs .tab-content .courses ul li::before {
        top: 18%;
    }
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- Programs CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- FAQ CSS Section ---------------------- */
#faq {
    padding: 100px 0;
    background: var(--lightBg);
}

.accordion-area {
    width: 100%;
    background: transparent;
}

.accordion-area .accordion-header {
    width: 100%;
    height: 50px;
    background: var(--lightBg);
    /* box-shadow: var(--boxShadow); */
    /* box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.35); */
    border-radius: var(--borderRadius);
    border-bottom: 1px solid var(--themeBlue);
    /* border: 1px solid var(--darkBlue); */
    margin-bottom: 10px;
    color: var(--themeWhite);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
}

.accordion-area .accordion-header.collapsed {
    background: var(--lightBg);
    color: var(--themeNavyBlue);
    border-bottom: 0.5px solid #676565a2;
    margin-bottom: 0px;
}

.accordion-area .accordion-header::after {
    content: url(../img/dash.png);
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--themeWhite);
    display: inline-block;
    transition: all 0.5s;
    position: relative;
}

.accordion-area .accordion-header.collapsed::after {
    content: url(../img/plus.png);
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--themeNavyBlue);
    display: inline-block;
    transition: all 0.5s;
    position: relative;
}

.accordion-area .card {
    border: none;
    outline: none;
    background: transparent;
    margin-block: 15px;
}

.accordion-area .card .card-body {
    width: 100%;
    height: auto;
    background: var(--lightBg);
    border-radius: 25px;
    box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.24);
    padding: 20px 40px 20px 20px;
}

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    .accordion-area .accordion-header {
        height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    .accordion-area .accordion-header {
        height: 65px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- FAQ CSS Section ---------------------- */

/* ---------------------- Footer CSS Section ---------------------- */
footer {
    padding: 60px 0 50px 0;
    background: var(--darkBlue);
}

footer .branding-info {
    width: 100%;
}

footer .branding-info .brand {
    width: 100px;
    height: 100px;
}

footer .branding-info .brand img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

footer .branding-info h5 {
    color: var(--lightBg);
    text-transform: uppercase;
}

footer .brand-info img {
    width: auto;
    height: 25px;
    margin-right: 20px;
}

footer .branding-info .brand-info p {
    text-align: justify;
    font-size: 15px;
    color: var(--lightBg);
}

footer .footer-social-link {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    margin-block: 20px;
}

footer .footer-social-link img {
    width: 30px;
    height: 30px;
}

footer .branding-info .common-btn {
    width: 100%;
}

footer .quick-link {
    width: 100%;
}

footer .quick-link h5 {
    color: var(--lightBg);
    text-transform: uppercase;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer ul li {
    margin-block: 20px;
}

footer ul li a {
    color: var(--light-pink);
    font-weight: 500;
    font-size: 14px;
}

footer ul li a:hover {
    color: var(--light-pink);
}

/* footer .queries {
    text-align: center;
    color: var(--lightBg);
}

footer .queries a {
    color: var(--lightBg);
}

footer .queries a:hover {
    color: var(--themeBlue);
} */

footer .scroll-top {
    width: 40px;
    height: 40px;
    border: 2px solid var(--blueOne);
    border-radius: var(--borderRadius);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s;
    z-index: 9999;
  }
  
  footer .scroll-top.active {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.5s ease;
  }
  
  footer .scroll-top img.back-img {
    z-index: 998;
  }
  
  footer .scroll-top img.front-img {
    position: absolute;
    opacity: 0;
    z-index: 999;
  }
  
  footer .scroll-top:hover .front-img {
    opacity: 1;
  }
  
  footer .scroll-top img {
    width: 60%;
    height: 60%;
  }


/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {
    footer .queries h2 {
        font-size: 40px;
        font-weight: 600;
        line-height: 60px;
    }
}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */

/* ---------------------- Footer CSS Section ---------------------- */

/* ---------------------- Legal CSS Section ---------------------- */
#legal {
    width: 100%;
    background: var(--darkBlue);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--theme-white);
    border-top: 0.5px solid #ffffff46;
}

/* ---------------------- Legal CSS Section ---------------------- */

/* =========================== IEMJEE Form Page Start =========================== */

/* ---------------------- Main Form CSS Section Start ---------------------- */
#personal-details {
    width: 100%;
    height: 100%;
    background: var(--themeWhite);
    gap: 20px;
    overflow: hidden;
}

#personal-details .step-up {
    width: 320px;
    height: 100vh;
    padding: 60px 20px;
    box-sizing: border-box;
    background: var(--lightBg);
    position: fixed;
    top: 0;
    left: 0;
}

#personal-details .step-up .brand {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#personal-details .step-up .brand img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#personal-details .step-up .title {
    font-size: 24px;
    font-weight: 600;
    color: var(--darkBlue);
    margin-bottom: 50px;
}

#personal-details .step-up ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#personal-details .step-up ul li {
    width: 100%;
    height: 80px;
}

#personal-details .step-up ul li a {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: var(--blueOne);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    transition: all 0.5s;
}

#personal-details .step-up ul li.active a {
    color: var(--darkBlue);
    transition: all 0.5s;
}

#personal-details .step-up ul li a .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blueOne);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100px;
    transition: all 0.5s;
}

#personal-details .step-up ul li.active .icon {
    background: var(--darkBlue);
    transition: all 0.5s;
}

#personal-details .step-up ul li a .icon::after {
    content: "";
    width: 1px;
    height: 60px;
    background: var(--blueOne);
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1px;
}

#personal-details .step-up ul li.active .icon::after {
    background: var(--darkBlue);
    transition: all 0.5s;
}

#personal-details .step-up ul li a .icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

#personal-details .step-up .hall-ticket {
    margin: 40px auto;
}

/* ----------- Mobile View Step-up Section Start ----------- */
#personal-details .custom-step-up {
    width: 100%;
    height: 80px;
    background: var(--lightBg);
    box-shadow: 0px 3px 12px -2px rgba(0, 0, 0, 0.49);
    padding: 20px;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#personal-details .custom-step-up .custom-step-up-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#personal-details .custom-step-up .brand {
    width: 80px;
    height: auto;
}

#personal-details .custom-step-up .brand img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#personal-details .custom-step-up .hall-ticket {
    width: 180px;
    margin: 0;
    font-size: 16px;
}

#personal-details .tab-content {
    width: calc(100% - 320px - 20px);
    height: auto;
    margin-left: 340px;
    background: var(--lightBg);
    padding: 40px 30px;
}

#personal-details .tab-content .step-box {
    width: 100%;
    height: 50px;
    padding: 140px 0 20px 0;
    background: var(--lightBg);
    display: none;
}

#personal-details .tab-content .step-box .step-info {
    width: 80%;
    height: 50px;
    margin: 0 auto; 
}

#personal-details .tab-content .step-box .step-info ul { 
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;   
    text-align: center;
    padding: 0;
    margin: 0;
    list-style: none;    
}

#personal-details .tab-content .step-box .step-info ul li {
    width: 50px;
    height: 50px;  
    z-index: 991;
}

#personal-details .tab-content .step-box .step-info ul li a .icon {
    width: 50px;
    height: 50px;
    background: var(--blueOne);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;    
}

#personal-details .tab-content .step-box .step-info ul li.active .icon {
    background: var(--darkBlue);
    transition: all 0.5s;
}

#personal-details .tab-content .step-box .step-info ul li a .next-step {
    position: relative;
}

#personal-details .tab-content .step-box .step-info ul li a .next-step::after {
    content: "";
    width: 200px;
    height: 1px;
    background: var(--blueOne);
    position: absolute;
    right: -200px;
}

#personal-details .tab-content .step-box .step-info ul li.active .icon::after {
    background: var(--darkBlue);
    transition: all 0.5s;
}

#personal-details .tab-content .step-box .step-info ul li a .icon img {
    width: 60%;
    height: 60%;
    object-fit: cover;
}

/* ----------- Mobile View Step-up Section End ----------- */

#personal-details .tab-content .step-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: var(--darkBlue);
    margin: 40px 0;
}

#personal-details .tab-content .input-box {
    margin-block: 10px;
}

#personal-details .tab-content .label {
    width: 100%;
    height: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--darkBlue);
}

#personal-details .tab-content .label span {
    color: var(--theme-red);
    font-size: 16px;
}

#personal-details .tab-content input[type="text"],
#personal-details .tab-content input[type="tel"],
#personal-details .tab-content input[type="email"],
#personal-details .tab-content input[type="date"],
#personal-details .tab-content input[type="number"],
#personal-details .tab-content select {
    border: none;
    outline: none;
    width: 100%;
    height: 45px;
    background: var(--theme-white);
    border-bottom: 1px solid var(--textColor);
    padding: 10px 20px;
    border-radius: 10px;
    margin-block: 5px;
    font-size: 16px;
}

#personal-details .tab-content .input-box #income {
    width: calc(100% - 10px);
    margin-left: 10px;
}

#personal-details .tab-content .input-box .rupee-sign {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#personal-details .tab-content input#ten-marks,
#personal-details .tab-content input#twelve-marks {
    width: calc(100% - 40px);
}

#personal-details .tab-content .input-box .percent {
    margin-left: 10px;
} 

#personal-details .tab-content input::placeholder {
    font-size: 14px;
}

#personal-details .tab-content .fieldset {
    display: flex;
    flex-direction: column;
}

#personal-details .tab-content .fieldset label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

#personal-details .tab-content .fieldset label input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

#personal-details .tab-content input[type="radio"]:checked {
    border-color: var(--darkBlue);
}

#personal-details .tab-content input[type="radio"]:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--darkBlue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#personal-details .tab-content .tab-content a {
    display: inline;
}

#personal-details .tab-content .form-btn-group {
    width: 340px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

#personal-details .tab-content button {
    border: none;
    outline: none;
    margin-block: 10px;
}

#personal-details .tab-content input[type="file"] {
    margin-bottom: 20px;
}

#personal-details .tab-content .img-preview {
    width: 300px;
    height: auto;
    border: 1px solid var(--darkBlue);
}

#personal-details .tab-content .sign-preview {
    width: 300px;
    height: auto;
    border: 1px solid var(--darkBlue);
}

#personal-details .tab-content .preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#review {
    width: 100%;
    height: 100%;
    background: var(--lightBg);
    padding: 20px;
}

#review .form-review {
    width: 100%;
    height: 100%;    
    border: 2px solid var(--darkBlue);    
    padding: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #333;
  }

  th, td {
    border: 1px solid #333;
    padding: 8px;
    vertical-align: top;
  }

  td {
    width: calc(100% / 2);
  }

  th {
    text-align: center;
    font-weight: bold;
  }

  .section-header {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
  }

  .submit-btn {
    background-color: #2a4d9b;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
  }


/* ----------- Responsive CSS Start ----------- */
@media (max-width: 1200px) {}

@media (max-width: 1024px) {
    #personal-details .step-up {
        display: none;
    }

    #personal-details .tab-content {
        width: 100%;
        height: 100%;
        margin-left: 0px;
    }

    #personal-details .custom-step-up {
        display: block;
    }

    .tab-content .step-box {
        display: block;
    }
    
}

@media (max-width: 992px) {
    .docs-upload {
        margin: 40px auto;
        text-align: center;
    }

    #personal-details .tab-content .img-preview,
    #personal-details .tab-content .sign-preview {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .tab-content .step-box .step-info ul li a .next-step::after {
        width: 140px;
        right: -140px;
    }
}

@media (max-width: 576px) {
    .tab-content .step-box .step-info ul li a .next-step::after {
        width: 100px;
        right: -100px;
    }
    
    #personal-details .tab-content .label-unique {
    margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .tab-content .step-box .step-info ul li {
        width: 35px;
        height: 35px;  
    }

    .tab-content .step-box .step-info ul li a .icon {
        width: 35px;
        height: 35px;
    }

    .tab-content .step-box .step-info ul li a .next-step::after {
        width: 80px;
        right: -80px;
    }
}

@media (max-width: 360px) {
    .tab-content .step-box .step-info ul li a .next-step::after {
        width: 50px;
        right: -50px;
    }
}
/* ----------- Responsive CSS End ----------- */

/* =========================== IEMJEE Form Page End =========================== */

/* =========================== IEMJEE Hall-Ticket Page Start =========================== */
/* ---------------------- Hall-Ticket Download Form CSS Section ---------------------- */
#hall-ticket{
    width: 100%;
    height: 100vh;
    background: var(--lightBg);
    padding: 100px 0;
}


#hall-ticket .brand {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#hall-ticket .brand img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#hall-ticket .step-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    color: var(--darkBlue);
    margin: 0px 0 40px 0;
}

#hall-ticket .step-heading form {
    width: 100%;
}

#hall-ticket form input[type="text"],
#hall-ticket form input[type="email"],
#hall-ticket form input[type="date"] {
    border: none;
    outline: none;
    width: 100%;
    height: 45px;
    background: var(--theme-white);
    border-bottom: 1px solid var(--textColor);
    padding: 10px 20px;
    border-radius: 10px;
    margin-block: 5px;
}

#hall-ticket .label span {
    color: var(--theme-red);
    font-size: 16px;
}

#hall-ticket button {
    border: none;
    outline: none;
    width: calc(100% - 180px);
    height: 45px;
    border-radius: 10px;
    background: var(--themeBlue);
    margin-block: 20px;
    color: var(--theme-white);
}

/* ---------------------- Hall-Ticket Download Form CSS Section ---------------------- */

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */
/* =========================== IEMJEE Hall-Ticket Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* =========================== Untitle Page End =========================== */

/* =========================== Untitle Page Start =========================== */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */

/* ---------------------- Unnamed CSS Section ---------------------- */
/* ---------------------- Unnamed CSS Section ---------------------- */
/* =========================== Untitle Page End =========================== */

/* ---------------------- Responsive CSS Start ---------------------- */

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {}

@media (max-width: 360px) {}

/* ---------------------- Responsive CSS End ---------------------- */