
/* Basic styling */

.serviceslider-slider {
  position: relative;
  width: 100%;
  max-width: 690px;
  overflow: hidden;
}

.serviceslider-card-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.serviceslider-card {
  flex: 0 0 26.33%; /* Show 3 cards at a time */
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  margin: 10px;
}

/* Styling for individual cards */
.serviceslider-card:nth-child(1) { background-color: #ffffff; }
.serviceslider-card:nth-child(2) { background-color: #ffffff; }
.serviceslider-card:nth-child(3) { background-color: #ffffff; }
.serviceslider-card:nth-child(4) { background-color: #ffffff; }
.serviceslider-card:nth-child(5) { background-color: #ffffff; }
.serviceslider-card:nth-child(6) { background-color: #ffffff; }
.serviceslider-card:nth-child(7) { background-color: #ffffff; }

.serviceslider-card h2 {
  font-size: 12px;
  margin: 0 0 10px;
}

.serviceslider-card img{
    height: 60px;
}
        
        
        
                
.timeline-content p {
  font-weight: 300;
}
.timeline-content a {
  color: #6c6d6d;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.3em;
  font-size: 0.6em;
  font-weight: 400;
  background: #252727;
  padding: 0.3rem 1rem;
  margin: 1.9rem 0 0 0;
  float: right;
}
.timeline-content a:hover {
  color: white;
  background: #004ffc;
  border-bottom: 0.35em solid black;
}
strong {
  font-weight: 600;
}
.timeline-content h1 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  color: white;
  font-weight: 400;
  font-size: 2.4em;
}
#timeline-content {
  margin-top: 0px;
  text-align: center;
  background: #ffffff;
  font-size: 16px;
}
/* Timeline */
.timeline {
  border-left: 4px solid red;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(255, 103, 103, 0.03);
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Chivo', sans-serif;
  margin: 50px 0 0 150px;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 100%;
  width: 500px;
}
.timeline h1 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 100;
  font-size: 1.4em;
}
.timeline h2,
.timeline h3 {
  font-family: 'Saira', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1.4em;
}
.timeline .event {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
  margin-bottom: 50px;
  position: relative;
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -217.5px;
  color: rgba(0, 0, 0, 0.4);
  content: attr(data-date);
  text-align: right;
  font-weight: 100;
  font-size: 0.9em;
  min-width: 120px;
  font-family: 'Saira', sans-serif;
}
.timeline .event:after {
  box-shadow: 0 0 0 4px red;
  left: -57.85px;
  background: #313534;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}

.section_timeline{
  display: flex;
}

#timeline-about{
  width: 50%;
  height: 500px;
}

#timeline-about img{
  margin: 50px 10px 0px 150px;
  width: 500px;
}

@media only screen and (max-width: 600px) {
  .section_timeline{
  display: flow;
  }
  #timeline-about{
    width: 75%;
    height: auto;
  }
  
  #timeline-about img{
    margin: 20px 10px 0px 50px;
    width: 90%;
  }
  .timeline {
  border-left: 4px solid red;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: rgba(255, 103, 103, 0.03);
  color: rgba(0, 0, 0, 0.8);
  font-family: 'Chivo', sans-serif;
  margin: 50px 0 0 25px;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width: 100%;
  width: 90%;
}
}



    .sidesticky-Button-social {
            position: fixed;
            top: 60%;
            right: 0; /* Move the button to the right side */
            z-index: 1000; /* Ensure it appears above other elements */
            display: none;
        }
        .contactusvisibility {
          display: none;
        }

        .sidesticky-Button-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 150px;
            padding-left: 5px;
            padding-right: 10px;
            padding-top: 5px;
            padding-bottom: 5px;
            border-radius: 5px 0 0 5px;
            margin-bottom: 5px;
            position: relative;
            left: 100px;  /* Position the button off-screen initially */
            transition: left 1s;
            cursor: pointer;
        }

        .sidesticky-Button-btn:hover {
            left: 0;  /* Move the button into view when hovered */
            transition: left 1s;
        }

        .sidesticky-Button-btn img {
            width: 40px;
            height: 40px;
        }

        .sidesticky-Button-btn p {
            color: white;
            margin: 0;
            font-size: 1.25rem;
        }

        .sidesticky-Button-color-whatsapp {
            background-color: #24cc63;
        }

        .sidesticky-Button-google-font {
            font-family: 'Lato', sans-serif;
        }

        /* WhatsApp Icon */
        .sidesticky-Button-icons8-whatsapp {
            width: 40px;
            height: 40px;
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover.sidesticky-Button-placement-right {
            right: 0;
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover {
            position: fixed;
            top: 50%;
            box-shadow: none;
            z-index: 99999;
            transition: transform .3s cubic-bezier(0,0,0,1);
            -webkit-transition: -webkit-transform .3s cubic-bezier(0,0,0,1);
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover.sidesticky-Button-placement-right.sidesticky-Button-now-show a {
            transform: translate3d(4px,0,0) rotate(-90deg);
            -webkit-transform: translate3d(4px,0,0) rotate(-90deg);
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover.sidesticky-Button-placement-right a {
            border-radius: 3px 3px 0 0;
            transform: translate3d(200%,0,0) rotate(-90deg);
            -webkit-transform: translate3d(200%,0,0) rotate(-90deg);
            transform-origin: 100% 100%;
            -webkit-transform-origin: 100% 100%;
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover a {
            padding: 6px 15px 12px;
            font-size: 24px;
            font-weight: 700;
            display: inline-block;
            position: relative;
            transition: transform .3s;
            -webkit-transition: -webkit-transform .3s;
            background-color: #e3292b; 
            text-decoration: none;
            color: white;    
            font-weight: 100; 
            top: -152.5px; 
            font-family: 'Arial';
        }

        html .sidesticky-Button-sticky-side.sidesticky-Button-image_button_cover a:hover {
            background-color: #ff5315;
            color: white;
        }

        .sidesticky-Button-whatsappico {
            height: 35px;
            width: 35px;
            top: 60%;
            position: absolute;
            right: 0px;
        }


        @media only screen and (max-width: 600px) {
          .sidesticky-Button-social {
            position: fixed;
            top: 58%;
            right: 0;
            z-index: 1000;
            display: block;
          }
          .contactusvisibility {
            display: block;
          }
          .contactusDesktopvisibility{
            display: none;
          }
        }

        @media only screen and (max-width: 400px) {
          .sidesticky-Button-social {
            position: fixed;
            top: 60%;
            right: 0;
            z-index: 1000;
            display: block;
          }
          .contactusvisibility {
            display: block;
          }
          .contactusDesktopvisibility{
            display: none;
          }
        }
   
   
  
     