.hero {
    height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(10px) opacity(80%);
}

.hero .overlay {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 60;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero .content {
    width: 80%;
    padding: 2%;
    background-color: white;
    z-index: 100;
    text-align: center;
}

.hero .content span {
    text-transform: uppercase;
    color: var(--blue);
    font-weight: bold;
}

.hero .content h1 {
    margin: 10px 0;
    font-size: 40px;
    text-transform: uppercase;
}

.hero .content p {
    width: 90%;
    margin: auto;
}

.whyGetDmeServies,
.someKeyBenefits {
    display: flex;
    padding: 100px 80px;
}

.whyGetDmeServies .content,
.someKeyBenefits .content {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.whyGetDmeServies .content h2,
.someKeyBenefits .content h2 {
    width: 100%;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whyGetDmeServies .content hr,
.someKeyBenefits .content hr {
    width: 10%;
    height: 4px;
    background-color: black;
    border: 1px solid black;
}

.whyGetDmeServies .image,
.someKeyBenefits .image {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whyGetDmeServies .stage,
.someKeyBenefits .stage {
    display: flex;
}

.whyGetDmeServies .stage .item,
.someKeyBenefits .stage .item {
    width: calc(100 * (1/3));
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.whyGetDmeServies .stage .item .icon,
.someKeyBenefits .stage .item .icon {
    width: 40px;
    fill: var(--blue);
}

.whyGetDmeServies .image img,
.someKeyBenefits .image img {
    width: 80%;
    height: 700px;
}

.someKeyBenefits .icon {
    width: 30px;
    stroke: var(--blue);
}

.someKeyBenefits ul {
    margin-top: 10px;
}

.someKeyBenefits ul li {
    display: flex;
    align-items: center;
}

.someKeyBenefits .image img {
    height: 600px
}

.chossingSquadMedSupplies {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.chossingSquadMedSupplies>h2 {
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.chossingSquadMedSupplies .stage {
    width: 100%;
    display: flex;
    background-color: var(--yellow);
    color: white;
    padding: 25px;
}

.chossingSquadMedSupplies .stage .item {
    width: calc(100% * (1/4));
    border-left: 1px solid;
    padding: 25px;
}

.chossingSquadMedSupplies .stage .item h3 {
    color: white;
}

.chossingSquadMedSupplies .stage .item:nth-of-type(1) {
    border: 0;
}

.chossingSquadMedSupplies .stage .item .icon {
    width: 40px;
    fill: white;
}

.chossingSquadMedSupplies .stage .item h3 {
    font-size: 30px;
}

.someOtherServices {
    display: flex;
    padding: 100px 40px;
}


.someOtherServices .content {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    justify-content: center;
}

.someOtherServices .content h2 {
    font-size: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.someOtherServices .content h2 hr {
    width: 10%;
    height: 4px;
    background-color: black;
    border: 1px solid black;
}

.someOtherServices .services {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.someOtherServices .services .item {
    position: relative;
    padding: 10px;
}

.someOtherServices .services .item img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 50;
}

.someOtherServices .services .item .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 60;
}

.someOtherServices .services .item .content {
    z-index: 70;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 80px 0;
    align-items: center;
    position: relative;
    color: white;
}

.cta span {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    z-index: 90;
}

.cta h2 {
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 10px;
    z-index: 90;
    color: white;
}

.cta button {
    width: 20%;
    padding: 10px;
    background-color: var(--yellow);
    color: white;
    border: 1px solid var(--yellow);
    z-index: 90;
    cursor: pointer;
}

.cta .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 80;
}

.cta img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 70;
    top: 0;
    left: 0;
}

@media (max-width: 640px) {
    .hero {
        height: 60vh;
    }

    .hero .content {
        width: 90%;
        padding: 10px;
    }

    .hero .content h1 {
        font-size: 28px;
    }

    .hero .content p {
        font-size: 14px;
    }

    .whyGetDmeServies,
    .someKeyBenefits {
        flex-direction: column;
        padding: 50px 20px;
    }

    .whyGetDmeServies .content h2,
    .someKeyBenefits .content h2,
    .someOtherServices .content h2 {
        font-size: 20px;
    }

    .whyGetDmeServies .content,
    .someKeyBenefits .content,
    .whyGetDmeServies .image,
    .someKeyBenefits .image {
        width: 100%;
    }

    .whyGetDmeServies .image img {
        height: 60%;
    }

    .whyGetDmeServies .stage {
        flex-direction: column;
    }

    .whyGetDmeServies .stage .item,
    .someKeyBenefits .stage .item {
        width: 100%;
        padding: 15px;
    }

    .someKeyBenefits ul {
        padding-left: 20px;
    }

    .someKeyBenefits ul li {
        font-size: 12px;
    }

    .someKeyBenefits .image img {
        width: 100%;
        height: auto;
    }

    .chossingSquadMedSupplies {
        padding: 50px 20px;
    }

    .chossingSquadMedSupplies>h2 {
        font-size: 30px;
    }

    .chossingSquadMedSupplies .stage {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .chossingSquadMedSupplies .stage .item {
        width: 100%;
        border: none;
    }

    .chossingSquadMedSupplies .stage .item h3 {
        font-size: 24px;
    }

    .cta {
        padding: 40px 20px;
        gap: 20px;
        text-align: center;
        overflow: hidden;
    }

    .cta img {
        width: 230%;
        left: -112px
    }

    .cta span {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 40px;
    }

    .cta button {
        width: 50%;
    }

    .someOtherServices {
        flex-direction: column;
        padding: 50px 20px;
    }

    .someOtherServices .content {
        width: 100%;
    }

    .someOtherServices .services {
        flex-direction: column;
        gap: 15px;
    }

    .someOtherServices .services .item {
        padding: 10px;
    }

    .someOtherServices .services .item img {
        height: auto;
    }

    .someOtherServices .services .item .content {
        font-size: 14px;
    }
}