* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "SF Pro";
    src: url("../fonts/SFPro/SF-Pro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/SFProDisplayFontFamily/SanFranciscoProDisplay/SF-Pro-Display-Regular.otf")
        format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0577b1;
    --secondary-color: #f45810;
    --black-color: #000000;
    --white-color: #ffffff;
    --text-color: #525252;
    --sf-pro-font: "SF Pro", sans-serif;
    --sf-pro-display-font: "SF Pro Display", sans-serif;
}

.container {
    max-width: 1240px;
}
body {
    font-family: var(--sf-pro-display-font);
    background: #F2F2F2;
}
.header .logo {
    margin: 0;
}

.sm.logo {
    display: none;
}
.header .logo img {
    width: 100%;
    height: 50px;
}

.logo img {
   width: 570px !important;
}


.header .navbar-collapse {
    flex-grow: inherit;
    flex-basis: 100%;
    justify-content: center;
}

.top-header {
    background-color: var(--primary-color);
    padding-block: 4px;
}
.top-nav-right,
.top-nav-left {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.top-nav-right {
    gap: 8px;
}

.top-nav-right .nav-item .nav-link {
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: grid;
    place-content: center;
    box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.2);
}

.top-header ul li {
    list-style: none;
}

.top-header ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-nav-right li a, .top-nav-left li a {
    color: var(--white-color) !important;
}

/* .top-header ul li a:hover {
    color: var(--white-color);
} */

.navbar-light .navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 500;
    padding-inline: 0.8rem;
    font-size: 16px;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--white-color);
}



.nav-item:hover > .dropdown-menu {
    display: block;
}


.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
    color: var(--white-color);
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: var(--white-color);
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

.dropdown-submenu > .dropdown-menu li a {
    display: flex;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid var(--black-color);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}


.dropdown-submenu > .dropdown-menu > li:hover > a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.dropdown-child-submenu .dropdown-menu {
    position: absolute;
    top: 0%;
    left: 100%;
}

.dropdown-child-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-child-submenu:hover > .dropdown-menu li:hover > a {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* banner slider */
.banner {
    overflow: hidden;
}
.banner .slider {
    height: 440px;
}

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

.slick-next {
    right: 20px !important;
}

.slick-prev {
    left: 20px !important;
    z-index: 1;
}

.slick-next::before,
.slick-prev::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 14px !important;
}

.slick-prev::before {
    content: "\f104" !important;
}

.slick-next::before {
    content: "\f105" !important;
}

.slick-next,
.slick-prev {
    background-color: var(--black-color) !important;
    opacity: 0.6;
    height: 25px !important;
    width: 25px !important;
    display: grid;
    place-items: center;
    border-radius: 100px;
}

.slick-next:hover,
.slick-prev:hover {
    opacity: 1;
}

.slick-dots li button:before {
    top: -50px !important;
    color: var(--secondary-color) !important;
}

.slick-dotted.slick-slider {
    margin: 0 !important;
    padding: 0 !important;
}

/* focus-title  */
.focus-title {
    text-align: center;
    margin-bottom: 35px;
}
.focus-title h2 {
    font-weight: 700;
    font-size: 24px;
}
.line {
    position: relative;
    display: inline;
}
.line::after {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    content: "";
    background-color: var(--secondary-color);
}

.hirring-origin {
    background: #f0f8ff;
    padding-block: 20px;
}

.focus-title p {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
}

.hirig-items .icon .hiring-con img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hirig-items .content {
    text-align: center;
}
.hirig-items .content h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--black-color);
    margin-block: 15px;
}

.hirig-items .content p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: var(--text-color);
}

.hirig-items {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 4px;
    height: 245px;
}

.hiring-con {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0577b133;
    width: 51px;
    height: 51px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 100px;
}

/* event and activities section begins here  */
.events_activities {
    padding-block: 20px;
    background-color: var(--white-color);
}

.lg-event-content {
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 6px;
    padding: 20px;
    height: 528px;
    overflow: hidden;
    overflow-y: auto;
}

