@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&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');

:root {
    --primary-color: #0874e7;
    --secondary-color: #ff8300;
    --white-color: #ffffff;
    --text-color: #5a5a5a;
    --dark-color: #1d165c;
    --transition: ease-in-out .3s;
    --border-radius: 5px;
    --border-color: #e3e3e3;
    --bg-color: #edf3ff;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Afacad", sans-serif;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
}

p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 20px;
}

.mt {
    margin-top: 100px;
}

.mb {
    margin-bottom: 100px;
}

.pt {
    padding-top: 100px;
}

.pb {
    padding-bottom: 100px;
}

.mt1 {
    margin-top: 80px;
}

.mb1 {
    margin-bottom: 80px;
}

.pt1 {
    padding-top: 80px;
}

.pb1 {
    padding-bottom: 80px;
}






/* Enquiry Modal  */
.enquiry-modal.modal.fade {
    background: rgb(0 0 0 / 70%);
}

.enquiry-modal .modal-content {
    display: flex;
    flex-direction: row;
}

.enquiry-modal .modal-dialog {
    max-width: 900px;
}

.enquiry-img {
    height: auto;
    width: 45%;
}

.enquiry-main {
    width: 55%;
    padding: 30px;
    position: relative;
}

.enquiry-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.enquiry-main h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.enquiry-main .form-group {
    margin-bottom: 15px;
}

.enquiry-main .form-control {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 48px;
}

.enquiry-main textarea.form-control {
    height: 100px;
}

.enquiry-main .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.enquiry-main .btns-sub {
    width: 100%;
    background: var(--secondary-color);
    border: none;
    padding: 10px 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    border-radius: 4px;
    margin-top: 10px;
    transition: var(--transition);
}

.enquiry-main .btns-sub:hover {
    background: var(--primary-color);
}

.float-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1018;
}

.float-btn ul li a {
    display: block;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 15px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 18px;
}

.float-btn ul li {
    position: relative;
    right: -113px;
    transition: var(--transition);
}

.float-btn ul li a:hover {
    background: var(--secondary-color);
}

.float-btn ul li:hover {
    right: 0;
}

.float-btn ul li+li a {
    margin-top: 10px;
}

.float-btn ul li a i {
    font-size: 25px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Enquiry Modal End  */




/* Header Top  */
.header-top {
    background: var(--primary-color);
}

.th-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 35px;
}

.th-left ul {
    display: flex;
}

.th-left ul li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}

.th-left ul li a:hover {
    color: var(--secondary-color);
}

.th-left ul li+li a {
    margin-left: 18px;
    padding-left: 18px;
    position: relative;
}

.th-left ul li+li a::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    height: 6px;
    width: 6px;
    background: var(--white-color);
    border-top-right-radius: 50px;
}

.th-right {
    display: flex;
    align-items: center;
}

.header-info {
    display: flex;
}

.header-info li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}

.header-info li a:hover {
    color: var(--secondary-color);
}

.header-info li {
    display: flex;
    align-items: center;
    margin-right: 18px;
    padding-right: 18px;
    position: relative;
}

.header-info li::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 15px;
    width: 1px;
    background: #e1e1e1;
}

.header-info li i {
    color: var(--white-color);
    margin-right: 8px;
    font-size: 17px;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media span {
    display: flex;
    color: var(--white-color);
    margin-right: 10px;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
    font-size: 18px;
}

.social-media ul li+li a {
    margin-left: 15px;
}

.social-media ul li a:hover {
    color: var(--secondary-color);
}

.social-media ul li a img {
    height: 15px;
    width: 15px;
    object-fit: contain;
}

/* Header Top End  */






/* Header  */
.header {
    box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.10);
    position: sticky;
    top: -1px;
    z-index: 1020;
    background: var(--white-color);
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
}

.header-menus>ul {
    display: flex;
}

.header-menus>ul>li>a {
    display: block;
    color: var(--dark-color);
    font-size: 17px;
    font-weight: 600;
    padding: 20px 16px;
    transition: var(--transition);
}

.header-menus>ul>li:hover>a {
    color: var(--secondary-color);
}

.header-menus>ul>li>a>i {
    font-size: 12px;
    vertical-align: middle;
    margin-left: 3px;
}

.main-btn a {
    display: block;
    background: #E20916;
    padding: 8px 25px;
    color: var(--white-color);
    font-size: 17px;
    font-weight: 500;
    position: relative;
    z-index: 0;
    border-radius: 30px;
    overflow: hidden;
}

.main-btn a i {
    font-size: 19px;
    vertical-align: middle;
    margin-left: 7px;
}

.main-btn a::before {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.main-btn a::after {
    content: "";
    background-color: var(--primary-color);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.main-btn a:hover::before,
.main-btn a:hover::after {
    width: 100%;
}

.drop-menu {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    background: var(--white-color);
    width: 280px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.10);
    transform: scaleY(0);
    transform-origin: top center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.drop-menu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transform: scaleY(1);
}

.sub-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding-left: 40px;
}

.sub-menu>ul>li>a::before {
    position: absolute;
    content: '';
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 7px;
    width: 7px;
    background: var(--dark-color);
    border-top-right-radius: 50px;
    transition: var(--transition);
}

.sub-menu>ul>li:hover>a {
    background: var(--secondary-color);
    color: var(--white-color);
}

.sub-menu>ul>li:hover>a::before {
    background: var(--white-color);
}

.mega-menus-item {
    position: relative;
}

.mega-menus {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white-color);
    width: 310px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.10);
    transform: scaleY(0);
    transform-origin: top center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.mega-menus-item:hover .mega-menus {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}

.mega-menus>ul>li>a::before {
    position: absolute;
    content: '';
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 7px;
    width: 7px;
    background: var(--dark-color);
    border-top-right-radius: 50px;
    transition: var(--transition);
}

.mega-menus>ul>li:hover>a {
    background: var(--secondary-color);
    color: var(--white-color);
}

.mega-menus>ul>li:hover>a::before {
    background: var(--white-color);
}

.mega-menus-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menus-item>a i {
    font-size: 12px;
}

/* Header End  */





/* Mobile Menu  */
.mobile-menu {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1020;
    background: var(--white-color);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.10);
}

.mobile-menu-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.mobile-menu-item {
    cursor: pointer;
}

.mobile-menu-item>i {
    font-size: 29px;
    color: var(--dark-color);
}

.mobile-logo a {
    display: block;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-wrap .main-btn a {
    font-size: 15px;
    padding: 5px 15px 7px;
}

.mobile-menu-wrap .main-btn a i {
    font-size: 17px;
    margin-left: 3px;
}

.mobile-menu-list {
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    height: 100%;
    background: var(--white-color);
    z-index: 1020;
    width: 280px;
    box-shadow: 10px 3px 20px rgb(0 0 0 / 25%);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-x: hidden;
    overflow-y: auto;
}

.mobile-menu-list.active {
    left: 0;
    opacity: 1;
    visibility: visible;

}

.mobile-menu-list::-webkit-scrollbar {
    width: 8px;
}

.mobile-menu-list::-webkit-scrollbar-track {
    background: var(--white-color);
}

.mobile-menu-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 50px;
}

.mobile-close {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
}

.mobile-close i {
    font-size: 20px;
    color: var(--white-color);
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--secondary-color);
}

.mob-menu li a {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    padding: 7px 20px;
    transition: var(--transition);
}

.mob-menu li a:hover {
    color: var(--secondary-color);
}

.drop-mobile {
    position: relative;
}

.drop-mobile>a {
    width: calc(100% - 43px);
}

.drop-mobile i {
    position: absolute;
    right: 20px;
    top: 7px;
    background: var(--primary-color);
    height: 23px;
    width: 23px;
    line-height: 23px;
    text-align: center;
    font-size: 13px;
    color: var(--white-color);
}

.sub-menu-mobile {
    background: var(--bg-color);
    padding: 5px 0;
    display: none;
}

.page-list ul li a {
    display: block;
    font-size: 16px;
    color: var(--dark-color);
    padding: 7px 20px;
    transition: var(--transition);
}

.page-list ul li a:hover {
    color: var(--secondary-color);
}

