@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: "Athelas";
    src: url('./assets/fonts/athelas-regular.ttf');
    font-stretch: 10px;
}

* {
    padding: 0px;
    margin: 0px;
}


:root {
    --body-font: "Athelas", serif;
    --heading-font: "Raleway", sans-serif;
    --theme-color: #FFCC00;
    --golden: #E08E45;
    --theme-color2: #02244B;
    --color-dark: #02244B;
    --color-gray: #ebe8f5;
    --body-text-color: #757F95;
    --color-white: #ffffff;
    --box-shadow: 0px 0px 8px #837676;
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all .5s ease-in-out;
    --transition2: all .3s ease-in-out;
    --footer-bg: #02244B;
    --footer-bg2: #00134C;
    --footer-text-color: #F5FAFF;
    --theme-gradient: linear-gradient(to right, #FFCC00 0%, #E08E45 100%);
}


/* header style start here  */

.container {
    max-width: 1290px;
    margin: 0 auto;
}


.scrolled {
    background-color: var(--color-dark) !important;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.scrolled .navbar-nav .nav-item .nav-link {
    color: var(--color-white);
}

body {
    font-family: var(--body-font);
    background-color: var(--color-white);
}

.width-klf-name17 .klf_logo {
    width: 85px;
    height: 85px;
}

.width-klf-name17 h3 {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    width: 290px;
    margin-left: 10px;
}

.width-klf-name17 h3 span {
    font-size: 23px;
}

.scrolled .width-klf-name17 h3 {
    color: var(--color-white);
}


@media only screen and (max-width:600px) {
    .width-klf-name17 .klf_logo {
        width: 60px;
        height: 60px;
    }

    .width-klf-name17 h3 {
        font-size: 13px;
        width: 220px;

    }

    .width-klf-name17 h3 span {
        font-size: 18px;
    }
}

.width-klf-name17 {
    display: inline-flex;
    align-items: center;
    padding: 8px 0px;
}

.klf-nav .nav-item {
    margin-left: 15px;
}

.klf-nav .nav-item .nav-link {
    font-size: 17px;
    font-weight: 700;
    font-family: var(--heading-font) !important;
    color: var(--color-dark);
    text-transform: uppercase;
}

.klf-nav .nav-item .nav-link:hover {
    color: var(--theme-color);
}

.active-klf {
    color: var(--theme-color) !important;
}


/* header style end here  */


/* home page style start */

/* counter style  */

.journey-klf h1 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--color-dark);
    padding: 10px 20px;
    color: var(--theme-color);
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
}

.counter-animation {
    display: block !important;
    position: relative;
    animation-name: counter-animation;
    animation-duration: 1s;
}

@keyframes counter-animation {
    0% {
        top: 100px;
    }

    100% {
        top: 0px;
    }
}

.number-bg-fixed {
    background-image: linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgb(0 0 0 / 73%)), url("../images/counter-backdrop.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    left: 0;
    background-attachment: fixed;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 2.5em !important;
    padding-bottom: 2.5em !important;
}

.bg-dark-klf {
    background-color: var(--color-dark);
}

.text-golden {
    color: var(--theme-color) !important;
}

.text-themecolor {
    color: var(--color-dark) !important;
}