.message-box {
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 6px;
    padding: 20px;
    background-color: var(--white-color);
}

.event-lg-img {
    height: 400px;
}
.event-lg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.lg-event-content .right-content .items h3,
.lg-event-content .content-left .items h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black-color);
    line-height: 22px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.lg-event-content .right-content a,
.lg-event-content .content-left a {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
}

.lg-event-content .right-content a i,
.lg-event-content .content-left a i {
    font-size: 12px;
}

.right-img-sm .sm-img {
    height: 117px;
    width: 218px;
}

.right-img-sm .sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.lg-event-content .right-content .items p {
    margin: 0;
}

.sm-right-content-items {
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 6px;
    padding: 20px;
}

/* publication se4ction  */

.publications-pdf {
    background: #f0f8ff;
    padding-block: 20px;
}
.publications {
    position: relative;
    padding-top: 20px;
    transition: all ease-in-out 0.2s;
    overflow: hidden;
}
.publications .publication-img {
    height: 400px;
}

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

.publications:hover {
    transform: translateY(-10px);
}

.publications-slider .slick-track {
    display: flex !important;
    gap: 20px;
}

.publications-slider .slick-prev {
    left: -35px !important;
}
.publications-slider .slick-next {
    right: -35px !important;
}

.publications .publication-content {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 10px;
    color: var(--white-color);
    width: 100%;
}
.publications .publication-content::after {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.68) 22%,
        rgba(0, 0, 0, 0.71) 40%,
        rgba(0, 0, 0, 0.67) 60%,
        rgba(0, 0, 0, 0.57) 75%,
        rgb(0 0 0 / 0%) 100%
    );
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.publications .publication-content p {
    z-index: 1;
    position: relative;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
    color: var(--white-color);
}

.publications:hover .publication-content p {
    color: var(--secondary-color);
}

/* news story style here  */

.news-wrapper {
    padding-block: 20px;
}

.news-items {
    box-shadow: 0px 0px 2px 0px #00000040;
    overflow: hidden;
    border-radius: 6px;
    height: 362px;
}
.news-items .news-img {
    height: 200px;
}
.news-items .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-items .news-content {
    padding: 20px;
}
.news-items .news-content h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black-color);
}

.news-items .news-content p {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    margin: 0;
    margin-bottom: 10px;
}

