:root {
    --tp-ff-body: 'Outfit', sans-serif;
    --tp-ff-heading: 'Outfit', sans-serif;
    --tp-ff-p: 'Outfit', sans-serif;
    --tp-ff-primary: 'Jost', sans-serif;
    --tp-ff-secondary: 'Crimson Pro', serif;
    --tp-ff-manrope: 'Manrope', sans-serif;
    --tp-ff-rufina: 'Rufina', serif;
    --tp-ff-inter: 'Inter', sans-serif;
    --tp-ff-marcellus: 'Marcellus', serif;
    --tp-ff-tropiline-bold: 'Tropiline_Bold', sans-serif;
    --tp-ff-tropiline: 'Tropiline_Regular', sans-serif;
    --tp-ff-tropiline-extra-bold: 'Tropiline_Extra_Bold', sans-serif;
    --tp-ff-fontawesome: "Font Awesome 6 Pro";
    --tp-common-white: #ffffff;
    --tp-common-black: #000;
    --tp-common-black-1: #010F1C;
    --tp-common-yellow: #fdf275;
    --tp-grey-1: #F6F4EE;
    --tp-grey-2: #84807B;
    --tp-grey-3: #55585B;
    --tp-grey-4: #EFEDE7;
    --tp-grey-5: #636366;
    --tp-grey-6: #4F5158;
    --tp-grey-7: #f9f4f1;
    --tp-grey-8: #5e5a59;
    --tp-grey-9: #837b79;
    --tp-red-1: #AF0E2E;
    --tp-red-2: #C41230;
    --tp-red-3: #B70A14;
    --tp-red-4: #933115;
    --tp-red-5: #cf6e52;
    --tp-blue-1: #F1F3F9;
    --tp-heading-primary: #161613;
    --tp-heading-2: #031F42;
    --tp-heading-3: #0A1D3A;
    --tp-heading-4: #161821;
    --tp-heading-5: #2d2a29;
    --tp-text-body: #57595F;
    --tp-theme-primary: #AB0C2F;
    --tp-theme-secondary: #1A73E8;
    --tp-theme-3: #FF7162;
    --tp-theme-4: #B1040E;
    --tp-theme-5: #F0EC51;
    --tp-theme-6: #1E1E2F;
    --tp-theme-7: #4661FD;
    --tp-theme-8: #006B61;
    --tp-theme-9: #5956E9;
    --tp-theme-10: #ff5224;
    --tp-theme-11: #1d9267;
    --tp-dashboard-primary: #556DF5;
    --tp-dashboard-secondary: #5169F1;
    --tp-dashboard-3: #5B7D55;
    --tp-dashboard-danger: #FF4D4F;
    --tp-dashboard-sucess: #0F9F55;
    --tp-dashboard-warning: #F59B12;
    --tp-dashboard-info: #5974FF;
    --tp-border-primary: #EAEBED;
    --tp-border-2: #E4E2DC;
}

a {
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    text-decoration: none;
}

p {
    text-align: justify;
}

.about,
.counter,
.programs,
.events,
.testimonial,
.blog,
.gallery,
.application,
.footer_top,
.top_header {
    overflow-y: hidden;
}

.top_header {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
}

.text_top_head {
    padding: 10px 0;
    background-color: var(--tp-theme-primary);
}

.top_head_left {
    display: flex;
    justify-content: start;
    align-items: center;
}

.top_head_left_item {
    margin-right: 10px;
    padding-right: 10px;
    line-height: 1.4;
 /*   border-right: 1px solid rgba(255, 255, 255, 0.16);*/
}

.top_head_left_item span {
    color: var(--tp-common-white) !important;
    font-size: 14px;
    font-weight: 500;
}

.top_head_left_item span a i {
    margin-right: 10px;
    color: var(--tp-common-white) !important;
}

.top_head_right {
    display: flex;
    justify-content: flex-end;
}

.top_head_right a {
    color: var(--tp-common-white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-block;
    line-height: 1;
    padding: 4px 20px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    text-decoration: none;
}

.top_head_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    transition: 0.3s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 4px rgba(7, 37, 68, 0.1);
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

.top_head_sticky #navbarContent>ul>li>a {
    color: #000;
}

.top_head_sticky #navbarContent a.btn {
    color: var(--tp-common-white);
    background-color: var(--tp-theme-primary);
}

.top_head_sticky #navbarContent a.btn:hover {
    background-color: var(--tp-common-white);
    color: var(--tp-theme-primary);
}

