.footer-section/********** Template CSS **********/

.border-right{
    border-right:2px solid darkgreen;
}

/*--------------------------------------------------------------
# topbar
--------------------------------------------------------------*/
.topbar {
   background:#0A1F54; 
  position: relative;
  z-index: 1;
}
@media (max-width:1023px){
  .topbar{
    display:none;
  }
}

.header {
  z-index: 997;
  padding: 15px 0px;
  top: 0;
  left: 0;
  right: 0;
  /*border-bottom:1px solid black;*/
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better visibility */
  animation: slideDown 0.3s ease-in-out; /* Smooth appearance */

}
.heading-one{
 color:#c70b0d;
}

.header .logo img {
  max-height: 90px;
  margin-right: 6px;
  width: 170px;
}
@media (max-width:991px){
  .header .logo img {
    max-height: 65px;
    margin-right: 6px;
    width: 120px;
  }
}
.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 10px;

  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: black;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #c70b0d;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000000;
  }

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    min-width: 250px;
    max-width: 300px;
    word-wrap: break-word;
}

  .navbar .dropdown ul li {
    min-width: 200px;
  }

.navbar .dropdown ul a {
    padding: 10px 15px;
    font-size: 14px;
    text-transform: none;
    color: black;
    font-weight: 500;
    word-wrap: break-word;
    white-space: normal;
    text-transform:uppercase;
}

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }
  .navbar .dropdown ul li:hover>a{
    color: white;
    background-color: #c70b0d;

  }
    
  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }


  .navbar .dropdown ul li:hover>a {
    color: white;
    background-color: #c70b0d;
}

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}


@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1275px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
  .mobile-dropdown{
      display:none;
  }
}
@media (max-width:1275px){
    .desktop-dropdown{
         display:none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: black;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    /*z-index: 9999;*/
    padding-right: 10px;
    background: #001a4a;
    color: white;
    width: 36px;
    height: 36px;
    padding-top: 3px;
    padding-left: 3px;
    font-size: 31px;
    border-radius: 5px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
    z-index: 99999;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
}
/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
.sub-heading{
    font-size:35px;
    font-weight:900;
}
/* Default state for carousel navigation icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black; /* Set the default color */
    border-radius: 50%; /* Optional: Add rounded shape */
    opacity: 1; /* Ensure the icons are fully visible */
}

/* Hover state for carousel navigation icons */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: black; /* Keep the same color on hover */
    opacity: 1; /* Prevent hover transparency change */
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background:#c70b0d;
    border-radius: 2px;
}
.ourproduct-range{
 background-size: cover;
background-position: center;
/*padding:85px 0px;*/
    }

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}

/*Start Our Product Gallery*/
.product-gallery-bg-secondary {
    background: #0a1f54;
    margin:100px 0px 100px 0px;
}
.product-gallery h2 {
  font-size: 2rem;
  color: #333;
}

/* Owl Carousel Item Styles */
.product-carousel .item {
  padding: 15px;
  text-align: center;
}

.product-carousel .item img {
  width: 100%;
  max-width: 400px; /* Control max size */
  height: auto;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
  margin: 0 auto;
  display: block;
}

.product-carousel .item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}
/*End Of Product Gallery*/

/*** Service ***/
.service-item {
    padding: 40px;
    background: #f5f5f5;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius:20px;
}
.btn-know {
    margin: 21px 0px;
    background: #0a1f54;
    color: white;
    padding: 8px 20px;
    border-radius: 10px;
}

.btn-know:hover{
    color:white !important;
}
.service-item .service-icon {
    margin-bottom: 30px;
}
.tab-img{
    width:100px;
}
.service-item .service-icon i {
    transform: rotate(45deg);
}

.tour-box_img {
    position: relative;
    border-radius: 16px 16px 0 0;
    z-index: 2;
    overflow: hidden;
}
.tour-box_img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 88.18%
    );
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 88.18%
    );
}
.tour-box.style4 {
      padding: 16px !important;
    border: 1px solid #bcced2 !important;
}
.tour-box_img:before {
    content: "";
    position: absolute;
    inset: 0;
    background: -webkit-linear-gradient(
        top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 88.18%
    );
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 88.18%
    );
}
#header-carousel {
    overflow: hidden !important;
}