.news-read a {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
}
.news-read a i {
    font-size: 12px;
}
.bg-brand {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
.bg-brand:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.see-all-news a i {
    font-size: 12px;
    margin-left: 3px;
}

.y-tube {
    background: #f2f2f2;
    padding-block: 20px;
}

.y-video {
    height: 172px;
    border-radius: 6px;
    overflow: hidden;
}

.y-tube .lg-event-content {
    background-color: var(--white-color);
    height: 222px;
    padding: 8px;
    box-shadow: 0px 0px 2px 0px #00000040;
}

.outline-bg {
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 6px;
}
/* our trusted partners  */

.partners-wrapper {
    background: #f2f2f2;
    padding-block: 20px;
}

.partner-items {
    background-color: var(--white-color);
    padding: 10px;
}
.partner-img {
    height: 77px;
}
.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* footer section  */

.footer-section {
    background-color: var(--primary-color);
    padding-block: 20px;
    margin-top: 0;
}

.footer-section .author {
    width: 80px;
    height: 80px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.footer-section .quote-box {
    padding: 8px 10px;
}
.social-icons ul li {
    list-style: none;
}
.social-icons ul li a {
    color: var(--black-color);
}

.footer-section .social-icons ul li a {
    margin-left: 10px;
    background-color: var(--white-color);
    height: 36px;
    text-align: center;
    display: grid;
    place-items: center;
    border-radius: 10px;

}

.top-footer {
    border-bottom: 1px solid #ffffff4d;
    padding-bottom: 20px;
}

.footer-title {
    padding: 0px 0px 30px;
}

.footer-title h3 {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white-color);
}

.fml {
    margin-left: 40px;;
}
.quick-link {
    padding: 0;
}
.quick-link li {
    list-style: none;
    margin-bottom: 20px;
}
.quick-link li a {
    color: var(--white-color);
    text-decoration: none;
}
.footer-title .line::after {
    left: 0;
    transform: translate(0);
}

.footer-section .logo img {
    width: 285px !important;
}

/* timeline geographic style  */
.timeline {
    background: url("/front/assets/img/mapbg.png");
    background-position: center center;
    background-size: cover;
    padding-block: 30px;
    overflow: hidden;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    z-index: 1;
}

.timeline .event {
    position: relative;
    text-align: center;
    width: 160px;
    padding-block: 200px;
}

.timeline .event .dot {
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.timeline .event.bottom .dot {
    top: auto;
    bottom: -10px;
}

.timeline .event .line-top {
    position: absolute;
    top: 51%;
    left: 65%;
    width: 2px;
    height: 100px;
    background: var(--secondary-color);
    transform: translateX(-50%) translateY(-100%);
    z-index: 1;
}

.timeline .event .line-bottom {
    position: absolute;
    top: 51%;
    left: 50%;
    width: 2px;
    height: 100px;
    background: var(--secondary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline .event .text-top {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 155px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--black-color);
    margin-bottom: 8px;
    background: #ef7f4e;
    padding-block: 6px;
    padding-inline: 4px;
    border-radius: 4px;

}

.timeline .event .text-bottom {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 155px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--black-color);
    margin-bottom: 20px;
    background: #ef7f4e;
    padding-block: 6px;
    padding-inline: 4px;
    border-radius: 4px;
}

.timeline .event .year {
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
    position: relative;
    top: 35px;
    z-index: 2;
    left: -105px;
    width: 100px;
    background-color: #fff700;
}



.timeline .event .year::after {
    border: solid transparent;
    content: " ";
    position: absolute;
    border-left-color: var(--white-color);
    border-width: 8px;
    top: 8px;
    right: -13px;
}

.timeline::-webkit-scrollbar {
    height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 10px;
}

.goal-banner img {
    width: 100%;
}

.dropdown-menu {
    padding: 0;
}
.dropdown-item {
    border-bottom: 1px solid var(--black-color);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
}

.sticky-header.fixed-header {
    position: fixed;
    top: 0;
    z-index: 999;
    background: #fff;
    width: 100%;
}

/* page-slider style  */
.page-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: 0.5;
}

.page-slider .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    z-index: 1;
}

.page-slider .content p {
    letter-spacing: 1px;
}

.page-content {
    box-shadow: 0px 2px 6px 0px #00000040;
    padding: 20px;
}

.banner .page-slider .slider {
    height: 300px;
}

.error-page {
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #0f0f1f 100%);
    color: var(--white-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.error-page h1 {
    font-size: 8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 10px var(--primary-color);
}

.error-page h2 {
    font-size: 1.8rem;
    color: #f8f8f8;
    margin-bottom: 2rem;
}

.error-page .btn {
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 30px;
    background-color: var(--secondary-color);
    border: none;
    color: var(--white-color);
    transition: background 0.3s ease;
}

.error-page .btn:hover {
    background-color: #ff1f3d;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent
        url("https://media.giphy.com/media/3oEjI6SIIHBdRxXI40/giphy.gif") repeat;
    opacity: 0.2;
    z-index: 0;
}

.error-content {
    position: relative;
    z-index: 2;
}

/* news story style goes here  */
.top-news-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.top-news-item .top-news-content {
    position: absolute;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0)
    );
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.news-img img {
    width: 100%;
}

.top-news-content h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--white-color);
    letter-spacing: 1px;
}
.top-news-content p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
    margin: 0;
    color: var(--white-color);
    letter-spacing: 1px;
}

.title {
    position: relative;
    margin-block: 20px;
}
.title h2 {
    font-weight: 700;
    font-size: 24px;
    position: relative;
    display: inline-block;
}
.title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 70%;
    height: 2px;
    left: 0;
    background-color: var(--secondary-color);
}

