


/*===========================
    1. COMMON css
===========================*/
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@300;400;500;600;700;800&display=swap");
body {
    font-family: "Exo", sans-serif;
    font-weight: normal;
    font-style: normal;
    color: #151515;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    text-decoration: none;
}

i,
span,
a {
    display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Exo", sans-serif;
    font-weight: 700;
    color: #641212;
    margin: 0px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #151515;
    margin: 0px;
}

a, button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a, button, img, input {
    outline: 0;
}
a:focus, button:focus, img:focus, input:focus {
    outline: 0;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #641212;
}

button, input[type=submit] {
    cursor: pointer;
}

.bg_cover {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.row-wrapper {
    margin-left: -12px;
    margin-right: -12px;
}
.row-wrapper .custom-col {
    padding: 0 12px;
}

@media only screen and (min-width: 1400px), lg {
    .container {
        max-width: 1200px;
    }
}

/*===== All Button Style =====*/
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 0 30px;
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
    background-color: #9d453c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .main-btn {
        padding: 0 25px;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .main-btn {
        padding: 0 20px;
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }
}
.main-btn:hover {
    background-color: #363535;
    color: #fff;
}
.main-btn.main-btn-2 {
    background-color: #363535;
    color: #fff;
}
.main-btn.main-btn-2:hover {
    background-color: #641212;
}

/*===== All Slick Slide Outline Style =====*/
.slick-slide {
    outline: 0;
}

