.topbar {
    background: var(--black);
    color: var(--white);
    padding: 5px 0;
    font-size: 14px;
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-wrapper a {
    color: var(--white);
    font-size: 14px;
}

.topbar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-wrapper svg {
    width: 16px;
}

.navbar-expand-lg {
    padding: 20px 0;
    transition: 0.3s ease-in;
}

header {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: var(--white);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.navbar-brand img {
    height: 50px;
}

.navbar-expand-lg .navbar-nav .nav-link, .navbar-expand-lg .navbar-nav .menu-item a {
    font-weight: 600;
    color: var(--black);
    position: relative;
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link::before, .navbar-expand-lg .navbar-nav .menu-item a:before {
    bottom: -4px;
    content: "";
    display: block;
    position: absolute;
    border-bottom: 2px solid var(--primary-color);
    transition: width 0.4s ease-out;
    left: auto;
    right: 0;
    width: 0;
}

.navbar-expand-lg .navbar-nav .nav-link:hover::before, .navbar-expand-lg .navbar-nav .menu-item a:hover::before {
    left: 0;
    right: auto;
    width: 100%;
}

main {
    padding-top: 100px;
}

.single-box {
    flex: 1;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* border-radius: 15px; */
    overflow: hidden;
}

.boxes-wrapper {
    gap: 2px !important;
}

.single-box:last-child {
    border: none;
}

.single-box-img {
    position: relative;
    overflow: hidden;
    height: 70dvh;
}

.single-box-img img {
    height: 100%;
    object-fit: cover;
}

.single-box-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 4% 22%, #2A558D 0%, #04293c 25%, #0B0E1E 100%);
    opacity: 0.3;
    transition: 0.1s ease-in;
}

.single-box:hover .single-box-img:before {
    opacity: 0.95;
    backdrop-filter: blur(4px);
}

.single-box-text {
    position: absolute;
    padding: 25px 45px;
    bottom: 0;
    width: 100%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%) translateY(80%);
    transition: 0.3s ease-in;
    /* transform: translate(-50%, -50%); */
}

.single-box-text h2 a,
.single-box-text p a {
    color: var(--white);
}

.single-box-text .theme-btn {
    margin-top: 25px;
    padding: 0;
    background: transparent;
    border: none;
}

.single-box-text .theme-btn:hover {
    color: var(--white);
}

.single-box-text p {
    margin-top: 15px;
    padding: 0 45px;
}

.single-box-text p,
.single-box-text .theme-btn {
    /* opacity: 0;
    visibility: hidden;
    display: none; */
    transition: 0.3s ease-in-out;
}

.single-box-text h2 a {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #ffffffbb;
    background: #0000003b;
    backdrop-filter: blur(4px);
}

.single-box-text h2 {
    margin-bottom: 0;
    font-size: 25px;
    margin-bottom: 125px;
    transition: 0.3s ease-in-out;
}

.single-box:hover .single-box-text {
    transform: translateX(-50%) translateY(-80%);

}

.single-box:hover .single-box-text h2 {
    margin-bottom: 25px;
}

.single-box:hover .single-box-text p,
.single-box:hover .single-box-text .theme-btn {
    opacity: 1;
    visibility: visible;
    display: block;
    background: transparent;
    color: var(--white);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

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

.counter-box h2 {
    font-size: 65px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 800;
    /* background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--primary-color);
    font-family: 'Arimo', sans-serif;
    letter-spacing: -2px;
    line-height: 1;
}

.counter-box h2 .count {
    font-variant-numeric: tabular-nums;
}

.counter-box p {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    /* background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.title-img img {
    width: 200px;
}

.about-img-text {
    position: absolute;
    bottom: 70px;
    padding: 25px;
    width: 50%;
    background: var(--black);
}

.about-img-text h3 {
    color: var(--white);
    font-size: 20px;
}

.about-img-text a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary-color);
    flex-shrink: 0;
}

.about-img-box:hover img {
    transform: scale(1.2);
}

.about-img img {
    transition: 0.3s ease-in;
    height: 600px;
    object-fit: cover;
}

.count-icn {
    width: 65px;
    height: 65px;
    background: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: 0.3s ease-in;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.news-article {
    background: var(--white);
    border-radius: 10px;
}

.top-article,
.bottom-article {
    padding: 25px;
}

.date {
    padding-left: 15px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 600;
    color: var(--primary-color);
}

.date::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
}

.news-article h3 a {
    color: var(--black);
    font-weight: 600;
    transition: 0.3s ease-in;
}

.news-article h3 {
    margin-top: 25px;
    margin-bottom: 0;
}

.top-article {
    border-bottom: 1px solid var(--lightgrey);
    position: relative;
}

.top-article::before {
    content: '';
    position: absolute;
    bottom: -1.5px;
    right: 0;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
}

.news-article p {
    font-size: 14px;
    margin-bottom: 25px;
}

.footer {
    background: var(--black);
    color: var(--white);
}

.logo-footer {
    width: 250px;
    margin-bottom: 25px;
}

.social-ul {
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}

.social-ul li {
    display: block;
}

.social-ul li a {
    color: var(--white);
}

.copy-footer {
    border-top: 1px solid var(--white);
}

.footer-widget svg {
    width: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-widget h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-widget li {
    margin-bottom: 5px;
}

.count-icn img {
    width: 35px;
}

.reg-btn {
    background: #ed353a;
    /* background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%); */
    background: var(--primary-color);
    border: none;
    border-radius: 1000px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    margin-right: 2%;
    outline: none;
    text-align: center;
    transition: all .3s ease-in-out 0s;
    bottom: 130px;
    padding: 15px 20px !important;
    position: fixed !important;
    right: 30px;
    z-index: 10;
}

.reg-btn a {
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.reg-btn a svg {
    width: 20px;
}

.reg-btn::before {
    content: "";
    /* border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #ED353A; */
    box-shadow: 0 0 60px var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease-in-out 0s;
}

.reg-btn:hover,
.reg-btn:focus {
    color: var(--white);
    transform: translateY(-6px);
}

.reg-btn:hover::before,
.reg-btn:focus::before {
    opacity: 1;
}

.reg-btn::after {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 6px solid var(--primary-color);
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 3s infinite;
}

.reg-btn:hover::after,
.reg-btn:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.line {
    height: 80px;
    width: 1px;
    background: #0a1122;
    opacity: 0.2;
    display: inline-block;
    margin: 0 auto;
}

.count-fb {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.count-fb:hover .count-icn {
    transform: rotate(360deg);
}

.about-img-box {
    padding: 10px;
    padding-left: 0;
    background: linear-gradient(-270deg, var(--lightgrey) 0, var(--lightgrey) 59%, var(--black) 59%, var(--black) 100%) !important;
}

.sticky-header .navbar-expand-lg {
    padding: 10px 0;
}

.article-img {
    border-radius: 10px;
    overflow: hidden;
}

.news-article:hover .article-img img {
    transform: scale(1.2);
}

.article-img img {
    transition: 0.3s ease-in;
}

.news-article h3 a:hover {
    color: var(--primary-color);
}

.about-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
}

.about-icon img {
    width: 30px;
    filter: invert(100%) sepia(178%) saturate(55%) hue-rotate(192deg) brightness(106%) contrast(179%);
}

.about-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-text p {
    font-size: 14px;
}

.about-item {
    margin-bottom: 15px;
    padding: 15px;
    background: var(--white);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}

.breadcrumb {
    /* background: radial-gradient(circle at 4% 22%, #2A558D 0%, #04293c 25%, #0B0E1E 100%); */
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 30px;
    background: #fff;
}

.breadcrumb-item a,
.breadcrumb-item+.breadcrumb-item::before {
    font-weight: 600;
    color: var(--primary-color);
}

.breadcrumb-item.active {
    font-weight: 600;
    color: rgb(11 14 30);
}

.product-item {
    border-radius: 15px;
    overflow: hidden;
/*     margin-bottom: 25px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;height:100%
}

.product-text {
    padding: 25px;
    /* position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px; */
    /* background: radial-gradient(circle at 4% 22%, #2A558D 0%, #04293c 25%, #0B0E1E 100%); */
    border-radius: 0 0 20px 20px;
   
    background: #fff;
}

.product-text h3 a {
    color: var(--black);
    font-weight: 600;
    transition: 0.3s ease-in;
}

.product-text p {
    margin-bottom: 0px;
    font-size: 14px;
}

.product-text h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-text h3 a {
    color: var(--primary-color);
}

.round-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #04293c;
    flex-shrink: 0;
    color: var(--white);
    border-radius: 50%;
    background: radial-gradient(circle at 4% 22%, #2A558D 0%, #04293c 25%, #0B0E1E 100%);
    transition: 0.3s ease-in;
}

.product-img {
    overflow: hidden;
}

.product-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in;
}

.product-item:hover .product-img img {
    transform: scale(1.2);
}

.round-btn:hover {
    background: transparent;
    color: #04293c;
}

.single-box h2 a {
    text-align: center;
    width: 100%;
    color: var(--white);
    display: block;
    padding: 25px;
    font-size: 25px;
    text-shadow: 0px 0px 3px #092e44;
}

.single-box h2 {
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    font-weight: 700;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    transform: translateY(-50%);
    transition: 0.3s ease-in;
}

.counter-flex {
    padding: 35px;
    background: #ffffff30;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fs-14 {
    font-size: 14px !important;
}

.color-grey {
    color: #5d79a3;
}

.single-box:hover h2 {
    transform: translateY(-100%);
}

.inner-banner-box {
    padding: 55px 100px;
    background: #ffffff96;
    border-radius: 20px;
}

.topbar-center {
    width: 30%;
}

.swiper-ticker .swiper-button-next::after,
.swiper-ticker .swiper-button-prev::after {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
}

.innerpage-banner-text {
    padding: 70px 0;
    padding-top: 100px;
}

.innerpage-banner-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #0B0E1E;
    background: linear-gradient(270deg, rgba(11, 14, 30, 0) 0%, rgba(11, 14, 30, 1) 50%, rgba(11, 14, 30, 1) 100%);
    width: 100%;
    height: 100%;
}

.innerpage-banner-text h1 {
    font-size: 50px;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--white);
}