.top-events .lg-event-content {
    height: 560px;
}

.top-events .event-lg-img {
    height: 432px;
}

.top-events .right-content .items h3 {
    font-weight: 700;
    font-size: 16px;
    color: var(--black-color);
    line-height: 22px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.top-events .right-content a,
.top-events .content-left a {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
}

.top-events .right-content a i,
.top-events .content-left a i {
    font-size: 12px;
}
.populart-title {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--black-color);
}
.populart-title h2 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    line-height: 22px;
}

.latest-right-news {
    box-shadow: 0px 0px 4px 0px #00000040;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
}

.latest-right-news .latest-right .latest-img {
    width: 133px;
    height: 75px;
    border-radius: 5px;
    overflow: hidden;
}

.latest-right-news .latest-right .latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.latest-news-title a {
    color: var(--black-color);
    text-decoration: none;
}
.latest-news-title a h2 {
    font-weight: 700;
    font-size: 16px;
}

.news-details-img {
    height: 340px;
}
.news-details-img img {
    height: 100%;
    object-fit: cover;
}

.news-details .page-content h2 {
    font-weight: 700;
    font-size: 24px;
}

.breadcumb div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.breadcumb a {
    text-decoration: none;
    color: var(--black-color);
}
.breadcumb a:hover {
    color: var(--primary-color);
}

.breadcumb i {
    font-size: 12px;
}
.sticky-news {
    position: sticky;
    top: 20px;
}

.about-left-img {
    height: 310px;
}

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

.send-message {
    border-radius: 100px;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.contactus-page h5 {
    font-weight: 700;
    font-size: 24px;
}

.contact-info {
    text-align: center;
}

.contact-info .contact-throu + .contact-throu {
    border-left: 1px solid #0000004d;
}
.contact-info .contact-throu i {
    background-color: #f4581033;
    color: var(--secondary-color);
    height: 45px;
    width: 45px;
    border-radius: 100px;
    display: grid;
    place-items: center;
    margin: auto;
    font-size: 18px;
}

.contact-info .contact-throu p {
    margin: 0;
    padding-top: 13px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}
.contact-info .contact-throu {
    font-weight: 510;
    font-size: 14px;
    text-align: center;
}

.contactus-page .social-icons a {
    font-size: 20px;
    margin-right: 10px;
    display: grid;
    place-items: center;
    place-content: center;
    transition: color 0.3s ease;
    color: var(--white-color);
    border-radius: 100px;
    width: 45px;
    height: 45px;
}

.contactus-page .social-icons .instagram {
    background: #e1306c;
}
.contactus-page .social-icons .facebook {
    background: #1877f2;
}
.contactus-page .social-icons .linkedin {
    background: #0a66c2;
}
.contactus-page .social-icons .twitter {
    background: #000000;
}
.contactus-page .social-icons .youtube {
    background: #ff0000;
}

.contactus-page .social-icons a:hover {
    opacity: 0.7;
}

.title-tag {
    margin: 0;
    color: var(--text-color);
    padding-bottom: 40px;
}

.contactus-page .row .col-md-5 {
    border-left: 1px solid #0000004d;
    padding-left: 40px;
}

.form-control:focus,
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}
.footer-contact-info {
    padding: 0;
}
.footer-contact-info li {
    list-style: none;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.footer-contact-info li i {
    height: 32px;
    width: 32px;
    border-radius: 100px;
    background-color: #f4581066;
    font-size: 16px;
    color: var(--white-color);
    display: grid;
    place-items: center;
}

.footer-contact-info li a {
    color: var(--white-color);
    text-decoration: none;
    text-align: start;
}

.quick-link li a:hover,
.footer-contact-info li a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.quote-box {
    border-radius: 6px;
    background-color: var(--white-color);
    padding: 20px;
}

.quote-box-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author {
    width: 130px;
    height: 112px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    overflow: hidden;
}

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

.quote-content p {
    margin: 0;
}

.scroll-fix {
    height: 75px;
    overflow: hidden;
    overflow-y: auto;
}

.scroll-fix::-webkit-scrollbar {
    width: 6px;
}

.scroll-fix::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.scroll-fix::-webkit-scrollbar-thumb {
    display: none;
}
.scroll-fix:hover::-webkit-scrollbar-thumb {
    display: block;
}


.right-quote {
    display: flex;
    justify-content: flex-end;
}

.quotes {
    overflow: hidden;
}
.quote-slider .slick-dots li button:before {
    top: -15px !important;
}


.man-of-the-day {
    width: 66px;
    height: 66px;
    border-radius: 100px;
    overflow: hidden;
}
.man-of-the-day img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right-man-container {
    width: 432px;
    border-radius: 6px;
    box-shadow: 0px 0px 2px 0px #00000040;
    padding: 20px;
}

.guru-flex {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}
.right-man-container h2 {
    font-weight: 700;
    font-size: 17px;
    margin: 0;
    margin-bottom: 3px;
}

.right-man-container p {
    font-weight: 400;
    font-size: 14px;
    margin: 0;
}
.recent-photo {
    height: 280px;
    border-radius: 4px;
    overflow: hidden;
}

.recent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.all-photos .recent-photo {
    height: 180px;
}

.gallery-title h1 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    text-align: center;
    color: #002E53;
}

