:root {
    --bs-white: #fff;
    --bs-dark: #1a1a1a;
    --bs-primary: #1D8B5C;
    --bs-secondary: #B1146B;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #f5f5f5;
    color: #777;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #002257;
}

.notice-hide{
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    color: inherit;
}

button {
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: inherit;
}

img {
    max-width: 100%;
}

.bg-white {
    background-color: var(--bs-white) !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}
.dsk-hide{
    display: block;
}
.mbl-hide{
    display: block;
}

.btn-primary {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    font-size: 15px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    z-index: 1;
    border-radius: 2px;
    overflow: hidden;
    border: none;
}

.btn-primary:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    background-color: var(--bs-secondary);
    z-index: -1;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover:before {
    transform: scaleX(1);
}

.fa-chevron-right::before {
    content: '\f054';
}

.fa-chevron-left::before {
    content: '\f053';
}

.fa-facebook-f::before {
    content: '\f39e';
}

.fa-twitter::before {
    content: '\f099';
}

.fa-instagram::before {
    content: '\f16d';
}

.fa-youtube::before {
    content: '\f167';
}

.fa-linkedin-in::before {
    content: '\f0e1';
}

.fa-phone-alt::before {
    content: '\f879';
}

.fa-envelope-open-text::before {
    content: '\f658';
}

.fa-map-marker-alt::before {
    content: '\f3c5';
}

.fa-envelope-open::before {
    content: '\f2b6';
}

.fa-arrow-up::before {
    content: '\f062';
}

.fa-bullseye:before {
    content: "\f140";
}

/* ========== Header Css Start ========== */
.header {
    background-color: var(--bs-primary);
    border-bottom: 2px solid var(--bs-white);
}

.header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    margin: 0;
    animation: fixedTopContent 0.4s;
    -webkit-box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.17);
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.17);
    padding: 0;
}

@keyframes fixedTopContent {
    from {
        transform: translateY(-100%);
        transform-origin: center top 0;
    }

    to {
        transform: translateY(0);
    }
}

.header-wrapper {
    display: flex;
    gap: 20px;
}

.logo-area {
    position: relative;
    z-index: 8;
    background-color: var(--bs-white);
    flex: 0 0 auto;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 6px 16px;
}

.header-content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.header-top {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    position: relative;
    z-index: 1;
    padding: 5px 0;
}

.header-top::before {
    content: '';
    position: absolute;
    width: 2000px;
    left: -2000px;
    height: 100%;
    top: 0;
    background-color: var(--bs-secondary);
}

.header-top::after {
    content: '';
    position: absolute;
    width: 2000px;
    right: -2000px;
    height: 100%;
    top: 0;
    background-color: var(--bs-secondary);
}

.header-link {
    font-size: 15px;
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.social-link {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    background-color: rgb(255 255 255 / 20%);
    border-radius: 50%;
    line-height: 1;
    font-size: 14px;
    color: var(--bs-white) !important;
}

.social-facebook:hover {
    background-color: #1773EA;
}

.social-twitter:hover {
    background-color: #1C96E8;
}

.social-instagram:hover {
    background-color: #684CC9;
}

.social-youtube:hover {
    background-color: #F20000;
}

.social-linkedin:hover {
    background-color: #0071AE;
}

.header-bottom {
    flex-grow: 1;
}

.main-menu {
    height: 100%;
}

.main-menu-list {
    display: flex;
    height: 100%;
}

.list-item::after {
    position: absolute;
    display: block;
    top: 50%;
    margin-top: -7.5px;
    left: -1px;
    width: 1px;
    height: 15px;
    background-color: rgb(255 255 255 / 30%);
    content: "";
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.item-link {
    display: inline-flex;
    padding: 10px 20px;
    line-height: 50px;
    color: var(--bs-white);
    font-size: 15px;
    text-transform: uppercase;
    min-height: 100%;
    align-items: center;
}

.item-link:hover {
    color: var(--bs-primary);
    background-color: var(--bs-white);
}

.list-item,
.has-submenu {
    position: relative;
}

.list-item:first-child::after {
    display: none;
}

.has-submenu .item-link::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    font-size: 10px;
    margin-left: 6px;
}

.submenu {
    position: absolute;
    display: block;
    background-color: #fff;
    width: 250px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    -webkit-transform: translate(0, 40px);
    -moz-transform: translate(0, 40px);
    -o-transform: translate(0, 40px);
    -ms-transform: translate(0, 40px);
    transform: translate(0, 40px);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    -webkit-transition: -webkit-transform 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
    -moz-transition: -moz-transform 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
    -ms-transition: transform 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
    transition: transform 0.35s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    -moz-transition: -moz-transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    -ms-transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.submenu-list:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
}

.submenu-link {
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    color: #969696;
    text-transform: uppercase;
}

.submenu-link::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-size: 10px;
    margin-right: 8px;
}