#navbarContent>ul>li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 0px 18px;
}

#navbarContent>ul>li>a {
    display: inline-block;
    color: var(--tp-common-white);
    padding: 35px 0 35px 0;
    line-height: 1.5;
    font-size: 17px;
    font-weight: 500;
}

.top_head_sticky #navbarContent>ul>li>a {
    padding: 25px 0 25px 0;
    color: var(--tp-common-black);
}

#navbarContent>ul>li>a:hover {
    color: var(--tp-theme-primary);
    background-color: transparent;
}

.top_head_sticky .navbar {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

#navbarContent a.btn {
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    padding: 7px 24px 9px;
    color: var(--tp-common-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

#navbarContent a:hover {
    background-color: var(--tp-common-white);
    color: var(--tp-theme-primary);
}

.top_head_sticky .light_logo {
    display: none;
}

.header_navbar .black_log {
    display: none;
}

.top_head_sticky .black_log {
    display: block;
}

.navbar-brand img {
    width: 140px;
}

/* banner */

.mobile {
    display: none;
}

.lap {
    display: block;
}

#carouselExampleControls::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.navbar-toggler {
    background-color: #fff !important;
}

/* service */

.service {
    position: relative;
    z-index: 1;
    padding-bottom: 45px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.service_title {
    margin-bottom: -10px !important;

}

.service_item {
    text-align: center;
    margin-top: -70px;
    margin-bottom: 10px;
}

.service_wrap {
    border-radius: 14px;
    padding: 35px 30px 10px 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service_wrap::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 14px;
    background-color: #F6F4EE;
    box-shadow: 10px 10px 20px 0px rgba(36, 2, 7, 0.16);
    backdrop-filter: blur(5px);
    z-index: -1;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.service_item:hover .service_wrap::before {
    top: 10px;
    height: calc(100% - 20px);
}

.service_icon {
    height: 68px;
}

.service_item:hover .service_icon {
    animation: icon_bounce 0.8s 1;
}

@keyframes icon_bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.service_title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 3px;
}

.service_title a {
    color: #000;
    text-decoration: none;
}

.service_btn {
    transform: translateY(35px);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.service_item:hover .service_btn {
    transform: translateY(25px);
}

.service_btn span {
    display: inline-block;
    position: relative;
    z-index: 1;
    height: 52px;
    width: 52px;
    line-height: 48px;
    border-radius: 50%;
    text-align: center;
}

.service_btn span i {
    color: #000;
    font-size: 20px;
}

.service_btn span::before {
    position: absolute;
    border: 6px solid var(--tp-theme-primary);
    content: "";
    border-radius: 50%;
    z-index: -1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--tp-common-white);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.service_item:hover .service_btn span::before {
    transform: scale(1.3);
}

.service_content {
    padding: 10px 10px;
}
.service_content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: justify;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .service_item {
        margin-bottom: 70px;
    }
}

.service_outer_icon_img {
    position: absolute;
    bottom: 80px;
    left: 85px;
    z-index: -1;
    visibility: visible;
    animation-duration: 1.5s;
    animation-delay: 0.4s;
    animation-name: bounceIn;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.serivce_bottom span a {
    position: relative;
}

.serivce_bottom span a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.serivce_bottom span a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background: var(--tp-common-white);
    left: auto;
    right: 0;
    bottom: -2px;
    opacity: 0;
    transition: all 0.3s linear;
}

.serivce_bottom span a:hover::after {
    opacity: 1;
    width: 100%;
    left: 0;
    right: auto;
    transition: all 0.2s linear;
}

.serivce_bottom span a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 660;
    text-decoration: none;
}

/* about */

.about {
    padding-bottom: 30px;
    padding-top: 45px;
    background-color: var(--tp-grey-1);
}

.about_left {
    position: relative;
    z-index: 1;
    margin-top: 23px;
    margin-bottom: 60px;
}

.about_left_img {
    display: flex;
}

.about_left_img_2 {
    margin-left: -82px;
    margin-top: 75px;

}

.about_left_img_2 img,
.about_left_img_1 img {
    display: block;
}

.about_experience {
    display: inline-block;
    position: absolute;
    right: -40px;
    bottom: 80px;
    padding: 7px 36px 20px 24px;
    border-radius: 6px;
    border: 1px solid rgba(1, 15, 28, 0.1);
    background: rgba(246, 244, 238, 0.6);
    backdrop-filter: blur(10px);
    min-width: 224px;
}