.gallery-title p {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: var(--text-color);
}


.team-items {
    background-color: var(--white-color);
    padding: 10px;
    border-radius: 4px;
    height: 230px;
}

.team-items .recent-photo {
    height: 150px;
}

.team-items .team-info h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin: 0;
    padding-top: 4px;
}
.team-items .team-info h4 {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    margin: 0;
}


.blog-post p {
    margin: 0;
    font-weight: 590;
    font-style: Semibold;
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
}

.right-arrow-blog {
    transform: rotate(-45deg);
    color: var(--black-color);
}

.news-items.blog-items {
    background-color: var(--white-color);
    height: 345px;
}
/* .podcast-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
} */

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


.podcasts-details h3 {
    font-weight: 700;
    font-size: 45px;
    line-height: 100%;
    color: #002E53;
}

.podcasts-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--text-color);
}


.worldcontry .dot {
    width: 10px;
    height: 10px;
    background-color: var(--white-color);
    border-radius: 100px;
    cursor: pointer;
}
.worldcontry .nepal.dot {
    position: absolute;
    left: 30%;
    bottom: 58%;
}

.worldcontry .india.dot {
    position: absolute;
    left: 25%;
    bottom: 46%
}

.worldcontry .bangladesh.dot {
    position: absolute;
    left: 36%;
    bottom: 49%;
}

.worldcontry .pakistan.dot {
    position: absolute;
    left: 15%;
    bottom: 56%;
}

.worldcontry .malaysia.dot {
    position: absolute;
    left: 47%;
    bottom: 10%;
}

.worldcontry .japan.dot {
    position: absolute;
    right: 18%;
    bottom: 75%;
}

.worldcontry .srilanka.dot {
    position: absolute;
    left: 27.5%;
    bottom: 17%;
}

.worldcontry .bhutan.dot {
    position: absolute;
    left: 36%;
    bottom: 56%
}

.country-content .box {
    background: var(--white-color);
    box-shadow: 0px 0px 4px 0px #00000040;
    min-width: 150px;
    border-radius: 6px;
    padding-block: 10px;
    text-align: center;
    position: absolute;
    bottom: 100%;
    opacity: 0;
    visibility: hidden;
}

.country-content .box h2 {
    font-size: 16px;
    margin: 0;
}

.country-content .box h3 {
    font-size: 15px;
    margin: 0;
}

.worldcontry .dot:hover .country-content .box {
    opacity: 1;
    visibility: visible;
}


.newsletter-form input, .newsletter-form button {
    border-radius: 100px;
}

