   /* Center the loader */
   #loader {
       position: absolute;
       left: 50%;
       top: 50%;
       z-index: 1;
       width: 120px;
       height: 120px;
       margin: -76px 0 0 -76px;
       border-bottom: 16px solid #2f2e4d;
       border-radius: 50%;
       border-top: 16px solid #2f2e4d;
       -webkit-animation: spin 2s linear infinite;
       animation: spin 2s linear infinite;

   }

   @-webkit-keyframes spin {
       0% {
           -webkit-transform: rotate(0deg);
       }

       100% {
           -webkit-transform: rotate(360deg);
       }
   }

   @keyframes spin {
       0% {
           transform: rotate(0deg);
       }

       100% {
           transform: rotate(360deg);
       }
   }


   @-webkit-keyframes animatebottom {
       from {
           bottom: -100px;
           opacity: 0
       }

       to {
           bottom: 0px;
           opacity: 1
       }
   }

   @keyframes animatebottom {
       from {
           bottom: -100px;
           opacity: 0
       }

       to {
           bottom: 0;
           opacity: 1
       }
   }

   #myDiv {
       display: none;

   }
 
 
 /* BACK TO TOP CODE*/

#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #2f2e4d;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 10px;
    /* Some padding */
    
    /* Rounded corners */
    font-size: 14px;
    /* Increase font size */
    
}

