

.video-box .video-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  padding: 30px 15px;
}

.video-box .video-title {
  color: var(--white-color);
  margin: 0 auto 40px auto;
  font-weight: 500;
  max-width: 760px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .video-box .video-title {
    margin: 0 auto 30px auto;
  }
}

.video-box .video-text {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--white-color);
  display: block;
  margin-top: 20px;
}

.video-box .icon-btn {
  background-color: transparent;
  border: 1px solid;
  color: var(--white-color);
  --btn-size: 80px;
  font-size: 20px;
}

.video-box .icon-btn:hover {
  color: var(--theme-color);
}
.shape-mockup img
{
  display: block !important;
}

.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
}

.shape-mockup.z-index3 {
  z-index: 3;
}

/*******Magnific Image*******/
.mfp-zoom-in .mfp-content {
  opacity: 0;
  transition: all 0.4s ease;
  transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-extralight {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

.fs-40 {
  font-size: 40px;
}

/* Large devices */
@media (max-width: 1199px) {
  .fs-40 {
    font-size: 34px;
  }
}





/* Position the arrows in the top-right corner */
.slider-arrow-container {
  position: absolute;
  top: -40px; /* Adjust if needed */
  right: 10px;
  display: flex;
  gap: 10px;
}

/* Style for arrows */
.prev-arrow,
.next-arrow {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.prev-arrow:hover,
.next-arrow:hover {
  background: #0056b3;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .slider-arrow-container {
    top: -30px;
    right: 5px;
  }

  .prev-arrow,
  .next-arrow {
    padding: 6px 10px;
    font-size: 14px;
  }
}
/* Hide the default Next and Previous text */
.slick-prev:before, .slick-next:before
 {
  content: '' !important; /* Removes default text */
}


/* Sec4 */

/* Main box styling */
.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
}

/* Icon container */
.icon-container {
  width: 50px;
  height: 50px;
  background: #fdeff2; /* Light pinkish background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Icon styles */
.info-icon {
  font-size: 1.5rem;
  color: #d13b72; /* Matching the image color */
}

/* Title */
.info-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  margin-top: 12px;
}

/* Tools text */
.info-tools {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .info-box {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .icon-container {
    width: 40px;
    height: 40px;
  }
  .info-icon {
    font-size: 1.2rem;
  }
  .info-title {
    font-size: 1.1rem;
  }
  .info-tools {
    font-size: 0.9rem;
  }
}



/* Sec 5  */

.background-fade-left {
  background: linear-gradient(to right, black 40%, rgba(148, 148, 148, 0) 100%);
}
.infoicon-color
{
  color: #E20935 !important;
}



