:root {
    --dark-red-color: #821518;
    --dark-rose-color: #B53C5B;
    --light-rose-color: #CC879A;
    --cream-color: #F5C3C6;
    --white-color: #fff;
}

/* Why choose us */
.why-choose-us {
    background-color: var(--cream-color);
    padding: 50px 80px;
}

.why-choose-us-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.section-diff-hr {
    height: 4px;
    color: var(--dark-red-color);
    background: var(--dark-red-color);
    border: navajowhite;
    margin-bottom: 50px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


span,
a,
a:hover {
    text-decoration: none;
    color: inherit;
}

.section-head {
    margin-bottom: 60px;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: var(--dark-rose-color);
    line-height: 1;
    letter-spacing: 0.3px;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 30px;
}

.section-head h4:before {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--dark-rose-color);
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 5px;
    color: var(--dark-red-color)
}

p.service_text {
    color: #cccccc !important;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
}

.section-head p,
p.awesome_line {
    color: #818181;
    font-size: 16px;
    /* line-height: 28px; */
    text-align: -webkit-center;
}

.extra-text {
    font-size: 34px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 25px;
    position: relative;
    text-transform: none;
}

.extra-text::before {
    content: '';
    width: 60px;
    height: 3px;
    background: #f91942;
    position: absolute;
    left: 0px;
    bottom: -10px;
    right: 0;
    margin: 0 auto;
}

.extra-text span {
    font-weight: 700;
    color: #f91942;
}

.item {
    background: var(--light-rose-color);
    text-align: center;
    padding: 30px 2rem;
    height: max-content;
    -webkit-box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
    -webkit-transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item:hover {
    background: var(--dark-red-color);
    box-shadow: 0 8px 20px 0px var(--light-rose-color);
    color: var(--white-color);
}


.item:hover .item,
.item:hover span.icon {
    color: var(--white-color);
}

.item:hover h6,
.item:hover p {
    color: #fff;
    -webkit-transition: all .5s ease 0;
    transition: all 0.5s ease 0s;
}

.item .icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: var(--dark-red-color);
    width: 90px;
    height: 90px;
    line-height: 96px;
    border-radius: 50px;
}

.item .icon svg {
    height: 50px;
    width: 50px;
    top: -.5rem;
    position: relative;
}


.item p {
    font-size: 18px;
    line-height: 26px;
    color: var(--cream-color);
}

.item h6 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-red-color);
}

.mission p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 28px;
    font-weight: 500;
}

.mission i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #f91942;
    border-radius: 50%;
    color: #fff;
    font-size: 25px;
}

.mission .small-text {
    margin-left: 10px;
    font-size: 13px;
    color: #666;
}

.skills {
    padding-top: 0px;
}

.skills .prog-item {
    margin-bottom: 25px;
}

.skills .prog-item:last-child {
    margin-bottom: 0;
}

.skills .prog-item p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 10px;
}

.skills .prog-item .skills-progress {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 20px;
    position: relative;
}

.skills .prog-item .skills-progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #f91942;
    width: 10%;
    border-radius: 10px;
    -webkit-transition: all 1s;
    transition: all 1s;
}

.skills .prog-item .skills-progress span:after {
    content: attr(data-value);
    position: absolute;
    top: -5px;
    right: 0;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.9);
    padding: 3px 7px;
    border-radius: 30px;
}

.who-we-are h3 {
    color: var(--white-color);
}

.who-we-are p {
    font-size: 18px;
    color: var(--cream-color);
}

.section-head p {
    font-size: 18px;
    color: var(--dark-red-color);
}


.who-we-are {
    background-color: var(--cream-color);
    padding: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.who-we-are .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-block: 1.5rem;
    overflow: visible;
    position: relative;
}

.who-we-are .row .img,
.who-we-are .row img {
    height: 375px;
    width: 100%;
}

.mar-left {
    margin-left: -45px;
    z-index: 999;
}

.mar-right {
    margin-right: -45px;
    z-index: 0;
}

.who-we-are .row .content {
    display: flex;
    padding-inline: 1rem;
    flex-direction: column;
    gap: 1rem;
    /* margin-top: 1rem; */
    text-align: justify;
    padding: 50px 30px;
    background-color: var(--dark-rose-color);
}