.submenu-link:hover {
    color: var(--bs-primary);
    background-color: #f9f9f9;
}

/* ========== Header Css End ========== */

/* ========== Mobile Menu Css Start ========== */

.nav-toggler {
    padding: 6px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 99;
}

.icon-line {
    display: block;
    width: 26px;
    height: 2px;
    margin: 3px 0;
    position: relative;
    background-color: var(--bs-white);
}

.icon-line:before,
.icon-line:after {
    background-color: var(--bs-white);
    display: block;
    width: 100%;
    height: 2px;
    margin: 3px 0;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
}

.icon-line:before {
    top: -11px;
}

.icon-line:after {
    top: 5px;
}

.close-icon {
    display: block;
    width: 26px;
    position: relative;
}

.close-icon:before,
.close-icon:after {
    background-color: #b0b0b0;
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.close-icon:before {
    transform: rotate(45deg);
}

.close-icon:after {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    max-width: 400px;
    background-color: var(--bs-dark);
    z-index: 9999;
    height: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(70, 70, 70, 0.5);
    background-color: #161515;
    height: 60px;
    position: relative;
}

.mobile-menu-logo {
    position: absolute;
    left: 5px;
    top: 5px;
    bottom: 5px;
    height: calc(100% - 10px);
}

.mobile-menu-body {
    flex-grow: 1;
    overflow: auto;
}

.close-menu {
    padding: 6px;
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
}

.list-item {
    border-bottom: 1px solid #343434;
    position: relative;
}

.submenu_toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #b0b0b0;
    width: 50px;
    display: grid;
    place-items: center;
    height: 100%;
    cursor: pointer;
    border-left: 1px solid #343434;
}

.submenu_toggler::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
}

.item-submenu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    padding-bottom: 100px;
    height: 100vh;
    overflow-y: scroll;
    background-color: #0e0e0e;
    z-index: 10000;
    -webkit-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 100%;
}

.list-item.open>.item-submenu {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.menu-heading {
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 0;
    text-transform: uppercase;
}

.submenu_collapse {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    border-right: 1px solid rgba(70, 70, 70, 0.5);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 20px;
    padding-right: 3px;
}

.submenu_collapse::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Pro';
    color: #b0b0b0;
}

.menu-heading-list {
    padding: 15px;
    border-bottom: 1px solid rgba(70, 70, 70, 0.5);
    background-color: #161515;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-link,
.menu-link:hover,
.menu-link:focus {
    display: block;
    color: #b0b0b0;
    padding: 13px 15px;
}

/* ========== Mobile Menu Css End ========== */

/* ========== Slider Css Start ========== */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 9;
    color: var(--bs-primary);
    visibility: hidden;
    opacity: 0;
}

.main-slider:hover .slick-arrow {
    visibility: visible;
    opacity: 1;
}

.slick-arrow:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