#myBtn:hover {
    background-color: #b33926;
    /* Add a dark-grey background on hover */
}


 /*-- Banner --*/
 .banner-area {
     position: relative;
     height: 400px;
     background-position: 50% 50%;
     background-size: cover;
     font-family: 'Lucida Grande';
 }

 .banner-area:before {
     background: rgba(0, 0, 0, 0.8);
 }

 .banner-title {
     color: #fff;
     text-transform: uppercase;
     font-size: 32px;
     font-weight: 900;
     background-position: center;
    font-family: 'Lucida Grande';
 }

 @media (max-width: 767px) {
     .banner-title {
         font-size: 48px;
     }
 }

 @media (max-width: 575px) {
     .banner-title {
         font-size: 32px;
     }
 }

 .banner-text {
     position: absolute;
     top: 50%;
     left: 0;
     right: 0;
     max-width: 1170px;
     margin: 0 auto;
     width: 100%;
     z-index: 1;
     -webkit-transform: translateY(-50%);
     transform: translateY(-50%);
 }

 .banner-heading {
     text-align: center;
 }

 .breadcrumb {
     padding: 0;
     background: none;
     font-weight: 700;
     text-transform: uppercase;
     font-size: 12px;
 }

 .breadcrumb li a,
 .breadcrumb .breadcrumb-item,
 .breadcrumb li a:focus,
 .breadcrumb li a:hover {
     color: #fff !important;
 }

 .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
     color: #fff;
 }

 /* Subscribe area
================================================== */
 .subscribe {
     background: #001c3b;
     padding: 0;
 }

 /* Call to action */
 .subscribe-call-to-acton {
     min-height: 115px;
     padding: 30px 0 0 30px;
 }

 @media (max-width: 575px) {
     .subscribe-call-to-acton {
         text-align: center;
         padding: 30px 0;
         min-height: auto;
     }
 }

 .subscribe-call-to-acton h3 {
     font-size: 18px;
     margin-top: 0;
     margin-bottom: 5px;
 }

 .subscribe-call-to-acton h4 {
     color: #252525;
     font-size: 24px;
     margin: 0;
 }

 /* Newsletter */
 .ts-newsletter {
     background: #001c3b;
     position: relative;
     min-height: 115px;
     padding: 15px 0 0 50px;
 }

 @media (max-width: 767px) {
     .ts-newsletter {
         padding-top: 20px;
         padding-bottom: 10px;
     }
 }

 @media (max-width: 575px) {
     .ts-newsletter {
         padding: 30px 5px 15px 5px;
         min-height: auto;
         text-align: center;
     }
 }

 .ts-newsletter:after {
     content: "";
     position: absolute;
     background: #001c3b;
     display: block;
     width: 100%;
     height: 100%;
     right: 100%;
     top: 0;
 }

 .newsletter-form input {
     background: none;
     font-size: 12px;
     height: 45px;
     border: 1px solid rgba(255, 255, 255, 0.3);
 }

 /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
 .icon-bar {
     position: fixed;
     top: 50%;
     padding: 0;
     transform: translateY(-50%);
     right: 0;
     z-index: 199;


 }

 /* Style the icon bar links */
 .icon-bar a {
     display: block;
     text-align: center;
     padding: 16px;
     transition: all 0.3s ease;
     color: white;
     font-size: 18px;
     width: 55px;
     height: 55px;
     -moz-border-radius: 100% 100%;
     -webkit-border-radius: 100% 100%;
     border-radius: 100% 100%;
     margin-bottom: 5px;
     box-shadow: 1px 5px 10px;


 }


 @media (max-width: 767px) {
     .icon-bar a {
         font-size: 16px;
         align-items: center;
     }

 }

 @media (max-width: 575px) {
     .icon-bar a {
         font-size: 15px;
         align-items: center;
         width: 48px;
         height: 48px;

     }

 }

 .icon-bar .facebook {
     background: #3B5998;
     color: white;


 }

 .icon-bar .instagram {
     background: #ff376c;
     color: white;

 }


 .icon-bar .whatsapp {
     background: #075e54;
     color: white;


 }


 .icon-bar .facebook-messenger {
     background: #0084ff;
     color: white;

 }

 .title-single-box {
     padding: 1rem 0 1rem 2rem;
 }

 .title-single-box {
     border-left: 3px solid #001c3b;
 }

 .title-single-box .title-single {
     font-weight: 600;
     font-size: 2.2rem;
 }

 .ff-secondary {
     font-family: 'Pacifico', cursive;
 }

 .card-title {
     font-family: 'Lucida Grande';
     color: #000;
     background-color: #f5f5f5;
 }

 .p {
     font-family: 'Lucida Grande';
     font-size: 1.5em;
     line-height: 30px;
 }

 .widget-title {
     font-family: 'Lucida Grande';
 }

 /* .card h-100{
    border: 0.2px solid #001c3b;
    border-radius: 10%;
    background-color: #f5f5f5;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.card h-100 .img{
    border-radius: 10%;
    width: 100%;
    height: 140px;
} */

 /* Testimonial Border */
 .quote-item.quote-border .quote-text-border {
     border: 1px solid #001c3b;
     padding: 20px;
     position: relative;
     line-height: 28px;
     color: #666;
     font-size: 18px;
     text-align: center;
 }

 .quote-item.quote-border .quote-text-border:before {
     border: 12px solid;
     border-color: #e1e1e1 transparent transparent;
     border-top-color: #001c3b;
     bottom: -24px;
     position: absolute;
     content: "";
     display: block;
     height: 0;
     width: 0;
     left: 0;
     margin: 0 auto;
     right: 0;
 }

 .quote-item.quote-border .quote-text-border:after {
     border: 12px solid;
     border-color: #fff transparent transparent;
     bottom: -22px;
     position: absolute;
     content: "";
     display: block;
     height: 0;
     width: 0;
     left: 0;
     margin: 0 auto;
     right: 0;
 }

 .quote-item.quote-border .quote-item-footer {
     margin-left: 0;
     text-align: center;
     margin-top: 35px;
 }

 .quote-item.quote-border .quote-item-footer img.testimonial-thumb {
     float: none;
     margin: 0;
 }

 .quote-item.quote-border .quote-item-footer .quote-item-info {
     display: block;
 }

 /* Services
================================================== */
 /* Service box */
 .ts-service-box .ts-service-icon i {
     font-size: 36px;
     float: left;
     color: #b33926;
 }

 .ts-service-box .ts-service-box-content {
     margin-left: 62px;
     margin-bottom: 30px;
 }

 .tab-content .ts-service-box .ts-service-box-content {
     margin-left: 90px;
 }

 .ts-service-box .ts-service-box-content h3 {
     font-size: 16px;
     margin-bottom: 10px;
     line-height: 28px;
 }

 .ts-service-box .ts-service-box-info {
     margin-left: 25px;
     margin-bottom: 40px;
 }

 .service-box-title {
     font-size: 16px;
     margin: 0 0 10px;
 }

 .service-box-title a {
     color: #333;
 }

 .service-box-title a:hover {
     color: #b33926;
 }

 /* Service box bg */
 .ts-service-box-bg {
     background: #252525;
     color: #fff;
     padding: 30px;
 }

 .ts-service-box-bg h4,
 .ts-service-box-bg h3 {
     color: #fff;
 }


 /* Icon squre */
 .ts-service-icon.icon-round i {
     font-size: 24px;
     color: #fff;
     background: #b33926;
     text-align: center;
     border-radius: 100%;
     width: 60px;
     height: 60px;
     line-height: 60px;
     margin-bottom: 20px;
     position: relative;
     float: none;
 }

 /* Icon left */
 .ts-service-box.icon-left .ts-service-box-icon {
     float: left;
 }

 .ts-service-box.icon-left .ts-service-box-icon i {
     background: #b33926;
     color: #fff;
 }

 .ts-service-box.icon-left .ts-service-box-info {
     margin-left: 90px;
 }

 .ts-service-box.icon-left .ts-service-box-info h3 {
     margin-top: 0;
     margin-bottom: 5px;
 }

 /* Service no box */
 .service-no {
     font-size: 48px;
     color: #dbdbdb;
     float: left;
     margin-top: 10px;
 }

 .ts-service-box-content .ts-service-box-info {
     margin-left: 90px;
 }

 /* Service Image */
 .ts-service-image-wrapper {
     margin-bottom: 30px;
 }

 .ts-service-icon i {
     font-size: 28px;
     margin-right: 15px;
     margin-top: 2px;
 }

 .ts-service-info {
     margin-left: 30px;
 }

 .ts-service-info h3 {
     font-size: 16px;
 }

 .ts-service-info .learn-more {
     text-transform: uppercase;
     font-size: 14px;
     font-weight: 600;
 }

 .ts-service-info .learn-more:hover {
     color: #b33926;
 }

 /* Service Classic */
 .ts-service-classic .ts-service-icon i {
     font-size: 24px;
     float: left;
     color: #fff;
     background: #b33926;
     border-radius: 100%;
     width: 60px;
     height: 60px;
     line-height: 60px;
     text-align: center;
     transition: all 0.3s;
 }

 .ts-service-classic .ts-service-box-info {
     margin-left: 80px;
 }

 .ts-service-classic:hover .ts-service-icon i {
     background: #ffb600;
 }



 .navbar .megamenu {
     padding: 1rem;
 }

 /* ============ desktop view ============ */
 @media all and (min-width: 992px) {

     .navbar .has-megamenu {
         position: static !important;
     }

     .navbar .megamenu {
         left: 0;
         right: 0;
         align-items: center;
         width: 100%;
         margin-top: 0;
         background-attachment: scroll;
     }

 }

 /* ============ desktop view .end// ============ */

 /* ============ mobile view ============ */
 @media(max-width: 991px) {

     .navbar.fixed-top .navbar-collapse,
     .navbar.sticky-top .navbar-collapse {
         overflow-y: auto;
         max-height: 90vh;
         margin-top: 10px;
     }
 }

 /* ============ mobile view .end// ============ */





 /*======================================
//--//-->   NEWS - CARD-B
======================================*/
 .card-header-b {
     padding: 1rem;
     color: #ffffff;
     position: absolute;
     bottom: 20px;
     z-index: 2;
 }

 @media (min-width: 768px) {
     .card-header-b {
         bottom: 0px;
     }
 }

 @media (min-width: 992px) {
     .card-header-b {
         bottom: 20px;
     }
 }

 .card-header-b .category-b {
     font-size: 0.9rem;
     background-color: #b33926;
     padding: 0.3rem 0.7rem;
     color: #313131;
     letter-spacing: 0.03em;
     border-radius: 50px;
     text-decoration: none;
 }

 .card-header-b .title-2 {
     margin-bottom: 0;
     padding: 0.6rem 0;
     font-size: 1.5rem;
 }

 @media (min-width: 768px) {
     .card-header-b .title-2 {
         font-size: 1rem;
     }
 }

 @media (min-width: 992px) {
     .card-header-b .title-2 {
         font-size: 1.6rem;
     }
 }

 .card-header-b .title-2 a {
     color: #ffffff;
     text-decoration: none;
 }

 .card-header-b .date-b {
     color: #d8d8d8;
     font-size: 1rem;
 }

 @media (min-width: 768px) {
     .card-header-b .date-b {
         font-size: 0.9rem;
     }
 }

 @media (min-width: 992px) {
     .card-header-b .date-b {
         font-size: 1rem;
     }
 }

 /*------/ News Single /------*/
 .post-information {
     padding: 3rem 0;
 }

 .post-content {
     font-size: 1.1rem;
     font-weight: 300;
     line-height: 1.6;
 }

 .post-content .post-intro {
     font-size: 1.7rem;
     font-weight: 300;
     margin-bottom: 4rem;
     line-height: 1.6;
     color: #000000;
     font-weight: 400;
 }

 .post-content p {
     margin-bottom: 1.7rem;
 }

 .post-content .blockquote {
     padding: 1rem 3rem 1.7rem 3rem;
     border-left: 3px solid #b33926;
     color: #000000;
 }

 .post-content .blockquote footer {
     text-align: left;
     padding: 0;
 }

 .post-footer {
     padding: 3rem 0 4rem;
 }

 .post-share .socials {
     display: inline-block;
 }

 .post-share .socials li {
     margin-left: 0.6rem;
 }

 /*------/ Comments /------*/
 .box-comments .list-comments li {
     padding-bottom: 3.5rem;
 }

 .box-comments .list-comments .comment-avatar {
     display: table-cell;
     vertical-align: top;
 }

 .box-comments .list-comments .comment-avatar img {
     width: 80px;
     height: 80px;
 }

 .box-comments .list-comments .comment-author {
     font-size: 1.3rem;
 }

 @media (min-width: 768px) {
     .box-comments .list-comments .comment-author {
         font-size: 1.5rem;
     }
 }

 .box-comments .list-comments .comment-details {
     display: table-cell;
     vertical-align: top;
     padding-left: 25px;
 }

 .box-comments .list-comments .comment-description {
     padding: 0.8rem 0 0.5rem 0;
 }

 .box-comments .list-comments a {
     color: #000000;
 }

 .box-comments .list-comments span {
     display: block;
     color: #2B2A2A;
     font-style: italic;
 }

 .box-comments .comment-children {
     margin-left: 40px;
 }