@media screen and (max-width: 768px) {

    .who-we-are .row {
        grid-template-columns: 1fr;
    }

    .who-we-are .row:nth-child(2n) img {
        order: 1;
    }



    .who-we-are .row:nth-child(2n) .content {
        order: 2;
    }

    .who-we-are .row .content {
        text-align: center;
    }

    .container {
        max-width: 90%;
    }
}


.container {
    margin: 0 auto;
    padding: 0;
    /* padding: 20px; */
}

.heading {
    text-align: center;
}


.card {
    flex-basis: 200px;
    padding: 20px;
    margin: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.card h2 {
    margin-top: 0;
}

.card p {
    margin-bottom: 0;
}

/* how section */
.how-section {
    background-color: var(--light-rose-color);
    border-bottom: 1px #e4ebf3;
    padding: 80px 30px;
    position: relative;
    padding-bottom: 28px;
}

#how-section .button-container-schedule {
    margin-top: 30px;
}

.container-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
}

.heading-2 {
    color: var(--dark-red-color);
    margin-bottom: 16px;
    font-family: Matter, sans-serif;
    font-size: 56px;
    font-weight: 400;
    position: static;
    top: 92px;
}

.why-choose-us-flex-div {
    width: 30%;
    margin: 20px;
}

.grid-2 {
    grid-template: "Area Area-2 Area-2 Area-3"
        "Area-4 Area-2 Area-2 Area-5"
        ". Area-6 Area-6 ."
        / 1fr 1fr 1fr 1fr;
}

.w-layout-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

#card-1 {
    grid-area: Area;
    align-self: end;
}

.how {
    width: 350px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}


#card-2,
#card-3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
    justify-self: end;
}

#card-4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: end;
}

.how i {
    font-size: 60px;
    margin: 20px 0px;
    color: var(--dark-red-color);
}

#card-5 {
    grid-area: Area-6;
    align-self: auto;
    justify-self: center;
    position: relative;
    top: -30px;
}

.how-section button {
    margin: 2rem;
    padding: .5rem 2rem;
    border-radius: 4px;
    border: none;
    color: white;
    box-shadow: 0 0 16px 8px rgba(213, 0, 0, 0.2);
    background: linear-gradient(to right, var(--dark-red-color) 22%, var(--dark-rose-color) 76%);
    cursor: pointer;
}

#card-1,
#card-2,
#card-3,
#card-4,
#card-5 {

    background-color: var(--cream-color);

}

button:hover {
    cursor: pointer;
    background-color: #9c050f;
}

.how-section p {
    color: var(--dark-red-color);
    text-align: center;

}

.testimony-con {
    margin-bottom: 0rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    user-select: none;
    gap: 2rem;
    padding: 2rem 2rem;
    background-color: var(--dark-rose-color);
    position: relative;
    /* height: 300px; */
}

.testimony-left-side {
    position: absolute;

    bottom: 0;
    left: 0;
}

.testimony-right-side {
    position: absolute;

    top: 0;
    right: 0;
}


.footer-follow-link i {

    font-size: 40px;
    margin: 0px 10px;
}




.button-container-schedule {
    width: 142px;
    height: 45px;
    position: relative;
    border-radius: 8%;
}

.button-schedule {
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #777 !important;
    border-radius: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.button-schedule:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.button-schedule::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;

    background-color: #fff;
    z-index: -1;
    transition: transform 0.4s, opacity 0.4s;
}

.button-schedule:hover::after {
    transform: scale(1.4);
    opacity: 0;
}

.button-animated {
    animation: simulateHover 5s infinite;
}


#centered-img {
    grid-area: Area-2;
    align-self: center;
    width: -webkit-fill-available;
}

@media (max-width:1080px) {

    .how-section h2 {
        width: 80vw;
        font-size: 2.5rem;
        text-align: center;
    }

    .how-section .w-layout-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .how {
        width: 100%;
        text-align: justify;

    }


    #card-1,
    #card-2,
    #card-3,
    #card-4,
    #card-5 {
        align-self: center;
        width: 85%;
        margin: 20px 0px;
    }

    .how svg,
    .how img {
        height: 80px;
        width: 80px;

    }

    #centered-img {
        width: 100%;
    }
}

@media screen and (max-width: 1000px) {
    .who-we-are {

        padding: 30px;
        overflow: hidden;
    }
}


@media screen and (max-width: 705px) {

    .prev-btn,
    .next-btn {
        margin: 0px 38px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 90%;
    }

    .why-choose-us .container {
        max-width: 100%;
    }

    .item {
        padding: 30px 5px;
    }

}