.about_experience_text {
    display: flex;
    align-items: end;
}

.about_count span {
    margin-bottom: 0;
    color: var(--tp-theme-primary);
    font-size: 70px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -2.7px;
    line-height: 0.74;
}

.about_experience_text p {
    color: var(--tp-theme-primary);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    margin-left: 6px;
}

.about_right {
    margin-left: 43px;
    margin-bottom: 60px;
}


.about_right_text {
    margin-bottom: 40px;
}

.about_right_text h5 {
    color: var(--tp-theme-primary);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.about_right_text h3 {
    font-size: 60px;
    line-height: 1.07;
    letter-spacing: -0.6px;
    margin-bottom: 30px;
}

.about_right_text h3 span {
    position: relative;
    color: var(--tp-theme-primary);
    display: inline-block;
}

.about_right_text p {
    position: relative;
    padding-left: 22px;
    margin-left: 25px;
    font-size: 17px;
    text-align: justify;
}

.about_right_text p::before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 14px);
    width: 2px;
    background-color: var(--tp-theme-primary);
}

.about_right_text_list {
    margin-left: 46px;
}

.about_list_item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.about_list_icon {
    flex: 0 0 auto;
    margin-right: 20px;
}

.about_list_icon span {
    display: inline-block;
    border-radius: 64px;
    border: 1px solid rgba(87, 89, 95, 0.1);
    height: 55px;
    width: 55px;
    line-height: 50px;
    text-align: center;
}

.about_list_content h5 {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1;
}

.about_list_content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 20px;
}

.about_btn {
    padding-top: 10px;
}

.about_btn a {
    color: var(--tp-common-white);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 13px 35px;
    border-radius: 6px;
    border: 2px solid var(--tp-theme-primary);
    background-color: var(--tp-theme-primary);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    text-decoration: none;
}

.about_btn a:hover {
    background-color: var(--tp-common-white);
    border: 2px solid var(--tp-theme-primary);
    color: var(--tp-theme-primary);
}

.about_btn a span {
    display: inline-block;
    margin-left: 5px;
    transform: translateY(-1px);
    vertical-align: middle;
}

/* counter */
.counter {
    margin-top: -112px;
    margin-bottom: 45px;
}

.count_bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 14px;
    overflow: hidden;
}

.counter_item {
    text-align: center;
    padding-top: 43px;
    padding-bottom: 55px;
    position: relative;
    z-index: 1;
}

.counter_item::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    right: -15px;
    height: 120px;
    width: 2px;
    background: rgba(255, 255, 255, 0.14);
}

.counter_item h3 {
    margin-bottom: 3px;
    font-size: 100px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -3px;
    line-height: 1;
    color: var(--tp-common-white);
}

.counter_item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 1;
    text-align: center;
}

/* Program */
.programs {
    margin-bottom: 45px;
    overflow: hidden;
}

.program_title {
    margin-bottom: 25px;
    text-align: center;
}

.program_title h3 {
    font-size: 60px;
    line-height: 1.07;
    letter-spacing: -0.6px;
    font-family: var(--tp-ff-primary);
}

.program_title h3 span {
    position: relative;
    color: var(--tp-theme-primary);
    display: inline-block;
}

.program_title p {
    margin-left: 25px;
    font-size: 17px;
    text-align: center;
}

.pro_slider {
    width: 95%;
    margin-right: 15px;
    margin-left: 15px;
    padding: 15px 15px;
    border-radius: 14px;
    background-color: var(--tp-grey-1);
    margin-bottom: 15px;
}

.pro_slide_img {
    border-radius: 8px;
    margin-bottom: 28px;
    overflow: hidden;
}

.pro_slide_img img {
    border-radius: 8px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    width: 100%;
}

.pro_slider:hover .pro_slide_img img {
    transform: scale(1.08);
}

.pro_slide_content {
    padding: 0 17px;
}

.pro_slide_content h3 {
    font-size: 22px;
}

.pro_slide_content h3 a {
    text-decoration: none;
    color: #000;
}

.pro_slide_content p {
    text-align: justify;
    font-family: var(--tp-ff-p);
    font-size: 16px;
    font-weight: 400;
    color: var(--tp-text-body);
    margin-bottom: 15px;
    line-height: 26px;
}

.pro_tags p {
    margin-bottom: 36px;
    font-size: 17px;
    color: var(--tp-common-black-1);
}