.counter-container h3:before,
.counter-container h3:after {
    content: "";
    background: linear-gradient(to left bottom, #666 49%, transparent 50%);
    width: 11px;
    height: 11px;
    position: absolute;
    bottom: -11px;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}

.counter-container h3:after {
    transform: rotate(180deg);
    left: auto;
    right: -11px;
    bottom: auto;
    top: 0;
}

.counter-value {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px;
    display: block;
    color: var(--color-dark);
}

.counter-container {
    color: #666;
    background-color: var(--theme-color);
    font-family: 'Amaranth', sans-serif;
    text-align: center;
    width: 190px;
    margin: 12px auto 15px;
    border-radius: 5px;
    box-shadow: 10px 10px 25px 0px #783d13;
}

.counter-container h3 {
    color: var(--theme-color);
    background: linear-gradient(to left, var(--color-dark), var(--footer-bg));
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: capitalize;
    width: 90%;
    padding: 15px 17px;
    margin: -12px 0 17px -12px;
    border-radius: 0 0 30px 0;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.sign-nymber i {
    font-size: 22px;
    color: var(--color-dark);
}

.fa-users-klf {
    padding-top: 30px;
    padding-bottom: 10px;
}

.fa-users-klf i {
    font-size: 55px;
    color: var(--color-dark);
}

.klf-display-flex {
    display: grid;
    grid-template-columns: auto auto auto;
}

@media screen and (max-width: 800px) {
    .klf-display-flex {
        display: grid;
        grid-template-columns: auto;
    }
}

/* counter style end  */

.bg-white-1 {
    background-image: url("../images/bg-pattern-dot.png");
}

@media only screen and (min-width: 1440px) {
    img.klf-banner.img-fluid {
        width: 100%;
        height: 80vh !important;
    }
}

@media (min-width: 1200px) and (max-width: 1400px) {
    img.klf-banner.img-fluid {
        width: 100%;
        min-height: 550px;
        max-height: 550px;
    }
}

.klf-banner {
    background-color: var(--color-dark);
    width: 100%;
}

.top-klf-banner .owl-nav {
    margin-top: 0px;
}

.top-klf-banner .owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    left: 0px;
}

.top-klf-banner .owl-nav .owl-next {
    position: absolute;
    top: 40%;
    right: 0px;
}

@media screen and (max-width:600px) {
    .top-klf-banner .owl-nav .owl-prev {
        position: absolute;
        top: 35%;
        left: 0px;
    }

    .top-klf-banner .owl-nav .owl-next {
        position: absolute;
        top: 35%;
        right: 0px;
    }
}

.top-klf-banner .owl-nav .owl-next {
    border-radius: 100%;
}

.top-klf-banner .owl-nav .owl-next:hover {
    background-color: var(--theme-color);
}

.top-klf-banner .owl-nav .owl-next:hover i {
    color: var(--color-dark);
}

.top-klf-banner .owl-nav .owl-next i {
    border: 2px solid var(--theme-color);
    border-radius: 100%;
    color: var(--color-gray);
    padding: 10px 15px;
}

.top-klf-banner .owl-nav .owl-prev:hover {
    background-color: var(--theme-color);
}

.top-klf-banner .owl-nav .owl-prev:hover i {
    color: var(--color-dark);
}

.top-klf-banner .owl-nav .owl-prev {
    border: 2px solid var(--theme-color);
    border-radius: 100%;
}

.top-klf-banner .owl-nav .owl-prev i {
    border: 2px solid var(--theme-color);
    border-radius: 100%;
    color: var(--color-gray);
    padding: 10px 15px;
}

@media only screen and (min-width: 900px) {
    .top-klf-banner .owl-nav .owl-prev i {
        font-size: 35px;
        padding: 10px 18px;
    }

    .top-klf-banner .owl-nav .owl-next i {
        font-size: 35px;
        padding: 10px 18px;
    }
}

/* home page style end */


/* speaker section style start  */

.speaker_img img {
    background-color: var(--theme-color);
    border-radius: 50%;
    max-width: 150px;
    min-width: 150px;
    min-height: 150px;
    max-height: 150px;
    border: 4px solid var(--color-white);
}

/* speaker section style end  */


/* About style start  */
.partner-bg::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 100%;
    background-image: url(../images/04.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .4;
}

.about-area {
    position: relative;
    display: block;
}

.about-left {
    position: relative;
    display: block;
    margin-right: 50px;
}

.about-img {
    position: relative;
}

.about-img img {
    border-radius: 50%;
    border: 10px solid var(--color-white);
    box-shadow: var(--box-shadow);
}

.about-img .img-2 {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 280px;
    box-shadow: none;
}

.about-img .img-3 {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 200px;
    box-shadow: none;
}

.about-experience {
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    position: absolute;
    left: -30px;
    bottom: 80px;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
}

.about-experience span {
    color: var(--color-white);
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
}

.about-experience h5 {
    color: var(--color-white);
    font-size: 20px;
}

.about-right {
    position: relative;
    display: block;
    padding-left: 30px;
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.about-list-wrap {
    position: relative;
    display: block;
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-list {
    position: relative;
    display: block;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.theme-btn i {
    margin-left: 10px;
    transform: rotate(-35deg);
    transition: var(--transition2);
}

.site-title-tagline {
    display: block;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--golden);
    margin-bottom: 8px;
    position: relative;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 30px;
    color: var(--color-dark);
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .site-title {
        font-size: 25px;
    }

    .site-title-tagline {
        font-size: 15px;
    }
}

.site-title span {
    color: var(--theme-color);
    font-weight: 500;
}

.site-shadow-text {
    position: absolute;
    right: 0px;
    top: 0px;
    line-height: 0;
    font-size: 83px;
    font-family: var(--heading-font2);
    font-weight: bold;
    color: var(--color-gray);
    text-transform: uppercase;
    z-index: -1;
}

.site-shadow-text-partener {
    left: 0px !important;
    position: absolute;
    top: 0px;
    line-height: 0;
    font-size: 83px;
    font-family: var(--heading-font2);
    font-weight: bold;
    color: var(--color-gray);
    text-transform: uppercase;
    z-index: -1;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

@media (max-width: 767px) {

    .about-img {
        width: 90%;
    }

    .about-img .img-2 {
        width: 150px;
        right: -10px;
    }

    .about-img .img-3 {
        width: 140px;
    }

    .about-experience {
        left: -7px;
        padding: 20px 10px;
    }

    .about-left {
        margin-right: 0;
    }

    .about-right {
        padding-left: 0;
    }

    .about-right {
        margin-top: 35px;
    }

    .site-shadow-text {
        font-size: 40px !important;
        top: -40px !important;
    }

    .site-shadow-text-partener {
        font-size: 40px !important;
        top: -40px !important;
    }

}

@media (max-width: 991px) {
    .site-shadow-text {
        line-height: 2;
        top: -55px !important;
    }

    .site-shadow-text-partener {
        line-height: 2;
        top: -55px !important;
    }
}


/* About style end */

/* register style start */
.cta-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.cta-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-dark);
    opacity: .85;
    z-index: -1;
}

.cta-content {
    text-align: center;
}

.cta-content h1 {
    font-family: var(--heading-font);
    color: var(--color-white);
    font-size: 42px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 30px;
}

@media screen and (max-width:768px) {
    .cta-content h1 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 15px;
    }

}

/* register style end */

/* sechdule style start  */

#tabs-nav {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 40px;
}