/* Hide the text in Owl Carousel navigation buttons */
.owl-carousel .owl-nav i {
    display: inline-block !important; /* Show the icons (if you are using font-awesome icons) */
}

.owl-carousel .owl-nav span {
    display: none !important; /* Hide the text (if there’s any text inside) */
}

.tour-content {
padding: 24px 0 0 0;
}
.box-title {
     color:black;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px; 
}
.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item a.btn {
    bottom: -24px;
    opacity: 1;
}
/*/ Breadcrum /*/
.breadcumb-area {
  background:linear-gradient(0deg, rgba(50, 50, 50, 70%), rgba(50, 50, 50, 70%)), url(../img/breadcrum.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 80px 0 80px;
  position: relative;
}

.breadcumb-area.style_two {
  background: url(../img/breadcrum.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  padding: 172px 0 192px;
  position: relative;
}
.breadcumb-area:before {
  position: absolute;
  content: "'";
  left: 0;
  top: 0;
  width: 100%;
  height: 400px;
  /*background: #F4F8F9;*/
  z-index: -1;
}

.breadcumb-title h4 {
  padding-bottom: 10px;
  font-size: 48px;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  z-index: 1;
  display: inline-block;
}
/*.breadcumb-title h4:before {*/
/*    position: absolute;*/
/*    z-index: -1;*/
/*    content: "";*/
/*    left: 0;*/
/*    bottom: 11px;*/
/*    height: 12px;*/
/*    width: 66%;*/
/*    background: url(../images/inner-img/line_shape.png);*/
/*    background-repeat: no-repeat;*/
/*    margin: auto;*/
/*    text-align: center;*/
/*    right: 0;*/
/*}*/
.breadcumb-content.style_two span.category {
  background-color: #0c6e6d;
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  border-radius: 0 30px 30px 0;
  padding: 3px 18px;
  margin-bottom: 12px;
}
.breadcumb_meta-blog p span {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 500;
  margin-right: 31px;
  position: relative;
}
.breadcumb_meta-blog p span:before {
  position: absolute;
  content: "";
  left: -21px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #0c6e6d;
}
.breadcumb-content ul li {
  display: inline-block;
  margin-right: 0;
  color: #fff;
  font-weight:500;
}

.breadcumb-content ul li a {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  position: relative;
}
.breadcumb-content ul li a i {
  margin-right: 4px;
}
.breadcumb-content ul li.rotates i {
  transform: rotate(-27deg);
  margin-right: 2px;
  display: inline-block;
  font-size: 14px;
}
.breadcumb-content ul{
  padding-left: 0 !important;
  margin-top: -12px;
}
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 100px 0 120px;
  background-color:#ffffff;
  z-index: 1;
}
section.about-one {
    margin: 80px 0px 80px 0px;
}
.about-one-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 826px;
  height: 627px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  z-index: -1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 30px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
}

.about-one__img > img {
  width: 100%;
  border-radius: 20px;
}

.about-one__img-two {
  position: absolute;
  bottom: -105px;
  left: -80px;
}

.about-one__img-two > img {
  width: auto;
  border-radius: 20px;
}

.about-one__experience {
  position: absolute;
  bottom: -62px;
  left: 80px;
  display: flex;
  align-items: center;
  background-color: var(--insur-base);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 27px 40px 23px;
}

.about-one__experience:before {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  content: "";
  border: 2px dashed var(--insur-primary);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
}

.about-one__experience:after {
  position: absolute;
  bottom: 0px;
  right: -65px;
  content: "";
  border-top: 0px solid transparent;
  border-left: 65px solid #0a1f54;
  border-bottom: 62px solid transparent;
}

.about-one__experience-year {
  font-size: 60px;
  color: var(--insur-white);
  font-weight: 700;
  line-height: 60px;
  letter-spacing: var(--insur-letter-spacing);
}

.about-one__experience-text {
  font-size: 20px;
  color: var(--insur-white);
  line-height: 24px;
  font-weight: 500;
  letter-spacing: var(--insur-letter-spacing);
  margin-left: 18px;
}

