.rep-smartphones-sec-1 { background: var(--section2-color); gap: 0px; }
.rep-smartphones-sec-2 { background: var(--section3-color); gap: 0px; }
.rep-smartphones-sec-3 { background: var(--section8-color); gap: 0px; }

.rep-smartphones-sec-3 .title-divider { margin-bottom: 35px !important; margin-top: 15px !important; }

.rep-comp-sec-3 .service-details-title-icon { background-color: rgb(255, 199, 95); }

.rep-smartphones-sec-2 .title-divider { margin-bottom: 35px !important; margin-top: 15px !important; }

.rep-smartphones-container {
    position: relative;
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 50px;
}

.rep-smartphones-services {
    position: relative;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    margin-right: auto;
    margin-left: auto;
}
.rep-smartphones-services .animate-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rep-smartphones-services-img {
    width: 100%;
    height: auto;
    background: rgb(255, 175, 84);
    border-radius: 5px;
    padding: 20px;
}

.animate-individual { 
    filter: blur(5px);
    opacity: 0;
    transition: 1.5s; 
}
.animate-individual.show-animate-individual { 
    filter: blur(0);
    opacity: 1;
}

/* REP SMARTPHONES SECTION-2 */
.animate-individual .main-title  { transform: scale(0); transform: translateY(-100%); }
.animate-individual.show-animate-individual .main-title { 
    transform: scale(1); 
    transform: translateY(0); 
    transition-delay: 1s; 
    transition: 1s; 
}

.animate-individual .animate-item  { transform: scale(0); }
.animate-individual.show-animate-individual .animate-item { 
    transform: scale(1); 
    transition-delay: 1s; 
    transition: 1s; 
}
/* END REP SMARTPHONES SECTION-2 */

 /* REP SMARTPHONES SECTION-3 */
.rep-smartphones-sec-3 .animate { filter: blur(5px); transform: scale(0.5); }
.rep-smartphones-sec-3.show-animate .animate { filter: blur(0); transform: scale(1); }

.rep-smartphones-sec-3.show-animate .sec-parag1 { transition-delay: 1.2s; }
.rep-smartphones-sec-3.show-animate .sec-parag2 { transition-delay: 1.5s; }
.rep-smartphones-sec-3.show-animate .sec-parag3 { transition-delay: 1.8s; }

.rep-smartphones-sec-3 .images {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
    margin-bottom: 15px;
}

.rep-smartphones-sec-3 .images img {
    width: 160px;
    transform: translateX(-100%);
    transition-delay: calc(.3s * var(--i));
}
.rep-smartphones-sec-3.show-animate .images img {
    transform: translateX(0);
}
/* END SECTION-3 */

/* MOBILE */

@media screen and (max-width:900px) {
    .rep-smartphones-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
}

@media screen and (max-width: 800px) {
    .rep-smartphones-sec-3 .images {
        gap: 20px;
    }
    .rep-smartphones-sec-3 .images img {
        width: 100px;
    }
  }
  
  @media screen and (max-width: 600px) {

    .rep-smartphones-container {
        grid-template-columns: 1fr;
        gap: 30px 0;
    }

    .rep-smartphones-sec-3 .images {
        gap: 15px;
        margin-bottom: 0px;
    }
  
    .rep-smartphones-sec-3 .images img {
        width: 75px;
    }
  }