.page-list {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

.small-device {
    display: none;
}

/* Mobile Menu End  */





/* Slider  */
.carousel-item {
    height: calc(100vh - 170px);
    overflow: hidden;
}

.carousel-item::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background-color: rgb(0 0 0 / 50%); */
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-indicators {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
    bottom: 40px;
}

.carousel-indicators [data-bs-target] {
    height: 100%;
    width: 100%;
    text-indent: inherit;
    background: transparent;
    margin: 0 15px;
    border-bottom: none;
    border-top: 3px solid var(--white-color);
    padding-top: 10px;
    opacity: .7;
}

.carousel-indicators .active {
    opacity: 1;
    border-color: var(--secondary-color);
}

.carousel-info span {
    display: block;
    font-size: 18px;
    color: var(--white-color);
}

.carousel-control-next,
.carousel-control-prev {
    height: 50px;
    width: 50px;
    line-height: inherit;
    text-align: center;
    border-radius: 100%;
    border: none;
    top: inherit;
    bottom: 50px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    position: relative;
    width: 50px;
    height: 50px;
    display: block;
    border: 1px solid var(--white-color);
    border-radius: 100%;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    position: absolute;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 20px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev-icon::before {
    content: '\f053';
}

.carousel-control-next-icon::before {
    content: '\f054';
}

.carousel-control-prev {
    right: 110px;
    left: auto;
}

.carousel-control-next {
    right: 50px;
}

.slider-info {
    position: absolute;
    top: 70%;
    transform: translateY(-45%);
    left: 0;
    max-width: 1140px;
    margin: auto;
    right: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.slider-info span {
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.slider-info h3 {
    font-size: 55px;
    color: var(--white-color);
    max-width: 50%;
    line-height: 1.1;
    /* margin-bottom: 25px; */
    text-shadow: 0px 1px 0px black;
}

.slider-info p {
    font-size: 22px;
    color: var(--white-color);
    max-width: 50%;
    margin-bottom: 30px;
    text-shadow: 3px 1px 4px black;
}

.slider-info .main-btn a {
    display: inline-block;
    padding: 10px 25px;
    font-size: 18px;
}

/* Slider End  */






/* Trust Section  */

.trust-img img {
    height: 32px;
    width: auto !important;
}

.trust-title h3 {
    font-size: 23px;
    font-weight: 500;
    border-right: 1px solid var(--border-color);
    margin-bottom: 0;
    line-height: 1.1;
}

.trust-setion {
    background: #f4f4f4;
    padding: 20px 0;
}

.trust-section-wrap .row {
    align-items: center;
}

/* Trust Section End  */






/* Program  */
.service-section-3 {
    position: relative;
    z-index: 0;
}

.service-section-3 .line-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.service-section-3 .line-shape-2 img {
    width: 100%;
    height: 100%;
}

.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-size: 38px;
    margin-bottom: 0;
}

.section-title img {
    height: 36px;
    width: auto;
    margin-right: 6px;
}

.service-box-items {
    background-color: var(--white-color);
    padding: 40px 30px;
    position: relative;
    z-index: 9;
    margin-top: 25px;
}

.service-section-3 .section-title {
    margin-bottom: 25px;
}

.service-box-items.style-3 {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    background-color: var(--white-color);
}

.service-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--primary-color);
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
    z-index: -1;
}

.service-box-items.style-3::before {
    background: linear-gradient(180deg, var(--primary-color) -23.85%, #8f40f3 100%);
    border-radius: 10px;
}

.service-box-items:hover::before {
    transform: scale(1, 1);
    transform-origin: top center;
}

.service-box-items .icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
}

.service-box-items .icon img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.service-box-items .icon::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    content: "";
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/shape.png);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.service-box-items.style-3 .icon::before {
    background-image: url(../img/shape-2.png);
}

.service-box-items.style-3:hover .icon::before {
    background-image: url(../img/shape.png);
}

.service-box-items .content {
    margin-top: 25px;
}

.service-box-items .content h4 {
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 24px;
}

.service-box-items .content h4 a {
    display: block;
    color: var(--dark-color);
    transition: all 0.4s ease-in-out;
}

.service-box-items:hover .content h4 a {
    color: var(--white-color);
}

.service-box-items .content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
    line-height: 1.5;
}

.service-box-items:hover .content p {
    color: var(--white-color);
}

.theme-btn-2 {
    font-size: 17px;
    display: inline-block;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.service-box-items.style-3 .theme-btn-2 {
    border: 1px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 100px;
    line-height: 1;
    margin-top: 30px;
    color: var(--primary-color);
    transition: all 0.4s ease-in-out;
}

.theme-btn-2 i {
    margin-left: 8px;
    vertical-align: middle;
}

.service-box-items:hover .content .theme-btn-2 {
    color: var(--white-color);
}

.view-btn {
    margin-top: 50px;
    text-align: center;
}

.view-btn a {
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.view-btn a:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.service-section-3.pb {
    padding-bottom: 60px;
}

/* Program End  */




/* Course  */
.course-wrap {
    height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    margin-top: 25px;
}

.course-img {
    height: 100%;
    width: 100%;
    transition: ease-in-out .5s;
}

.course-wrap:hover .course-img {
    transform: scale(1.10);
}

.course-img a {
    width: 100%;
    height: 100%;
    display: block;
}

.course-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.course-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 20px 15px;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(5, 5, 5, 0) 0, rgba(0, 0, 0, 0) 0, rgba(71, 71, 71, 0) 0, rgba(102, 102, 102, 0) 0, rgba(28, 28, 28, 0) 0, rgb(20 20 20 / 31%) 15%, rgb(13 13 13 / 74%) 41%, rgb(3 3 3) 100%) repeat scroll 0 0;
}

.course-content h3 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.1;
}

.course-content h3 a {
    color: var(--white-color);
    transition: var(--transition);
}

.course-content h3 a:hover {
    color: var(--secondary-color);
}

.course .section-title {
    margin-bottom: 25px;
}

/* Course End  */




/* Success Story  */
.success-story {
    position: relative;
    padding-top: 200px;
    z-index: 0;
    overflow: hidden;
}

.success-story .pattern-layer {
    position: absolute;
    left: 0px;
    top: -65px;
    bottom: 10px;
    right: 0px;
    width: 100%;
    height: 1000px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    z-index: -1;
}

.success-story-img img {
    border: 10px solid var(--white-color);
    border-radius: 5px;
    cursor: pointer;
}

.success-story .owl-theme .owl-nav {
    position: static;
    margin-top: 30px;
}

/* Success Story End  */





/* Work Process  */
.work-process .work-block {
    position: relative;
}

.work-process .work-block:before {
    position: absolute;
    content: '';
    background: var(--border-color);
    height: 1px;
    width: 150px;
    top: 50%;
    right: -70px;
    margin-top: -55px;
}

.work-process .work-block:last-child:before {
    display: none;
}

.work-block-one .inner-box {
    position: relative;
    display: block;
    text-align: center;
    padding: 0px 10px;
}

.work-block-one .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 153px;
    line-height: 138px;
    text-align: center;
    font-size: 60px;
    margin-bottom: 24px;
    transition: all 500ms ease;
    color: #f9356e;
}

.work-block-one .inner-box .icon-box:before {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0px;
    height: 0px;
    box-shadow: 0 0px 100px 30px rgba(0, 0, 0, 0.4);
    transition: all 500ms ease;
}

.work-block-one .inner-box .icon-box i {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.work-block-one .inner-box .icon-box .count {
    position: absolute;
    top: -8px;
    right: -5px;
    font-size: 15px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e5e5e5;
    transition: all 500ms ease;
    color: #1d165c;
}

.work-block-one .inner-box .icon-box .count:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    border-radius: 50%;
    transform: scale(0, 0);
    transition: all 500ms ease;
    z-index: -1;
    background: var(--secondary-color);
}

.work-block-one .inner-box:hover .icon-box .count:before {
    transform: scale(1, 1);
}

.work-block-one .inner-box:hover .icon-box .count {
    color: var(--white-color);
}

.work-block-one .inner-box .icon-box .bg-pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 180px;
    height: 153px;
    background-repeat: no-repeat;
}

.work-block-one .inner-box .icon-box .overlay-pattern {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 180px;
    height: 153px;
    opacity: 0;
    transform: translateY(30px);
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.work-block-one .inner-box:hover .icon-box .overlay-pattern {
    opacity: 1;
    transform: translateY(0px);
}

.work-block-one .inner-box .icon-box img {
    position: relative;
    z-index: 1;
    height: 90px;
    width: 90px;
    object-fit: contain;
    object-position: center;
}

.work-block-one .inner-box h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.work-block-one .inner-box p {
    margin-bottom: 0;
}

.work-block-one {
    margin-top: 25px;
}

/* Work Process End  */







/* Destination Section  */
.case-style {
    position: relative;
}


.case-style.pb {
    padding-bottom: 60px;
}

.case-block .inner-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 7px 17px rgb(0 0 0 / 10%);
}

.case-block .image-box a {
    display: block;
}

.case-block .image-box {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.image-box a img {
    height: 215px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.case-block .client-logo {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    transition: var(--transition);
    background: var(--white-color);
    width: 60px;
    height: 60px;
    line-height: 56px;
    text-align: center;
    border-radius: 100%;
    cursor: pointer;
}

.case-block .client-logo img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
    display: initial;
}

.case-block .overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    transform: scale(0, 0);
    transition: all 500ms ease;
    background: linear-gradient(0deg, rgb(8 116 231 / 70%), rgb(8 116 231 / 70%) 100%);
}

.case-block .inner-box:hover .image-box .overlay-layer {
    transform: scale(1, 1);
}

.case-block .lower-content {
    padding: 25px 20px;
    position: relative;
}

.case-block .lower-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.case-block .lower-content h4 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.case-block .lower-content h4 a:hover {
    color: var(--secondary-color);
}

.case-block .lower-content p {
    line-height: 1.4;
    margin-bottom: 15px;
}