.carousel-item {
    display: flex;
    justify-content: space-between;
}

.carousel-item .col-md-4 {
    flex-basis: 30%;
    /* Adjust this value as needed */
    margin-right: 10px;
    /* Adjust this value as needed */
}

.carousel-item .col-md-4:last-child {
    margin-right: 0;
    /* Remove margin from the last column */
}
 

/* Section title */
.section-title {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 300;
}

.section-sub-title {
    font-weight: 900;
    font-size: 36px;
    line-height: 46px;
    margin: 0 0 60px;
    color: #212121;
}

@media (max-width: 575px) {
    .section-sub-title {
        font-size: 28px;
    }
}

/* Contact Us
================================================== */
.map {
    height: 450px;
    z-index: 1;
}

.contact-info-box {
    margin-top: 20px;
}

.contact-info-box i {
    float: left;
    font-size: 24px;
    color: #b33926;
}

.contact-info-box-content {
    padding-left: 40px;
}

.contact-info-box-content h4 {
    font-size: 16px;
    margin-top: 0;
    line-height: normal;
    font-weight: 700;
}

.contact-info-box-content p {
    margin-bottom: 0;
}

label {
    font-weight: 400;
}

/* Contact page 2 */
.ts-service-box.text-center .ts-service-icon.icon-squre i {
    float: none;
    margin-bottom: 20px;
}