.innerpage-banner-text p {
    color: var(--white);
}

.innerpage-banner {
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.mission-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.mission-card i {
    font-size: 35px;
    color: var(--white);
    margin-bottom: 25px;
}

.mission-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mission-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease-in;
}

.mission-text {
    background: radial-gradient(circle at 4% 22%, rgba(42, 85, 141, 0.6) 0%, rgba(4, 41, 60, 0.6) 25%, rgba(11, 14, 30, 0.6) 100%);
    padding: 35px;
    transition: 0.3s ease-in;
    color: var(--white);
}

.mission-card:hover .mission-img img {
    transform: scale(1.2);
}

.mission-card:hover .mission-text {
    background: radial-gradient(circle at 4% 22%, rgba(42, 85, 141, 0.95) 0%, rgba(4, 41, 60, 0.95) 25%, rgba(11, 14, 30, 0.95) 100%);
}

.inner-about-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.years-wrap {
    text-align: center;
    width: 150px;
    height: 150px;
    background: var(--white);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.years-wrap h3 {
    font-size: 50px;
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 600;
}

.years-wrap p {
    text-transform: uppercase;
    font-weight: 600;
}

.years-wrap::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 2px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}.gallery-swiper .swiper-button-next, .gallery-swiper .swiper-button-prev{
        width: 50px;border-radius: 50%;
    height: 50px;
    background: #fff;
}
.gallery-swiper .swiper-button-next:after, .gallery-swiper .swiper-button-prev:after{
         font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.product-single .featured-tag{
    text-align: center;
    background: var(--primary-color);
    display: inline-block;
    color: #fff;
    position: absolute;
    top: 10px;
    right:10px;border-radius: 50px;
    padding: .2rem 1rem;z-index: 1;
}.feat-img{
        padding-left: 2rem;    padding-right: 10px;    padding-top: 2rem;
    padding-bottom: 2rem;
}.product-single{
   background: var(--lightgrey);    padding: 0;
    margin-bottom: 1.3rem;
    position: relative;overflow:hidden;
    /* border: 1px solid #fe5b1b; */border-radius: 10px;margin-bottom: 25px;
}.feat-text{
        padding-bottom: 3rem;    padding-left: 10px;
    padding-right: 10px;padding-top: 15px;
}.feat-text h3 a{
        color: var(--primary-color);    font-size: 1.8rem;
    font-weight: 600;
}.product-single h3 a{
	    color: var(--primary-color);
}.feat-text p{
      display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}.product-single .quick-links{
    list-style-type: none; 
    padding: 15px 25px; margin-bottom: 0;display: flex;flex-wrap: wrap;flex-direction: column;gap: 10px;padding-right: 2rem;
}.product-single .quick-links li a{
    font-weight: 600;
}.feat-img img{
    border-radius: 10px;overflow: hidden;
}


.blog-details-page{
    padding-top: 100px;
}.blog-details-wrapper{
    padding: 35px;border-radius: 20px;    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;background: #fff;border-bottom: 5px solid var(--primary-color);
}.blog-img-wrapper{
    border-radius: 12px;overflow: hidden;margin-bottom: 25px;
}.blog-time{
    position: absolute;top: 35px;left: 35px;background: var(--primary-color);color: var(--white);font-weight: 600;padding: 8px 15px;display: flex;gap: 8px;align-items: center;
}.blog-time svg{
    width: 18px;
}.blog-details-page h2, .blog-details-page h3, .blog-details-page h4, .blog-details-page h5, .blog-details-page h6{
    font-weight: 700;
}.blog-details-page h1{
    font-size: 40px;
}.blog-details-wrapper a{
    color: var(--primary-color);font-weight: 600;text-decoration: underline;
}.blog-details-wrapper ul li::marker{
    color: var(--primary-color);
}.sidebar__post {
    position: relative;
    display: block;
    padding: 46px 30px 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}.sidebar__title {
    margin: 0;
    font-size: 20px;
    margin-bottom: 35px;
}.sidebar__post .sidebar__post-list {
    margin: 0;
}.sidebar__post .sidebar__post-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    padding: 15px 0;
    border-bottom: 1px solid var(--primary-color);
}.sidebar__post .sidebar__post-list .sidebar__post-image {
    margin-right: 20px;
    -webkit-box-flex: 80px;
    -ms-flex: 80px 0 0px;
    flex: 80px 0 0;
}.sidebar__post .sidebar__post-list .sidebar__post-image > img {
    width: 80px;
    border-radius: 10px;
}.sidebar__post .sidebar__post-list .sidebar__post-content {
    position: relative;
    top: -3px;
}.sidebar__post .sidebar__post-list .sidebar__post-content h3 {
    font-size: 18px;
    margin: 0;
    line-height: 26px;
    letter-spacing: 0;
}.sidebar__post .sidebar__post-list .sidebar__post-content-meta {
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}.sidebar__post .sidebar__post-list .sidebar__post-content-meta i {
    color: var(--primary-color);
    font-size: 14px;
    padding-right: 3px;
}.sidebar__post .sidebar__post-list .sidebar__post-content h3 a {
    color: var(--black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}.sidebar__post .sidebar__post-list li:last-child {
    padding-bottom: 0;
    border: none;
}.blog-details-wrapper a.disableAnchor{
	      pointer-events: none;
    text-decoration: none;
    background: #deebfe;
    padding: 10px;
    width: 100%;
    display: block;
    border-radius: 8px;
}.service-wrapsss img{
	height: 400px;object-fit:contain;width:100%
}
.slwThumbnailSize {
    max-width: 75px !important;
    max-height: 75px !important;    height: auto !important;
}.slwRichMediaSize {
    border: none !important;
    max-width: 40px !important;    height: auto !important;
}.col-xs-4.padB10{
	    width: 33.33333333333333% !important;
}.padB10 {
    padding-bottom: 10px !important;
}.thumbnail {
    display: block !important;
    padding: 4px !important;
    margin-bottom: 20px !important;
    line-height: 1.428571429 !important;
    background-color: #ffffff !important;
    border: 1px solid #dddddd !important;
    border-radius: 4px !important;
    -webkit-transition: all 0.2s ease-in-out !important;
    transition: all 0.2s ease-in-out !important;
}.form-horizontal .form-group{
	    display: flex;
    flex-wrap: wrap;
}.form-horizontal label{
	margin-bottom: 10px !important;
    margin-top: 10px !important;    font-weight: bold !important;
	background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 250px;
    right: 0;
    background-color: #25d366;
    color: #fff;
    border-radius: 50% 0 0 50%;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center
}

.float-whatsapp:hover {
    background-color: #158740;
    color: #fff!important
}.product-filter-sidebar{
	padding: 25px;
    background: var(--lightgrey);
    border-radius: 20px;position: sticky;
    top: 130px;
}.product-filter-sidebar h4{
	font-size:20px;
    font-weight: 700;
    color: var(--black);margin-bottom:15px
}.product-filter-sidebar input[type="checkbox"]{
	border: 1px solid var(--primary-color);
    width: 16px;
    height: 16px;
    border-radius: 2px;
}.product-filter-sidebar .form-check-input:checked{
	background-color: var(--primary-color);
}.pagination-wrap {
    justify-content: center;
    gap: 10px;display:flex;
}.page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background: #ffffff1f;
 border: 1px solid rgba(11, 14, 30, 1);
    border-radius: 8px;
    color: #fff;
	    color: rgba(11, 14, 30, 1);
    background: transparent;
    background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.page-numbers.current {
  background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);color:#fff;-webkit-text-fill-color: #fff;
}.page-numbers.prev, .page-numbers.next{
	    width: auto;
    padding: 0 10px;
}.location-card{
	padding:25px;
	    border-radius: 15px;
    overflow: hidden;
    /* margin-bottom: 25px; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;border:none;position:relative;transition:0.3s ease-in-out
}  .location-card:hover {
      transform: translateY(-6px);
    }.location-card:before{
    content: '';
    display: block;
    background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    width: 100%;
    height: 5px;
    z-index: 26;
    bottom: 0;
    left: 0;
    position: absolute;
}.location-card iframe{
	    width: 100%;
    height: 250px;
    border-radius: 10px;margin-top:25px
} .location-card .card-body{padding:0} .location-card .card-body .info-item a{color: var(--black);}.location-card .card-body .info-item a i{color: var(--primary-color);}.location-card h3{font-weight:700;    text-transform: none;
    background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
.privacy-policy h2{
	font-size:35px;
    font-family: var(--title-font);
    font-weight: 700;
 	    text-transform: none;
    background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}.privacy-policy h3{
	font-size: 25px;
    font-family: var(--title-font);
    font-weight: 700;
    color: var(--black);
    position: relative;
}.privacy-policy ul li:marker{
	    text-transform: none;
    background: linear-gradient(90deg, rgba(42, 85, 141, 1) 0%, #04293c 62%, rgba(11, 14, 30, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}.privacy-policy a{
	    font-weight: 700;
    color: var(--primary-color);text-decoration:underline
}


.filter-sidebar{
}

.filter-title{
    font-size: 26px;
    margin-bottom:10px;
}

.filter-item{
    border-bottom:1px solid var(--primary-color);
    padding:18px 0;
}

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

.filter-header h5{
    font-size:16px;
    font-weight:500;
    margin:0;
}
.filter-checkbox .form-check-input:checked{
    background-color: var(--primary-color);
}.filter-sidebar .filter-item:last-child{
    border:none
}
.toggle-icon{
    font-size:30px;
    line-height:1;
    color:var(--primary-color);
    font-weight:300;
    transition:.3s;
}

.filter-content{
    padding-top:18px;
}

.filter-checkbox{
    margin-bottom:10px;
}

.filter-checkbox label{
    font-size:14px;
    color:#555;
    cursor:pointer;
}

.filter-checkbox input{
    width:16px;
    height:16px;
    margin-right:10px;
    border-radius:0;
    border:1px solid var(--primary-color);margin-top: 0;    vertical-align: middle;


}

/* COLLAPSED */

.filter-item.collapsed .filter-content{
    display:none;
}

.filter-item.collapsed .toggle-icon{
    transform:rotate(0deg);
}