.case-block .btns-link a {
    display: block;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.case-block .btns-link a:hover {
    color: var(--secondary-color);
}

.case-block .btns-link a i {
    vertical-align: middle;
    margin-left: 10px;
}

.destination .item {
    padding: 15px 12.5px 30px 12.5px;
}

.case-style .owl-carousel .owl-nav button.owl-next,
.case-style .owl-carousel .owl-nav button.owl-prev {
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.case-style .owl-theme .owl-nav {
    position: static;
}

.case-style .owl-carousel .owl-nav button.owl-prev {
    left: -5px;
}

.case-style .owl-carousel .owl-nav button.owl-next {
    right: -5px;
}

.case-style .section-title {
    margin-bottom: 35px;
}

/* Destination Section End  */







/* About Section  */
.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.about-wrapper .about-image-items {
    position: relative;
}

.about-wrapper.style-2 .about-image-items .circle-shape {
    position: absolute;
    top: 0;
    right: 15%;
    animation: cir36 10s linear infinite;
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.about-wrapper .about-image-items .counter-shape {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    position: absolute;
    bottom: -60px;
    left: 50px;
    z-index: 1;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.about-wrapper.style-2 .about-image-items .counter-shape .icon {
    filter: grayscale(100%) brightness(300%);
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 {
    color: var(--white-color);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 span {
    font-size: 28px;
    font-weight: 700;
    margin-right: 5px;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content p {
    font-size: 15px;
    color: var(--white-color);
    margin-bottom: 0;
}

.about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 400px;
    height: 450px;
    position: relative;
}

.about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    border: 10px solid var(--white-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    right: -40%;
    position: absolute;
    bottom: -22%;
}

.about-image-2 img {
    height: 250px;
    width: 230px;
    object-fit: cover;
    object-position: center;
}

.about-wrapper .about-content .about-icon-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-wrapper .about-content .about-icon-items .icon-items {
    display: flex;
    align-items: flex-start;
    width: 50%;
    margin-top: 35px;
}

.about-wrapper .about-content .about-icon-items .icon-items .icon {
    width: 50px;
    height: 50px;
    line-height: 42px;
    text-align: center;
    border-radius: 100%;
    background-color: var(--white-color);
    color: var(--primary-color);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.09);
}

.about-wrapper .about-content .about-icon-items .icon-items .icon img {
    height: 28px;
    width: auto;
}

.about-wrapper .about-content .about-icon-items .icon-items .content {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.about-content {
    padding-left: 40px;
}

.about-content>span {
    display: block;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-content>p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-wrapper .about-content .about-icon-items .icon-items .content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.about-wrapper .about-content .about-icon-items .icon-items .content p {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 16px;
}

/* About Section End  */


/* Notice News  */
.notice_board {
    background: var(--bg-color);
}

.notice_board .inner_header {
    margin-bottom: 0;
    background: var(--white-color);
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice_board .inner_header h3 {
    margin-bottom: 0;
    font-size: 22px;
    color: var(--dark-color);
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    line-height: 1.1;
}

.notice_board .inner_header h3 i {
    margin-right: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px;
    font-size: 26px;
    border-radius: 4px;
    vertical-align: middle;
}

.notice_board .inner_header a {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    line-height: normal;
    padding: 6px 15px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: inline-block;
}

.notice_board .inner_header a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.notice_board .inner_header a i {
    margin-left: 3px;
    vertical-align: middle;
}

.notice-img img {
    width: 90px;
    overflow: hidden;
    height: 90px;
    margin-right: 20px;
    border-radius: 4px;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.notice_wrapper {
    height: 545px;
    background: var(--white-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
}

.notice-col {
    box-shadow: 0px 3px 20px rgb(0 0 0 / 10%);
    border-radius: 10px;
}

.notice-list>li {
    list-style: none;
    padding: 10px;
    /* padding: 30px; */
    font-weight: 500;
    display: flex;
}

.notice-list>li+li {
    border-top: 1px solid var(--border-color);
}

.notice-info h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
}

.notice-info h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.notice-info h3 a:hover {
    color: var(--secondary-color);
}

.notice-img {
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.notice-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.notice-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.notice-info {
    margin-left: 20px;
    width: calc(100% - 120px);
}

.notice-info .post-meta {
    margin-bottom: 0;
}

.notice-info .post-meta ul li {
    font-size: 11px;
    color: #061a34;
    font-weight: 400;
    text-transform: uppercase;
}

.notice-info .post-meta ul li i {
    font-size: 18px;
    color: var(--secondary-color);
}

.notice-info p {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Notice News End  */






/* Features  */
.popular-goals-wrap {
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    margin-top: 25px;
    cursor: pointer;
}

.popular-goals-img {
    height: 100%;
    width: 100%;
}

.popular-goals-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;

}

.popular-goals-wrap:hover .popular-goals-img img {
    opacity: 1;
}

.popular-goals .main-title {
    margin-bottom: 15px;
}

.popular-goals-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 3;
    text-align: center;
}

.popular-goal-icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
    margin: auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-background-clip: text;
    background-clip: text;
}

.popular-goal-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: inherit;
    z-index: -1;
    opacity: 1;
    transition: all cubic-bezier(.68, -0.55, .27, 1.55) .6s;
    border-radius: inherit;
}

.popular-goals-wrap:hover .popular-goal-icon::after {
    width: 100%;
    height: 410%;
    opacity: 0.55;
    border-radius: 0;
}

.popular-goal-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    object-position: center;
}

.popular-goals-content h4 {
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 20px;
    transition: var(--transition);
    font-weight: 600;
}

.popular-goals-content h4 a {
    display: block;
    color: var(--dark-color);
}

.popular-goals-wrap:hover .popular-goals-content h4 a {
    color: var(--white-color);
}

.popular-goals-wrap:hover .popular-goals-content h4 {
    margin-top: 0;
}

.features .col-lg-3:nth-child(1) .popular-goals-wrap {
    background: rgb(236, 248, 236);
}

.features .col-lg-3:nth-child(1) .popular-goal-icon::after {
    background: rgb(110, 190, 110);
}

.features .col-lg-3:nth-child(2) .popular-goals-wrap {
    background: rgb(238, 246, 250);
}

.features .col-lg-3:nth-child(2) .popular-goal-icon::after {
    background: rgb(67, 173, 227);
}

.features .col-lg-3:nth-child(3) .popular-goals-wrap {
    background: rgb(255, 243, 237);
}

.features .col-lg-3:nth-child(3) .popular-goal-icon::after {
    background: rgb(223, 125, 79);
}

.features .col-lg-3:nth-child(4) .popular-goals-wrap {
    background: rgb(254, 236, 244);
}

.features .col-lg-3:nth-child(4) .popular-goal-icon::after {
    background: rgb(224, 81, 147);
}

.features .col-lg-3:nth-child(5) .popular-goals-wrap {
    background: rgb(255, 252, 235);
}

.features .col-lg-3:nth-child(5) .popular-goal-icon::after {
    background: rgb(242, 201, 0);
}

.features .col-lg-3:nth-child(6) .popular-goals-wrap {
    background: rgb(241, 241, 241);
}

.features .col-lg-3:nth-child(6) .popular-goal-icon::after {
    background: rgb(128, 128, 128);
}

.features .col-lg-3:nth-child(7) .popular-goals-wrap {
    background: rgb(255, 209, 206);
}

.features .col-lg-3:nth-child(7) .popular-goal-icon::after {
    background: rgb(255, 39, 18);
}

.features .col-lg-3:nth-child(8) .popular-goals-wrap {
    background: rgb(234, 249, 249);
}

.features .col-lg-3:nth-child(8) .popular-goal-icon::after {
    background: rgb(76, 172, 171);
}

.features .col-lg-3:nth-child(9) .popular-goals-wrap {
    background: rgb(236, 248, 236);
}

.features .col-lg-3:nth-child(9) .popular-goal-icon::after {
    background: rgb(110, 190, 110);
}

.features .col-lg-3:nth-child(10) .popular-goals-wrap {
    background: rgb(238, 246, 250);
}

.features .col-lg-3:nth-child(10) .popular-goal-icon::after {
    background: rgb(67, 173, 227);
}

.features .col-lg-3:nth-child(11) .popular-goals-wrap {
    background: rgb(255, 243, 237);
}

.features .col-lg-3:nth-child(11) .popular-goal-icon::after {
    background: rgb(223, 125, 79);
}

.features .col-lg-3:nth-child(12) .popular-goals-wrap {
    background: rgb(254, 236, 244);
}

.features .col-lg-3:nth-child(12) .popular-goal-icon::after {
    background: rgb(224, 81, 147);
}

.features .section-title {
    margin-bottom: 25px;
}

/* Features End  */





/* Testimonials  */
.testimonial-section .testimonial-content {
    display: flex;
    align-items: center;
}

.testimonial-section .testimonial-content .inner-box {
    position: relative;
    display: flex;
    padding-left: 100px;
    width: calc(100% - 280px);
}

.testimonial-section .testimonial-content .inner-box .inner {
    width: calc(100% - 80px);
    padding-left: 80px;
}

.testimonial-section .testimonial-content .inner-box .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    font-size: 50px;
    color: var(--white-color);
    box-shadow: 0 0 0 15px var(--white-color);
    background: var(--primary-color);
}

.testimonial-section .testimonial-content .inner-box .inner .rating {
    display: flex;
    margin-bottom: 20px;
}

.testimonial-section .testimonial-content .inner-box .inner .rating li {
    font-size: 20px;
    color: #f7d416;
    margin-right: 7px;
}

.testimonial-section .testimonial-content .inner-box .inner .text p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-section .testimonial-content .inner-box .inner .author-info h4 {
    margin-bottom: 7px;
    font-size: 25px;
    font-weight: 600;
}

.testimonial-section .testimonial-content .inner-box .inner .author-info .designation {
    position: relative;
    display: block;
    font-size: 18px;
    color: #787878;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    background-image: url(../img/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pattern-layer .pattern-1 {
    position: absolute;
    top: 100px;
    right: 0px;
    width: 565px;
    height: 395px;
    background-repeat: no-repeat;
}

.pattern-layer .pattern-2 {
    position: absolute;
    left: 0px;
    top: 80px;
    width: 815px;
    height: 800px;
    background-repeat: no-repeat;
}

.testimonial-content .image-box {
    margin-bottom: 0;
    width: 280px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    background: var(--white-color);
    border-radius: 100%;
    color: var(--dark-color);
    font-size: 20px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.20);
    transition: var(--transition);
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--secondary-color);
}

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 34px;
}

/* Testimonials End  */






/* Counter  */
.fun-fact {
    border-top: 1px solid var(--border-color);
    margin-top: 30px;
    padding-top: 50px;
}

.counter-wrap {
    text-align: center;
}

.counter-box i {
    font-size: 55px;
    color: var(--secondary-color);
}

.counter-box {
    margin: auto;
}

.count-content {
    margin-top: 5px;
}

.count-content span {
    display: block;
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.count-content h4 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
    color: var(--text-color);
}

/* Counter End  */






/* News & Events  */
.news-events {
    position: relative;
    overflow: hidden;
}

.news-events-img {
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.news-events-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.news-events-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out .9s;
}

.news-event-wrap:hover .news-events-img img {
    transform: scale(1.10);
}

.news-event-content {
    margin-top: 20px;
}

.news-event-content span {
    display: block;
    font-size: 18px;
}

.news-event-content span i {
    margin-right: 3px;
    color: var(--primary-color);
    font-size: 22px;
    vertical-align: middle;
}

.events-inner {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.event-date {
    background: var(--primary-color);
    text-align: center;
    padding: 20px 15px;
    border-radius: 5px;
    height: 45px;
    width: 56px;
    line-height: 4px;
}

.event-title {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.event-date b {
    font-size: 23px;
    color: var(--white-color);
    display: block;
}

.event-date h4 {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--white-color);
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-title h3 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.3;
}

.event-title h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.event-title h3 a:hover {
    color: var(--secondary-color);
}

/* News & Events End  */






/* Partner  */
.marquee {
    display: flex;
    mask-image: linear-gradient(90deg, transparent 5%, #000 30%, #000 70%, transparent 95%);
    overflow: hidden;
}

.marquee-list {
    align-items: center;
    animation: marquee 30s linear infinite;
    display: flex;
    flex-shrink: 0;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 5);
    justify-content: space-around;
    min-width: 100%;
    margin-left: 1.25rem;
}

.partner-img {
    min-width: 7.5rem;
    text-align: center;
}

.partner img {
    max-width: 120px;
}

.marquee-reverse .marquee-list {
    animation-direction: reverse;
}

.marquee-reverse {
    margin-top: 50px;
}

.partner {
    position: relative;
    z-index: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - clamp(10rem, 1rem + 40vmin, 30rem) / 14));
    }
}