.ts-service-box.text-center .ts-service-box-content {
    margin: 0;
}




/* Sidebar
================================================== */
.sidebar .widget-title {
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin: 0 0 30px;
    padding-left: 15px;
    text-transform: capitalize;
    border-bottom: 3px solid #001c3b;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande';
}

/* Widget common */
.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar-left .widget {
    margin-right: 20px;
}

.sidebar-right .widget {
    margin-left: 20px;
}

.sidebar .widget.box {
    padding: 25px;
}

.widget.box.solid {
    background: #f2f2f2;
}

.widget.box.red {
    background: #ec483b;
    color: #fff;
}

.widget.box.red .widget-title {
    color: #fff;
}

.widget ul li {
    line-height: 30px;
}

.sidebar .widget ul li a {
    color: #303030;
}

.sidebar .widget ul li a:hover {
    color: #b33926;
}

.sidebar .widget ul li i {
    margin-right: 5px;
}

.sidebar .btn {
    font-weight: 700;
    font-size: 12px;
    margin-top: 15px;
    padding: 10px 25px;
}

/* Sidebar nav */
.sidebar ul.nav-tabs {
    border: 0;
}

.sidebar ul.nav-tabs li {
    width: 100%;
}

.sidebar ul.nav-tabs li a {
    color: #303030;
    border-radius: 0;
    padding: 15px 0;
    padding-left: 0;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    display: block;
    transition: 400ms;
}