.about-one__shape-1 {
  position: absolute;
  top: 35px;
  right: -30px;
  opacity: 0.3;
  z-index: -1;
}

.about-one__shape-1 img {
  width: auto;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__right .section-title {
  margin-bottom: 27px;
}

.about-one__text-1 {
  font-size: 16px;
  color: var(--insur-base);
  font-weight: 400;
  line-height: 26px;
}
.list-one {
    font-size: 16px;
    font-weight: 400;
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 8px;
  margin-bottom: 0px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li + li {
  margin-top: 8px;
}

.about-one__points li .icon {
    height: 21px;
    width: 21px;
    background-color: #0A1F54;
    font-size: 10px;
    color:white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-one__points li .text {
  margin-left: 15px;
}

/*.about-one__points li .text p {*/
/*  font-size: 18px;*/
/*  color: var(--insur-black);*/
/*  font-weight: 500;*/
/*  letter-spacing: var(--insur-letter-spacing);*/
/*}*/

.about-one__text-2 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: var(--insur-letter-spacing);
}

.about-one__btn-call {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    background-color:#0A1F54;
    color:white;
    font-size: 16px;
    font-weight: 700;
    border-radius: 20px;
    padding: 17px 40px 17px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}
.thm-btn.about-one__btn:hover{
  color:white;
}

.about-one__call {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.about-one__call-icon {
    position: relative;
    height: 50px;
    width: 50px;
    border: 2px solid #e0e4e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#0a1f54;
    font-size: 20px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-one__call-icon:hover {
  background-color: var(--insur-base);
  color: var(--insur-white);
  border: 2px solid var(--insur-base);
}

.about-one__call-content {
  position: relative;
  margin-left: 10px;
  top: -2px;
}

.about-one__call-content a {
  font-size: 16px;
  font-weight: 700;
  color: var(--insur-black);
  display: inline-block;
  letter-spacing: var(--insur-letter-spacing);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__call-content a:hover {
  color: var(--insur-base);
}

.about-one__call-content p {
  font-size: 14px;
  letter-spacing: var(--insur-letter-spacing);
  line-height: 16px;
}
.about-one__img-two {
    position: absolute;
    bottom: -105px;
    left: -80px;
}

.about-one__img-two > img {
    width: auto;
    border-radius: 20px;
}
.about-one__experience {
    position: absolute;
    bottom: -62px;
    left: 80px;
    display: flex;
    align-items: center;
    background-color:#c20b0d;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 27px 40px 23px;
}
.about-one__experience:before {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    content: "";
    border: 2px dashed #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.about-one__experience-year {
    font-size: 60px;
    color:white;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: var(--insur-letter-spacing);
}
.about-one__experience-text {
    font-size: 20px;
    color:white;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: var(--insur-letter-spacing);
    margin-left: 18px;
}
/*Why Choose Start CSS*/
.why-choose{
    background-color:#efefef;
}
.about-seven {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-color: var(--insur-primary);
    z-index: 1;
}
.why-choose-one__single:hover .why-choose-one__list-text-box {
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   .about-one__left {
    max-width: 600px;
    margin: 0 auto 0;
} 
}
@media only screen and (max-width: 767px) {
    .about-one__img-two {
    display: none;
}
}
@media only screen and (max-width: 767px) {
.about-one__experience {
    left: 0;
}
}
@media only screen and (max-width: 767px) {
    .about-one__right {
    margin-left: 0;
    margin-top: 122px;
}
.about-one__btn-call {
    flex-direction: column;
    align-items: baseline;
}
.about-one__call {
    margin-left: 0;
    margin-top: 20px;
}
.why-choose-one-shape-2, .why-choose-one-shape-3, .why-choose-one-shape-4, .why-choose-one-shape-5, .why-choose-one-shape-6 {
    display: none;
}
.why-choose-one-img {
    display: none;
}
.about-one__shape-1 {
    display: none;
}
}


/*Why Choose End CSS*/


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}
.about-seven {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-color: var(--insur-primary);
    z-index: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

/* Rating stars */
.testimonial-one__rating {
    font-size: 16px;
    color: #ffc107;
    margin-top: 10px;
}

/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
/*counter section Css Start*/
.counter-section {
   padding:75px 0px 60px 0px;
}
.counter-span {
    color: white;
    font-size: 37px;
    font-weight: 600;
    display: block;
}
.icon-box.text-white {
  background-color:#ffffff;
}
.counter-item.shadow.p-4.rounded {
 background-color:#c70b0d;
}
.btn.btn-lg {
  background-color:#c70b0d;
}
.bi.bi-arrow-right {
 color:white;
}
/*End of Counter Section*/
/*Features Section CSS*/
.feature-item {
    position: relative;
    background: #e9f6f9;
    border-radius: 24px;
    padding: 24px;
    text-align: center;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    min-height: 250px
}

/*End of Features Section CSS*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: #16243d;
  padding: 120px 0 110px;
  overflow: hidden;
  z-index: 1;
  margin: 70px 0px 0px 0px;
}

.why-choose-one-shape-1,
.why-choose-one-shape-2,
.why-choose-one-shape-3,
.why-choose-one-shape-4,
.why-choose-one-shape-5,
.why-choose-one-shape-6 {
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}
.why-choose-one-img img {
    width: 74%;
}
.why-choose-one-shape-1 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  opacity: 0.02;
}

.why-choose-one-shape-2 {
  top: -215px;
  right: 596px;
  z-index: 2;
}

.why-choose-one-shape-3 {
  top: -260px;
  right: 150px;
}

.why-choose-one-shape-4 {
  top: -81px;
  right: 0;
}

.why-choose-one-shape-5 {
  bottom: -215px;
  right: 0;
  z-index: 1;
}

.why-choose-one-shape-6 {
  bottom: -295px;
  right: 160px;
}

.why-choose-one-img {
  position: absolute;
  top: -111px;
  right: 0;
  z-index: 3;
}

.why-choose-one__left {
  position: relative;
  color: white;
}

.section-title {
  margin-bottom: 31px;
  text-align: left;
}

.section-title__title {
  color:white;
}
.section-title-shape-1 {
    position: absolute;
    top: -1px;
    left: 0px;
}
.section-title-shape-2 {
    position: absolute;
    top: -1px;
    left: 173px;
}

.why-choose-one__text {
  color: #ffffff;
  line-height: 28px;
}
.section-sub-title {
    font-size: 16px;
    /*margin-left:40px;*/
    color:white;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.why-choose-one__list-box {
  margin-top: 31px;
}

.why-choose-one__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.why-choose-one__list li {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  text-align: center;
}

.why-choose-one__single {
  background-color: #026ecf;
  padding: 35px 20px;
  transition: transform 0.3s ease;
  min-height:190px;
}

.why-choose-one__single:hover {
  transform: translateY(-10px);
}

.why-choose-one__list-icon {
  margin-bottom: 9px;
}

.why-choose-one__list-icon span {
  font-size: 45px;
  color: #ffffff;
  display: inline-block;
}

.why-choose-one__list-title {
  font-size: 18px;
  color: var(--insur-white);
  margin-bottom: 8px;
}
.why-choose-one__list-title-box {
    position: relative;
    display: block;
}

.why-choose-one__list-text {
  font-size: 14px;
  color: #ffffff;
  line-height: 24px;
}
.why-choose-one-img {
    top: 260px;
    right: -280px;
}

/*Third Party css*/
.third-party {
 /*background-image:url('../img/thirdbg-image.jpg');*/
 /*padding:60px 0px 60px 0px;*/
  /*background-image: */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* Gradient overlay */
  /*      url('../img/thirdbg-image.jpg');*/
}
.listing {
    margin: 5px 15px 0px 0px;
    font-size: 16px;
    font-weight: 500; 
    color: #333; 
    width:43%;
    border-radius: 8px; 
    /*background-color: #f9f9f9; */
       width:45%;
    margin: 30px 18px 15px 0px;
    list-style: none;
        }

        
/* Unique Container */
.unique-design {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef); /* Light gradient */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.unique-design::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #007bff, #00d4ff); /* Accent gradient circle */
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.list-card {
  display: flex;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  background: #fff; /* White card background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height:80px;
}

.list-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.list-card:hover::after {
  width: 100%; /* Hover effect fills the card */
}

.list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); /* Lifted shadow */
}

.list-icon {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 15px;
}

.list-text {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.list-card:hover .list-text {
  color: #007bff; /* Text changes color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .listing {
    width: 100%;
  }
  .sub-heading {
    font-size: 1.5rem;
  }
}


/*End of third*/
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: linear-gradient(90deg, rgb(14 14 15) 0%, rgb(23 23 23) 100%), url(../img/testimonial_bg.jpg);
    background-size: cover;
    border-radius: 0;
    padding: 48px 0 48px;
    margin-top:100px;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}
.testimonial-item {
 min-height:250px !important;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #001a4a;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  
  .why-choose-one__list li {
    flex: 100%;
    max-width: 100% !important;
}

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


.call-do-action-info.style_two {
    border-radius: 40px;
    background-color:rgb(12 11 11 / 77%);
    border: 2px solid #ffffff45;
    position: absolute;
    bottom: 10%;
    padding: 18px 40px 20px 0;
    left: 10%;
}
.call-do-action-info.style_two .call-do-social_icon:before {
    position: absolute;
    top: -60%;
    left: -39%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0A1F54;
    content: "";
    z-index: -1;
}
.call-do-action-info.style_two .call-do-social_icon {
    position: relative;
    z-index: 1;
    margin-right: 30px;
}
.call-do-action-info.style_two .call-do-social_icon  i {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 13px;
    margin-right: 20px;
}
.call-do-social_icon  i {
    cursor: pointer;
    height: 55px;
    width: 55px;
    line-height: 55px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-right: 20px;
}
.call-do-action-info.style_two .call-do-social_icon:after {
    position: absolute;
    top: -88%;
    left: -61%;
    width: 103px;
    height: 103px;
    border-radius: 50%;
    border: 2px solid #c70b0d;
    content: "";
    z-index: -1;
}
.call-do-action-info {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-header.testimonial-header {
   text-align:center;
}
/*Start FAQ Section CSS*/
    /*.faq-section {*/
    /*        padding: 50px 0;*/
    /*        background-color: #f4f4f4;*/
    /*    }*/


        .faq-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .faq-content {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .faq-item {
            border-bottom: 1px solid #ddd;
            margin-bottom: 15px;
            padding-bottom: 10px;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .faq-question {
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            margin-bottom: 10px;
            color: #333;
        }

        .faq-answer {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
        }
.accordion-button {
    background: #0a1f54 !important;
    color: white;
}
.accordion-button:not(.collapsed) {
    color:white !important;
}
        @media (max-width: 768px) {
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }
.accordion-button:not(.collapsed)::after{
    display:none !important;
}
.accordion-item {
    font-weight: 400;
    font-size: 18px;
    font-family: 'Open Sans';
    color:#6b717e;
     margin-bottom: 11px; 
}   
.accordion-button{
    border-radius: 13px !important;
}
  .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "+";
    color: white;
    font-size: 28px;
    margin-top: -15px;
    background-image: none;
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: none;
}      
/*End of FAQ Section CSS*/


 /*Contact Form */
.contact_area {
    padding: 65px 0 217px;
    position: relative;
    overflow: hidden;
}
 .contact_thumb {
    position: relative;
}
.call-do-action-info.style_two .call_info h3 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}
 .contact-form-box.style_two {
    background: #fff;
    filter: drop-shadow(0px 5px 40px rgba(189, 202, 202, 0.35));
    padding: 35px 35px 25px;
    position: relative;
    top: 100px;
}
.contact-form-box.style_two .section_title.style_four {
    margin-bottom: 30px;
}
.request-a-quote__right {
    padding: 40px;
    padding-top: 32px;
}
.request-a-quote__form-input {
    position: relative;
    margin-bottom: 30px;
    line-height: 0;
}
.request-a-quote__form-input svg {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--rr-ff-fontawesome);
    color: #7F879E;
    font-style: normal;     
    font-weight: 300;
    font-size: 16px;
    line-height: 14px;
}
.request-a-quote__form-input p{
    margin-top:10px;
    line-height:1.5;
}
.request-a-quote__form-input input, .request-a-quote__form-input textarea {
    padding: 20px 20px;
    padding-right: 45px;
    width: 100%;
    max-width: 100%;
    height: 50px;
    background: var(--rr-common-white);
    border:1px solid rgb(199 199 199);
    border-radius: 3px;
    font-family: var(--rr-ff-robo);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6A6A6A;
    margin-bottom: 5px;
}

.request-a-quote__form-input.textarea svg {
    top: 31px;
}
.request-a-quote__form-input textarea {
    min-height: 120px;
    border-radius: 3px;
}
.contact-us-h3{
    font-family: exo, sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
}
.social-icons .btn-outline-body:hover{
    border:2px solid darkgreen !important;
}
.contact-us-mail{
    word-break: break-all;
}
@media (max-width: 768px) {
    .contact-us-mail {
        word-break: break-all; /* Break long words on mobile screens */
    }
}
.col-form-label {
    color: black !important;
}
.form-check-label{
    color: black !important;
}
.form-check {
    color: black !important;  
}
/*Footer section CSS*/
.footer-section{
 background-color:#0A1F54;
 padding:25px 0px 40px 0px;
}
.footer-logo {
    width: 60%;
    /*background: white;*/
}
/*--------------------------------------------------------------
# Tracking
--------------------------------------------------------------*/
.tracking {
  position: relative;
  display: block;
}

.tracking__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 57px 80px 57px;
  background-color:#015fc9;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.tracking-shape-1 {
  position: absolute;
  bottom: 0;
  left: -55px;
}

.tracking-shape-1 img {
  width: auto;
}

.tracking-shape-2 {
  position: absolute;
  top: 50px;
  left: -100px;
}

.tracking-shape-2 img {
  width: auto;
}

.tracking-shape-3 {
  position: absolute;
  top: -15px;
  right: -192px;
  z-index: 2;
}

.tracking-shape-3 img {
  width: auto;
}

.tracking-shape-4 {
  position: absolute;
  top: 50px;
  right: -55px;
}

.tracking-shape-4 img {
  width: auto;
}

.tracking__left {
  position: relative;
  display: flex;
}

.tracking__icon {
  position: relative;
  display: flex;
}

.tracking__icon span {
  font-size: 65px;
  color: var(--insur-white);
  position: relative;
  display: inline-block;
}

.tracking__content {
  position: relative;
  margin-left: 30px;
  top: -7px;
}

.tracking__sub-title {
  font-size: 14px;
  color:#c2dfff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 24px;
  font-weight: 500;
}

.tracking__title {
  font-size: 36px;
  color:white;
  font-weight: 700;
  letter-spacing: var(--insur-letter-spacing);
  line-height: 47px;
}

.tracking__btn-box {
  position: relative;
  display: block;
  z-index: 2;
}

.tracking__btn {
  background-color:white;
  color:black;
}
@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

@keyframes float-bob {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}

.float-bob {
  animation-name: float-bob; 
  animation-duration: 7s; 
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: float-bob; 
  -webkit-animation-duration: 7s; 
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}


/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*responsive*/
@media (min-width: 600px) and (max-width: 767px) {
    .contact_thumb img {
    width: 100%;
}
}
@media (min-width: 320px) and (max-width: 479px) {
.contact_thumb img {
    width: 100%;
} 
.call-do-action-info.style_two {
    padding: 0;
    background: #000000bf;
    border: none;
    display: flex;
}
.call-do-action-info.style_two .call-do-social_icon:before {
    left: -15%;
}
.call-do-social_icon {
    margin: 20px 0 20px;
}
.call-do-action-info.style_two .call-do-social_icon:after{
    display:none;
}
.call-do-action-info.style_two .call_info h3 {
    font-size: 22px;
    margin-top: 0px;
    display: inline-block;
    margin-left: -24px;
    padding-right: 30px;
}
.call-do-social_icon {
    margin: 20px 0 20px;
}
.call-do-action-info {
     display: block; 
}
.about-one__experience {
    display: none;
}
.call-do-action-info.style_two .call_info h3{
    margin-left:6px;
}
.call-do-action-info.style_two .call-do-social_icon i{
    margin-left:10px;
}
.call-do-action-info.style_two .call-do-social_icon {
    margin-right:15px;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
.about-one__right {
    margin-top: 155px !important;
}
.why-choose-one-shape-2, .why-choose-one-shape-3, .why-choose-one-shape-4, .why-choose-one-shape-5, .why-choose-one-shape-6 {
    display: none;
}
}
@media only screen and (min-width: 991px) and (max-width:1180px) {
     .about-one__right {
        margin-top: 155px !important;
    }
    .why-choose-one-shape-2, .why-choose-one-shape-3, .why-choose-one-shape-4, .why-choose-one-shape-5, .why-choose-one-shape-6 {
        display: none !important;
    } 
    .why-choose-one-img {
        display: none !important;
    }
}
@media only screen and (max-width: 767px){
    .tracking__inner {
    flex-direction: column;
    padding: 47px 7px 40px 7px;
    text-align: center;
}

.tracking__title {
    font-size: 25px;
    line-height: 40px;
}
}
/*footer css*/
/*Whatsapp icon*/
.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 9999;
}
@media (max-width:991px){
    .btn-whatsapp-pulse{
       width:55px;
       height:55px;
       bottom:130px !important;
   }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 121px;
    right: 0;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
 
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }
    75% {
        padding: 50px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


.call-float {
   background:#428bca;
   color: white;
   position: fixed;
   bottom: 218px;
   right: 0;
   font-size: 30px;
   display: flex;
   justify-content: center;
   align-items: center;
   width: 60px; /* Adjust width as needed */
   height: 60px; /* Adjust height as needed */
   padding: 10px; /* Adjust padding as needed */
   text-decoration: none;
   border-radius: 50%;
   animation: pulse 1.5s ease-out infinite;
   z-index: 9999;
}
@media (max-width:991px){
   .call-float{
        width: 55px;
        height: 55px;
        bottom:227px;
   }
}

@keyframes pulse {
   0% {
       box-shadow: 0 0 0 0 rgba(66, 139, 202, 0.5);
   }
   80% {
       box-shadow: 0 0 0 14px rgba(66, 139, 202, 0);
   }
}
.call-float i {
  position: relative;
  z-index: 1;
}

/* Optional: Adjust icon position as needed */

.call-float i.fa-phone {
  position: relative;
  top: 2px; 
  transform: rotate(0deg);
}

    /* Optional: Add hover effect */
    
.call-float:hover {
  background: #128c7e; 
}
.img-float {
  font-weight: 500;
    font-size: 13px;
    position: fixed;
    left: -58px;
    bottom: 60%;
    transform: translateY(-50%) rotate(-90deg);
    width: 155px;
    z-index: 1000;
    /*background: #195c15;*/
    color: white;
    line-height: 18px;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-color: #195c15;
}
.img-float-2 {
  font-weight: 500;
    font-size: 13px;
    position: fixed;
    left: -58px;
    bottom: 35%;
    transform: translateY(-50%) rotate(-90deg);
    width: 155px;
    z-index: 1000;
    background: #195c15;
    color: white;
    line-height: 18px;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;   
    border-color: #195c15;
}
.img-float-3 {
  font-weight: 500;
    font-size: 13px;
    position: fixed;
    left: -58px;
    bottom: 10%;
    transform: translateY(-50%) rotate(-90deg);
    width: 155px;
    z-index: 1000;
    background: #195c15;
    color: white;
    line-height: 18px;
    padding: 5px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;  
    border-color: #195c15;
}
@media (max-width:991px){
    .mobile-img-float{
        font-size: 12px;
        left: -42px;
        width: 118px;
        line-height: 15px;
        padding: 4px;
   
    }
    .pdf-icon{
        display:none;
    }
}
@media (max-width:991px){
  .modal-button{
    right: -36px !important;
    bottom: 362px !important;
  }
}
.modal-body h2{
    text-align: center;
    font-size: 31px;
    margin-top: -12px;
    margin-bottom: 16px;
    color: #0c2e0a;
}
.modal-body button{
    color: white !important;
    font-size: 16px;
    font-weight: 500;
}
form label{
    color:#7F879E !important;
}

/*End of footer css*/