/* Partner End  */






/* Footer  */
.footer {
    background: #ebf1f7;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer .pattern-layer .pattern-1 {
    position: absolute;
    right: -100px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    margin: auto;
    opacity: .8;
    z-index: -1;
}

.footer .pattern-layer .pattern-2 {
    position: absolute;
    left: 50px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    opacity: .8;
    z-index: -1;
}

.footer-wrap h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-contact li {
    display: flex;
}

.footer-contact li i {
    font-size: 22px;
    margin-right: 12px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-contact li span {
    display: block;
    font-size: 17px;
    line-height: 1.3;
    color: var(--text-color);
    transition: var(--transition);
}

.footer-contact li span:hover {
    color: var(--secondary-color);
}

.footer-contact li span a {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.footer-contact li span a:hover {
    color: var(--secondary-color);
}

.footer-contact li+li {
    margin-top: 22px;
}

.footer-menu li+li {
    margin-top: 15px;
}

.footer-menu li a {
    color: var(--text-color);
    font-size: 17px;
    padding-left: 25px;
    position: relative;
    display: block;
    transition: var(--transition);
    line-height: 1.2;
}

.footer-menu li a::before {
    position: absolute;
    content: '\f101';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 10px;
    top: 4px;
}

.footer-menu li a:hover {
    color: var(--secondary-color);
}

.newsletter {
    background: var(--primary-color);
    padding: 20px;
    position: relative;
    margin-left: 17px;
}

.newsletter::after {
    background: url(../img/box-shadow.png) no-repeat center center / contain;
    content: "";
    height: 55px;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
}

.newsletter-head {
    display: flex;
    align-items: center;
}

.newsletter-icon {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--white-color);
    border-radius: 100%;
    color: var(--primary-color);
    font-size: 35px;
}

.newsletter-content {
    width: calc(100% - 60px);
    padding-left: 20px;
}

.newsletter-content h3 {
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 3px;
}

.newsletter-content p {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 18px;
}

.newsletter-form {
    margin-top: 2px;
    /* margin-top: 25px; */
    position: relative;
}

.newsletter-form input {
    height: 50px;
    width: 100%;
    padding: 10px 15px;
    border-radius: 0;
    border: none;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    width: 100%;
    border-radius: 0;
    border: none;
    background: var(--secondary-color);
    padding: 10px 20px;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.3;
}

.develop span {
    display: block;
    font-size: 16px;
    color: var(--text-color);
}

.develop span img {
    height: 30px;
    width: auto;
    margin-left: 5px;
}

.footer-bottom {
    padding: 12px 0;
    background: #d7e3ec;
}

.footer .col-lg-4:nth-child(2) .footer-wrap {
    padding-left: 20px;
}

/* Footer End  */




/* About Us Page  */
.banner {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.banner::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000;
    opacity: 0.60;
    z-index: -1;
}

.banner-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 350px;
}

.banner-wrap h2 {
    font-size: 45px;
    color: var(--white-color);
    font-weight: 500;
    margin-bottom: 0;
}

.breadcrumb {
    background-color: var(--primary-color);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin-bottom: 0;
    margin-top: 60px;
    padding: 6px 10px;
    position: relative;
    z-index: 0;
}

.breadcrumb::after,
.breadcrumb::before {
    background-color: inherit;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    z-index: -1;
}

.breadcrumb::before {
    transform: skewX(-30deg);
    left: -25px;
}

.breadcrumb::after {
    transform: skewX(30deg);
    right: -25px;
}

.banner-wrap nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.breadcrumb-item {
    font-size: 19px;
    font-weight: 500;
    padding: 7px 0;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: rgb(214 214 214);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f101';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
    color: var(--white-color);
    margin-top: 5px;
}

.about-us-page .about-content p {
    margin-top: 25px;
}

.about-point-content {
    margin-right: 40px;
    padding-right: 10px;
    height: 530px;
    overflow-x: hidden;
    overflow-y: auto;
}

.about-point-content h3 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-point-content p {
    margin-bottom: 0;
    margin-top: 20px;
    line-height: 1.7;
}

.about-point-content ul {
    margin-top: 25px;
}

