html{overflow-x: hidden;}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 40px;
    height: 40px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-new-orange);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-dark);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}
.new-btn-primary:hover{ background-color: #383838 !important; }

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-new-orange);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;margin-bottom: 15px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #3c3c3c;
        color: #3c3c3c;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /*background: var(--bs-light);*/
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-light);
    color: var(--bs-dark);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 30px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 #cc1817;
    color: var(--bs-white);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 80vh;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/bg-breadcrumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(90 92 94 / 20%);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color:#cc1817;
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background:#383838;
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-white);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background:#383838 !important;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-new-orange);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background:#383838;
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: #222222;
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-new-orange);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-new-orange);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-new-orange);
}


.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vh; /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}
.parallax-section .container {
  position: relative;
  z-index: 2;
}
.new-lead{font-size: 1rem;
    font-weight: 500;}
@media screen and (max-width: 770px) {
  .new-lead-title {
    font-size: 1.50rem;
  }
}
.logo-slider {
  overflow: hidden;
  width: 100%;
}

.slider-row {
  overflow: hidden;
  white-space: nowrap;
  margin: 20px 0;
  position: relative;
}

.slide-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/*.slide-track img {
  height: 120px;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}*/
.slide-track img {
    /* height: 120px; */
    /* padding: 10px; */
    transition: transform 0.3s;
    margin: 0;
    border-radius: 10px;
}

/*.slider-row:hover img {
  transform: scale(1.05);
}
*/
 .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
    }
    .icon-circle i {
      font-size: 28px;
      color: #383838;
    }

     .icon-circle-core {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px;
    }
    .icon-circle-core i {
      font-size: 28px;
      color: #383838;
    }
    .core-value-item {
      transition: all 0.3s ease;
      padding: 10px;
    }
    .core-value-item:hover {
      transform: translateY(-5px);
    }

        .insurance-card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      background: #fff;
    }
    .insurance-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.12);
    }
    .insurance-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .insurance-card-body {
      padding: 25px;
    }
    .icon-circle-insurance {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: #cc181736;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }
    .icon-circle-insurance i {
      font-size: 22px;
      color: #383838;
    }
    .insurance-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }
    .insurance-card ul li {
      margin-bottom: 5px;
      position: relative;
      padding-left: 18px;
      color: #333;
      font-size: 15px;
    }
    .insurance-card ul li::before {
      content: "•";
      color: #cc1817;
      position: absolute;
      left: 0;
      font-weight: bold;
    }
    .btn-quote {
      background-color: #cc1817 ;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border-radius: 6px;
      padding: 8px 20px;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-quote:hover {
      background-color: #383838;
    }
   .insurance-card-associates {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: all 0.3s ease;
      background: #fff;
      width: 275px;
      max-width: 250px;
    }
    .insurance-card-associates:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.12);
    }
    .insurance-icon-associates {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;           /* Ensures the image is cropped into a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7f0ff;       /* Light blue background like your earlier design */
  margin-bottom: 1rem;
}

.insurance-icon-associates img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Keeps the image nicely centered and fills the circle */
  border-radius: 50%;
}
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #f7c948;
  font-size: 1rem;
  letter-spacing: 2px;
}

.bg-light {
  background-color: #f9fbff !important;
}

/* Dots below carousel */
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s;
}

.owl-dot.active {
  background: #2d6cdf;
  width: 14px;
  height: 14px;
}


.bg-new-img {
  background-image: url("../img/slider-bg.png"); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}


.slide-track .equal-width{display: flex; max-width: 179px;background-color: #ffffff; text-align: center;border: 1px solid #ccc;min-width: 179px; border-radius: 10px; justify-content: center;align-items: center;}

.service-content-inner .h4{font-size: 1.1rem !important;}


/* Block background (light blue-ish tone) */
.puc-integration-block {
    background-color: #eef6ff;
    
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px;
    padding-top: 60px;padding-bottom: 60px;
}

/* Matching site’s primary blue header color */
.integration-header h3 {
    color: #cc1817 ; 
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0 0 8px;
}

.integration-header h2 {
    color: #1d1d1d;
    font-size: 2em;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Card */
.service-link-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #cc1817; /* Bootstrap green */
    margin-bottom: 20px;
}

/* Logo headings */
.puc-logo-details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.logo-text .small-text {
    font-size: 0.9em;
    color: #000;
    margin: 0;
    margin-bottom: 26px;
}

.puc-logo-details h4 {
    color: #cc1817;
    font-size: 1.8em;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.puc-logo-details svg {
    color: #cc1817 !important;
}

/* Tagline */
.service-tagline {
    font-size: 1.1em;
    color: #495057;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    font-weight: bold;
}

/* List */
.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    display: inline-block;
    text-align: left;
}

.benefit-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #495057;
}