.pro_tags p span {
    display: inline-block;
    margin-right: 6px;
}

.pro_btn a {
    color: var(--tp-theme-primary);
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: center;
    background-color: var(--tp-common-white);
    border-radius: 6px;
    line-height: 1;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s 0s ease-out;
}

.pro_btn a:hover {
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
}

.swiper-pagination-bullet {
    color: #cacaca !important;
    font-size: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--tp-theme-primary, var(--tp-theme-primary));
}

.swiper-pagination-bullet-active {
    transform: translateY(0px) scale(1.5) !important;
}

.all_program {
    text-align: center;
    margin-top: 14px;
}

.all_program p {
    font-size: 17px;
    margin: 0px;
}

.all_program p a {
    position: relative;
    color: var(--tp-theme-primary);
    font-weight: 500;
    text-decoration: none;
}

.all_program p a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    height: 1px;
    width: 100%;
    background: rgba(171, 12, 47, 0.3);
}

.all_program p a::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 1px;
    left: auto;
    right: 0px;
    bottom: -2px;
    opacity: 0;
    background: rgb(171, 12, 47);
    transition: 0.3s linear;
}

.all_program p a:hover::after {
    opacity: 1;
    width: 100%;
    left: 0px;
    right: auto;
    transition: 0.2s linear;
}

.all_program p a span {
    margin-left: 4px;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    display: inline-block;
}

/* events */
.events {
    background-color: var(--tp-grey-1);
    padding-bottom: 60px;
    padding-top: 35px;
}

.events_title {
    margin-bottom: 35px;
}

.event_tit_cont h3 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 500;
    color: var(--tp-heading-3);
}

.event_tit_cont h3 span {
    color: var(--tp-theme-primary);
    position: relative;
    display: inline-block;
}

.event_btn {
    margin-bottom: 35px;
    float: right;
}

.event_btn a {
    padding: 12px 35px;
    color: var(--tp-common-white);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    border-radius: 6px;
    border: 2px solid var(--tp-theme-primary);
    background-color: var(--tp-theme-primary);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    text-decoration: none;
}

.event_btn a:hover {
    background-color: var(--tp-common-white);
    border: 2px solid var(--tp-theme-primary);
    color: var(--tp-theme-primary);
}

.event_btn a span {
    display: inline-block;
    margin-left: 5px;
    transform: translateY(-1px);
}

.event_items {
    padding: 25px 0 27px 0;
    border-bottom: 1px solid rgba(1, 15, 28, 0.1);
}

.event_items:first-child {
    border-top: 1px solid rgba(1, 15, 28, 0.1);
}

.event_day h4 {
    color: var(--tp-theme-primary);
    font-size: 60px;
    font-style: italic;
    font-weight: 400;
    line-height: 0.85;
    margin-bottom: 0;
    letter-spacing: -1.2px;
    font-family: var(--tp-ff-secondary);
}

.event_day span {
    font-size: 16px;
    text-transform: uppercase;
}

.event_content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 0;
    margin-bottom: 5px;
}

.event_content h3 a {
    text-decoration: none;
    color: var(--tp-heading-3);
}

.event_info span {
    color: var(--tp-grey-2);
    font-size: 15px;
    margin-right: 5px;
}

.event_info span i {
    font-size: 13px;
    margin-right: 7px;
}

.event_link a i {
    color: var(--tp-text-body);
}













/* testimonial */
.testimonial {
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonail_background span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--tp-theme-primary);
    z-index: -1;
}

.test_shape {
    position: absolute;
    right: 0;
    bottom: -80px;
    z-index: 0;
}

.testimonial_content {
    margin-left: -24px;
    margin-right: -88px;
    margin-bottom: 80px;
    padding: 70px 40px 0px 40px;
    position: relative;
    z-index: 1;
    border-radius: 0px 0px 20px 20px;
    background: #FEFDFC;
}

.testimonail_title {
    margin-bottom: 40px;
}