.about-point-content ul li {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.about-point-content ul li::before {
    position: absolute;
    content: '';
    left: 0;
    height: 8px;
    width: 8px;
    background: var(--secondary-color);
    top: 10px;
}

.about-point-content ul li+li {
    margin-top: 10px;
}

.about-point-img {
    height: 470px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-point-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-point .nav-tabs {
    position: absolute;
    bottom: 30px;
    right: 55px;
    border: none;
    background: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 10px 20px #ededf1;
    z-index: 10;
}

.about-point-wrap {
    position: relative;
}

.about-point .nav-tabs .nav-item {
    width: 33.3333%;
    white-space: nowrap;
}

.about-point .nav-tabs .nav-item .nav-link {
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    border: none;
    width: 100%;
    border-radius: 0;
    background: transparent;
}

.about-point .nav-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.about-point .nav-tabs .nav-item:last-child .nav-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.about-point .nav-tabs .nav-item+.nav-item .nav-link {
    border-left: 1px solid var(--border-color);
}

.about-point .nav-tabs .nav-link.active {
    background: var(--secondary-color);
    color: var(--white-color);
}

.about-point.mb {
    margin-bottom: 70px;
}

/* ABout Us Page End  */







/* Team Page  */
.inner-title img {
    height: 38px;
    width: auto;
    margin-right: 7px;
}

.inner-title h2 {
    margin-bottom: 0;
    font-size: 38px;
}

.inner-title {
    text-align: center;
    margin-bottom: 10px;
}

.team-img {
    height: 200px;
    width: 200px;
    overflow: hidden;
    border-radius: 5%;
    margin: auto;
}

.team-img a {
    display: block;
}

.team-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.team-content {
    margin-top: 15px;
}

.team-wrap {
    text-align: center;
    margin-top: 30px;
}

.team-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.team-content h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.team-content h3 a:hover {
    color: var(--primary-color);
}

.team-content span {
    display: block;
    margin-top: 3px;
    font-size: 18px;
    color: #838383;
}

.team-col+.team-col {
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding-top: 50px;
}

/* Team Page End  */





/* Message Page  */
.message-content .inner-title {
    text-align: left;
    margin-bottom: 30px;
}

.message-content span {
    display: block;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}

.message-content p {
    margin-bottom: 0;
    margin-top: 25px;
    font-size: 18px;
}

.message-page .row {
    align-items: center;
}

.feature-page.mt {
    margin-top: 70px;
}

.program-page .service-box-items {
    margin-top: 25px;
}

.program-page.pt {
    padding-top: 75px;
}

/* Message Page End  */







/* Program Details  */
.program-details-head {
    background: var(--primary-color);
    position: sticky;
    top: 87px;
    z-index: 10;
}

.program-details-head ul {
    display: flex;
    align-items: center;
}

.program-details-head ul li a {
    display: block;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 30px;
    transition: var(--transition);
}

.program-details-head ul li a:hover {
    background: #1427de;
}

.program-details-head ul li a i {
    margin-right: 5px;
}

.program-details-head ul li.active a {
    background: #1427de;
}

.program-details-wrap {
    margin-top: 50px;
}

.program-details-list h3 {
    font-size: 35px;
    margin-bottom: 20px;
}

.program-details-wrap p {
    font-size: 18px;
}

.program-details-wrap p:last-child {
    margin-bottom: 0;
}

.program-details-list+.program-details-list {
    border-top: 15px solid rgba(225, 225, 225, 0.2);
    margin-top: 50px;
    padding-top: 50px;
}

.program-info-wrap {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.program-info-icon {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    background: var(--bg-color);
    border-radius: 100%;
}

.program-info-icon i {
    font-size: 32px;
    line-height: 60px;
    color: var(--primary-color);
}

.program-info-content {
    width: calc(100% - 60px);
    padding-left: 18px;
}

.program-info-content span {
    display: block;
    font-size: 18px;
}

.program-info-content h4 {
    margin-bottom: 0;
    font-size: 25px;
    margin-top: 5px;
}

.program-details-info h3 {
    margin-bottom: 0;
}

.infos-list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    padding-left: 28px;
}

.infos-list li::before {
    position: absolute;
    content: '\f058';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: var(--primary-color);
}

.infos-list li+li {
    margin-top: 15px;
}

.career-outcome {
    background-image: url(../img/career.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;
    padding-top: 80px !important;
    border-top: none !important;
}

.program-facilities {
    border-top: none !important;
    margin-top: 0 !important;
}

.program-gallery-wrap {
    height: 220px;
    overflow: hidden;
    margin-top: 25px;
    cursor: pointer;
    border-radius: 10px;
}

.program-gallery-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out .9s;
}

.program-gallery-wrap:hover img {
    transform: scale(1.10);
}

.program-gallery h3 {
    margin-bottom: 5px;
}

.program-facilities h3 {
    margin-bottom: 10px;
}

/* Program Details End  */







/* Gallery Page  */
.gallery-page-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-top: 25px;
    border-radius: 10px;
}

.gallery-page-wrap::before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(0 0 0 / 75%);
    transform: scale(0);
    transition: ease-in-out .4s;
    opacity: 0;
    visibility: hidden;
}

.gallery-page-wrap:hover::before {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.gallery-page-img {
    height: 100%;
    width: 100%;
}

.gallery-page-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-page.mt1 {
    margin-top: 55px;
}

.gallery-page-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: ease-in-out .9s;
}

.gallery-page-wrap:hover .gallery-page-content {
    opacity: 1;
    visibility: visible;
}

.gallery-page-content>a {
    display: block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: var(--primary-color);
    margin: auto;
    border-radius: 100%;
    color: var(--white-color);
}

.gallery-page-content a i {
    line-height: 50px;
    font-size: 25px;
}

.gallery-page-content h3 {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.3;
    color: var(--white-color);
    font-weight: 600;
}

.gallery-page-content h3 a {
    display: block;
    color: var(--white-color);
    transition: var(--transition);
}

.gallery-page-content h3 a:hover {
    color: var(--secondary-color);
}

.gallery-page-content span {
    display: block;
    color: var(--white-color);
    font-size: 18px;
    margin-top: 5px;
}

.gallery-details.mt1 {
    margin-top: 55px;
}

/* Gallery Page End  */






/* General Page  */
.general-featured-img {
    height: 483px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 35px;
}

.general-featured-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.geneal-content h3 {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 15px;
    margin-top: 30px;
}

.list-design {
    margin-top: 25px;
    margin-bottom: 20px;
}

.list-design li {
    font-size: 18px;
    line-height: 1.5;
    color: var(--dark-color);
    padding-left: 30px;
    position: relative;
}

.list-design li::before {
    position: absolute;
    content: '\f058';
    left: 0;
    top: 2px;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    color: var(--secondary-color);
}

.list-design li+li {
    margin-top: 15px;
}

.general-page-sidebar {
    margin-left: 20px;
}

.general-page-menu {
    padding: 30px;
    background: #f5faff;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.general-page-menu h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    line-height: 1.1;
}

.general-page-menu h3::before {
    position: absolute;
    content: '';
    left: 0;
    top: 6px;
    height: 25px;
    width: 4px;
    background: var(--secondary-color);
}

.general-page-menu ul li a {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    transition: var(--transition);
}

.general-page-menu ul li a:hover {
    color: var(--secondary-color);
    letter-spacing: .5px;
}

.general-page-menu ul li a i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 7px;
    vertical-align: middle;
    margin-top: 4px;
}

.general-page-menu ul li+li a {
    margin-top: 12px;
}

.call-to-action {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--primary-color);
}

.cta-content {
    padding: 30px;
}

.cta-img {
    height: 250px;
    overflow: hidden;
}

.cta-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-content h3 {
    font-size: 28px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content p {
    color: #ebebeb;
    line-height: 1.4;
}

.call-us a {
    display: block;
    color: var(--white-color);
    font-size: 16px;
    /* font-weight: 700; */
    letter-spacing: -.3px;
}

.call-us a i {
    vertical-align: middle;
    margin-right: 5px;
    font-size: 34px;
}

.cta-btn {
    display: flex;
    margin-top: 20px;
}

.cta-btn a {
    display: block;
    flex: 1;
    background: var(--secondary-color);
    color: var(--white-color);
    font-size: 17px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
}

.cta-btn a:first-child:hover {
    background: #eb7800;
}

.cta-btn a+a {
    margin-left: 10px;
    background: var(--white-color);
    color: var(--secondary-color);
}

.cta-btn a+a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* General Page End  */






/* Awards Page  */
.awards-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 10px;
    cursor: pointer;
}

.awards-img {
    height: 100%;
    width: 100%;
}

.awards-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.awards-wrap:hover img {
    transform: scale(1.10);
}

.awards-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom,
            rgba(5, 5, 5, 0) 0,
            rgba(0, 0, 0, 0) 0,
            rgba(71, 71, 71, 0) 0,
            rgba(102, 102, 102, 0) 0,
            rgba(28, 28, 28, 0) 0,
            rgb(20 20 20 / 50%) 15%,
            rgba(13, 13, 13, 1) 41%,
            rgba(3, 3, 3, 1) 100%) repeat scroll 0 0;
}

.awards-content h3 {
    color: var(--white-color);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--transition);
}

.awards-content h3:hover {
    color: var(--secondary-color);
}

/* Awards Page End  */







/* Study Abroad Page  */
.study-abraod-page .case-block {
    margin-top: 30px;
}

.study-abraod-page .image-box a img {
    height: 280px;
}

.study-abraod-page .case-block .lower-content p {
    line-height: 1.6;
}

.study-abraod-page .case-block .lower-content {
    padding: 25px;
}

.study-abraod-page.mt1 {
    margin-top: 50px;
}

/* Study Abroad Page End  */






/* Language Training Details  */
.language-training.mt1 {
    margin-top: 55px;
}

.sidebar-form {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px 0 rgba(146, 184, 255, .2);
}

.sidebar-form-head {
    background: var(--primary-color);
    padding: 25px;
    text-align: center;
}

.sidebar-form-head img {
    height: 100px;
    width: auto;
}

