body {
    font-family: 'Roboto' !important;
    font-weight: normal;
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: #000 !important;
}

p {
    padding: 0;
    margin: 0;
    font-family: 'Roboto' !important;
}

.btn {
    font-family: 'Roboto' !important;
}

a:hover {
    text-decoration: none;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
    font-family: 'Roboto' !important;
    font-weight: 700;
}
.bg-menu1 {
    background: #014c8d;
    border-top: 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
    padding: 15px 10px;
    font-size: 11px;
}
.pd-menu1 {
    padding-left: 0px;
    padding-right: 0px;
}
.bg-menu1 a {
    color: #fff;
}
.bg-menu2 {
    text-align: center;
    border-radius: 0px;
    border-right: 1px solid #ebe9e917;
}
.bg-menu2 i {
    color: #fff;
    font-size: 22px;
}
/*-----------------------------slide--------------------------------*/
.super_container1 {
    min-height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

.room-section1 {
    width: 100%;
    height: 75vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.slider-text h1 {
    font-size: 60px;
    color: #fff;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.slider-text h1 span {
    color: #9fcfbb;
}

.slider-text p {
    font-weight: 400;
    color: #fff;
}

.btn.btn-primary {
    background: #0792b2;
    border: 1px solid #0792b2 !important;
    color: #fff !important;
}

.btn.btn-white {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #000000 !important;
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    position: relative;
    background: var(--theme-color);
    border-radius: 50px;
    padding: 5px 10px 5px 2px;
}

.site-title-tagline i {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: var(--color-white);
    color: var(--theme-color);
    text-align: center;
    border-radius: 50px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 40px;
    color: var(--theme-color);
    margin-top: 8px;
    margin-bottom: 0;
}

.site-title span {
    color: var(--color-yellow);
}

.theme-btn {
    font-size: 16px;
    color: var(--color-white);
    padding: 15px 18px;
    transition: all 0.5s;
    text-transform: capitalize;
    position: relative;
    border-radius: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color);
    box-shadow: 0 3px 24px rgb(0 0 0 / 12%);
    z-index: 1;
}

.theme-btn::before {
    content: "";
    height: 400px;
    width: 400px;
    background: var(--theme-color2);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%) scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.theme-btn i {
    margin-left: 5px;
}

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

.theme-btn:hover::before {
    transform: translateY(-50%) translateX(-50%) scale(1);
}

.feature-img img {
    border-radius: 100px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    gap: 15px;
    padding: 20px;
    position: relative;
    border-radius: 30px;
    /* transition: var(--transition); */
    --transition: all .5s ease-in-out;
    box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 5%);
}
.feature-icon {
    width: 70px;
    height: 70px;
    line-height: 65px;
    background: var(--theme-color);
    text-align: center;
    font-size: 40px;
    color: var(--color-white);
    border-radius: 50px 50px 50px 0;
}
.feature-icon img {
    width: 45px;
    filter: brightness(0) invert(1);
}
.feature-content {
    flex: 1;
}
.feature-title {
    color: #0c2c7a;
    margin-bottom: 10px;
}
.feature-content p{
    font-size: 16px;
}