#tabs-nav .active a .date_schedule {
    background: var(--theme-gradient) !important;
}
#tabs-nav .active a .venueklf_schedule {
    background: var(--theme-gradient) !important;
}

.date_schedule {
    background-color: var(--color-dark);
    padding: 10px 10px;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    border: 1px solid var(--color-dark);
}
.venueklf_schedule {
    background-color: var(--color-dark);
    padding: 15px 20px;
    transition: 0.5s ease-in-out;
}

.event-venue-shadow{
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border: 0.5px solid var(--color-white);
}


.date_schedule:hover {
    background-color: var(--theme-color);
}

.klf-day-hover {
    background-color: var(--theme-color);
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.klf-day-hover .fa-calendar-days {
    color: var(--color-dark) !important;
}

.klf-day-hover .tab-text-date {
    color: var(--color-dark) !important;
}
.klf-day-hover .tab-text-date h4 {
    color: var(--color-dark) !important;
}

.venueklf_schedule:hover {
    background-color: var(--theme-color);
}

.date_schedule:hover .fa-calendar-days {
    color: var(--color-dark) !important;
}


.date_schedule:hover .tab-text-date {
    color: var(--color-dark) !important;
}

.date_schedule:hover .tab-text-date h4 {
    color: var(--color-dark) !important;
}

.venueklf_schedule:hover .tab-text-date h4 {
    color: var(--color-dark) !important;
}

.date_schedule .px-2 .fa-calendar-days {
    font-size: 40px;
    color: var(--color-white);
}

.tab-text-date {
    color: var(--color-white);
}

.tab-text-date h4 {
    color: var(--color-white);
}

.schedule_content_sant>div>h5>a {
    color: var(--color-dark);
}

p {
    font-family: var(--body-font);
    font-size: 21px;
    letter-spacing: 1px;
}

/* sechdule style end  */


.bg-images-schedule-left {
    position: absolute;
    top: 0;
    left: 0%;
    width: 250px;
    height: 250px;
    animation: schedule_bg 8s linear infinite;
}

.bg-images-schedule-right {
    position: absolute;
    top: -150px;
    right: 5%;
    width: 250px;
    height: 250px;
    animation: schedule_bg 8s linear infinite;
    z-index: 1;
}

@keyframes schedule_bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 768px) {

    .bg-images-schedule-right {
        display: none;
    }

    .welcome-image-1,
    .welcome-image-2 {
        width: 120px;
    }

}