.sidebar-form-head h3 {
    margin-top: 18px;
    color: var(--white-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar-form-head p {
    margin-bottom: 0;
    color: var(--white-color);
    line-height: 1.4;
}

.sidebar-form-main {
    background: var(--white-color);
    padding: 25px;
}

.sidebar-form-main .form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.sidebar-form-main .form-group {
    margin-bottom: 15px;
}

.sidebar-form-main textarea.form-control {
    height: 150px;
}

.sidebar-form-main .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.sidebar-form-main button {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 15px 12px;
    font-size: 20px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.sidebar-form-main button:hover {
    background: var(--primary-color);
}

.sidebar-form-main .form-control:disabled {
    background: var(--bg-color);
}

/* Language Training Details End  */






/* Study Abroad Details  */
.study-abrod-featured-img {
    height: 430px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.study-abrod-featured-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.study-abroad-details-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.study-abroad-details-content p {
    line-height: 1.6;
}

.study-abroad-col {
    border-top: 10px solid #efefef;
    margin-top: 50px;
    padding-top: 35px;
}

.study-abroad-details-list-wrap h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
}

.why-abroad ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.why-abroad ul li {
    flex: 0 0 33.3333%;
    margin-top: 10px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.why-abroad-col {
    border: 1px solid var(--border-color);
    padding: 25px 20px;
    border-radius: 5px;
}

.why-abroad-icon {
    height: 60px;
    width: 60px;
    text-align: center;
    background: var(--white-color);
    border-radius: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.20);
    margin: auto;
}

.why-abroad-icon i {
    font-size: 30px;
    line-height: 60px;
    color: var(--secondary-color);
}

.why-abroad-content {
    margin-top: 12px;
}

.why-abroad-content span {
    display: block;
    font-size: 18px;
    line-height: 1.4;
}

.study-abroad-information .nav-tabs {
    border-bottom: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 7px;
}

.study-abroad-information .nav-tabs::-webkit-scrollbar {
    height: 7px;
}

.study-abroad-information .nav-tabs::-webkit-scrollbar-track {
    background: var(--white-color);
}

.study-abroad-information .nav-tabs::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 50px;
}

.study-abroad-information .nav-tabs .nav-link {
    font-size: 18px;
    border-radius: 0;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    background: var(--white-color);
}

.study-abroad-information .nav-tabs .nav-link.active {
    color: var(--white-color);
    background: var(--secondary-color);
}

.study-abroad-inf-wrap {
    margin-top: 25px;
}

.study-abroad-inf-wrap h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.study-abroad-inf-wrap ul li {
    font-size: 18px;
    color: var(--dark-color);
    padding-left: 30px;
    position: relative;
}

.study-abroad-inf-wrap ul li::before {
    position: absolute;
    content: '\f0a9';
    left: 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 20px;
    color: var(--secondary-color);
    top: 0px;
}

.study-abroad-inf-wrap ul li+li {
    margin-top: 15px;
}

.study-abroad-information .nav-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.study-abroad-information .nav-tabs .nav-item:last-child .nav-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.study-abroad-faqs .accordion-button {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-color);
    border-radius: 5px;
}

.study-abroad-faqs .accordion-body p {
    font-size: 18px;
    line-height: 1.6;
}

.study-abroad-faqs .accordion-body p:last-child {
    margin-bottom: 0;
}

.study-abroad-faqs .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.study-abroad-faqs .accordion-item+.accordion-item {
    margin-top: 15px;
}

.study-abroad-faqs .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.study-abroad-faqs .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: var(--secondary-color);
    color: var(--white-color);
}

.study-abroad-sidebar-wrap {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.10);
    background: var(--white-color);
    padding: 25px;
    border-radius: 10px;
}

.study-abroad-sidebar {
    margin-left: 10px;
}

.study-abroad-sidebar-wrap h3 {
    font-size: 28px;
    font-weight: 600;
    padding-left: 15px;
    position: relative;
    margin-bottom: 15px;
}

.study-abroad-sidebar-wrap h3::before {
    position: absolute;
    content: '';
    left: 0;
    height: 28px;
    width: 4px;
    background: var(--secondary-color);
    top: 4px;
}

.study-abroad-sidebar-wrap ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

.study-abroad-sidebar-wrap ul li {
    width: 50%;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
}

.study-abroad-sidebar-wrap ul li a {
    display: block;
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.study-abroad-sidebar-wrap ul li a:hover {
    border-color: var(--secondary-color);
}

/* Study Abroad Details End  */







/* Contact Us Page  */
.contact-us-list-wrap {
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 7px;
    margin-bottom: 25px;
}

.contact-us-list-wrap h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    background: #f9f9f9;
    padding: 12px 25px;
    margin-left: -25px;
    margin-right: -25px;
    margin-top: -25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-us-list-wrap ul li {
    display: flex;
    align-items: flex-start;
}

.contact-us-list-wrap ul li a {
    display: block;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark-color);
}

.contact-us-list-wrap ul li i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-top: 4px;
    margin-right: 10px;
}

.contact-us-list-wrap ul li+li {
    margin-top: 7px;
}

.contact-us-form {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
}

.contact-us-form h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-us-form label {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--dark-color);
    display: block;
}

.contact-us-form .form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.contact-us-form textarea.form-control {
    height: 134px;
}

.contact-us-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.contact-us-form .form-group {
    margin-bottom: 10px;
}

.contact-us-form button {
    margin-top: 15px;
    background: var(--secondary-color);
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    padding: 10px 30px;
    border-radius: 5px;
    transition: var(--transition);
}

.contact-us-form button:hover {
    background: var(--primary-color);
}

/* Contact Us Page End  */






/* University Page  */
.university-page-img {
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}

.university-page-img a {
    display: block;
    height: 100%;
    width: 100%;
}

.university-page-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: ease-in-out .5s;
}

.university-page-wrap:hover .university-page-img img {
    transform: scale(1.10);
}

.university-page-content {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.university-page-logo img {
    height: 40px;
    width: 40px;
    object-fit: cover;
    object-position: center;
    border-radius: 100%;
    border: 1px solid var(--border-color);
    padding: 4px;
}

.university-page-content h3 {
    padding-left: 10px;
    width: calc(100% - 40px);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0;
}

.university-page-content h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.university-page-content h3 a:hover {
    color: var(--secondary-color);
}

.university-page-wrap {
    margin-top: 30px;
}

.university-page.mt1 {
    margin-top: 50px;
}

/* University Page End  */






/* Events Details Page  */
.events-page .news-event-wrap {
    margin-top: 40px;
}

.events-page.mt1 {
    margin-top: 40px;
}

.post-meta {
    margin-bottom: 25px;
}

.post-meta ul {
    display: flex;
}

.post-meta ul li {
    font-size: 18px;
    color: var(--dark-color);
}

.post-meta ul li i {
    font-size: 20px;
    vertical-align: middle;
    margin-right: 3px;
}

.post-meta ul li+li {
    margin-left: 30px;
}

.events-details-page ul li a {
    display: flex;
    line-height: 1.4;
}

.events-details-page ul li a i {
    margin-top: 4px;
    margin-right: 12px;
}

.events-details-page ul li+li a {
    margin-top: 20px;
}

/* Events Details Page End  */







/* Enquiry Page  */
.enquiry-page-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.enquiry-page-form {
    background: var(--primary-color);
    padding: 35px;
}

.enquiry-page-form h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.enquiry-page-content {
    padding: 60px 0;
}

.enquiry-page-form .form-control {
    background-color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 0;
    height: 50px;
    color: #818181;
}

.enquiry-page-form .form-control::placeholder {
    color: #818181;
}

.enquiry-page-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}

.enquiry-page-form .form-group {
    margin-bottom: 20px;
}

.enquiry-page-form button {
    width: 100%;
    border: none;
    background: var(--secondary-color);
    font-size: 20px;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--white-color);
    transition: var(--transition);
}

.enquiry-page-form button:hover {
    background: #e67600;
}

/* Enquiry Page End  */






/* Apply Online  */
.apply-form-wrap {
    background: var(--white-color);
    max-width: 900px;
    margin: auto;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 7px;
}

.apply-form-head {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.apply-logo img {
    height: 50px;
    width: auto;
}

.apply-form-head-info h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.apply-form-head-info p {
    margin-bottom: 0;
    line-height: 1.3;
}

.apply-form-head-info span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 10px;
}

.apply-form-photo {
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    width: 150px;
    padding: 20px 15px;
    cursor: pointer;
    position: relative;
}

.apply-form-photo span {
    display: block;
    line-height: 1.1;
}

.apply-form-photo span+span {
    margin-top: 7px;
}

.apply-form-body>span {
    display: block;
    font-size: 18px;
    color: red;
    font-weight: 500;
    margin-bottom: 15px;
}

.apply-form-body {
    margin-top: 20px;
}

.apply-form-list h3 {
    background: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 600;
    padding: 5px 12px;
    margin-bottom: 5px;
}

.apply-form-list label {
    color: var(--dark-color);
    display: block;
    margin-bottom: 5px;
}

.apply-form-list .form-control {
    border: 1px solid var(--border-color);
    border-radius: 3px;
    height: 36px;
}

.apply-form-list .form-group {
    margin-top: 10px;
}

.apply-form-list .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.apply-form-list+.apply-form-list {
    margin-top: 30px;
}