/* Buttons */
.puc-cta-links .button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    margin: 0 10px;
    transition: 0.3s ease;
    display: inline-block;
}

.cta-primary-puc {
    background-color: #cc1817;
    color: white;
    border: 2px solid #cc1817;
}

.cta-primary-puc:hover {
    background-color: #146c43;
}

.cta-secondary-puc {
    background-color: transparent;
    color: #0d6efd;
    border: 2px solid #0d6efd;
}

.cta-secondary-puc:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Footer note */
.integration-footer-note {
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 15px;
}


.form-control {  padding: 10px 15px; border-radius: 8px; border: 1px solid #cdcdcd;}

    span.ficon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #cc1817;
    border-radius: 40px;
    float: left;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
}
span.ficon i{color: #fff}
.ml-10{margin-left: 15px; padding-top: 8px;}
.btn-check:focus+.btn-primary, .btn-primary:focus{box-shadow: none !important;}
@media only screen and (max-width:479px){
	.sm-block{display:block}
}
.logo-grid {display: flex; flex-wrap: wrap; gap: 20px; margin: 0 auto; justify-content: center; }
.logo-item {display: flex; flex:0 0 calc(25% - 20px); flex-direction: column; align-items: center; text-align: center; padding: 20px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #fff; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
.logo-item:hover {transform: translateY(-8px); box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1); border-color: #d1d1d1; }
.logo-item img {max-width: 80%; height: auto; margin-bottom: 15px; transition: filter 0.3s ease; }
.logo-name { font-size: 0.95rem; color: #444; font-weight: 600; }
@media (max-width: 768px) {
	.logo-item {flex:0 0 calc(50% - 20px); }
}





/* =======================
             preloader css
==========================================*/

.ctn-preloader {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: default;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9000;
}

.ctn-preloader .animation-preloader {
    z-index: 1000;
}

.ctn-preloader .animation-preloader img {
    height: auto;
    margin: 0 auto 3.5em auto;
    width: 250px;
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ctn-preloader .animation-preloader .spinner {
    -webkit-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: #048ec5;
    height: 150px;
    margin: 0 auto 3.5em auto;
    width: 150px;
}

.ctn-preloader .animation-preloader .txt-loading {
    font: bold 6em "Outfit", sans-serif;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
    color: rgba(0, 0, 0, 0.2);
    position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
    -webkit-animation: letters-loading 4s infinite;
    animation: letters-loading 4s infinite;
    color: #000000;
    content: attr(data-text-preloader);
    left: 0;
    opacity: 0;
    font-family: "Outfit", sans-serif;
    position: absolute;
    /* top: -3px; */
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.ctn-preloader.dark .animation-preloader .spinner {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
    color: rgba(255, 255, 255, 0.2);
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
    color: #fff;
}

.ctn-preloader p {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #3b3b3b;margin-top: 10px;
}
.ctn-preloader p.slogan {
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #cc1817;
    margin-top: 10px;
    font-weight: 600;line-height: 28px;
}


.ctn-preloader .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    z-index: 1;
    pointer-events: none;
}

.ctn-preloader .loader .row {
    height: 100%;
}

.ctn-preloader .loader .loader-section {
    padding: 0px;
}

.ctn-preloader .loader .loader-section .bg {
    background-color: #ffffff;
    height: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.ctn-preloader .loader.dark_bg .loader-section .bg {
    background: #111339;
}

.ctn-preloader.loaded .animation-preloader {
    opacity: 0;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.ctn-preloader.loaded .loader-section .bg {
    width: 0;
    -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
    transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        -webkit-transform: rotateY(-90deg);
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}



@media screen and (max-width: 767px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 8em;
        width: 8em;
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: bold 3.5em "Outfit", sans-serif;
    }
    .ctn-preloader p.slogan{font-size: 16px;padding: 0px 10px;line-height: 26px;}
}

@media screen and (max-width: 500px) {
    .ctn-preloader .animation-preloader .spinner {
        height: 7em;
        width: 7em;
    }

    .ctn-preloader .animation-preloader .txt-loading {
        font: bold 2em "Outfit", sans-serif;
    }
    .ctn-preloader p.slogan{font-size: 14px;padding: 0px 10px;line-height: 24px;}
}


.captcha-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wrap404 {
    text-align: center;
    padding: 40px 0
}

.wrap404 i {
    font-size: 120px
}

.wrap404 h2 {
    font-size: 60px;
    font-weight: 500;
    margin: 0;
    line-height: inherit
}

.wrap404 h4 {
    font-size: 40px;
    font-weight: 300;
    margin: 0;
    color: #ccc
}

.wrap404 p {
    font-size: 20px
}