.destination-item {
    margin-bottom: 25px;
    position: relative;
}
.destination-img {
    overflow: hidden;
    border-radius: 200px;
    position: relative;
}
.destination-img img {
    border-radius: 200px;
    width: 100%;
    transition: all 1s ease-in-out 0s;
}
.destination-btn {
    position: absolute;
    width: 55px;
    height: 55px;
    line-height: 56px;
    text-align: center;
    background: var(--color-white);
    color: var(--theme-color) !important;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    left: 50%;
    font-size: 17px;
    transform: translate(-50%, -50%);
    box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
    transition: all 1s ease-in-out 0s;
    z-index: 1;
}
.destination-item:hover .destination-img img {
    transform: scale(1.1);
    transition: all 1s ease-in-out 0s;
}
.destination-item:hover .destination-btn {
    visibility: visible;
    opacity: 1;
}
.destination-info {
    position: relative;
    width: 80%;
    background: var(--color-white);
    text-align: center;
    border-radius: 100px;
    padding: 10px 20px;
    margin: -80px auto 0 auto;
    box-shadow: 0px 0px 40px 5px rgb(0 0 0 / 5%);
}
.destination-info h4 a {
    color: var(--color-dark);
    font-size: 16px;
}
.destination-rate {
    font-size: 15px;
    margin-bottom: 5px;
}
.destination-rate i {
    color: #FFA903;
}
.destination-rate span {
    color: var(--color-dark);
    font-weight: 400;
}
.destination-more-info {
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.destination-more-info span {
    color: #024d8e;
    font-size: 14px;
}
.destination-more-info span i {
    color: var(--theme-color);
}

.destination-info h4{
    margin-bottom: 0px;
}


.counter-negative {
    margin-top: -90px;
}
.counter-wrap {
    position: relative;
    padding: 50px 20px;
    position: relative;
    background: var(--theme-color);
    border-radius: 0 80px 0 0;
    z-index: 1;
}
.counter-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0 80px 0 0;
    z-index: -1;
}
.counter-box {
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}
.counter-box .icon {
    position: relative;
    font-size: 35px;
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: center;
    background: var(--color-white);
    border-radius: 30px;
    color: var(--theme-color);
}
.counter-box .icon img {
    width: 50px;
}
.counter-box .counter-number {
    display: flex
;
    align-items: center;
}
.counter-box .title {
    color: #ffb900;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}


.pb-120 {
    padding-bottom: 120px !important;
}











.counter {
    background-color:#f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
}
.counter-sign{font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    color: #fff;}
.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    color: #fff;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.blog-item {
    margin-bottom: 25px;
    background: var(--color-white);
    padding: 20px;
    border-radius: 100px 100px 100px 0;
    box-shadow: 0px 2px 40px 5px rgb(0 0 0 / 5%);
    /* transition: var(--transition); */
    transition: all .5s 
ease-in-out;
    position: relative;
}
.blog-date {
    position: absolute;
    left: 100px;
    top: 2px;
    background: var(--color-white);
    color: var(--theme-color);
    font-weight: 500;
    border-radius: 50px;
    padding: 2px 15px;
    z-index: 1;
}
.blog-item-img {
    overflow: hidden;
    border-radius: 85px 85px 85px 0;
}
.blog-item-img img {
    border-radius: 85px 85px 85px 0;
}
.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;
}
.blog-title {
    font-size: 22px;
    margin-bottom: 25px;
    margin-top: 25px;
    text-transform: capitalize;
}

.blog-item-info h4 a {
    color: var(--color-dark);
}







/******************  GALLERY *******************/
.masonry .mItem .service-thumb {
    display: inline-block;
    margin-bottom: 16px;
    width: 100%;
}

@media (min-width: 1200px) {
    .masonry {
        column-count: 4;
        column-gap: 15px;
    }
}

@media (max-width: 1199px) {
    .masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .masonry {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .masonry {
        column-count: 2;
    }
}


/******************  breadcrumb *******************/
.breadcrumb-section {
    background-color: var(--bs-secondary-bg);
    box-shadow: 0px 13px 48px 0px rgba(255, 104, 26, 0.07);
    padding: 1rem 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol li {
    font-size: 12px;
    color: #004d8d;
}

.breadcrumbs ol li a {
    font-size: 12px;
    color: var(--bs-dark-text-emphasis);
}

.breadcrumbs ol li+li {
    padding-left: 10px;
    font-size: 12px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #004d8d;
    content: "/";
}
/******************  index *******************/
/******************  car *******************/
.car .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #ffb900;
}
.car .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
    width: 99%;
    background-color: #gggg;
    background-color: #024d8e;
    color: #fff;
    /* margin: 0px; */
}
.car-item {
    background: #ffffff;
    border-radius: 40px 40px 40px 0;
    padding: 5px;
    margin-bottom: 25px;
    box-shadow: 0px -1px 40px 5px rgb(0 0 0 / 5%);
    transition: all .5s ease-in-out;
}
.car-img {
    border-radius: 35px 35px 35px 0;
    position: relative;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
.car-img img {
    border-radius: 35px 35px 35px 0;
}
.car-content {
    padding: 20px 15px 10px 15px;
}
.car-info-list {
    margin-top: 10px;
}
.car-info-list li {
    display: inline-block;
    margin-right: 15px;
    margin-top: 8px;
    font-size: 14px;
}
li {
    list-style: none;
}
.car-info-list i {
    color: var(--theme-color);
    margin-right: 6px;
}
.car-bottom {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-top: 20px;
    padding-top: 13px;
}
.car-price-amount {
    color: #f96768;
    font-weight: 700;
    font-size: 19px;
}
.car-price-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-dark);
}
.car-text-btn a {
    color: var(--color-dark);
    font-weight: 500;
}
.car-text-btn a i {
    font-size: 14px;
}
.car-title{
    font-size: 22px;
}
.car-title a{
    color: var(--color-dark);
}
.foot-h2{
    color: var(--color-dark);
}