.apply-form-list textarea.form-control {
    height: 100px;
}

.apply-btn {
    margin-top: 25px;
}

.apply-btn button {
    width: 100%;
    border: none;
    background: var(--secondary-color);
    padding: 10px 15px 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--white-color);
    border-radius: 3px;
    transition: var(--transition);
}

.apply-btn button:hover {
    background: var(--primary-color);
}

.apply-page {
    margin: 50px 0;
}

#file-upload {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

/* Apply Online End  */







/* Course Page  */
.course-page .nav-tabs {
    border: none;
    margin-bottom: 20px;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    padding-bottom: 7px;
}

.course-page .nav-tabs::-webkit-scrollbar {
    height: 7px;
}

.course-page .nav-tabs::-webkit-scrollbar-track {
    background: var(--white-color);
}

.course-page .nav-tabs::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 50px;
}

.course-page .nav-item {
    flex: 1;
}

.course-page .nav-tabs .nav-link {
    width: 100%;
    border: none;
    background: #ededed;
    border-radius: 0;
    color: var(--dark-color);
    font-size: 18px;
    padding: 10px 15px;
    white-space: nowrap;
}

.course-page .nav-item+.nav-item .nav-link {
    border-left: 1px solid #d8d8d8;
}

.course-page .nav-item:first-child .nav-link {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.course-page .nav-item:last-child .nav-link {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.course-page .nav-tabs .nav-link.active {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* Course Page End  */






/* Skip Ads */
.only-mobile {
    display: none;
}

.skip-ads {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: rgb(0 0 0 / 60%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.skip-ads-wrap {
    height: 100vh;
    position: relative;
    max-width: 800px;
    margin: auto;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skip-ads-col {
    position: relative;
}

.skip-ads-col img {
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.skip-ads-head {
    position: absolute;
    top: -10px;
    right: -10px;
}

.skip-ads-head img {
    width: auto;
    height: 50px;
}

.skip-ads-head .btn {
    background-image: linear-gradient(to right, #fb5155 0%, #f92a75 50%, #fb5155 100%);
    border: none;
    padding: 0;
    font-weight: 500;
    font-size: 14px;
    height: 30px;
    width: 30px;
    line-height: 31px;
    text-align: center;
    border-radius: 100%;
}

.skip-ads-head .btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.skip-ads.active {
    opacity: 0;
    visibility: hidden;
    transition: ease-in-out .5s;
}

/* Skip Ads End */








/* Notice Page  */
.notice-wrap {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.notice-page.mt1 {
    margin-top: 55px;
}

/* Notice Page End  */






/* Payment Page  */
.payment-head h3 {
    font-size: 36px;
    margin-bottom: 10px;
    line-height: 1.1;
}

.payment-head p {
    margin-bottom: 30px;
    font-size: 20px;
}

.payment-head {
    text-align: center;
}

.payment-head ul {
    display: flex;
    justify-content: center;
}

.payment-head ul li img {
    height: 30px;
    width: auto;
    margin: 0 5px;
}

.payment-head h4 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 25px;
}

.payment-col h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.payment-col ul li {
    font-size: 16px;
    line-height: 1.4;
}

.payment-col ul li+li {
    margin-top: 10px;
}

.payment-col ul {
    margin-bottom: 25px;
}

.qr-img img {
    height: 180px;
    width: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.20);
}

.payment-col {
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
}

.payment-wrap .row {
    justify-content: center;
}

/* Payment Page End  */






/* Scholarship  */
.scholarship {
    margin: 50px 0;
}

.scholarship-sidebar {
    background: var(--bg-color);
    padding: 30px 20px;
    border-radius: 10px;
}

.scholarship-sidebar h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.scholarship-sidebar .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 0;
    font-size: 18px;
}

.scholarship-sidebar .accordion-item {
    background: transparent;
    border: none;
}

.scholarship-sidebar .accordion-item+.accordion-item {
    margin-top: 25px;
}

.scholarship-sidebar .accordion-body {
    padding: 0;
    padding-top: 15px;
}

.select2-container .select2-selection--single {
    height: 36px;
    border-color: #d2d2d2;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px;
    width: 26px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #d2d2d2;
    border-radius: 4px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none;
}

.scholarship-main-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.scholarship-main-head h3 {
    font-size: 28px;
    margin-bottom: 0;
}

.dt-container select.dt-input:focus-visible {
    outline: none;
}

.dt-container .dt-search input {
    outline: none;
    height: 32.8px;
    border-color: #d2d2d2 !important;
}

.dt-container select.dt-input {
    margin-right: 10px;
    border-color: #d2d2d2;
}

.dt-length label {
    text-transform: capitalize;
}

.dt-container .dt-paging .dt-paging-button {
    height: 30px;
    width: 30px;
    line-height: 29px;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    font-size: 16px;
    margin-left: 7px !important;
}

.dt-container .dt-paging .dt-paging-button.current {
    background: var(--bg-color) !important;
}

.dataTable thead tr {
    background-color: #f2f2f2;
}

table.dataTable.display>tbody>tr:nth-child(odd)>.sorting_1 {
    box-shadow: none;
}

table.dataTable.display>tbody>tr:nth-child(odd)>* {
    box-shadow: none;
}

table.dataTable.display>tbody>tr>* {
    border-color: #d2d2d2;
}

table.dataTable.display>tbody tr>.sorting_1 {
    box-shadow: none;
}

table.dataTable.display tbody tr:hover>.sorting_1 {
    box-shadow: none;
}

table.dataTable.display>tbody>tr:hover>* {
    box-shadow: none;
}

table.dataTable.display>tbody>tr>* a {
    display: block;
    color: var(--dark-color);
}

table.dataTable th,
table.dataTable td {
    line-height: 1.3;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
    border-bottom-color: #d2d2d2;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    border-bottom-color: #d2d2d2;
    border-top: 1px solid #d2d2d2;
}

.tables-btn a {
    display: block;
    background: var(--secondary-color);
    color: var(--white-color) !important;
    text-align: center;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
}

.tables-btn a:hover {
    background: var(--primary-color);
}

.form-switch .form-check-input:focus {
    box-shadow: none;
}

.scholarship-list .accordion-button::after {
    background-image: inherit;
    content: '\f107';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 13px;
}

#switch2 {
    display: none;
}

#switch2.active {
    display: block;
}

#switch1.remove {
    display: none;
}

.form-switch .form-check-input {
    cursor: pointer;
}

.scholarship-grid-wrap {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    margin-bottom: 25px;
    transition: var(--transition);
    cursor: pointer;
}

.scholarship-grid-wrap:hover {
    border-color: var(--secondary-color);
}

.scholarship-grid-head a {
    display: block;
}

.scholarship-grid-head img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    object-position: center;
}

.scholarship-grid-head {
    text-align: center;
}

.scholarship-grid-head h3 {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 3px;
}

.scholarship-grid-head h3 a {
    color: var(--dark-color);
    transition: var(--transition);
}

.scholarship-grid-head h3 a:hover {
    color: var(--secondary-color);
}

.scholarship-grid-head p {
    margin-bottom: 0;
    font-size: 16px;
}

.scholarship-grid-body ul li {
    display: flex;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.scholarship-grid-body ul li+li {
    margin-top: 5px;
}

.scholarship-grid-body ul li i {
    font-size: 17px;
    margin-top: 4px;
    margin-right: 10px;
}

.scholarship-grid-body {
    margin-top: 10px;
}

.scholarship-grid-footer {
    display: flex;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;
}

.scholarship-grid-footer span b {
    font-size: 18px;
    margin-right: 7px;
    vertical-align: middle;
}

.scholarship-grid-footer span {
    display: block;
    font-weight: 500;
}

.scholarship-grid-footer .main-btn a {
    white-space: nowrap;
    padding: 6px 16px;
    font-size: 15px;
}

.scholarship-grid-footer .main-btn a i {
    font-size: 16px;
    margin-left: 3px;
}

/* Scholarship End  */






/* Scholarship Apply  */
.admission-apply {
    padding: 50px 0;
}

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.formbold-form-wrapper {
    margin: 0 auto;
    width: 100%;
}

.formbold-steps {
    margin-bottom: 40px;
}

.formbold-steps ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

.formbold-steps li {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    flex: 1;
    position: relative;
    z-index: 0;
    cursor: pointer;
    text-align: center;
}

.formbold-steps li::after {
    position: absolute;
    content: '';
    left: 0;
    top: -28px;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 2px;
    width: 100%;
    background: #DDE3EC;
    z-index: -1;
}

.formbold-steps li.active::after {
    background: var(--primary-color);
}

.formbold-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDE3EC;
    border-radius: 100%;
    width: 32px;
    height: 32px;
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    color: #536387;
    margin: auto;
    margin-bottom: 5px;
}

.formbold-steps li.active {
    color: var(--primary-color);
}

.formbold-steps li.active span {
    background: var(--primary-color);
    color: var(--white-color);
}

.formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
}

.formbold-input-flex>div {
    width: 50%;
}

.formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background-color: transparent;
    font-weight: 500;
    font-size: 16px;
    color: #536387;
    outline: none;
    resize: none;
}