/*===== All Section Title Style =====*/
.section-title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .section-title {
        display: block;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.section-title .title {
    font-size: 47px;
    line-height: 54px;
    position: relative;
    padding-right: 60px;
    display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title .title {
        font-size: 34px;
        line-height: 40px;
        padding-right: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title .title {
        font-size: 36px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .section-title .title {
        font-size: 30px;
        line-height: 35px;
        padding-bottom: 20px;
        padding-right: 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title .title {
        font-size: 24px;
        line-height: 30px;
        padding-bottom: 0;
        padding-right: 30px;
    }
}
.section-title .title::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 65%;
    background-color: #641212;
    top: 50%;
    right: 0px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .section-title .title::before {
        height: 2px;
        left: 0;
        right: auto;
        top: auto;
        bottom: 0;
        width: 100px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title .title::before {
        width: 2px;
        height: 75%;
        left: auto;
        top: 50%;
        right: 0px;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.section-title p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #641212;
    padding-left: 60px;
    -moz-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title p {
        font-size: 16px;
        padding-left: 50px;
        line-height: 28px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-title p {
        font-size: 16px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .section-title p {
        padding-left: 0px;
        font-size: 16px;
        line-height: 28px;
        margin-top: 25px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .section-title p {
        padding-left: 30px;
        font-size: 16px;
        line-height: 28px;
        margin-top: 0;
    }
}

.section-title-2 .title {
    font-size: 47px;
    line-height: 54px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title-2 .title {
        font-size: 38px;
        line-height: 45px;
    }
}
@media (max-width: 767px) {
    .section-title-2 .title {
        font-size: 30px;
        line-height: 30px;
    }
}
.section-title-2 .line {
    width: 150px;
    background: transparent;
    border: 1px solid #641212;
    margin-top: 25px;
}
.section-title-2 p {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: #641212;
    margin-top: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-title-2 p {
        font-size: 16px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .section-title-2 p {
        padding-left: 0px;
        font-size: 16px;
        line-height: 28px;
    }
}

/*===== All Pagination Style =====*/
.pagination-items {
    padding-top: 60px;
}
.pagination-items li {
    display: inline-block;
    margin: 0 10px;
}
@media (max-width: 767px) {
    .pagination-items li {
        margin: 0 5px;
    }
}
.pagination-items li a {
    font-weight: 500;
    font-size: 18px;
    color: #a2a2a2;
}
@media (max-width: 767px) {
    .pagination-items li a {
        font-size: 14px;
    }
}
.pagination-items li a.active {
    color: #151515;
    padding-right: 90px;
    position: relative;
}
@media (max-width: 767px) {
    .pagination-items li a.active {
        padding-right: 50px;
    }
}
.pagination-items li a.active::before {
    position: absolute;
    content: "";
    width: 75px;
    height: 1px;
    background-color: #151515;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .pagination-items li a.active::before {
        width: 40px;
    }
}

/*===== All Form, Radio & Checkbox Style =====*/
.form-radio input[type=radio] {
    display: none;
}
.form-radio input[type=radio] + label {
    font-weight: 500;
    font-size: 14px;
    color: #303030;
    margin-bottom: 0;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    display: block;
}
.form-radio input[type=radio] + label span {
    width: 14px;
    height: 14px;
    border: 1px solid #707070;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.form-radio input[type=radio] + label span::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    background-color: #641212;
    border-radius: 50%;
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.form-radio input[type=radio]:checked + label span {
    border-color: #641212;
}
.form-radio input[type=radio]:checked + label span::before {
    opacity: 1;
    visibility: visible;
}

.checkbox input[type=checkbox] {
    display: none;
}
.checkbox input[type=checkbox] + label {
    position: relative;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #151515;
}
@media (max-width: 767px) {
    .checkbox input[type=checkbox] + label {
        font-size: 14px;
    }
}
.checkbox input[type=checkbox] + label span {
    width: 16px;
    height: 16px;
    border: 1px solid #151515;
    position: relative;
    border-radius: 3px;
    top: 5px;
    margin-right: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media (max-width: 767px) {
    .checkbox input[type=checkbox] + label span {
        width: 14px;
        height: 14px;
    }
}
.checkbox input[type=checkbox] + label span::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 12px;
    color: #222;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
    top: -6px;
    left: 1px;
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 767px) {
    .checkbox input[type=checkbox] + label span::before {
        top: -5px;
        left: 0;
    }
}
.checkbox input[type=checkbox]:checked + label span {
    background-color: #641212;
    border-color: #641212;
}
.checkbox input[type=checkbox]:checked + label span::before {
    color: #fff;
    opacity: 1;
    visibility: visible;
}

.single-form {
    margin-top: 30px;
}
.single-form textarea, .single-form input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #DBDBDB;
    font-weight: 500;
    font-size: 16px;
    color: #303030;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.single-form textarea:focus, .single-form input:focus {
    border-color: #363535;
}
@media (max-width: 767px) {
    .single-form textarea, .single-form input {
        height: 45px;
    }
}
.single-form textarea {
    height: 230px;
    padding-top: 15px;
    resize: none;
}
.single-form .main-btn {
    height: 36px;
    line-height: 36px;
    padding: 0 22px;
    font-size: 14px;
}

/*===== All select Style =====*/
.s-hidden {
    visibility: hidden;
    padding-right: 10px;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: #9c9c9c;
    height: 35px;
    border: 0;
    border-bottom: 1px solid #9c9c9c;
    width: 100%;
}

.styledSelect {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 0;
}

.styledSelect::after {
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 1px solid #641212;
    border-right: 1px solid #641212;
    position: absolute;
    top: 50%;
    right: 6px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    margin-top: -9px;
}
.styledSelect.active::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    border: 1px solid #DBDBDB;
    background-color: #fff;
}
.options li {
    padding: 6px 10px;
    margin: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-size: 14px;
    font-weight: 500;
    color: #151515;
}
.options li:hover {
    background-color: #641212;
    color: #fff;
}

/*===== Tab Animation ======*/
.tab-pane.active {
    -webkit-animation: tabUp 0.5s;
    animation: tabUp 0.5s;
}

@-webkit-keyframes tabUp {
    from {
        transform: translate3d(0, 30px, 0);
        -webkit-transform: translate3d(0, 30px, 0);
        -moz-transform: translate3d(0, 30px, 0);
        -ms-transform: translate3d(0, 30px, 0);
        -o-transform: translate3d(0, 30px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}
@keyframes tabUp {
    from {
        transform: translate3d(0, 30px, 0);
        -webkit-transform: translate3d(0, 30px, 0);
        -moz-transform: translate3d(0, 30px, 0);
        -ms-transform: translate3d(0, 30px, 0);
        -o-transform: translate3d(0, 30px, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}

/*===========================
    02. Header css
===========================*/
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: #fff;

}

.header-top {
    background: #4c4d4d;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-top {
        padding: 10px 0;
    }
}
@media (max-width: 767px) {
    .header-top {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .header-top-wrapper .header-top-left {
        width: 100%;
        text-align: center;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-top-wrapper .header-top-left {
        width: auto;
    }
}
.header-top-wrapper .header-top-left .header-meta li {
    font-family: Exo;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

@media (max-width: 767px) {
    .header-top-wrapper .header-top-right {
        width: 100%;
        text-align: center;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-top-wrapper .header-top-right {
        width: auto;
    }
}
.header-top-wrapper .header-top-right .header-link a {
    font-family: Exo;
    font-weight: 400;
    font-size: 13px;
    color: #8D8D8D;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
}
.header-top-wrapper .header-top-right .header-link a + a {
    margin-left: 45px;
}
.header-top-wrapper .header-top-right .header-link a:hover {
    color: #fff;
}
.header-top-wrapper .header-top-right .header-link a.register::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 70%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -22px;
    background-color: #8D8D8D;
}

.navigation {
    position: relative;
}
.navigation .background-nav {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation {
        padding: 10px 0;
    }
}
@media (max-width: 767px) {
    .navigation {
        padding: 10px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper {
        width: 320px;
        height: 100%;
        top: 0;
        left: -400px;
        position: fixed;
        background-color: #641212;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition-duration: 0.8s;
        transition-duration: 0.8s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper {
        width: 280px;
        height: 100%;
        top: 0;
        left: -400px;
        position: fixed;
        background-color: #641212;
        z-index: 9999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition-duration: 0.8s;
        transition-duration: 0.8s;
        -webkit-transition-timing-function: ease;
        transition-timing-function: ease;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper.nav-menus-wrapper-open {
        left: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper.nav-menus-wrapper-open {
        left: 0;
    }
}
.navigation .nav-menus-wrapper .nav-menu {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu {
        display: block;
        padding-top: 80px;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu {
        display: block;
        padding-top: 80px;
    }
}
.navigation .nav-menus-wrapper .nav-menu li {
    position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li {
        border-top: 1px solid rgba(219, 219, 219, 0.15);
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li {
        border-top: 1px solid rgba(219, 219, 219, 0.15);
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li:last-child {
        border-bottom: 1px solid rgba(219, 219, 219, 0.15);
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li:last-child {
        border-bottom: 1px solid rgba(219, 219, 219, 0.15);
    }
}
.navigation .nav-menus-wrapper .nav-menu li + li {
    margin-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navigation .nav-menus-wrapper .nav-menu li + li {
        margin-left: 22px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li + li {
        margin-left: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li + li {
        margin-left: 0;
    }
}
.navigation .nav-menus-wrapper .nav-menu li a {
    font-weight: 600;
    font-size: 16px;
    padding: 10px 0;
    color: #ffffff;
    -webkit-text-stroke: 0.1px black; /* Stroke size and color */
    text-stroke: 0.1px black; /* For other browsers */
    font-weight: bold;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: float;
    position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .navigation .nav-menus-wrapper .nav-menu li a {
        font-size: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li a {
        color: #fff;
        padding: 12px 15px 12px 26px;
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li a {
        color: #fff;
        padding: 12px 15px 12px 26px;
        font-size: 14px;
    }
}
.navigation .nav-menus-wrapper .nav-menu li a.active {
    color: #C51938;
}
.navigation .nav-menus-wrapper .nav-menu li:hover > a {
    color: #641212;
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
    position: absolute;
    width: 215px;
    background-color: rgba(100, 18, 18, 0.60);
    border-top: 2px solid #641212;
    padding: 10px 0px;
    -webkit-box-shadow: 2px 2px 20px rgba(7, 41, 77, 0.1);
    box-shadow: 2px 2px 20px rgba(7, 41, 77, 0.1);
    top: 100%;
    left: 0;
    z-index: 99;
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
        position: relative;
        width: 100%;
        background-color: transparent;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu {
        position: relative;
        width: 100%;
        background-color: transparent;
        padding: 0;
    }
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li {
    margin-left: 0;
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
    line-height: 1;
    padding: 10px 20px;
    font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
        padding: 12px 35px;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a {
        padding: 12px 35px;
    }
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li a i {
    display: block;
    font-size: 13px;
    float: left;
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover > a {
    padding-left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover > a {
        padding: 12px 35px;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li:hover > a {
        padding: 12px 35px;
    }
}
.navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
    top: -12px;
    left: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
        top: 0;
        left: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu {
        top: 0;
        left: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu li a {
        padding-left: 45px;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-menu li .nav-submenu li .nav-submenu li a {
        padding-left: 45px;
    }
}
.navigation .nav-menus-wrapper .submenu-indicator {
    margin-left: 8px;
    margin-top: 8px;
    float: right;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .submenu-indicator {
        margin: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .submenu-indicator {
        margin: 0;
    }
}

.navigation .main-nav {
    display: flex;
    justify-content: center;
    position: relative; /* Ensure it's positioned relative to its normal position */
    z-index: 2; /* Ensure it sits above the slider */
    margin-bottom: -50px; /* Adjust this value to control the overlap amount */
}

.navigation .logo-nav {
    display: none;
}

.navigation .main-nav {
    width: 100%;
}

.navigation .banner-text {
    padding: 20px 20px 20px 20px;
    display: flex;
    justify-content: flex-start;
}

.logo-img {
    width: 10%;
    padding-top: 2%;
    position: absolute;
}

@media only screen and (max-width: 767px) {
    .navigation .banner-text {
        visibility: hidden;
    }

    .logo-img {
        width: 17%;
        padding-top: 1%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #datetime {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .banner-text {
        padding: 10px 0px 10px 110px;
        display: flex;
        justify-content: flex-start;
    }

    .logo-img {
        width: 12%;
        padding-top: 1%;
        position: absolute;
    }
}

.navigation .nav1 {
    display: none;
}


.navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #641212 #641212 transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
        border-color: transparent #DBDBDB #DBDBDB transparent;
        margin: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .submenu-indicator .submenu-indicator-chevron {
        border-color: transparent #DBDBDB #DBDBDB transparent;
        margin: 0;
    }
}
.navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
    right: 15px;
    top: 16px;
    position: absolute;
    margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
        right: 0;
        top: 0;
    }
}
@media (max-width: 767px) {
    .navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator {
        right: 0;
        top: 0;
    }
}
.navigation .nav-menus-wrapper .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navigation .nav-toggle {
    width: 30px;
    height: 30px;
    padding: 6px 2px 0;
    position: absolute;
    top: 50%;
    margin-top: -14px;
    right: 15px;
    cursor: pointer;
}
.navigation .nav-toggle::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #641212;
    border-radius: 10px;
    -webkit-box-shadow: 0 0.5em 0 0 #641212, 0 1em 0 0 #641212;
    box-shadow: 0 0.5em 0 0 #641212, 0 1em 0 0 #641212;
}
.navigation .nav-menus-wrapper-close-button {
    width: 30px;
    height: 40px;
    margin: 10px 7px;
    display: none;
    float: right;
    color: #DBDBDB;
    font-size: 26px;
    cursor: pointer;
}

@media only screen and (min-width: 991px) {
    .navigation .nav-toggle {
        display: none;
    }

    .navigation.sticky .banner-text {
        display: none;
    }
}

/* Sticky Navigation */
.navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: sticky 1s;
    animation: sticky 1s;
    -webkit-box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    box-shadow: 2px 2px 20px rgba(34, 34, 34, 0.15);
    background-image: url('assets/images/tupt_portal_banner_no_logo.png');

}

.navigation.sticky .main-nav {
    width: 83.33%;
}

.navigation.sticky .main-nav {
    display: flex;
    justify-content: center;
    position: static; /* Reset position */
    z-index: auto; /* Reset z-index */
    margin-bottom: 0; /* Reset margin */
}

.navigation.sticky .main-nav {
    display: flex;
    justify-content: center;
}

.navigation.sticky .nav2 {
    display: none;
}

.navigation.sticky .nav-menus-wrapper .nav-menu li .nav-submenu {
    color: #641212;
}

.navigation.sticky .nav-menus-wrapper .nav-menu li .nav-submenu li a {
    color: #fff;
}

.navigation.sticky .nav-menus-wrapper .nav-menu li a  {
    color: #fff;
    padding: 25px 0px;
}

.navigation.sticky .nav-menus-wrapper .nav-menu li  {
    color: #fff;
}
.navigation.sticky .background-nav {
    display: block;
}

.navigation.sticky .logo-nav {
    display: block;
}

.navigation.sticky .nav-toggle {
    width: 30px;
    height: 30px;
    padding: 10px 40px 40px 40px;
}

.navigation.sticky .banner-text {
    visibility: hidden;
}

.navigation-portrait .nav-menus-wrapper-close-button {
    display: block;
}
.navigation-portrait .submenu-indicator {
    width: 45px;
    height: 45px;
    position: absolute;
    text-align: center;
    z-index: 20000;
    top: 0;
    right: 0;
}
.navigation-portrait .submenu-indicator .submenu-indicator-chevron {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
}
.navigation-portrait .nav-submenu-open > a .submenu-indicator .submenu-indicator-chevron {
    -webkit-transform: translate(-50%, -50%) rotate(225deg) !important;
    transform: translate(-50%, -50%) rotate(225deg) !important;
}

.nav-overlay-panel {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: none;
    z-index: 999;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

/*===========================
      03. Slider css
===========================*/
.slider-area {
    padding-top: 20px;
    position: relative; /* Ensure the slider is positioned relative to allow overlap */
    z-index: 1; /* Slider should be below the navigation */
    /*margin-top: 20px; !* Adjust to control spacing from the header *!*/
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area {
        padding-top: 100px;
    }
}
@media (max-width: 767px) {
    .slider-area {
        padding-top: 30px;
    }
}

.single-slider {
    height: 775px;
    background: #641212;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-slider {
        height: 600px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-slider {
        height: 500px;
    }
}
@media (max-width: 767px) {
    .single-slider {
        height: auto;
    }
}

.slider-content {
    max-width: 590px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-content {
        max-width: 520px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-content {
        max-width: 420px;
    }
}
@media (max-width: 767px) {
    .slider-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.slider-content .title {
    font-size: 76px;
    font-weight: 700;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-content .title {
        font-size: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-content .title {
        font-size: 42px;
    }
}
@media (max-width: 767px) {
    .slider-content .title {
        font-size: 28px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .slider-content .title {
        font-size: 36px;
    }
}
.slider-content .slider-btn {
    padding-top: 40px;
}
.slider-content .slider-btn li {
    display: inline-block;
    margin-top: 10px;
    margin-right: 18px;
}
.slider-content .slider-btn li .main-btn {
    width: 165px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-content .slider-btn li .main-btn {
        width: 145px;
    }
}
@media (max-width: 767px) {
    .slider-content .slider-btn li .main-btn {
        width: auto;
    }
}

.slider-active .slick-arrow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #641212;
    color: #fff;
    font-size: 20px;
    z-index: 20;
    cursor: pointer;
}
.slider-active .slick-arrow.next {
    left: 45px;
}



/*===========================
    04. Welcome Section
===========================*/
.welcome-section {
    padding: 0;
    padding-top: 20px;
    position: relative; /* Relative to itself for stacking context */
    z-index: 1; /* Higher stacking order */
    background-image: url(https://ik.imagekit.io/tupt/tupt_portal/generic/welcome-section?updatedAt=1755007492226);
    background-repeat: no-repeat;
    background-size: cover;
}

/*=====Quick Icons Shortcuts =====*/
.quick-icons-shortcuts {
    padding: 0;
    padding-top: 20px;
    position: relative; /* Relative to itself for stacking context */
    z-index: 10; /* Higher stacking order */
    background-color: rgba(173, 216, 230, 0);
}

.quick-icons-shortcuts .line {
    width: 100%;
    background: transparent;
    border: 1px solid #641212;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .quick-icons-shortcuts .line {
        margin-top: 15px;
    }
}

.quick-icons-shortcuts-wrapper {
    padding: 0;
    background-color: rgba(173, 216, 230, 0);
}

.quick-icons-shortcuts-wrapper .col-lg-3, .quick-icons-shortcuts-wrapper .col-sm-6{
    padding: 0;
}

.single-quick-icons-shortcuts {
    background-color: rgba(173, 216, 230, 0);
}
.single-quick-icons-shortcuts .quick-icons-shortcuts-image {
    position: relative;
}
.single-quick-icons-shortcuts .quick-icons-shortcuts-image a {
    display: block;
    background-color: rgba(173, 216, 230, 0);
}
.single-quick-icons-shortcuts .quick-icons-shortcuts-image img {
    width: 60%;
    background-color: rgba(173, 216, 230, 0);
}

.single-quick-icons-shortcuts .quick-icons-shortcuts-content {
    padding: 0;
}
.single-quick-icons-shortcuts .quick-icons-shortcuts-content .quick-icons-shortcuts-title a {
    font-weight: 600;
    font-size: 18px;
    color: #641212;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.single-quick-icons-shortcuts .quick-icons-shortcuts-content .quick-icons-shortcuts-title a:hover {
    color: #363535;
}

/*===== Welcome Message Section =====*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .welcome-message {
        padding-top: 35px;
    }
}
@media (max-width: 767px) {
    .welcome-message {
        padding-top: 15px;
    }
}

/*===========================
     05. Departments css
===========================*/
.departments-area {
    padding-top: 70px;
    padding-bottom: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .departments-area {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .departments-area {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.departments-wrapper {
    padding-top: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .departments-wrapper {
        padding-top: 20px;
    }
}
@media (max-width: 767px) {
    .departments-wrapper {
        padding-top: 20px;
    }
}
.departments-wrapper.wrapper-2 {
    padding-top: 10px;
}

.basd-color {
    background-color: #1B1F3B;
}
.caad-color {
    background-color: #BFA181;
}
.eaad-color {
    background-color: #3A6F75;
}
.maad-color {
    background-color: #4F4A3C;
}

/*===== Single Department =====*/
.single-departments-area .departments-area-image {
    overflow: hidden;
}
.single-departments-area .departments-area-image a {
    display: block;
}
.single-departments-area .departments-area-image img {
    width: 100%;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.single-departments-area .departments-area-content {
    padding: 25px 25px;
    position: relative;
    height: 210px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content {
        padding: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-departments-area .departments-area-content {
        padding: 30px 40px;
    }
}
.single-departments-area .departments-area-content .category {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 32px;
    color: #fff;
}
.single-departments-area .departments-area-content .departments-area-title a {
    font-family: Exo;
    font-weight: 500;
    font-size: 19px;
    line-height: 32px;
    color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .departments-area-title a {
        font-size: 18px;
        line-height: 28px;
    }
}
@media (max-width: 767px) {
    .single-departments-area .departments-area-content .departments-area-title a {
        font-size: 20px;
        line-height: 28px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .departments-area-title a {
        font-size: 18px;
        line-height: 28px;
    }
}
.single-departments-area .departments-area-content .duration-rating {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    padding: 0 25px 25px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .duration-rating {
        padding: 0px 15px 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-departments-area .departments-area-content .duration-rating {
        padding: 0px 40px 30px;
    }
}
.single-departments-area .departments-area-content .duration-rating .duration-fee {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-departments-area .departments-area-content .duration-rating .duration-fee .duration {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 24px;
    color: #fff;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .duration {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .duration {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-content .duration-rating .duration-fee .fee {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 24px;
    color: #fff;
    padding-left: 26px;
    position: relative;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .fee {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .fee {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-content .duration-rating .duration-fee .fee::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 80%;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
}
.single-departments-area .departments-area-content .duration-rating .duration-fee .credit {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 24px;
    color: #fff;
    padding-left: 26px;
    position: relative;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .credit {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .duration-rating .duration-fee .credit {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-content .duration-rating .duration-fee .credit::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 80%;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
}
.single-departments-area .departments-area-content .duration-rating .rating {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-departments-area .departments-area-content .duration-rating .rating span {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 24px;
    color: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .duration-rating .rating span {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .duration-rating .rating span {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-content .duration-rating .rating .star {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-flex: 1;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.single-departments-area .departments-area-content .duration-rating .rating .star li {
    font-size: 10px;
    color: #fff;
    margin-left: 5px;
}
.single-departments-area .departments-area-content .departments-area-link {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    border-top: 1px solid #fff;
    margin-top: 15px;
    padding-bottom: 5px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 1;
    visibility: visible;
}
.single-departments-area .departments-area-content .departments-area-link .apply {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    color: #fff;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .departments-area-link .apply {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .departments-area-link .apply {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-content .departments-area-link .more {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    color: #fff;
    margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-content .departments-area-link .more {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-content .departments-area-link .more {
        font-size: 12px;
    }
}
.single-departments-area:hover .departments-area-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.single-departments-area:hover .departments-area-content .duration-rating {
    opacity: 1;
    visibility: visible;
}
.single-departments-area:hover .departments-area-link {
    opacity: 1;
    visibility: hidden;
}

.single-departments-area .departments-area-link {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    border-top: 1px solid #fff;
    margin-top: 15px;
}
.single-departments-area .departments-area-link .apply {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    color: #fff;
    margin-top: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-link .apply {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-link .apply {
        font-size: 12px;
    }
}
.single-departments-area .departments-area-link .more {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 24px;
    color: #fff;
    margin-top: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-departments-area .departments-area-link .more {
        font-size: 12px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-departments-area .departments-area-link .more {
        font-size: 12px;
    }
}


/*===========================
    11. Page Banner css
===========================*/
.page-banner {
    padding-top: 80px;
    background: #ffffff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .page-banner {
        padding-top: 110px;
    }
}
@media (max-width: 767px) {
    .page-banner {
        padding-top: 118px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .page-banner {
        padding-top: 125px;
    }
}

.banner-content {
    padding-top: 150px;
    padding-bottom: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}
@media (max-width: 767px) {
    .banner-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }
}
.banner-content .title {
    color: #fff;
    font-weight: 700;
    font-size: 76px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .banner-content .title {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .banner-content .title {
        font-size: 32px;
    }
}