.newsletter span {
    color: var(--secondary-color);
}
.newsletter h3 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -2%;
    text-align: center;
    margin: 0;
}
.newsletter p {
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    color: var(--text-color);
}

.newsletter-form button{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.event-details h2 {
    font-weight: 700;
    font-size: 24px;
    position: relative;
    display: inline-block;
}

.message-img {
    height: 324px;
    position: relative;
}
.message-img img {
    width: 100%;;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
}
.message-img::after {
    position: absolute;
    background-color: var(--primary-color);
    content: '';
    top: -10px;
    left: -10px;
    width: 120px;
    height: 137px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    z-index: -1;
}
.message-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;

}
.message-title h3 {
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 100%;
    color: var(--black-color);
    margin: 0;
    padding-bottom: 10px;
}

.message-title::after {
    content: '';
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 80%;
}
.copyright-foot {
    background: #086B9D;
}
.copyright-foot ul {
    margin: 0;
    padding: 0;
    gap: 10px;
    color: var(--white-color);
}
.copyright-foot ul li {
    list-style: none;
    color: var(--white-color);
    letter-spacing: 1px;
    padding-block: 10px;
}

.copyright-foot ul li a {
    color: var(--white-color);
    text-decoration: none;
}

.nav-item .facebook,
.copyright-foot ul li a.facebook {
    background-color: #1877f2;
}

.nav-item .linkedin,
.copyright-foot ul li a.linkedin {
    background-color: #0a66c2;
}

.social-icons .instagram {
    background-color: #e1306c !important;
}

.social-icons .twitter {
    background-color: #000000 !important;
}
.social-icons .youtube {
    background-color: #ff0000 !important;
}

.nav-item .instagram {
    background-color: #e1306c !important;
}

.nav-item .twitter {
    background-color: #000000 !important;
}
.nav-item .youtube {
    background-color: #ff0000 !important;
}

.social-icons .blogger,
.nav-item .blogger {
    background-color: #F06A35 !important;
}

.copyright-foot ul li a:hover {
    color: var(--secondary-color);
}

.page-link {
    color: var(--black-color);
}
.page-item.active .page-link {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}


.news-slider .slick-track {
    display: flex !important;
    gap: 20px;
}

.news-slider .slick-prev {
    left: -35px !important;
}
.news-slider .slick-next {
    right: -35px !important;
}

.news-bg {
    background-color: var(--white-color);
}

.mid-nav {
    background-color: var(--white-color);
}

.album-item-wrapper {
    position: relative;
}

.album-title {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #00000042;
    width: 100%;
}

.album-title h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
    color: var(--white-color);
    padding: 10px;
    text-align: center;
}



.team-details-img {
    height: 300px;
    width: 300px;
    border-radius: 100%;
    overflow: hidden;
    border: 8px solid var(--primary-color);
}

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

.team-single-details h3 {
    font-size: 22px;
}

.team-single-details h4 {
    font-size: 18px;
}

.team-single-details p {
    color: var(--text-color);
}

.upcomming_event_img {
    height: 400px;
    width: 400px;
    float: left;
    padding-right: 20px;
    padding-bottom: 15px;
}
.upcomming_event_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-485 {
    min-height: 485px;
}



.content-left .items p {
    margin: 0;
}

.multi-slider .slick-track {
    display: flex;
    gap: 10px;
}

.multi-slider .news-items {
    height: 260px;
    background-color: var(--white-color);
}

.multi-slider .news-items .news-img {
    height: 180px;
}

.multi-slider .slick-prev {
    left: -20px !important;
}

.multi-slider .slick-next {
    right: -20px !important;
}


.messagefrom-img {
    height: 300px;
    width: 340px;
    float: left;
    padding-right: 20px;
    padding-bottom: 15px;
}
.messagefrom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.organization-list {
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-align: start;
    padding-left: 20px;
}
.organization-list li {
    list-style: none;
}

.organization-list p {
    margin-bottom: 0;
    white-space: nowrap;
}