.formbold-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.formbold-form-label {
    color: #07074D;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.formbold-form-confirm {
    border-bottom: 1px solid #DDE3EC;
    padding-bottom: 35px;
}

.formbold-form-confirm p {
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    margin-bottom: 22px;
    width: 75%;
}

.formbold-form-confirm>div {
    display: flex;
    gap: 15px;
}

.formbold-confirm-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 0.5px solid #DDE3EC;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
}

.formbold-confirm-btn {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
}

.formbold-confirm-btn.active {
    background: #6A64F1;
    color: #FFFFFF;
}

.formbold-form-step-1,
.formbold-form-step-2,
.formbold-form-step-3,
.formbold-form-step-4,
.formbold-form-step-5 {
    display: none;
}

.formbold-form-step-1.active,
.formbold-form-step-2.active,
.formbold-form-step-3.active,
.formbold-form-step-4.active,
.formbold-form-step-5.active {
    display: block;
}

.formbold-form-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.formbold-back-btn {
    cursor: pointer;
    background: #FFFFFF;
    border: none;
    color: #07074D;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: none;
}

.formbold-back-btn.active {
    display: block;
}

.formbold-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 4px;
    padding: 8px 15px;
    border: none;
    font-weight: 500;
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    width: 70px;
    text-align: center;
    justify-content: center;
}

.formbold-btn:hover {
    background: #e27400;
}

.formbold-back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 4px;
    padding: 8px 15px;
    border: none;
    font-weight: 500;
    background-color: var(--dark-color);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    width: 70px;
    text-align: center;
    justify-content: center;
    display: none;
}

.formbold-back-btn:hover {
    background: #413798;
}

.inners-title {
    margin-bottom: 30px;
}

.inners-title h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
}

.step-inner-title h3 {
    font-size: 22px;
    margin-bottom: 0;
    font-weight: 600;
}

.step-inner-title {
    margin-bottom: 15px;
}

.step-form-list .form-control {
    height: 45px;
    border-radius: 4px;
    color: var(--text-color);
}

.step-form-list .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--secondary-color);
}

.step-form-list .form-group {
    margin-bottom: 10px;
}

.step-form-list+.step-form-list {
    margin-top: 10px;
}

.add-btn {
    margin-bottom: 15px;
}

.add-btn button {
    background: var(--secondary-color);
    border: none;
    border-radius: 4px;
    padding: 7px 15px;
    color: var(--white-color);
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

.add-btn button:hover {
    background: #e27400;
}

.dlt-btn {
    margin-top: 5px;
    margin-bottom: 15px;
}

.dlt-btn button {
    background: var(--dark-color);
    color: var(--white-color);
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    text-transform: uppercase;
    transition: var(--transition);
}

.dlt-btn button:hover {
    background: #413798;
}

.cloneable+.cloneable {
    margin-top: 25px;
}

.step-form-list textarea.form-control {
    height: 100px;
}

.step-inner-title h4 {
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 0;
    margin-top: 7px;
}

.step-inner-title p {
    margin-bottom: 0;
    line-height: 1.5;
    margin-top: 10px;
    font-size: 16px;
}

.same-address {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.same-add-title h3 {
    font-size: 18px;
    font-weight: 200;
    margin-right: 10px;
}

.same-add-wrap {
    display: flex;
    align-items: center;
}

.same-add-wrap .form-check {
    cursor: pointer;
}

.same-add-wrap .form-check+.form-check {
    margin-left: 15px;
}

.same-add-wrap .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.same-add-wrap .form-check-input[type=radio]:focus {
    outline: none;
    box-shadow: none;
}

.form-service .form-check {
    padding-left: 28px;
}

.form-service .form-check .form-check-input {
    margin-left: -28px;
}

.form-service label {
    font-weight: 600;
    font-size: 18px;
}

.form-service ul li {
    font-weight: 200;
    font-size: 17px;
    line-height: 1.3;
    margin-top: 7px;
}

.form-service ul li b {
    font-weight: 600;
}

.form-service .form-check-input[type=radio]:focus {
    outline: none;
    box-shadow: none;
}

.document-upload h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    margin-top: 30px;
}

.required-document-list h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}

.form-file label {
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.form-file .form-control {
    line-height: 32px;
}

.required-document-list {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 20px;
}

.form-file {
    margin-top: 20px;
}

.upload-docs-btn button {
    border: none;
    background: var(--secondary-color);
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    color: var(--white-color);
    transition: var(--transition);
}

.upload-docs-btn button:hover {
    background: #e27400;
}

.step-inner-title h4 b {
    font-weight: 700;
}

.pay-option label {
    font-size: 18px;
    font-weight: 400;
}

.pay-option .form-check-input {
    height: 20px;
    width: 20px;
    margin-left: -30px;
}

.form-check {
    padding-left: 30px;
}

.pay-option {
    margin-bottom: 15px;
}

.pay-option .form-check-input:focus {
    outline: none;
    box-shadow: none;
}

.admission-apply-sidebar {
    padding-left: 20px;
    position: sticky;
    top: 90px;
}

.admission-apply-sidebar table td {
    font-size: 17px;
    padding: 4px 0;
}

.admission-apply-sidebar table {
    width: 100%;
}

.code b {
    background: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 5px;
    color: var(--white-color);
}

.admission-summary {
    display: flex;
    background: var(--bg-color);
    padding: 25px 15px;
    border-radius: 10px;
    margin-top: 25px;
}

.admission-summary-img img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    object-position: center;
}

.admission-summary-img {
    width: 50px;
    height: 50px;
    margin-top: 5px;
}

.admission-summary-info {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.admission-summary-info h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 10px;
}

.admission-summary-info h3 a {
    display: block;
    color: var(--dark-color);
    transition: var(--transition);
}

.admission-summary-info h3 a:hover {
    color: var(--secondary-color);
}

.admission-summary-info ul li {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    margin-top: 2px;
}

.admission-apply-sidebar .table-responsive {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 25px 15px;
}

/* Scholarship Apply End  */



/* Chat Section  */
.chat-section {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    background: var(--white-color);
    z-index: 1022;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 16px 0 rgba(0, 11, 38, 0.24);
    padding-right: 0;
    display: none;
}

.chat-main-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.10);
    margin-top: -20px;
    margin-left: -20px;
    padding: 25px 20px;
    margin-bottom: 0;
}

.chat-logo img {
    height: 30px;
    width: auto;
}

.chat-close i {
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    background: var(--bg-color);
    border-radius: 100%;
    cursor: pointer;
    font-size: 18px;
}

.chat-date span {
    display: inline-block;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    background: var(--white-color);
    padding: 0 10px;
}

.chat-date {
    text-align: center;
    position: relative;
    z-index: 0;
    margin-bottom: 5px;
}

.chat-date::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1px;
    width: 100%;
    background: var(--border-color);
    z-index: -1;
}

.type-msg {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.type-msg-icon i {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 20px;
    color: var(--text-color);
    text-align: center;
}

.type-msg-submit button {
    border: none;
    padding: 0;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: transparent;
    font-size: 27px;
    color: var(--text-color);
}

.type-msg-form {
    width: calc(100% - 80px);
}

.type-msg-form {
    margin-right: 10px;
    margin-left: 5px;
}

.type-msg-form .form-control {
    height: 45px;
    border-radius: 5px;
    border-color: var(--border-color);
}

.type-msg-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}

.message-list h3 {
    font-size: 15px;
    font-weight: 300;
    color: #191e3b;
    margin-bottom: 5px;
    text-align: left;
}

.message-col {
    background: #eff3f7;
    padding: 7px 10px;
    border-radius: 7px;
    margin-right: 70px;
    display: inline-block;
    text-align: left;
}

.message-col p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #191e3b;
}

.message-col+.message-col {
    margin-top: 5px;
}

.reply-col {
    background: var(--primary-color);
    padding: 7px 10px;
    border-radius: 7px;
    margin-left: 70px;
    display: inline-block;
}

.reply-col p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white-color);
    text-align: left;
}

.message-list {
    text-align: right;
}

.reply-message {
    margin: 20px 0;
}

.reply-col+.reply-col {
    margin-top: 5px;
}

.chat-main-content {
    height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 15px;
    padding-top: 20px;
}

.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1021;
    cursor: pointer;
}

/* .chat-icon i {
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    border-radius: 100%;
    background: var(--primary-color);
    color: var(--white-color);
} */

.chat-icon i {
    height: 2.25rem;
    width: 90px;
    line-height: 36px;
    text-align: center;
    font-size: 17px;
    border-radius: 2500rem;
    background: #fff;
    color: #1668e3;
    min-width: 2.25rem;
    box-shadow: 0 2px .75rem rgba(12, 14, 28, .08);
    /* font-family: sans-serif; */
}

.chat-section.active {
    display: block;
}

.common-page-area {
    padding: 50px 0;
}

.common-page-area h2 {
    font-size: 30px;
}

/* Chat Section End  */


/* Googglecaptcha */
.rc-anchor{
    z-index: 999999999;
}