.slide-heading {
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff 0%, #ffffff 70%);
    background: -webkit-linear-gradient(to right, #ffffff 0%, #ffffff 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 100px;
}

.single-slide {
    position: relative;
}

.slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slide-btn-block {
    text-align: center;
}

.slide-button {
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-button:hover {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.slick-active .slide-button,
.slick-active .slide-heading {
    animation: 1.1s ease 0s normal none 1 running fadeInUp;
}

/* ========== Slider Css End ========== */

/* ========== About Section Css Start ========== */
.about-section {
    padding: 70px 0;
}

.about-images {
    max-width: 500px;
    float: left;
    width: 400px;
    margin: 0 15px 15px 0;
}

.about-content {
    line-height: 1.7;
    overflow: hidden;
}

.about__description {
    float: left;
    overflow: hidden;
}

.about__description p {}

.about__btn {
    float: left;
}

.delimeter {
    border-top-width: 1px;
    border-top-style: solid;
    width: 100px;
    margin: 0;
    border-color: #002257;
    opacity: 0.25;
}

.about-image {
    float: left;
    max-width: 400px;
    margin-right: 30px;
    margin-bottom: 10px;
}

.notice-list {
    max-height: 500px;
    overflow-y: auto;
}

.notice-list__item {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 15px;
}

.notice-list__item::before {
    content: '\f324';
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    margin-right: 10px;
    color: var(--bs-secondary);
}

.notice-list__link:hover {
    color: var(--bs-secondary);
}

.view-all {
    font-size: 14px;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    padding: 3px 10px;
    border-radius: 3px;
    display: inline-block;
}

.view-all:hover {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

/* ========== About Section Css End ========== */

/* ========== Counter Section Css Start ========== */
.counter-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.counter-section::before {
    content: " ";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 63, 117, 0.95);
    z-index: -1;
    pointer-events: none;
}

.counter-item {
    text-align: center;
}

.counter-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: var(--bs-white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.icon-image {
    background-color: var(--bs-white);
    max-width: 50px;
    max-height: 50px;
}

.counter-title {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 3px;
    color: var(--bs-white);
}

.counter-desc {
    color: var(--bs-white);
    margin-bottom: 0;
}

/* ========== Counter Section Css End ========== */

/* ========== Team Section Css Start ========== */
.team-section {
    padding: 55px 0;
}

.single-team {
    outline: 1px solid #E2E6E7;
    overflow: hidden;
    height: 100%;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image-wrapper::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.team-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-out;
}

.team-image-wrapper:hover .team-image {
    transform: scale(1.5);
}

.team-content {
    text-align: center;
    padding: 15px;
}

.team-title {
    font-size: 20px;
    margin-bottom: 3px;
}

.team-designation {
    margin-bottom: 0;
    font-size: 17px;
    text-transform: capitalize;
}

.table-image__wrapper {
    position: relative;
    padding-top: 115%;
    width: 85px;
}

.table-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.precident-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top;
}

/* ========== Team Section Css End ========== */

/* ========== Photo Gallery Section Css Start ========== */
.gallery-carousel {}

.single-photo {
    position: relative;
    z-index: 1;
}

.single-photo::before {
    content: '';
    display: block;
    padding-top: 70%;
}

.single-photo::after {
    content: '';
    background-color: rgba(62, 73, 91, 0.4);
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.gallery-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-caption {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    color: var(--bs-white);
    transform: translateY(15px);
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: all 0.2s ease-in-out;
}

.single-photo:hover::after {
    visibility: visible;
    opacity: 1;
}

.single-photo:hover .photo-caption {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.gallery-carousel .slick-dots li {
    cursor: pointer;
}

.gallery-carousel .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}

.gallery-carousel .slick-dots button {
    width: 30px;
    font-size: 0;
    height: 3px;
    padding: 0;
    border: 1px solid transparent;
    background-color: rgb(46 40 40 / 20%);
    cursor: pointer;
}

.gallery-carousel .slick-dots .slick-active button {
    background-color: var(--bs-primary);
    width: 50px;
}

.gallery-carousel .slick-dots button:hover,
.gallery-carousel .slick-dots button:focus {
    background-color: var(--bs-primary);
}

/* ========== Photo Gallery Section Css End ========== */

/* ========== Activities Section Css Start ========== */
.single-block {
    border: 1px solid #E2E6E7;
    background-color: var(--bs-white);
}

.block-image-wrapper {
    position: relative;
}

.block-image-wrapper::before {
    content: '';
    display: block;
    padding-top: 70%;
}

.block-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-content {
    padding: 15px;
}

.block-title {
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 10px;
}

.block-title:hover {
    color: var(--bs-primary);
}

.block-desc {
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* ========== Activities Section Css End ========== */

/* ========== Partners Section Css Start ========== */
.single-partner {
    border: 1px solid #E2E6E7;
    background-color: var(--bs-white);
    position: relative;
    margin-left: -1px;
}

.single-partner::before {
    content: '';
    display: block;
    padding-top: 50%;
}

.partner-image {
    position: absolute;
    inset: 15%;
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* ========== Partners Section Css End ========== */

/* ========== Footer Section Css Start ========== */
.footer-section {
    background-color: #25272e;
    background-image: url(../images/gallery/footer-bg.png);
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-title {
    color: var(--bs-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-link {
    font-size: 14px;
    color: #bcc0c4;
    display: inline-block;
    padding: 5px 0;
}

.footer-link::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-size: 11px;
    margin-right: 6px;
}

.footer-link:hover {
    color: var(--bs-white);
}

.footer-desc {
    font-size: 14px;
    color: #bcc0c4;
    line-height: 2;
}

.contact-list {
    font-size: 14px;
    color: #bcc0c4;
    display: flex;
    padding: 6px 0;
    line-height: 1.6;
    gap: 10px;
    max-width: 250px;
}

.contact-icon {
    transform: translateY(4px);
}

.copyright-area {
    color: #838383;
    background-color: rgb(28 29 34);
    padding: 10px 0;
    font-size: 14px;
}

.copyright-link {
    color: var(--bs-white);
}

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: -60px;
    z-index: 999;
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border-radius: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease-out;
    border: 1px solid transparent;
    will-change: transform;
}

.scrollTop.show {
    visibility: visible;
    opacity: 1;
    bottom: 30px;
}

/* ========== Footer Section Css End ========== */

/* ========== Headline Section Css Start ========== */
.scroll3-left {
    padding: 8px 15px;
    font-size: 17px;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    font-weight: 400;
    line-height: 24px;
    flex-shrink: 0;
}

.scroll3-right {
    height: 42px;
    width: 100%;
    line-height: 42px;
    background: #eee;
    overflow: hidden;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.scroll3-right div {
    position: relative;
    animation: CSSright linear 25s infinite;
    white-space: nowrap;
}

.scroll3-right a {
    font-size: 16px;
    font-weight: 400;
    margin-right: 12px;
    display: inline-block;
}

.scroll3-right a:hover {
    color: var(--bs-primary);
}

@keyframes CSSright {
    0% {
        right: -100%
    }

    100% {
        right: 100%
    }
}

.rightCSS:hover div {
    animation-play-state: paused;
}

/* ========== Headline Section Css End ========== */

/* ========== Page Breadcrumb Css Start ========== */
.page-breadcrumb {
    background-color: var(--bs-white);
}

.page-breadcrumb .breadcrumb {
    background-color: var(--bs-white);
    padding: 10px 0px;
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-breadcrumb .breadcrumb>li a {
    color: #cbc6c2;
}

.page-breadcrumb .breadcrumb>li a:hover {
    color: #4c4845;
}

.page-breadcrumb .breadcrumb>.active {
    color: #4c4845;
}

.page-breadcrumb .breadcrumb>li+li:before {
    padding: 0 5px;
    color: #4c4845;
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
}

/* ========== Page Breadcrumb Css End ========== */


/* ========== Blogs Page Css Start ========== */
.pagination-bx {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

.pagination-bx .page-item {
    margin: 0;
}

.pagination-bx .pagination {
    background-color: rgb(76 184 72 / 20%);
    margin: 0 10px;
}

.pagination-bx .page-item .page-link {
    background-color: inherit;
    border: none;
    color: var(--bs-primary);
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    width: 44px;
    border-radius: 0;
}

.pagination-bx .page-item .page-link.prev,
.pagination-bx .page-item .page-link.next {
    background-color: rgb(76 184 72 / 20%);
    font-size: 14px;
}

.pagination-bx .page-item .page-link.active,
.pagination-bx .page-item .page-link:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.blog-thumb__image {
    max-height: 500px;
}

.description ul li {
    padding: 10px 0;
    border-bottom: 1px dashed rgb(214, 214, 214);
    display: flex;
    align-items: center;
    gap: 10px;
}

.description ul li:last-child {
    border-color: transparent;
}

.description ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-size: 12px;
    color: var(--bs-primary);
    margin-top: 2px;
}

.description a:hover {
    color: var(--bs-primary);
}

.blog-details {
    padding: 20px;
    background-color: var(--bs-white);
}
/* ========== Blogs Page Css End ========== */


/* ========== Video Card Css Start ========== */
.video-card {
    position: relative;
}

.video-card__iframe {
    position: relative;
    padding-top: 60%;
}

.video-card__iframe iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.video-card__title {
    padding: 20px 0 0;
    margin-bottom: 0;
}

.video_placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* ========== Video Card Css End ========== */


/* ========== Contact Page Css Start ========== */
.contact-list__item {
    background-color: var(--bs-white);
    padding: 20px;
    text-align: center;
    border: 1px dashed #E2E6E7;
    box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.contact-list__item:hover {
    border-color: var(--bs-primary);
}

.contact-list__item:hover .contact-list__title {
    color: var(--bs-primary);
}

.contact-list__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background-color: rgb(76 184 72 / 30%);
    color: var(--bs-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    overflow: hidden;
}

.contact-list__item:hover .contact-list__icon i {
    -webkit-animation: toTopFromBottom .8s forwards;
    animation: toTopFromBottom .8s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -moz-transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

.contact-list__title {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact-list__desc {
    margin-bottom: 0;
}

.contact-form {
    padding: 40px;
    width: 100%;
    background-color: var(--bs-white);
    height: 100%;
    display: grid;
    place-items: center;
    border-radius: 15px;
    border: 1px dashed rgb(76 184 72 / 30%);
}

.contact-form__input {
    font-size: 15px;
    border: 1px dashed #E2E6E7;
    border-radius: 0;
    padding: 10px 18px;
}

.contact-form__input:focus {
    border-color: var(--bs-primary);
    box-shadow: none;
}

.map-wrapper {
    display: flex;
}

.map {
    width: 100%;
    height: 500px;
}

/* ========== Contact Page Css End ========== */
.img-white {
    filter: brightness(0) invert(1);
}