.service-content-wrapper {
  margin: 0 -15px 0px -15px;
}
.service-content-wrapper .service-single-item {
  margin-bottom: 15px;
  padding: 0;
  margin-bottom: 30px;
}
footer h4 {
  font-size: 16px;
}
footer .footer-quick-links ul li a {
  font-weight: 400;
}
footer h4 {
    padding-bottom: 12px;
    margin-bottom: 16px;
}
.text-white{
    color: #fff;
}
.pb-50{
    padding-bottom: 50px;
}

.theme-main-menu .main-container{
        padding-left: 150px;
        padding-right: 150px;
    }
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}
/* Hide on mobile */
     @media (max-width: 1200px) {
        .mobileNumber {
            display: none !important;
        }
        .theme-main-menu .main-container{
            padding-left: 0;
            padding-right: 26px;
        }
    }
    @media (max-width: 767px) {
        .desktop-logo {
            display: none !important;
        }
    }

    /* Hide on desktop */
    @media (min-width: 768px) {
        .mobile-logo {
            display: none !important;
        }
    }
.pt-50, .pb-50{
    padding-top: 50px;
}
.p-5{
  padding: 10px;
}
/* Marquee  */
.marquee-text {
    box-sizing: border-box;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
  background:#143946;
}
.marquee-text .top-info-bar {
    font-size: 30px;
    width: 200%;
    display: flex;
    -webkit-animation: marquee 25s linear infinite running;
    -moz-animation: marquee 25s linear infinite running;
    -o-animation: marquee 25s linear infinite running;
    -ms-animation: marquee 25s linear infinite running;
    animation: marquee 25s linear infinite running;
}

.marquee-text .top-info-bar:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    -ms-animation-play-state: paused;
    animation-play-state: paused;
}

.marquee-text .top-info-bar .info-text {
    padding: 10px 30px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.marquee-text .top-info-bar a {
    color: #ffffff;
  text-decoration:none;
}

@-moz-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@-o-keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -o-transform: translate(-50%);
        -ms-transform: translate(-50%);
        transform: translate(-50%);
    }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9999;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: center; /* horizontal center */
}

/* Show overlay when targeted */
.overlay:target {
  visibility: visible;
  opacity: 1;
}

/* Popup box */
.popup {
  width: 700px;
  height: 450px;
  background: url('offer.jpg') no-repeat center center / cover;
  border-radius: 12px;
  padding: 20px;
  color: #fff;  /* make text visible on dark image */
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  animation: fadeIn 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Close button */
.popup .close {
  position: absolute;
  top: 10px;
  right: 15px;
  text-decoration: none;
  font-size: 40px;
  color: #fff;
}

/* Animation */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
/* Fixed box hidden by default */
.fixed-box {
  position: fixed;
  top: 50%;
  right: -320px; /* hidden offscreen */
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: url('offer.webp') no-repeat center center / cover;
  /* border-radius: 10px 0 0 10px; */
  /* box-shadow: -3px 0 10px rgba(0,0,0,0.3); */
  color: #fff;
  padding: 20px;
  z-index: 9999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* When active (open) */
.fixed-box.active {
  right: 0;
}

/* Close button */
.fixed-box .close {
  position: absolute;
  top: 10px;
  left: 10px;
  text-decoration: none;
  font-size: 22px;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}

/* Responsive for tablets */
@media (max-width: 768px) {
  .fixed-box {
    width: 250px;
    height: 180px;
    font-size: 14px;
  }
}

/* Responsive for mobiles */
@media (max-width: 480px) {
  .fixed-box {
    width: 100px;          /* take almost full width */
    height: 100px;        /* adjust height */
    right: -100%;        /* hide fully offscreen */
    border-radius: 10px; /* round all corners */
    padding: 15px;
  }

  .fixed-box.active {
    right: 5%;           /* show with little margin */
  }

  .fixed-box h2 {
    font-size: 18px;
  }

  .fixed-box .close {
    font-size: 20px;
  }
}