.sidebar ul.nav-tabs li.active a,
.sidebar ul.nav-tabs li:hover a {
    color: #b33926;
}

.sidebar ul.nav-tabs li {
    color: #303030;
    line-height: normal;
}

.sidebar ul.nav-tabs li:last-child a {
    border-bottom: 0;
}

/* Service menu */
.sidebar ul.service-menu li {
    width: 100%;
}

.sidebar ul.service-menu li a {
    background-color: #f4f4f4;
    padding: 15px 20px;
    border: 0;
    margin-bottom: 8px;
    position: relative;
    transition: 400ms;
    display: block;
}

.sidebar ul.service-menu li.active a,
.sidebar ul.service-menu li:hover a {
    background: #2f2e4d;
    color: #fff;
    cursor: pointer;
}
a.navsmenu:hover{
background: #2f2e4d;
    color: #fff;
    cursor: pointer;
}



 .footer {
     color: #fff;
     background: url("../img/footer-bg.jpg") top center no-repeat;
     background-size: cover;
     font-size: 15px;
     padding: 80px 0 60px 0;
     position: relative;
     font-family: 'Lucida Grande';
 }

 .footer .widget-title:hover {
     text-decoration: underline;
     text-decoration-color: #b33926;
     transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
 }

 .footer .list-arrow-a:hover {
     text-decoration: underline;
     text-decoration-color: #b33926;
     transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;

 }

 .footer:before {
     content: "";
     background: rgba(0, 0, 0, 0.8);
     position: absolute;
     inset: 0;
 }

 .footer .footer-content .footer-info {
     margin-bottom: 30px;
 }

 .footer .footer-content .footer-info h3 {
     font-size: 28px;
     margin: 0 0 20px 0;
     padding: 2px 0 2px 0;
     line-height: 1;
     font-weight: 700;
     text-transform: uppercase;
 }

 .footer .footer-content .footer-info h3 span {
     color: var(--color-primary);
 }

 .footer .footer-content .footer-info p {
     font-size: 14px;
     line-height: 24px;
     margin-bottom: 0;
     font-family: var(--font-primary);
     color: #fff;
 }

 .footer .footer-content .social-links a {
     font-size: 18px;
     display: inline-block;
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     line-height: 1;
     margin-right: 8px;
     border-radius: 4px;
     width: 36px;
     height: 36px;
     transition: 0.3s;
 }

 .footer .footer-content .social-links a:hover {
     background: var(--color-primary);
     text-decoration: none;
 }

 .footer .footer-content h4 {
     font-size: 16px;
     font-weight: 600;
     color: #fff;
     position: relative;
     padding-bottom: 12px;
 }

 .footer .footer-content .footer-links {
     margin-bottom: 30px;
 }

 .footer .footer-content .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer .footer-content .footer-links ul li {
     padding: 8px 0;
 }

 .footer .footer-content .footer-links ul li:first-child {
     padding-top: 0;
 }

 .footer .footer-content .footer-links ul a {
     color: rgb(255, 255, 255);
     transition: 0.3s;
     display: inline-block;
     line-height: 1;
 }

 .footer .footer-content .footer-links ul a:hover {
     color: #fff;
 }

 .footer-legal {
     padding-top: 10px;
     padding-bottom: 15px;
     background-color: #001c3b;
     font-size: 14px;
     color: #fff;
     font-family: 'Lucida Grande';
 }

 .footer-legal .copyright {
     padding-top: 1px;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
 }

 .footer-legal .credits a {
     color: var(--color-primary);
 }

 .footer-legal .credits a:hover {
     color: #b33926;
 }