@media (max-width: 520px) {

    .how svg,
    .how img {
        height: 60px;
        width: 60px;
        margin-bottom: .5rem;
    }
}

@media (max-width: 455px) {

    #card-1,
    #card-2,
    #card-3,
    #card-4,
    #card-5 {

        width: 100%;

    }
}

@keyframes simulateHover {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
}

.sqare-box-left {
    background-color: var(--light-rose-color);
    width: 164.38px;
    height: 64px;
    position: absolute;
    bottom: 3rem;
    left: -2.625em;
}

.sqare-box-right {
    background-color: var(--light-rose-color);
    width: 164.38px;
    /* Equivalent to 100px assuming 16px base font size */
    height: 64px;
    /* Equivalent to 50px */
    position: absolute;
    bottom: 3rem;

    /* 27px converted */
    right: -5.625em;
    /* -42px converted */
}


@media (max-width: 1285px) {

    .why-choose-us-flex-div {
        width: 350px;
    }
}

@media (max-width: 960px) {
    .why-choose-us-flex-div {
        width: 90%;
    }
}

@media (max-width: 747px) {
    .why-choose-us {
        padding: 50px 20px;
    }
}

@media (max-width: 629px) {
    .how-section {
        padding: 0;
    }

    .how-section .container-2 {
        margin: 0;
        padding: 0;
    }

    .how-section img {
        width: 100%;
    }
}

@media (max-width: 770px) {


    .mar-right {
        margin-right: 0;
    }


    .mar-left {
        margin-left: 0;
    }

    .who-we-are .row {
        gap: 0;
        margin: 75px 0px;
    }

    .who-we-are .row img {
        width: 100%;
        height: 100%;
    }

    .who-we-are .row .img,
    .who-we-are .row img {
        height: 100%;
        width: 100%;
    }

    .sqare-box-left {
        bottom: -2.3125em;
        left: -2.625em;
    }

    .sqare-box-right {
        bottom: -1.6875em;
    }
}

@media (max-width: 440px) {
    .who-we-are .row .content {
        padding: 50px 10px;

    }

    .who-we-are .container {
        max-width: 100%;

    }
}

@media (max-width: 490px) {
    .how-section {
        padding: 0;
    }

    .how-section .container-2 {
        padding: 30px 30px;
    }

}



.slider-testinomial {
    width: 90vw;
    max-width: 500px;
    height: 300px;
    list-style: none;
    display: flex;
    transition: transform 1.25s;
}

.item-testinomial {
    position: relative;
    min-width: 100%;
    height: inherit;
    display: flex;
    align-items: center;
}

.testimonial {
    width: 65%;
    padding: 2rem 5rem 2rem 2rem;
    background-color: var(--cream-color);
    color: white;
    border-radius: 0.75rem;
    font: 100 0.7rem/1.6 helvetica, sans-serif;
    opacity: 0;
    transform: translateX(125px);
}

.testimonial p {
    transform: translateY(20px);
    opacity: 0;
}

.testimonial p:nth-of-type(1) {
    font-weight: 900;
    font-size: 0.9rem;
}

.testimonial p:nth-of-type(2) {
    font-style: italic;
    font-weight: 400;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--dark-red-color);
}

.testimonial p:nth-of-type(3) {
    color: var(--dark-rose-color);
    font-size: 0.65rem;
}

.slider-testinomial .image {
    position: absolute;
    right: 0;
    z-index: 10;
    width: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    transform: translateX(-25px);
}

.slider-testinomial .animation .image {
    animation: image 1.25s ease-out forwards;
}

.slider-testinomial .animation .testimonial {
    animation: testimonial 1s ease-out forwards;
}

.slider-testinomial .animation .testimonial p:nth-of-type(1) {
    animation: content 1s forwards 0.75s;
}

.slider-testinomial .animation .testimonial p:nth-of-type(2) {
    animation: content 1s forwards 1s;
}

.slider-testinomial .animation .testimonial p:nth-of-type(3) {
    animation: content 1s forwards 1.25s;
}

@keyframes image {
    100% {
        transform: translateX(0);
    }
}

@keyframes testimonial {
    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes content {
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.body-testinomial {
    height: auto;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.body-testinomial main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
    z-index: 1;
}

.testinomial .btn {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 1rem;
    border: none;
    background-color: var(--cream-color);
    cursor: pointer;
    margin: 0 0.1rem;
    transition: width 0.3s;
}

.testinomial .expand {
    width: 1.75rem;
}