.destination-more-info p{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    padding: 10px;
}



.testimonial-section {
    position: relative;
    background: rgb(243, 246, 249);
}

.border-bottom {
    border-bottom: 1px solid #E4EBF1 !important;
}
.bg-light {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
}
.choose-item {
    display: flex
;
    gap: 15px;
    background: var(--color-white);
    box-shadow: 0px 1px 40px 5px rgb(0 0 0 / 5%);
    position: relative;
    padding: 20px;
    border-radius: 100px 100px 100px 0;
    margin-bottom: 30px;
    transition: var(--transition);
}
.choose-item .count {
    position: absolute;
    top: -8px;
    left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: var(--theme-color2);
    line-height: 1;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: var(--box-shadow);
}
.choose-item .icon {
    width: 80px;
    height: 80px;
    line-height: 75px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 50px;
}
.choose-item .content {
    flex: 1;
}
.choose-item .content h4 {
    font-size: 20px;
    color: var(--theme-color);
    margin-bottom: 5px;
}

.avatar i{
    color: var(--color-dark);
}



.contact-wrapper {
    position: relative;
}
.contact-content {
    margin-bottom: 50px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0px 3px 40px 5px rgb(0 0 0 / 5%);
}
.contact-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: var(--theme-color);
    border-radius: 50px;
}
.contact-info {
    display: flex
;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}
.contact-info-icon i {
    font-size: 24px;
    color: var(--color-white);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50px 50px 50px 0;
    background: var(--theme-color);
}
.contact-info h5 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--color-dark);
}
.contact-info p {
    font-weight: 500;
}
.contact-form {
    background: var(--color-white);
    border-radius: 15px;
    padding: 30px 30px;
    box-shadow: 1px 1px 40px 5px rgb(0 0 0 / 5%);
}
.contact-form-header {
    margin-bottom: 30px;
}
.contact-form-header h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--color-dark);
}
.contact-form .form-group {
    margin-bottom: 25px;
}
.contact-form .form-group .form-control {
    padding: 15px 18px;
    border-radius: 15px;
    box-shadow: none;
    transition: var(--transition);
    border-color: var(--border-info-color);
    color: var(--color-dark);
}














/*--------------------------------------------------------------
# Popup CSS
--------------------------------------------------------------*/
/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background: #F1F4F7;
}
footer .footer-top {
    padding: 40px 0 0;
}
footer .footer-top .footer-widget {
    margin-bottom: 20px;
}

footer .footer-top .footer-widget h5 {
    margin-bottom: 22px;
    position: relative;
}

footer .footer-top .footer-widget h5::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 38px;
    height: 2px;
    background: #CF3425;
    border-radius: 30px;
}
ul {
    list-style: none;
}
ol, ul {
    list-style: none;
    margin-block-end: 0;
    padding: 0;
}
footer .footer-top .footer-widget .footer-menu li {
    margin-bottom: 8px;
}
footer .footer-top .footer-widget .footer-menu li a {
    position: relative;
    color: #4E5561;
}
footer .footer-wrap {
    border-radius: 10px;
        background-color: rgb(2 77 142) !important;
    box-shadow: 0px 4px 24px 0px rgba(194, 194, 194, 0.25);
    padding: 10px 25px;
    margin: 20px 0 24px;
}
.avatar.avatar-lg {
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
}
.avatar {
    position: relative;
    height: 2.625rem;
    width: 2.625rem;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #FFF;
    font-weight: 500;
}
.bg-primary {
    background-color: #ffb900 !important;
    border: 1px solid #ffb900 !important;
    color: #FFF;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

footer .footer-bottom {
    background: #E4EBF1;
    padding-top: 10px;
}
footer .footer-bottom p {
    margin-bottom: 10px;
}
.fs-14 {
    font-size: 0.875rem !important;
}
.social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.social-icon li {
    margin-right: 12px;
    padding-right: 12px;
    position: relative;
}
.social-icon li a {
    color: #111827;
}
.social-icon li::after {
    content: "";
    width: 2px;
    height: 25px;
    background: #F1F4F7;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
}
.follow h5{
    font-size: 16px;
    color: #fff;
}













