



/*section four  */
.section-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

@media (min-width: 1024px) {
    .section-content {
        align-items: flex-start;
        text-align: left;
    }
}


.section-content ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.section-content ul li {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 54px; 
    min-height: 38px;
}

.section-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 38px;
    height: 38px;
    border: 1px solid #213A7126;
    border-radius: 50%;
    background-color: #F4F6F7;

    /* correct tikmark image */
    background-image: url("../../assets/images/black_correct_tik_mark.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 17px 17px;
}

.section-content ul li p {
    margin: 0;
    color: #000000;
    font-family: "Neue Montreal", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
}
.section-content p {
    margin-top: 30px;
    color: #000000;
    font-family: "Neue Montreal", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0;
    max-width: 600px;
    text-wrap:balance;
}
@media (min-width: 1024px) {
    .section-content p{
        max-width: 450px;
    text-wrap:balance;
    }
}
@media (min-width: 1280px) {
    .section-content p{
        max-width: 500px;
    text-wrap:balance;
    }
}

@media (min-width: 768px) {
    .section-content ul li p{
        font-size: 16px;
    }
}


/*section six  */

.squatch-squad-right{
    margin-left: 10px;
    margin-bottom: 20px;
 height:auto;
}
@media (min-width: 1024px) {
    .squatch-squad-right {
        height: 500px;
        
    }
}

 .squatch-squad-right span{
    font-size: 15px;
    line-height: 25px;
    color: #475E67;
    font-family: "Neue Montreal", sans-serif;
    font-weight: 500;
}



.squatch-squad-right p{
    margin-top: 22px;
    font-size: 14px;
    line-height: 25px;
    font-family: "Neue Montreal", sans-serif;
    font-weight: 500;
}

.squatch-squad-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 462px;
    background-color: #fff;
    border-radius: 20px;
    padding: 32px;
}

/* md (768px - 1023px) */
@media (min-width: 768px) {
    .squatch-squad-left {
        height: 362px;
    }
}

/* lg (1024px and above) */
@media (min-width: 1024px) {
    .squatch-squad-left {
        height: 462px;
        margin-right: -12px;
    }
}
.squatch-squad-left span{
   font-size: 16px;
    color: #000903;
    font-family: "Neue Montreal", sans-serif;
    font-weight: 500;  
}

.squatch-squad-left p{
margin-top: 4px;
   font-size: 15px;
    color: #6E6E6E;
    font-family: "Neue Montreal", sans-serif;
    font-weight: 400;  
}
.squatch-squad-left blockquote{
    margin-top: 70px;
    font-size: 15px;
    line-height: 25px;
      color: #475E67;
       font-family: "Neue Montreal", sans-serif;
    font-weight: 400;  
}
/* section five */

.team-content {
    width: 100%;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.team-content p {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.03em;
    color: #F4F6F7;
    font-family: 'Neue Montreal', sans-serif;
    font-weight: 400;
}

/* lg screens */
@media (min-width: 1024px) {
    .team-content {
        width: 36%;
        max-width: none;
        margin: 0;
        text-align: left;
    }

    .team-content p {
        margin-top: 16px;
    }
}

/* xl screens */
@media (min-width: 1280px) {
    .team-content {
        width: 34%;
    }
}









/* section five */

 .slot-inner {
    transition: opacity .35s ease, transform .35s ease;
    opacity: 1;
    transform: translateX(0);
  }
  .slot-inner.leaving-next { opacity: 0; transform: translateX(-24px); }
  .slot-inner.leaving-prev { opacity: 0; transform: translateX(24px); }
  .slot-inner.entering-next { opacity: 0; transform: translateX(24px); }
  .slot-inner.entering-prev { opacity: 0; transform: translateX(-24px); }