/*======================================
Theme Name: childTheme
Theme URI: https://divicake.com/
Description: pixelskit-DIVI child theme
Version: 1.0
Author: pixelskit
Author URI: https://divicake.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */
/* Container and General Style */
.trip-steps {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Inter", Arial, sans-serif;
  text-align: start; /* Automatically aligns left for EN, right for HE */
}

.trip-steps .steps-title {
  color: #24447C;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Row Styling */
.step-row {
  display: flex;
  align-items: center; 
  background: #f7f9fc;
  border-radius: 6px;
  padding: 10px 28px;
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  box-shadow: none;
}

/* Image Spacing */
.step-image {
  flex-shrink: 0;
  /* Logical property: pushes right in LTR, pushes left in RTL */
  margin-inline-end: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-image img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  display: block;
  transition: all 0.3s ease;
}

.step-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-heading {
  color: #24447C;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.step-text {
  color: #5d6b82;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Hover effects */
.steps-container:hover .step-row {
  opacity: 0.4;
}

.step-row:hover {
  background: #ffffff;
  opacity: 1 !important;
  transform: translateX(-20px); /* Slides left for EN */
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* RTL Specific Hover Adjustment */
[dir="rtl"] .step-row:hover,
.rtl .step-row:hover {
  transform: translateX(20px); /* Slides right for HE so it doesn't animate off-screen */
}

.step-row:hover .step-image img {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .step-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: none !important;
  }

  .step-image {
    margin-inline-end: 0;
    margin-bottom: 16px;
  }

  .step-image img {
    width: 100px;
  }
}


/* MENU DIVIDERS */
@media (min-width: 981px) {
    /* 1. Make the text anchor the reference point, not the tall list item */
    #top-menu > li > a {
        position: relative;
    }

    /* 2. Attach the divider to the anchor */
    #top-menu > li:not(:last-of-type) > a::after {
        content: "";
        position: absolute;
        top: 15%;
        transform: translateY(-50%);
        width: 1px;
        height: 16px; /* Slightly shorter to look elegant next to text */
        background-color: rgba(50, 89, 150, 1);
        opacity: 0.25;
        
        /* Pushes the line exactly 15px outside the text */
        inset-inline-end: -15px; 
    }

    /* 3. Give the next menu item room so it doesn't crash into the line */
    #top-menu > li {
        /* This pushes the next menu item 30px away, placing the divider perfectly in the middle */
        margin-inline-end: 10px !important; 
    }
}


.otgs-development-site-front-end {
    background-size: 32px;
    padding: 22px 0px;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 18px;
    text-align: center;
    color: white;
    background-color: #33879E;
	display:none!important
}

.et_pb_contact_form {
    margin-left: 0%!important;
}

span.wpml-ls-bracket {
    display: none;
}
span.wpml-ls-display {
    display: none;
}
span.wpml-ls-native {
    display: none;
}

.nav li ul {
    width: 100px;
}

#top-menu li li a {
    padding: 6px 20px;
    width: 60px;
}