.features {
    background: var(--background-color);
}

.features_h1 {
    text-align: center;
    font-size: 2rem;
    display: flex;
    height: 20vh;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.features_h1::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: -20px;
}
.features_p {
    text-align: center;
    margin-top: 2rem;
    color: var(--default-color);
}
.ul {
   display: flex;
   justify-content: center;
   margin-top: 3rem;
}
.features_ul {
    display: flex;
    background: #d5d5d5;
    padding: 15px 50px;
    border-radius: 40px;
}
.features_ul li {
    margin-left: 2rem;
    text-align: center;
    color: var(--heading-color);
    cursor: pointer;
}
.features_ul li:hover {
    color: var(--accent-color);
    transition: .2s;
}
.features_ul li:nth-child(1) {
 
    padding: 5px 30px;
    background: var(--accent-color);
    border-radius: 20px;
    color: var(--contrast-color);
}
.features-2-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.features-2-left p {
    margin-top: 3rem;
}
.features_h1-2 {
    text-align: center;
    font-size: 2rem;
    display: flex;
    height: 20vh;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}
.features_h1-2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    bottom: -20px;
    right: 505px;
}
.features-2-left-ul {
    margin-top: 3rem;
}
.features-2-left-ul {
    line-height: 2.5;
}
.features-2-left-ul i {
    color: var(--accent-color);
    opacity: 80%;
    margin-right: 1rem;
}
.features-2-right  img {
    width: 100%;
}
.features-cards  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 5rem;
}
.feature-card {
    border-radius: 1rem;
    padding: 3rem;
    line-height: 1.6;
}
.feature-card i {
    font-size: 2rem;
}
.feature-card:nth-of-type(1) i {
    color: #edb86e;
} 
.feature-card:nth-of-type(1) {
    background: #fff3e2;
}
.feature-card:nth-of-type(2) {
    background: #deedfd;
}
.feature-card:nth-of-type(2) i {
    color: #2caaf8;
}
.feature-card:nth-of-type(3) {
    background: #d5f1e4;
}
.feature-card:nth-of-type(3) i {
color: #79d6a9;
}
.feature-card:nth-of-type(4) {
    background: #fdeded;
}
.feature-card:nth-of-type(4) i {
    color: #f49696;
}
.features-phone {
    display: flex;
   justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    gap: 10px;
}
.features-phone-left {
    width: 33.33%;
}
.features-phone-left-content {
    display: flex;
   line-height: 1.7;
   margin-top: 2rem;
}
.features-phone-left-content-w h1{
    margin-left: 2rem;
    opacity: 80%;
}
.features-phone-left-content-w p {
    opacity: 80%;
}
.features-phone-middle {
    width: 33.33%;
    text-align: center;
}
.features-phone-middle img {
    width: 70%;
}
.features-blue  {
    width: 90%;
    height: 50vh;
    background-color: var(--accent-color);
    padding: 20px;
    text-align: center;
    margin-top: 5rem;
    border-radius: 10px;
}
.features-blue h1 {
    color: var(--contrast-color);
    font-size: 3rem;
    font-weight: 100;
}
.features-blue p {
color: var(--contrast-color);

}
.features-blue button {
    margin-top: 2rem;
    background:rgb(226, 226, 226,0.2);
    color: var(--contrast-color);
    padding: 15px 40px;
    border: 2px solid var(--contrast-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: medium;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.features-blue button:hover {
    background: var(--contrast-color);
    color: var(--accent-color);
}

.clients{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5rem;
}
.clients img {
    filter: saturate(0);
    opacity: 50%;
    transition: .2s ease;
}
.clients img:hover {
    filter: saturate(1);
    opacity: 100%;

}