@media screen and (max-width: 500px) {


    .welcome-image-1,
    .welcome-image-2 {
        width: 100px;
    }

}

/* welcome decoration animation  end*/


/* partners section style starts  */

.partners_slider_images {
    border: 4px solid var(--color-dark);
    border-radius: 10px;
    padding: 5px;
}

.partners_slider_images img {
    width: 100%;
    height: 100%;
}

/* partners section style ends  */




/* Venues section style start */
.venues-absolutes-bg {
    background-color: var(--color-dark);
}

.venues-content-area {
    cursor: pointer;
    overflow: hidden;
}

.venues-images {
    overflow: hidden;
}

.venues-images .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 15px;
}

/* .venues-content-area:hover .card-img-top {
    transition: 1s ease-in-out;
    -ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
} */


.widget {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    height: 100%;
}

.widget .widget-title {
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    font-size: 25px;
    color: var(--color-white);
}

.widget .widget-title::before {
    position: absolute;
    content: '';
    width: 15px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 0;
}

.widget .widget-title::after {
    position: absolute;
    content: '';
    width: 30px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 22px;
}

.venue-info ul {
    margin: 0;
    padding: 0;
}

.venue-list li {
    margin: 8px 0;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.venue-info .venue-list li span:first-child {
    width: 80px;
}

.venue-list li span:first-child {
    width: 140px;
    display: inline-block;
}

.venues-images p {
    font-size: 20px;
}

.venue-list li span {
    font-weight: 500;
    color: var(--color-white);
    font-size: 19px;
}

.venue-info .venue-list li span:nth-child(2) {
    width: 20px;
}

/* Venues section style end */
































/* footer style start here  */
a {
    text-decoration: none;
}

.footer-area {
    background: var(--footer-bg);
    position: relative;
    z-index: 1;
}

.footer-social-icon a {
    padding-right: 10px;
}

.footer-widget-title {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 20px;
    z-index: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-toggler-icon {
    filter: invert(100);
}

.footer-shape img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .3;
    z-index: -1;
    opacity: 0.1;
    object-fit: cover;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1000px) {
    .footer-widget-box.about-us {
        padding-right: 45px;
    }
}

.footer-widget-box {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo h4 {
    font-size: 25px;
    font-weight: 700;
    color: #ffff;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

.footer-logo img {
    width: 85px;
    margin-right: 18px;
}

.footer-widget-box p {
    color: var(--color-white);
    font-family: var(--body-font);
    padding-right: 18px;
    margin-bottom: 20px;
    font-size: 19px;
    letter-spacing: 1px;
}

.subscribe-form .form-group {
    position: relative;
}

.subscribe-form .form-control {
    padding: 14px 140px 14px 25px;
    border-radius: 50px;
    color: var(--color-dark);
    box-shadow: none;
    border: none;
}

.subscribe-form .theme-btn {
    position: absolute;
    padding: 7px 18px;
    right: 4px;
    top: 8px;
}

.theme-btn {
    font-size: 14px;
    color: var(--color-dark);
    padding: 10px 24px;
    transition: all .5s;
    border: none;
    text-transform: uppercase;
    position: relative;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    background: var(--theme-color);
    /* background: var(--theme-gradient); */
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.theme-btn:hover {
    color: var(--color-white);
}

.subscribe-form .theme-btn:hover {
    color: var(--color-white);
}

.subscribe-form .theme-btn::before {
    background: var(--theme-color2);
}

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.subscribe-form .theme-btn::before {
    background: var(--theme-color2);
}

.theme-btn::before {
    content: "";
    height: 300px;
    width: 300px;
    background: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    z-index: -1;
}

.footer-widget-title::before {
    position: absolute;
    content: '';
    z-index: -1;
    width: 90px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
    bottom: 0;
    left: 0;
}

.footer-widget-title::after {
    position: absolute;
    content: '';
    z-index: -1;
    width: 30px;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 18px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-100 {
    padding-top: 100px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.footer-list li {
    transition: var(--transition);
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
    font-family: var(--body-font);
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-list li:hover {
    padding-left: 10px;
    color: var(--theme-color);
}

.footer-list li:hover a {
    color: var(--theme-color);
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--theme-color);
}

.footer-contact li {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--footer-text-color);
    font-size: 18px;
    margin-bottom: 12px;
    font-family: var(--body-font);
    letter-spacing: 1px;
}

.footer-contact li a {
    color: var(--footer-text-color);
    transition: var(--transition);
    font-family: var(--body-font);
    font-size: 18px;
    letter-spacing: 1px;
}

.footer-contact li i {
    width: 32px !important;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 50px;
    background: var(--theme-color);
    text-align: center;
    transition: var(--transition);
    color: var(--theme-color2);
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid var(--border-white-color);
    font-family: var(--body-font);
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0;
    font-size: 17px;
    font-family: var(--body-font);
}

.copyright .copyright-text a {
    color: var(--theme-color);
    font-weight: 500;
    font-family: var(--body-font);
    font-size: 18px;
}

.footer-menu {
    margin: 0;
    padding: 0;
    text-align: right;
    font-family: var(--body-font);
    font-size: 18px;
}

.footer-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    font-size: 18px;
}

.footer-menu li a {
    color: var(--footer-text-color);
    transition: var(--transition);
    font-family: var(--body-font);
    font-size: 18px;
}

.klf-social-media {
    display: inline-flex;
    justify-content: space-between;
    width: 85%;
}

.klf-social-media li {
    background-color: var(--color-white);
    padding: 6px 10px;
    border-radius: 100%;
    transition: .5s ease-in-out;
}

.klf-social-media li:hover {
    background-color: var(--theme-color);
    color: var(--color-dark);
}

.klf-social-media li a {
    color: var(--color-dark);
}

.klf-santosh-location {
    width: 51px !important;
}

.pt-105 {
    padding-top: 125px;
}

@media screen and (max-width:768px) {
    .pt-105 {
        padding-top: 60px;
    }

    .date_schedule .px-2 .fa-calendar-days {
        font-size: 25px;
    }

    .tab-text-date h4 {
        font-size: 13px;
    }

    .tab-text-date p {
        font-size: 11px;
    }
     .venueklf_schedule h4 {
        font-size: 11px;
    }

    .venueklf_schedule {
        padding: 8px 6px;
    }

    .date_schedule {
        padding: 5px;
        border: 1px solid var(--theme-color);
    }

    .footer-contact li a {
        font-size: 15px;
    }

    .bg-images-schedule-left,
    .bg-images-schedule-right {
        width: 150px;
        height: 150px;
    }
}

.scrollTop {
    position: fixed;
    right: 2%;
    bottom: 65px;
    background-color: var(--color-dark);
    padding: 13px 20px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
    z-index: 999;
}

.scrollTop a {
    font-size: 20px;
    color: var(--theme-color);
}


.tabs-nav-style {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-bg2);
}

.tabs-nav-style .active a .date_schedule {
    background: var(--theme-gradient) !important;
}
.tabs-nav-style .active a .venueklf_schedule {
    background: var(--theme-gradient) !important;
}