.testimonail_title h5 {
    color: var(--tp-theme-primary);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonail_title h3 {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 0px;
}

.tesimonail_bg1 {
    position: absolute;
    top: 80px;
    right: 70px;
}

.tesimonail_bg2 {
    position: absolute;
    right: -60px;
    top: 140px;
    z-index: -1;
    animation: hero_dots 5s linear 0s infinite alternate;
}

@keyframes hero_dots {
    0% {
        transform: translateY(-80px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (max-width: 767px) {
    .testimonial {
        background-size: cover;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .testimonial_content {
        margin-left: -80px;
        margin-right: 0;
        margin-bottom: 80px;
        padding: 50px 30px 0px 30px;
    }
}

.tesimonail_bg3 {
    position: absolute;
    right: -190px;
    top: 100px;
    z-index: -1;
    visibility: visible;
    animation-duration: 1.5s;
    animation-delay: 0.4s;
    animation-name: bounceIn;
}

.test_con_img {
    margin-bottom: 25px;
}

.test_con_img img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.test_con_text p {
    color: var(--tp-text-body);
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 27px;
}

.test_con_info h4 {
    color: var(--tp-common-black-1);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0;
}

.test_con_info span {
    color: var(--tp-text-body);
    font-size: 16px;
    line-height: 1.1;
}

.swiper {
    width: 100%;
 /*   max-width: 800px;
    height: 400px;*/

}

.programss.swiper {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.gallery .swiper {
    max-width: 100% !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    padding: 0px;
}

.gallery .swiper .swiper-slide {
    background: transparent;
    border-radius: 0px;
    padding: 0px;
}

.swiper-wrapper {
    position: relative;
}

.swiper_btn {
    position: absolute;
    right: 20%;
    bottom: 15%;
    display: flex;
    gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    border-radius: 50%;
    display: inline-block;
}

.swiper-button-next,
.swiper-button-prev {
    svg {
        height: 50% !important;
    }
}

.swiper-button-prev span,
.swiper-button-next span {
    height: 44px;
    display: inline-block;
    width: 44px;
    line-height: 41px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(1, 15, 28, 0.1);
    color: var(--tp-heading-primary);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.swiper-button-prev span:hover,
.swiper-button-next span:hover {
    border-color: var(--tp-theme-primary);
    background-color: var(--tp-theme-primary);
    color: var(--tp-common-white);
}


.swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, -100px) !important;
}

/* blog */
.blog {
    background-color: var(--tp-grey-1);
    padding-bottom: 5px;
    padding-top: 55px;
}

.blog_title {
    margin-bottom: 40px;
    text-align: center;
}

.blog_title h5 {
    color: var(--tp-theme-primary);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.blog_title h3 {
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -1.2px;
    font-weight: 500;
    color: var(--tp-heading-3);
}

.blog_title h3 span {
    color: var(--tp-theme-primary);
    position: relative;
    display: inline-block;
}

.blog_content_left {
    border-radius: 0px;
    padding: 0;
    margin-bottom: 0px;
    text-align: center;
}

.blog_content_left_img {
    margin-bottom: 32px;
    border-radius: 10px;
    overflow: hidden;
}

.blog_content_left_img img {
    border-radius: 10px;
    width: 100%;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    object-fit: contain;
}

/*.blog_content_left:hover .blog_content_left_img img {
    transform: scale(1.1);
}
*/
.blog_content span {
    display: inline-block;
    color: var(--tp-theme-primary);
    font-size: 18px;
    margin-bottom: 8px;
}

.blog_content h4 {
    color: #000;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 0px;
}

.blog_content h4 a {
    color: var(--tp-common-black-1);
    text-align: center;
    text-decoration: none;
}

.blog_details {
    margin-bottom: 12px;
}

.blog_details span {
    color: var(--tp-grey-2);
    font-size: 15px;
    margin: 0 8px;
}

.blog_btn a {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}

.blog_btn_top {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 15px -5px rgba(21, 36, 34, 0.1);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    color: var(--tp-heading-primary);
}

.blog_btn_bot {
    position: absolute;
    top: -11px;
    left: -11px;
    display: inline-block;
    width: calc(100% + 22px);
    height: calc(100% + 22px);
    background-color: transparent;
    border-radius: 50%;
    border: 16px solid #F6F4EE;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    z-index: -1;
    color: var(--tp-heading-primary);
}

.blog_content_left:hover .blog_btn_top {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
}

.blog_content_left:hover .blog_btn_bot {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog_btn a .blog_btn_icon i {
    color: #000;
    z-index: 99;
    position: relative;
    font-size: 24px;
}


/* gallery */
.gallery {
    background-color: var(--tp-grey-1);
    padding-bottom: 60px;
    padding-top: 60px;
    overflow: hidden;
}
.gal_margin {
    margin-left: 15px;
}

.gallery_silde {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}

.gallery_silde img {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    width: 100%;
    object-fit: contain;
}

.gallery_silde:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.gallery_silde .icons {
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 24px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    transform: scale(0);
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 10;
}

.gallery_silde:hover .icons {
    transform: scale(1);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.gallery_silde .icons a i {
    color: #fff !important;
}

/* application */
.application {
    padding-top: 60px;
    padding-bottom: 60px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--tp-grey-1);
}

.apply_text {
    display: flex;
    align-items: center;
}

.apply_logo {
    flex: 0 0 auto;
    margin-right: 25px;
    display: none;
}

.apply_content span {
    color: var(--tp-common-white);
    font-family: var(--tp-ff-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
}

.apply_content h3 {
    color: var(--tp-common-white);
    font-family: var(--tp-ff-primary);
    font-size: 40px;
    font-weight: 500;
}

.apply_btn {
    position: relative;
    z-index: 1;
}

.apply_btn a {
    text-decoration: none;
    background-color: var(--tp-common-white);
    color: var(--tp-theme-primary);
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 13px 34px;
    border-radius: 6px;
    border: 2px solid var(--tp-theme-primary);
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
}

.apply_btn a:hover {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 15px -5px rgba(21, 36, 34, 0.1);
    color: var(--tp-theme-primary);
    ;
}

.apply_btn a span {
    display: inline-block;
    margin-left: 5px;
    transform: translateY(-1px);
    vertical-align: middle;
}

/* footer */

.footer_top {
    background-color: var(--tp-grey-1);
    padding-bottom: 55px;
    padding-top: 60px;
	float:left;
	width:100%;
}

.footer_section1,
.footer_section2 {
    margin-bottom: 30px;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo img {
    width: 140px;
}

.footer_section1_content p {
    color: var(--tp-grey-3);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 24px;
}

.footer_call>span {
    display: block;
    color: var(--tp-grey-3);
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1;
}

.footer_call>a {
    color: var(--tp-common-black-1);
    font-size: 22px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer_email a {
    color: var(--tp-grey-3);
    font-size: 16px;
    text-decoration: none;
}

.footer_section2 h4 {
    color: var(--tp-common-black-1);
    font-size: 20px;
    font-weight: 500;
}

.footer_section2 ul {
    margin: 0px;
    padding: 0px;
}

.footer_section2 ul li {
    list-style: none;
}

.footer_section2 ul li:not(:last-child) {
    margin-bottom: 5px;
}

.footer_section2 ul li a {
    text-decoration: none;
    color: #57595F;
}

.footer_section2 ul li a:hover {
    color: #B1040E;
    font-size: 18px;
    font-weight: 600;
    transition: all 50ms ease-out;
}

.footer_bottom {
    padding: 17px 0;
    background-color: var(--tp-grey-4);
}

.footer_bottom .text-center {
    color: #57595F;
    font-size: 16px;
    line-height: 24px;
}

.footer_bottom .text-center a {
    text-decoration: none;
    color: #B1040E;
}


.cont-out {
    float: left;
    width: 100%;
    padding: 60px 0px;
    overflow: hidden;
}


.contact-info__item {
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    margin-bottom: 80px;
}
.contact-info__icon-box {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background-color: #ab0c2f;
    transition: all 500ms ease;
}


.contact-info__title {
    margin-bottom: 5px;
    font-size: 22px;
    color: var(--tidytouch-white, #FFFFFF);
    font-weight: 700;
    line-height: 1.181;
}


.contact-info__icon-box::after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 15.5px 0 15.5px 16px;
    border-color: transparent transparent transparent var(--tidytouch-black2, #15161B);
    transition: all 500ms ease;
}

.contact-info__content {
    padding-left: 40px;
}


.contact-info__content h4 {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}


.contact-info__content p{
    float: left;
    width: 100%;
    margin-bottom: 0px;
    line-height: 24px;
}



.contact-info__content p a{
color:#000;
text-decoration:none;
}
.ba-out {
    background: url(../images/banner/split-bg.jpg);
    background-size: cover;
    height: 140px;
    overflow: hidden;
}


.ic-in2 {
    display: flex;
    width: 100%;
    border: 1px solid #000000;
    margin: 0px 0px 30px 0px;
    padding: 10px;
    background: #ffffff;
    border-radius: 4px;
	background: rgba(255,255,255,.18);
}

.ic-in1 {
    width: 100%;
    border: 0;
    padding: 0px 0px 0px 0px;
    background: none;
    color: #000;
}
.co-in1-1 {
    float: left;
    width: 100%;
    padding: 30px 30px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #fff;
}

.ic-in1:focus {
    border: 0 !important;
    outline: none;
}
.contact_submit_button2 {
    background: #ab0c2f;
    border: 0;
    text-transform: uppercase;
    float: left;
    color: #fff;
    margin-top: 15px;
    background-repeat: no-repeat;
    padding: 8px 20px;
    border-radius: 4px;
}
.co-in1-1  h4 {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    font-size: 24px;
    color: #ab0c2f;
    text-align: center;
}

.cont-out h1 {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
}

.events1 {
    background-color: #fff;
	padding:60px 0px;
    
}
.blog_content_left_img img {
    width: 300px;
    border-radius: 50%;
    border: 1px solid #ccc;
}



.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}


.counter-box .icon {
    position: relative;
    text-align: center;
    font-size: 60px;
    width: 100px;
    height: 100px;
    line-height: 88px;
    color: #ffffff;
      background: linear-gradient(to right, #8d8f94, #070505);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}



.counter-box .icon::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 3px solid #ffffff;
    transition: all .5s ease-in-out;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}


.counter-box .icon img {
    width: 60px;
    filter: brightness(0) invert(1);
    display: inline-block;
    margin-top: 0px;
}

.counter-box .counter1 {
    display: block;
    line-height: 1;
    color: #fff;
    font-size: 45px;
    font-weight: 600;
}


.counter-box .title {
    color: #ffffff;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0px;
}



.counter-box .icon::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 3px solid #ffffff;
    transition: all .5s ease-in-out;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
}


.counter-box:hover .icon {
    background: linear-gradient(to right, #070505, #070505);
}


.counter-box:hover .icon::before {
    left: 0;
    top: 0;
}


.count_bg {
padding:40px 30px;
}

.hometestout
{
    display:inline-block;
    width:340px;
    padding:0px 20px;
}
.blog_content_left_img img
{
    width:100% !important;
}




.affiliations-1 img{

}



.affiliations-out{
float:left;
width:100%;
padding:60px 0px;
}

.affiliations-out h1{
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}




.gallery_silde1 img{
width:100%;
}

#navbarContent>ul>li>a.active {
    color: var(--tp-theme-primary);
    background-color: transparent;
}



.test-1 img{
width:100%;
border:1px solid #ccc;
}


.test-1 {
    float: left;
    width: 100%;
    margin-bottom: 20%;
}


.course_posters img {
    width: 100%;
    border: 1px solid #ccc;
}


.gaa-1 {
    margin-bottom: 25px;
}
.gaa-2{
margin-bottom:0px;
}

.member-1{
  float: left;
    width: 100%;
}



.member-1 p{
  float: left;
    width: 100%;
	margin-bottom:15px;
	text-align:justify;
}



.co-in1-2 {
    float: left;
    width: 100%;
  
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: url(../images/banner/2.jpg) no-repeat;
    position: relative;
    background-size: cover;
}



.co-in1-2::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.dev-1 {
    padding: 50px 40px;
    float: left;
    width: 100%;
    position: relative;
    z-index: 2;
}

.ic-in11 {
    width: 100%;
    border: 0;
    padding: 0px 0px 0px 0px;
    background: none;
    color: #fff;
}

.ic-in11:focus {
    border: 0 !important;
    outline: none;
}
.dev-1 ::placeholder{
color: #fff !important;
}

.enq-bg img{
  width:100%;
}

.abt-ct {
    float: left;
    width: 100%;
    margin-bottom: 40px;
}



.abt-ct p{
    float: left;
    width: 100%;
    margin-bottom: 0px;
	text-align:justify;
}
.vm-out {
    float: left;
    width: 100%;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 0px 50px 50px 0px;
    color: #000000;
    margin-bottom: 40px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.vm-1 h4 {
    float: left;
    width: 100%;
    margin-bottom: 15px;
    font-size: 22px;
    color: #ab0c2f;
}


.vm-1{
    float: left;
    width: 100%;
   
}


.vm-1 p {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    text-align: justify;
}

.vm-out1 {
    float: left;
    width: 100%;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 50px 0px 0px 50px;
    color: #000000;
    margin-bottom: 0px;
    display: flex;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.vm-2 {
    display: flex;
    justify-content: center;
    align-items: center;
   
}







