* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: #f7941d;
    color: #000000;
}

body {
    background-color: #fafafa;

}

html {
    scroll-behavior: smooth;
    font-family: helvetica !important;
}

.bg-org1 {
    background-color: #FF9800;
}

.bg-org2 {
    background-color: #FF5722;
    ;
}

.bg-org3 {
    background-color: #e08517;
}

.bg-org4 {
    background-color: #cc7a17;
}

.scroll-up {
    position: fixed;
    bottom: 30px;
    left: -40px;
    font-weight: bold;
    background-color: #f7941d;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-up.show {
    left: 22px;
}

a {
    text-decoration: none;
}

.d-flex {
    display: flex;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.align-center {
    align-items: center;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width:768px) {
    .container {
        width: 750px;
    }

}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

/* start header-top ***********************/
header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10000;
}

.header-top {
    height: 100px;
    padding: 0 30px;
    background-color: white;
}

.header-top .logo img {
    width: 165px;
    display: block;
}

@media(max-width:767px) {
    .header-top .logo img {
        width: 140px;
    }
}


.header-top .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.4s;
}

.header-top .container .toggle {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #000000e8;
    margin-right: 30px;
}

@media (min-width:992px) {
    .header-top .container .toggle {
        display: none;
    }
}


.header-top .container .btn-login {
    margin-right: 30px;
    background-color: #f7941d;
    transition: 0.4s;
    color: white;
    padding: 10px 18px;
    font-size: 19px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.header-top .container .btn-login:hover {
    background-color: #f2911cd6;
}

@media (max-width:767px) {
    .header-top .container .btn-login {
        display: none;
    }
}

.header-top .container nav .links {
    list-style: none;
    display: flex;
    margin: 0;
}

@media (max-width:991px) {
    .header-top .container nav .links {
        display: none;

    }

    .header-top .container nav .links.show {
        display: flex;
        flex-direction: column-reverse;
        background-color: #fafafa;

        box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 6;
    }

    .header-top .container nav .links.show li {
        border-bottom: 1px solid white;
        text-align: end;
        transition: 0.4s;
        direction: ltr;
    }

    .header-top .container nav .links.show>li>a {
        padding-right: 30px;
    }
}


.header-top .container nav .links li a {
    color: #FF7C1A;
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    transition: 0.4s;
    user-select: none;
    display: block;
    width: 100%;
    padding: 10px 15px;
}

.header-top .container nav .links li a.active {
    color: #008EC2;
}

.header-top .container nav .links li a:hover {
    color: #E55015;

}

.menu-item-parent {
    position: relative;
}

.menu-item-parent .arrow-down {
    transition: all 0.4s;
}

@media(min-width:992px) {
    .menu-item-parent:hover .arrow-down {
        transform: rotate(180deg);
    }
}



@media(min-width:992px) {
    .header-top .container nav .links .menu-item-parent a {
        display: flex;
        gap: 5px;
    }

    .menu-item-parent .sub-menu {
        position: absolute;
        top: 80%;
        left: 0;
        direction: rtl;
        list-style: none;
        box-shadow: 0 0 10px rgb(68 88 144 / 9%);
        background-color: white;
        list-style: none;
        width: 220px;
        position: absolute;
        border-top: 3px solid var(--main-color);
        transform: translateY(10px);
        transition: all 0.3s ease;
        border-radius: 2px;
        opacity: 0;
        visibility: hidden;
    }

    .menu-item-parent:hover .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    .menu-item-parent .sub-menu li:hover {
        background-color: #FF7C1A;
    }

    .header-top .container nav .links .sub-menu li:hover a {
        color: white;
    }
}



@media (max-width: 991px) {
    .sub-menu.active {
        max-height: 800px;
        overflow: visible;
    }
}

@media (max-width: 991px) {
    .sub-menu {
        width: 100%;
        max-height: 0;
        position: relative;
        left: auto;
        top: auto;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        overflow: hidden;
        transition: 0.3s linear;
    }

    .header-top .container nav .links .sub-menu li a {
        padding-right: 50px;
    }
}

/* header bottom */
.header-bottom {
    background-color: white;
    margin-top: 35px;
    padding: 15px 0;
}

.header-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width:767px) {
    .header-bottom .container {
        flex-direction: column;
        gap: 20px;
    }
}

.header-bottom .contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.header-bottom .contact a {
    display: flex;
    align-items: center;
    color: #606060;
    font-size: 14px;
    gap: 15px;
    cursor: pointer;
}

.header-bottom .contact a img {
    width: 25px;
}

.header-bottom .social-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-bottom .social-links a {
    color: #F08700;
    font-size: 18px;
    transition: 0.3s;
    transform: scale(1);
}

.header-bottom .social-links a:hover {
    transform: scale(1.1);
}


/* landing *******************************/
.landing {
    height: 100vh;
    position: relative;
}

@media(max-width:767px) {
    .landing {
        height: 55vh;
    }
}

.landing img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: white;
    transition: 0.3s;
    opacity: 0;
}

.landing img.active {
    opacity: 1;
}

.landing .login {
    background-color: #E24E13ED;
    position: absolute;
    bottom: 0;
    margin: auto;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

@media(max-width:767px) {
    .landing .login {
        padding: 12px 0;
        width: 90%;
    }
}

.landing .login a {
    background-color: #f7941da6;
    overflow: hidden;
    font-size: 19px;
    gap: 15px;
    color: white;
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

@media(max-width:767px) {
    .landing .login a {
        font-weight: 500;
        padding: 8px;
    }
}

.landing .login a::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #FF5722;
    z-index: -1;
    transition: 0.6s ease;

}

.landing .login a:hover::before {
    width: 100%;
}

.landing .login a i {
    font-size: 25px;
}

.landing .login .person-icon {
    font-size: 50px;
    color: orange;
}

@media(max-width:767px) {
    .landing .login .person-icon {
        font-size: 45px;
        color: orange;
    }
}

/* about-us ********************************/
.about-us {
    background-color: #e5e5e559;
    padding: 50px 0 100px;
}

.about-us h2 {
    text-align: center;
    color: #606060;
    font-size: 25px;
}

.about-us .container>p {
    text-align: right;
    font-size: 18px;
    margin: 15px 0 25px 0;
    line-height: 40px;
    color: #534949;
}

.about-us .boxes {
    display: flex;
    flex-wrap: wrap;
}

.about-us .boxes .box-container {
    height: 340px;
    cursor: pointer;
    position: relative;
    width: 100%;

}

.about-us .boxes .box-container .box {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all .5s ease-in-out;
}

@media(min-width:768px) {
    .about-us .boxes .box-container {
        width: calc(100% / 3);
    }
}

@media(min-width:992px) {
    .about-us .boxes .box-container {
        width: calc(100% / 4);
    }
}

.about-us .boxes .box-container:hover .box {
    transform: rotateY(180deg);
}

.about-us .boxes .box-container .box .face {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    backface-visibility: hidden;
}

.about-us .boxes .box-container .box .front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
}

.about-us .boxes .box-container .box .front img {
    width: 80px;
}

.about-us .boxes .box-container .box .back {
    transform: rotateY(180deg);
}

.about-us .boxes .box-container .box .back img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 100%;
    left: 0;
    z-index: -1;
}

.about-us .boxes .box-container .box .back p {
    text-align: center;
    font-size: 17px;
    padding: 10px 25px;
    color: white;
    position: absolute;
    bottom: 0;
    line-height: 1.8;
    margin: 15px 0 25px 0;
}

/* impaApp */

.impa-app {
    background-color: #9ED6FE;
}

@media(max-width:767px) {
    .impa-app {
        padding: 60px 0;
    }
}

.impa-app .container {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    min-height: 100vh;
    background-color: #9ED6FE;
    justify-content: space-between;

}

@media(max-width:767px) {
    .impa-app .container {
        flex-direction: column-reverse;
    }
}

.impa-app .section-1 {
    width: 50%;
    position: relative;
}

@media(max-width:767px) {
    .impa-app .section-1 {
        width: 70%;
        margin: 10px auto;
    }
}

.impa-app .section-1 .impa-tap {
    animation: scale-img 7s infinite linear alternate;
}

@keyframes scale-img {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }


}

.impa-app .section-1>div a img {
    width: 340px;
    max-width: 100%;
    display: block;
    margin: auto;
}

.impa-app .img-1 {
    width: 130px;
    position: absolute;
    top: -70px;
    right: -60px;
    animation: left-right 4s infinite linear alternate;
}

@media(max-width:767px) {
    .impa-app .img-1 {
        width: 70px;
    }
}

@keyframes left-right {
    0% {
        top: -70px;
        right: -60px;
    }

    50% {
        top: -78px;
        right: -30px;
    }

    100% {
        top: -80px;
        right: -5px;
    }

}

.impa-app .img-1 img {
    max-width: 100%;
}

.impa-app .img-2 {
    position: absolute;
    width: 90px;
    right: -60px;
    top: 160px;
    animation: top-down 4s infinite linear alternate;
}

@media(max-width:767px) {
    .impa-app .img-2 {
        width: 70px;
    }
}

@keyframes top-down {
    0% {
        top: 160px;
    }

    50% {
        top: 140px;
    }

    100% {
        top: 160px;
    }

}

.impa-app .img-2 img {
    max-width: 100%;
}

.impa-app .img-3 {
    position: absolute;
    width: 100px;
    right: -31px;
    bottom: 16px;
    animation: move-3 4s infinite linear alternate;
}

@media(max-width:767px) {
    .impa-app .img-3 {
        width: 70px;
    }
}

@keyframes move-3 {
    0% {
        right: -31px;
        bottom: 16px;
    }

    50% {
        right: -20px;
        bottom: 37px;
    }

    100% {
        right: -31px;
        bottom: 16px;
    }

}

.impa-app .img-3 img {
    max-width: 100%;
}

.impa-app .img-4 {
    position: absolute;
    transition: 0.3s;
    width: 100px;
    bottom: 45px;
    left: 110px;
    opacity: 0.7;
    transition: 0.3s;
    animation: move-4 3s infinite linear alternate;
}

@media(max-width:767px) {
    .impa-app .img-4 {
        width: 70px;
    }
}

.impa-app .img-4:hover {
    opacity: 1;
}

@keyframes move-4 {
    0% {
        bottom: 45px;
        left: 110px;
    }

    50% {
        bottom: 45px;
        left: 90px;
    }

    100% {
        bottom: 45px;
        left: 70px;
    }

}

.impa-app .img-4 img {
    max-width: 100%;
}

.impa-app .img-5 {
    position: absolute;
    transition: 0.3s;
    width: 100px;
    left: 27px;
    top: 0;
    opacity: 0.7;
    transition: 0.3s;
    animation: move-5 3s infinite linear alternate;
}

@media(max-width:767px) {
    .impa-app .img-5 {
        width: 70px;
    }
}

.impa-app .img-5:hover {
    opacity: 1;
}


@keyframes move-5 {
    0% {
        top: 0;
    }

    50% {
        top: 25px;
    }

    100% {
        top: 50px;
    }

}

.impa-app .img-5 img {
    max-width: 100%;
}

.impa-app .section-2 {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(max-width:767px) {
    .impa-app .section-2 {
        width: 100%;
        margin-bottom: 100px;
    }
}

.impa-app .section-2 div:first-of-type {
    display: flex;
    align-items: center;
    /* gap: 83px; */
}

@media(max-width:767px) {
    .impa-app .section-2 div:first-of-type {
        justify-content: end;
        flex-wrap: wrap;
    }
}

.impa-app .section-2>div:first-of-type img {
    width: 125px;
    max-width: 100%;
}

.impa-app .section-2>div:first-of-type p {
    font-size: 24px;
    color: white;
    line-height: 1.8;
    text-align: right;
    direction: rtl;
}

@media(max-width:767px) {
    .impa-app .section-2>div:first-of-type p {
        width: 300px;
        max-width: 100%;
    }
}

.impa-app .section-2>p {
    color: #F08700;
    text-align: end;
    margin: 50px 0 20px;
    font-size: 18px;
    font-weight: 500;
}

.impa-app .section-2>div:last-of-type {
    display: flex;
    align-items: center;
    gap: 35px;
    justify-content: end;
}

@media(max-width:767px) {
    .impa-app .section-2>div:last-of-type {
        gap: 30px;
    }
}

.impa-app .section-2>div:last-of-type h2 {
    color: #00579D;
    font-size: 40px;
    font-weight: 600;
}

@media(max-width:767px) {
    .impa-app .section-2>div:last-of-type h2 {
        font-size: 30px;
    }
}

.impa-app .section-2>div:last-of-type a {
    transform: scale(1);
    cursor: pointer;
    transition: 0.3s;
}

.impa-app .section-2>div:last-of-type a:hover {
    transform: scale(1.1);
}


.impa-app .section-2>div:last-of-type a svg {
    width: 20px;
    fill: #00579D;
    transition: 0.3s;
}

.impa-app .section-2>div:last-of-type a:hover svg {
    fill: #F08700;
}

/* .impa-app .section-2>div:last-of-type a i {
    font-size: 30px;
    color: #00579D;
    transition: 0.3s;
}

.impa-app .section-2>div:last-of-type a i:hover {
    color: #F08700;
    transform: scale(2);

} */



/* info ***********************/
.info {
    min-height: 100vh;
    background-color: #E5E5E5;
    background-image: url("../imgs/impa_Doctor_wellcome_Healthcare.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.info::before {
    content: "";
    position: absolute;
    background-color: #7A7A7A40;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.info>p {
    color: #00579D;
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    width: 380px;
    direction: rtl;
    margin-left: auto;
    padding: 40px 20px;
    margin-right: 70px;
}

@media(max-width:767px) {
    .info>p {
        font-size: 21px;
        font-weight: 500;
        padding: 20px 10px;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.info>div {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 33;
}

@media(max-width:767px) {
    .info>div {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
    }
}

@media(min-width:768px) {
    .info>div {
        position: absolute;
        bottom: 25px;
    }
}

.info>div div {
    flex: 1;
    text-align: center;
}

.info>div div img {
    width: 125px;
    transform: scale(1);
    transition: 0.3s;
}

@media(max-width:767px) {
    .info>div div img {
        width: 100px;
    }
}



.info>div div img:hover {
    transform: scale(0.9);
}

.info>div div h3 {
    color: white;
    font-weight: 400;
    font-size: 24px;
}


.data-imgs .data {
    transition: all 0.4s linear;
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
}

.data-imgs .data.active {
    max-height: 600px;
}

.data-imgs .data img {
    width: 80%;
    max-width: 100%;
    display: block;
    margin: 0 auto 30px;
}

@media(max-width:991px) {
    .data-imgs .data img {
        width: 100%;
    }

}

/* services******************** */
.medical-ntw {
    padding: 35px 0;
}

.medical-ntw .about p {
    text-align: center;
    font-size: 27px;
    margin-bottom: 25px;
    font-weight: 400;
    color: #636363;
}

.medical-ntw .btn-container {
    width: fit-content;
    border-radius: 5px;
    padding: 8px 0;
    background-color: #29ABE2;
}

.medical-ntw .btn {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 20px 0 10px;
    font-size: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
    width: fit-content;
}

@media(max-width:767px) {
    .medical-ntw .btn {
        gap: 20px;
        font-size: 16px;
        padding: 0 10px 0 10px;
        text-align: center;
    }
}

.medical-ntw .btn::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 100%;
    background: rgb(0, 140, 192);
    z-index: -1;
    left: 0;
    border-radius: 0 5px 5px 0;
    transition: 0.8s ease;
}

.medical-ntw .btn:hover::before {
    width: 100%;
}

.medical-ntw .btn i {
    font-size: 35px;
}


.medical-ntw .content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 70px;
}

@media(max-width:767px) {
    .medical-ntw .content {
        flex-direction: column;
        gap: 20px;
    }
}

.medical-ntw .content img {
    width: 122px;
}

.medical-ntw .boxes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.medical-ntw .boxes .service-box {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #F4F4F4;
}

@media (min-width:768px) {
    .medical-ntw .boxes .service-box {
        width: calc(100% / 2);
        flex-direction: row;
        align-items: stretch;
    }

}

@media (min-width:992px) {
    .medical-ntw .boxes .service-box {
        width: calc(100% / 3);
    }

}

.medical-ntw .boxes .service-box img {
    width: 50%;
    object-fit: cover;
}

@media(max-width:767px) {
    .medical-ntw .boxes .service-box img {
        width: 400px;
        max-width: 100%;
    }
}

.medical-ntw .boxes .service-box div {
    width: 50%;
    padding: 30px 20px;
    background-color: #F4F4F4;
    direction: rtl;
}

@media(max-width:767px) {
    .medical-ntw .boxes .service-box div {
        width: 100%;
        text-align: center;
    }
}

.medical-ntw .boxes .service-box div h2 {
    color: #7A7A7A;
    font-weight: 400;
    margin-bottom: 25px;
    font-size: 28px;
    line-height: 1.3;
}

.medical-ntw .boxes .service-box div p {
    color: #636060;
    line-height: 1.9;
    font-size: 17px;
    font-weight: 100;
}

.medical-ntw .contact {
    background-color: #CFCFCF;
    padding: 40px 0 25px;
    text-align: center;
}

.medical-ntw .contact p {
    font-size: 28px;
    font-weight: 400;
    color: #685959;
    margin-bottom: 40px;
}

.medical-ntw .contact .btn {
    position: relative;
    z-index: 1;
    color: white;
    padding: 8px 20px 8px 20px;
    font-size: 17px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    background-color: #FF7C1A;
    margin: auto;
    overflow: hidden;
}

.medical-ntw .contact .btn::before {
    content: "";
    position: absolute;
    width: 55px;
    height: 100%;
    background: rgb(255, 103, 0);
    z-index: -1;
    left: 0;
    border-radius: 5px 0 0 5px;
    transition: 0.8s ease;
}

.medical-ntw .contact .btn:hover::before {
    width: 100%;
}

.medical-ntw .contact .btn i {
    font-size: 30px;
}


.our-partners>img {
    width: 70px;
    display: block;
    margin: auto;
}

.our-partners>h2 {
    text-align: center;
    color: #F18700;
    margin-top: 20px;
    font-size: 31px;
    font-weight: 200;
}

.our-partners .imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 70px;
    padding: 30px 0;

}

.our-partners .imgs img {
    max-width: 100%;
    width: 125px;
    filter: grayscale(1);
    transition: 0.3s;
}

.our-partners .imgs img:hover {
    filter: grayscale(0);
}

.our-partners .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.our-partners .links div {
    width: 445px;
    display: flex;
    flex-direction: column;
}

.our-partners .links div img {
    max-width: 100%;
    display: block;
    height: 310px;
}

.our-partners .links div .btn {
    position: relative;
    font-weight: 100;
    flex: 1;
    z-index: 1;
    color: white;
    padding: 10px 20px 10px 10px;
    font-size: 22px;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 60px;
    background-color: #FF7C1A;
    text-align: center;
}

.our-partners .links div .btn::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 100%;
    background: rgb(255, 103, 0);
    z-index: -1;
    left: 0;
    border-radius: 5px 0 0 5px;
    transition: 0.8s ease;
}

.our-partners .links div .btn:hover::before {
    width: 100%;
}

.our-partners .links div .btn i {
    font-size: 35px;
    margin-left: 10px;
}

.our-partners .services>div:nth-child(2) {
    width: 729px;
    max-width: 100%;
    margin: 30px auto;
    border: 1px solid #000000b3;
    padding: 60px 20px 20px;
    position: relative;
}

.our-partners .services>div:nth-child(2) span {
    width: 47px;
    display: block;
    position: absolute;
    top: -21px;
}

.our-partners .services>div:nth-child(2) h2 {
    color: rgb(247, 147, 30);
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

@media(max-width:767px) {
    .our-partners .services>div:nth-child(2) h2 {
        font-size: 32px;
    }
}

.our-partners .services>div:nth-child(2) p {
    color: rgb(96, 96, 96);
    text-align: center;
    line-height: 2;
    font-weight: 400;
    font-size: 19px;
}

/* contract ********************** */
.contract {
    background-color: #E5E5E5;
    background-image: url("../imgs/services-img.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 50px 0px 50px 60px;
    display: none;
}

.contract.active {
    display: flex;
}

@media(max-width:767px) {
    .contract {
        flex-direction: column;
        padding: 120px 30px 60px 30px;
    }
}

.contract h2 {
    color: #E55015;
    line-height: 62px;
    text-align: center;
    font-size: 35px;
    width: 300px;
}

@media(max-width:767px) {
    .contract h2 {
        font-size: 30px;
        line-height: 50px;
        margin-top: 40px;
    }
}

.contract>div:first-of-type {
    position: relative;
    background-color: #E55015;
    padding: 60px 60px 20px;
    width: 540px;
    max-width: 100%;
}

@media(max-width:767px) {
    .contract>div:first-of-type {
        padding: 40px 25px 20px;
    }

}

.contract>div:first-of-type img {
    position: absolute;
    width: 75px;
    top: -27px;
    left: 30px;
}

.contract div div {
    padding: 10px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #F8971D;
    margin-bottom: 30px;
}

.contract div div p {
    margin-bottom: 30px;
    color: white;
    font-size: 22px;
    text-align: end;
    line-height: 40px;
}

@media(max-width:767px) {
    .contract div div p {
        font-size: 20px;
    }
}

.contract>div:last-of-type {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    flex: 1;
}



/* our-offices ********************************************** */
.our-offices {
    background-color: rgb(245, 245, 245);
    padding: 100px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media(max-width:767px) {
    .our-offices {
        padding: 100px 20px;
    }
}

.our-offices div {
    width: 100%;
    background-color: white;
    direction: rtl;
    padding: 30px;
    border-radius: 4px;
}

@media(min-width:768px) {
    .our-offices div {
        width: calc((100% - 30px) / 2);
    }
}

@media(min-width:992px) {
    .our-offices div {
        width: calc((100% - 60px) / 3);
    }
}

.our-offices div h4 {
    color: #00b0f0;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
}

.our-offices div p:first-of-type {
    color: #636363;
    font-size: 19px;
    font-weight: 100;
    margin-bottom: 30px;
}

.our-offices div .phone {
    display: flex;
    color: #636363;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.our-offices div .phone span {
    width: 20px;
}

.our-offices div .phone span svg {
    fill: rgb(247, 147, 30);
}

.our-offices .title {
    color: #00b0f0;
    font-weight: 500;
    font-size: 30px;
    line-height: 1.8;
    background-color: rgb(245, 245, 245);
    order: -1;
}

@media(min-width:992px) {
    .our-offices .title {
        order: 0;
    }
}

@media(max-width:767px) {
    .our-offices .title {
        font-size: 25px;
    }
}

/* location ************** */
.location {
    display: flex;
    padding: 0px 10px;
    margin-bottom: 10px;
}

@media(min-width:1200px) {
    .location {
        padding: 0 100px;
    }
}

@media(max-width:767px) {
    .location {
        flex-direction: column-reverse;
    }
}

.location .img-container {
    width: 100%;
}

@media(min-width:768px) {
    .location .img-container {
        width: 60%;
    }
}

.location .img-container img {
    width: 100%;
    height: 100%;
}

.location .contact {
    background-color: rgba(255, 105, 0, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    width: 100%;
    font-size: 19px;
}

@media(min-width:768px) {
    .location .contact {
        width: 40%;
    }
}

.location .contact div {
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 25px 0;
    margin-bottom: 20px;
}

.location .contact div a {
    display: block;
    background-color: white;
    color: orangered;
    padding: 10px 0;
    font-size: 18px;
    text-align: center;
    border-radius: 3px;
    transition: 0.3s;
}

.location .contact div a:hover {
    color: white;
    background-color: orangered;
}

.location .contact .text {
    color: white;
    margin-bottom: 15px;
    direction: rtl;
    line-height: 1.8;
}


footer {
    background-color: rgba(255, 105, 0, 1);
}

footer .container .footer-top {
    display: flex;
    padding: 30px 0 60px;
}

@media(min-width:992px) {
    footer .container .footer-top {
        margin-right: 50px;
    }
}

@media(max-width:767px) {
    footer .container .footer-top {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: center;
    }
}

footer .container .footer-top div {
    color: white;
    flex: 1;
}

footer .footer-top .contact-info {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

footer .footer-top .contact-info p {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 17px;
    align-items: center;
}

footer .footer-top .contact-info p span {
    width: 16px;
}

footer .footer-top .contact-info p span svg {
    fill: white;
}

footer .footer-top .social-links {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
    align-content: center;
}

@media(max-width:767px) {
    footer .footer-top .social-links {
        border-bottom: 1px solid;
        padding-bottom: 15px;
        gap: 15px;
    }
}

footer .footer-top .social-links a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .footer-top .social-links a span {
    width: 16px;
}

footer .footer-top .social-links a span svg {
    fill: white;
}

footer .footer-top div:last-of-type p {
    line-height: 1.8;
    direction: rtl;
    font-size: 19px;
}

.footer-bottom {
    background-color: black;
    color: white;
    padding: 15px 7px;
    text-align: center;
}



/* special services page ****************************************************************** */
.special-services {
    background-color: white;
    padding: 200px 0 30px 0;
}

.special-services .service-container {
    display: flex;
    justify-content: space-between;
}

@media(max-width:991px) {
    .special-services .service-container {
        flex-direction: column;
        align-items: center;
    }
}

.special-services .service-container .imgs {
    width: 50%;
    text-align: center;
    position: relative;
}

@media(max-width:991px) {
    .special-services .service-container .imgs {
        width: 100%;
    }
}

.special-services .service-container .imgs .cardholder {
    max-width: 100%;
    width: 255px;
}

@media(max-width:991px) {
    .special-services .service-container .imgs .heart {
        display: block;
        width: 85px;
        margin: 20px auto;
    }
}

@media(min-width:992px) {
    .special-services .service-container .imgs .heart {
        position: absolute;
        top: 5px;
        right: 75px;
    }
}


.special-services .service-container>div:last-child {
    width: 45%;
    text-align: center;
}

@media(max-width:991px) {
    .special-services .service-container>div:last-child {
        width: 100%;
        padding: 0 15px;
    }

}

.special-services .service-container>div:last-child h2:nth-child(1) {
    color: #F79421;
    font-size: 45px;
    font-weight: normal;
}

.special-services .service-container>div:last-child h2:nth-child(2) {
    color: #03426D;
    font-size: 40px;
    font-weight: normal;
    margin: 25px 0 30px 0;
}

@media(max-width:767px) {

    .special-services .service-container>div:last-child h2:nth-child(1),
    .special-services .service-container>div:last-child h2:nth-child(2) {
        font-size: 28px;
    }
}

.special-services .service-container>div:last-child p {
    text-align: center;
    color: #03426D;
    font-size: 23px;
    font-weight: 500;
}

.service-container-2 {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
}

@media(max-width:991px) {
    .special-services .service-container-2 {
        flex-direction: column;
        align-items: center;
    }

    .special-services .service-container-2.reverse {
        flex-direction: column-reverse;
    }
}

@media(min-width:1200px) {
    .g-130 {
        gap: 130px;
    }
}


.service-container-2 .info-service {
    width: 58%;
    text-align: end;
}

@media(max-width:991px) {
    .service-container-2 .info-service {
        width: 100%;
    }
}

.service-container-2 .info-service h3 {
    margin: 26px 0;
    color: #F79421;
    line-height: 1.3em;
    font-size: 36px;
    font-weight: 100;
}

@media(max-width:767px) {
    .service-container-2 .info-service h3 {
        font-size: 26px;
    }
}

.service-container-2 .info-service>p {
    color: #606060;
    line-height: 1.8;
    font-size: 19px;
    font-weight: 100;
    direction: rtl;
    text-align: right;
}

@media(max-width:767px) {
    .service-container-2 .info-service>p {
        font-size: 18px;
    }
}

.service-container-2 .info-service .check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
}

@media(max-width:767px) {
    .service-container-2 .info-service .check {
        gap: 13px;
    }
}

.service-container-2 .info-service .check img {
    width: 20px;
}

.service-container-2 .info-service .check p {
    font-size: 20px;
    font-weight: 800;
}

@media(max-width:767px) {
    .service-container-2 .info-service .check p {
        font-size: 18px;
    }
}

.service-container-2 .imgs {
    width: 40%;
    position: relative;
}

@media(min-width:992px) {
    .service-container-2 .imgs.left {
        text-align: left;
    }

    .service-container-2 .imgs.right {
        text-align: right;
    }
}


@media(max-width:991px) {
    .service-container-2 .imgs {
        width: 100%;
        text-align: end;
    }
}

.service-container-2 .imgs img {
    max-width: 100%;
    width: 250px;
}

.service-container-2 .imgs .impa-shaild-1 {
    width: 31px;
    display: block;
    position: absolute;
    right: 0;
    top: -45px;
}

@media(max-width:991px) {
    .service-container-2 .imgs .impa-shaild-1 {
        right: 0;
        top: -60px;
    }
}

.service-container-2 .imgs .impa-shaild-2 {
    width: 43px;
    display: block;
    position: absolute;
    left: 70px;
    bottom: 0px;
}


.service-container-2 .imgs .impa-shaild-3 {
    width: 37px;
    display: block;
    position: absolute;
    bottom: 0px;
    left: -30px;
}

@media(max-width:991px) {
    .service-container-2 .imgs .impa-shaild-3 {
        left: 0;
    }
}


/* CALL CENTER PAGE***************************************************************************** */


.call-center-contact {
    background-image: url("../imgs/IMPA_call_center_banner.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 130px 0px 130px 0px;
}

.call-center-contact .contact-box {
    min-height: 978px;
    padding: 10px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
}

@media(max-width:767px) {
    .call-center-contact .contact-box {
        min-height: 153px;
        padding: 30px 10px;
    }
}

.call-center-contact .contact-box>div {
    text-align: center;
}

.call-center-contact .contact-box>div .time-img img {
    width: 166px;
}

@media(max-width:767px) {
    .call-center-contact .contact-box>div .time-img img {
        width: 100px;
    }
}

.call-center-contact .contact-box>div .text {
    margin-bottom: 40px;
    padding-top: 54px
}

@media(max-width:767px) {
    .call-center-contact .contact-box>div .text {
        padding-top: 25px
    }
}

.call-center-contact .contact-box>div .text h1 {
    margin-bottom: 40px;
    color: #E55015;
    font-size: 65px;
    font-weight: 100;
}

@media(max-width:767px) {
    .call-center-contact .contact-box>div .text h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }
}

.call-center-contact .contact-box>div .text p {
    color: #E55015;
    font-size: 50px;
}

@media(max-width:767px) {
    .call-center-contact .contact-box>div .text p {
        font-size: 33px;
    }
}

.call-center-contact .contact-box>div .phone img {
    width: 260px;
}

@media(max-width:767px) {
    .call-center-contact .contact-box>div .phone img {
        width: 120px;
    }
}

.call-center-services {
    margin-bottom: 15px;
}

.call-center-services h2 {
    direction: rtl;
    color: white;
    font-size: 30px;
    line-height: 1.6;
    font-weight: 100;
    background-color: #FF8000;
    padding: 30px 15px 50px;
}

@media(max-width:991px) {
    .call-center-services h2 {
        margin-bottom: 30px;
        font-size: 26px;
    }
}

@media(max-width:767px) {
    .call-center-services h2 {
        font-size: 23px;
        font-weight: bold;
        padding: 30px 15px 20px;
    }
}

@media(min-width:1200px) {
    .call-center-services h2 {
        padding: 40px 120px 60px;
    }
}

.call-center-services .container-services {
    background-color: #FF8000;
    padding: 15px;
}

@media(min-width:1200px) {
    .call-center-services .container-services {
        padding: 15px 120px;
    }
}

.call-center-services .call-center-services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.call-center-services .call-center-services-container div {
    flex: 1 0 230px;
    border-radius: 4px;
    color: white;
    font-size: 20px;
    direction: rtl;
    padding: 20px 10px;
}

.call-center-services .call-center-services-container div:not(.img) {
    border: 1px solid white;
}

.call-center-services .call-center-services-container div p {
    color: white;
    line-height: 1.6;
}

.call-center-services .call-center-services-container div img {
    max-width: 100%;
    width: 225px;
    display: block;
    margin: auto;
}

@media(max-width:767px) {
    .call-center-services .call-center-services-container div img {
        width: 300px;

    }

    .call-center-services .call-center-services-container div.img {
        order: 1;
    }
}

.call-center-services .container-services .box {
    display: flex;
    align-items: end;
    border: 1px solid white;
    margin-top: 30px;
    padding: 10px 6px 10px 20px;
    gap: 15px;
}

@media(max-width:767px) {
    .call-center-services .container-services .box {
        flex-direction: column;
    }
}

.call-center-services .container-services .box img {
    width: 270px;
    max-width: 100%;
}

.call-center-services .container-services .box p {
    flex: 1;
    direction: rtl;
    font-size: 20px;
    color: white;
    line-height: 1.6;
}

/* works-space page******************************************************************* */

.works-space {
    padding: 30px 50px;
    margin: auto;
}

@media(max-width:767px) {
    .works-space {
        padding: 30px 20px;
    }
}

@media (min-width:1200px) {
    .works-space {
        width: 1170px;
    }
}

.works-space>h2 {
    color: #00b0f0;
    text-align: center;
    margin-bottom: 60px;
    font-size: 43px;
    font-weight: 600;
}

@media(max-width:767px) {
    .works-space>h2 {
        font-size: 32px;
    }
}

.works-space .part-1 {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media(max-width:767px) {
    .works-space .part-1 {
        flex-direction: column;
        align-items: center;
    }
}

.works-space .part-1>div:not(.img) {
    width: 310px;
    padding: 30px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(40.999999999999986, 171.00000000000006, 226, 0.49019607843137253);
}

@media(max-width:991px) {
    .works-space .part-1>div:not(.img) {
        width: 47%;
    }
}

@media(max-width:767px) {
    .works-space .part-1>div:not(.img) {
        width: 500px;
    }
}

@media(min-width:992px) {
    .works-space .part-1>div.img {
        flex: 1;
    }
}


@media(max-width:991px) {
    .works-space .part-1>div.img {
        width: 100%;
        order: 1;
    }
}

.works-space .part-1>div img {
    max-width: 100%;
    animation: scale-img-2 5s infinite linear alternate;
    transform: scale(1.1);
}

@media(max-width:991px) {
    .works-space .part-1>div img {
        width: 300px;
        display: block;
        margin: auto;
    }
}



@keyframes scale-img-2 {
    0% {
        transform: scale(1.1);
    }

    25% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }


}

.works-space .part>div .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

@media(max-width:991px) {
    .works-space .part>div .title {
        flex-direction: column-reverse;
        gap: 15px;
    }
}

.works-space .part>div .title h2 {
    color: #00B8FF;
    font-size: 35px;
    font-weight: 500;
    text-align: center;
}

@media(max-width:991px) {
    .works-space .part>div .title h2 {
        font-size: 30px;
    }
}

.works-space .part>div .title .elementor-icon {
    width: 46px;
}


.works-space .part>div h3 {
    font-size: 19px;
    line-height: 1.6;
    color: #686868;
    padding-right: 70px;
    font-weight: 100;
}

@media(max-width:991px) {
    .works-space .part>div h3 {
        padding-right: 0;
        text-align: center;
    }
}


.works-space .part-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

@media(max-width:767px) {
    .works-space .part-2 {
        flex-direction: column;
        align-items: center;
    }
}

.works-space .part-2>div {
    width: calc((100% - 40px) / 2);
    max-width: 100%;
    padding: 30px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px rgba(40.999999999999986, 171.00000000000006, 226, 0.49019607843137253);
}

@media(max-width:767px) {
    .works-space .part-2>div {
        width: 500px;
    }
}

/* contact-us PAGE"************************************************* ***************/

.contact-section {
    background-color: white;
    padding: 0 10px;
}

.contact-section h2 {
    color: #00b0f0;
    font-weight: 500;
    text-align: center;
    font-size: 40px;
    padding: 25px 0px;
}

@media(max-width:767px) {
    .contact-section h2 {
        font-size: 32px;
    }
}

.contact-section .title {
    background-color: #EEEEEE;
    padding: 30px 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;

}

@media(max-width:991px) {
    .contact-section .title {
        padding: 30px;
        flex-direction: column-reverse;
        align-items: end;
    }
}

.contact-section .title p {
    color: #FF6700;
    font-size: 24px;
    line-height: 1.6;
    direction: rtl;
}

.contact-section .form-container {
    background-color: #EEEEEE;
    margin-bottom: 20px;
}

@media(min-width:992px) {
    .contact-section .form-container {
        padding: 30px 60px;
    }
}

@media(min-width:1200px) {
    .contact-section .form-container {
        padding: 30px 180px;
    }
}

@media(max-width:991px) {
    .contact-section .form-container {
        padding: 30px;
    }
}

.contact-section .form-container>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

@media(max-width:767px) {
    .contact-section .form-container>div {
        flex-direction: column-reverse;
        align-items: end;
    }
}

.contact-section .form-container>div p {
    color: #FF6700;
    font-size: 24px;
    line-height: 1.6;
    direction: rtl;
}

.contact-section form>div {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

@media(max-width:767px) {
    .contact-section form>div {
        flex-direction: column-reverse;
    }
}

.contact-section form>div div {
    flex: 1;
}

.contact-section form>div div input,
.contact-section form>div div select,
.contact-section form>div div textarea {
    display: block;
    width: 100%;
    direction: rtl;
    padding: 15px 15px;
    border: none;
    border-radius: 6px;
    transition: 0.3s;
    font-size: 18px;
    color: #FF6700;
}

.contact-section form>div div input::placeholder,
.contact-section form>div div select::placeholder,
.contact-section form>div div textarea::placeholder {
    color: #ff6700ab;
}

.contact-section form>div div input:focus,
.contact-section form>div div select:focus,
.contact-section form>div div textarea:focus {
    outline: none;
    box-shadow: 0px 0px 5px 0px rgba(255, 102.99999999999997, 0, 0.47);
}

.contact-section form>div div textarea {
    min-height: 100px;
}

.contact-section form>div div select option {
    padding: 20px !important;
}

.contact-section form button {
    background-color: #FF6700;
    border-radius: 7px 7px 7px 7px;
    padding: 10px 30px 10px 10px;
    min-height: 59px;
    gap: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: whitesmoke;
    border: none;
    width: 180px;
    cursor: pointer;
    position: relative;
    margin: auto;
}

.contact-section form button .icon {
    position: relative;
    z-index: 20;
}

.contact-section form button span {
    font-size: 18px;
    position: relative;
    z-index: 22;
}

.contact-section form button::after {
    content: '';
    position: absolute;
    background: rgb(255, 124, 26);
    width: 200px;
    height: 100%;
    top: 0;
    left: -100px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform .8s ease;
}

@media(max-width:767px) {
    .contact-section form button::after {
        width: 160px;
        left: -60px;
    }
}

.contact-section .form-2 button::after {
    left: 0;
    width: 200px;
}

.contact-section form button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* medical network page **************************************************************** */

.medical-network-wide {
    background-image: url("../imgs/IMPA_medical_network_banner-e1704717355280.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    margin: auto;
}

@media (min-width:1200px) {
    .medical-network-wide {
        width: 1170px;
    }
}

@media (max-width:767px) {
    .medical-network-wide {
        flex-direction: column-reverse;
    }
}

.medical-network-wide .side-1 {
    width: 63%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width:767px) {
    .medical-network-wide .side-1 {
        width: 100%;
        padding: 70px 10px;
    }
}

.medical-network-wide .side-1>div {
    max-width: 100%;
}

.medical-network-wide .side-1 a {
    text-align: center;
    padding: 20px 0;
    background-color: #29abe2;
    color: white;
    width: 450px;
    max-width: 100%;
    font-size: 30px;
    display: block;
    margin-bottom: 25px;
}

@media (max-width:767px) {
    .medical-network-wide .side-1 a {
        font-size: 23px;
    }
}

.medical-network-wide .side-2 {
    background-color: #EC5316D1;
    width: 37%;
    padding: 167px 0 850px 0;
}

@media (max-width:767px) {
    .medical-network-wide .side-2 {
        width: 100%;
        padding: 167px 0 400px 0;
    }
}

.medical-network-wide .side-2 h5 {
    color: #FFFFFF;
    font-size: 70px;
    width: 150px;
    margin: auto;
    font-weight: 100;
    margin-bottom: 70px;
}

.medical-network-wide .side-2 p span {
    display: block;
    color: #FFFFFF;
    font-size: 50px;
    text-align: center;
    font-weight: 100;
}

@media (max-width:767px) {
    .medical-network-wide .side-2 p span {
        font-size: 40px;
    }
}

.medical {
    display: flex;
    justify-content: space-between;
    background-color: white;
    margin: auto;
    padding-bottom: 10px;
    align-items: center;
}

@media (min-width:992px) {
    .medical {
        /* width: 970px; */
        align-items: stretch;
    }
}

@media (min-width:1200px) {
    .medical {
        width: 1170px;
    }
}

@media (max-width:767px) {
    .medical {
        flex-direction: column-reverse;
    }
}


.medical .left-side {
    width: 56%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px 0;
}

@media (max-width:767px) {
    .medical .left-side {
        width: 100%;
        padding: 35px 0 15px;
    }
}

.medical .left-side div:nth-child(1) {
    width: 58%;
}

@media (max-width:767px) {
    .medical .left-side div:nth-child(1) {
        width: 230px;
        max-width: 100%;
    }
}

.medical .left-side div:nth-child(1) h2 {
    color: #E55015;
    line-height: 1.3em;
    font-weight: 600;
    font-size: 44px;
    text-align: center;
}

@media (max-width:991px) {
    .medical .left-side div:nth-child(1) h2 {
        font-size: 32px;
    }
}

.medical .left-side div:nth-child(2) {
    width: 100%;
    margin: 35px 0 50px;
}

@media (max-width:767px) {
    .medical .left-side div:nth-child(2) {
        padding: 0 30px;
    }
}

.medical .left-side div img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.medical .left-side div:nth-child(3) {
    width: 350px;
    max-width: 100%;
}

@media(max-width:991px) {
    .medical .left-side div:nth-child(3) {
        width: 323px;
    }
}

.medical .left-side div:nth-child(3) h2 {
    color: #59C5EF;
    font-size: 30px;
    line-height: 47px;
    text-align: center;
}

.medical .right-side {
    background-color: #EC5316D1;
    width: 37%;
    padding: 20px;
}

@media(max-width:767px) {
    .medical .right-side {
        width: 100%;
    }
}

.medical .right-side h2 {
    margin-bottom: 24px;
    color: #FFFFFF;
    font-weight: normal;
    line-height: 62px;
    font-size: 40px;
    text-align: center;
}

@media(max-width:991px) {
    .medical .right-side h2 {
        font-size: 32px;
    }
}

@media(max-width:767px) {
    .medical .right-side h2 {
        font-size: 28px;
    }
}

.medical .right-side p {
    text-align: center;
    color: #FFFFFF;
    font-size: 23px;
    font-weight: normal;
    line-height: 29px;
    margin: 0 auto 30px;
    width: 300px;
    max-width: 100%;
}


@media(max-width:767px) {
    .medical .right-side p {
        font-size: 22px;
    }
}

.medical-imgs {
    background-color: #008EC2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    min-height: 112px;
    padding: 10px;
}

.medical-imgs div {
    width: 75px;
}

.medical-imgs div img {
    max-width: 100%;
}

.impa-map {
    background-color: #E5E5E5;
    padding: 70px 5px;
    display: flex;
    gap: 30px;
}

@media(max-width:991px) {
    .impa-map {
        flex-direction: column-reverse;
    }
}

.impa-map .left-section {
    width: 58%;
}

@media(max-width:991px) {
    .impa-map .left-section {
        width: 75%;
        margin: auto;
    }
}

@media(max-width:767px) {
    .impa-map .left-section {
        width: 100%;
    }
}

.impa-map .left-section>div {
    background-color: white;
    margin-bottom: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 130px;
    border-radius: 10px;
}

@media(min-width:992px) {
    .impa-map .left-section>div {
        min-height: 90px;
    }
}

@media(min-width:992px) {
    .impa-map .left-section>div div {
        width: 200px;
    }
}


.impa-map .left-section>div img {}

.impa-map .left-section>div p {
    text-align: right;
    color: #00579D;
    font-size: 22px;
    width: 192px;
    max-width: 100%;
    line-height: 1.6;
}

@media(min-width:992px) {
    .impa-map .left-section>div p {
        width: 40%;

    }
}

.impa-map .right-section {
    width: 60%;
    position: relative;
}

@media(max-width:991px) {
    .impa-map .right-section {
        width: 100%;

    }
}

.impa-map .right-section img {
    max-width: 100%;
}

@media(max-width:991px) {
    .impa-map .right-section img {
        width: 600px;
        display: block;
        margin: auto;
    }
}

@media(min-width:992px) {
    .impa-map .right-section img {
        position: absolute;
        bottom: -115px;
    }
}


.medical-country {
    padding: 70px 0;
    position: relative;
}

.medical-country h2 {
    color: #FF8000;
    font-size: 40px;
    text-align: center;
    margin-bottom: 200px;
}

@media(max-width:767px) {
    .medical-country h2 {
        margin-bottom: 100px;
        font-size: 32px;
    }
}

.medical-country img {
    display: block;
    margin: auto;
    max-width: 100%;
}

@media(max-width:991px) {
    .medical-country img {
        width: 825px;
    }
}

@media(max-width:767px) {
    .medical-country img {
        width: 600px;
    }
}

.medical-country p {
    text-align: right;
    color: #FF8000;
    font-size: 32px;
    max-width: 100%;
    line-height: 1.6;
    width: 275px;
    margin-left: auto;
    padding-right: 40px;
}

@media(min-width:768px) {
    .medical-country p {
        position: absolute;
        bottom: 165px;
        padding-right: 0;
        right: 75px;
        padding-right: 0;
    }
}

@media(min-width:991px) {
    .medical-country p {
        right: 120px;
        bottom: 165px;
        width: 350px;
    }
}


/* about us page*************************************************** *******/

.about-us-1 {
    background-color: #F5F5F5;
    background-image: url(https://impa-tpa.com/wp-content/uploads/2023/11/Online-patient-testimonial-photo-scaled-2.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    min-height: 650px;
    position: relative;
}

.about-us-1>div {
    position: absolute;
    right: 55px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

@media(max-width:767px) {
    .about-us-1>div {
        right: 15px;
    }
}

.about-us-1>div img {
    width: 300px;
    height: 141px;
    max-width: 100%;
}

.about-us-1>div h2 {
    line-height: 1.3em;
    color: #E55015;
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    margin-bottom: 9px;
}

@media(max-width:767px) {
    .about-us-1>div h2 {
        font-size: 30px;
    }
}

.about-us-2 {
    background-color: #ffffff;
    position: relative;
    top: -40px;
}

.about-us-2 .container-title {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width:768px) {
    .about-us-2 .container-title {
        position: relative;
        top: -40px;
    }
}

@media(max-width:767px) {
    .about-us-2 .container-title {
        flex-direction: column-reverse;
        padding-top: 60px;
    }
}

.about-us-2 .container-title .left-side {
    padding: 85px 50px 85px 75px;
    background-color: #E5E5E5;
    width: 600px;
    max-width: 100%;
}

@media(max-width:767px) {
    .about-us-2 .container-title .left-side {
        width: 100%;
        padding: 20px;

    }
}

.about-us-2 .container-title .left-side p {
    text-align: right;
    color: #000000;
    font-size: 18px;
    line-height: 1.9;
    direction: rtl;
}

@media(max-width:767px) {
    .about-us-2 .container-title .left-side p {
        width: 275px;
        text-align: center;
        margin: auto;
        max-width: 100%;

    }
}

.about-us-2 .container-title .left-side p:first-child {
    margin-bottom: 50px;
}

.about-us-2 .container-title .right-side {
    background-color: #E55015;
    width: 370px;
    padding: 30px 0;
}

@media(min-width:768px) {
    .about-us-2 .container-title .right-side {
        position: relative;
        left: -40px;
        top: 15px;

    }
}

@media(max-width:767px) {
    .about-us-2 .container-title .right-side {
        width: 100%;

    }
}


.about-us-2 .container-title .right-side p {
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.about-us-2 .container-title .right-side p:first-child {
    font-size: 22px;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.about-us-2 .container-title .right-side p:last-child {
    font-size: 30px;
    line-height: 1.6;
    padding-bottom: 20px;
}

@media(max-width:767px) {
    .about-us-2 .container-title .right-side p:last-child {
        font-size: 26px;
    }
}

.about-us-2>div .right-side p::before {
    position: absolute;
    content: "";
    width: 140px;
    height: 2px;
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.medical-portfolio {
    margin-top: -40px;
    background-color: white;
}

.medical-portfolio .impa-logo-about {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
}

@media(max-width:767px) {
    .medical-portfolio .impa-logo-about {
        padding-top: 60px;
    }
}

.medical-portfolio .impa-logo-about img {}

.medical-portfolio .title {
    background-color: #FF7C1A;
    padding: 50px;
    width: 98%;
    margin: auto;
}

@media (min-width:1200px) {
    .medical-portfolio .title {
        width: 90%;
        padding: 60px 90px;
    }
}

.medical-portfolio .title h2 {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 300;
    line-height: 44px;
    direction: rtl;
}

@media(max-width:767px) {
    .medical-portfolio .title h2 {
        font-size: 22px;
    }
}

.impa-feature {
    display: flex;
}

@media(max-width:767px) {
    .impa-feature {
        flex-direction: column-reverse;
    }
}

.impa-feature .left {
    width: 50%;
    padding: 60px 100px;
    background-color: #E55015;
}

@media(max-width:991px) {
    .impa-feature .left {
        padding: 60px;

    }
}

@media(max-width:767px) {
    .impa-feature .left {
        padding: 60px 10px;
        width: 100%;
    }
}

.impa-feature .left p {
    text-align: right;
    color: #FFFFFF;
    direction: rtl;
    font-size: 25px;
    line-height: 1.8;
}

@media(max-width:767px) {
    .impa-feature .left p {
        font-size: 22px;
    }
}

.impa-feature .right {
    width: 50%;
}

@media(max-width:767px) {
    .impa-feature .right {
        width: 455px;
        max-width: 100%;
        margin: auto;
    }
}

.impa-feature .right img {
    max-width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

@media (min-width:1200px) {
    .impa-feature .right img {
        height: 100%;
    }
}

.about-mission {
    display: flex;
    align-items: center;
    background-color: #E5E5E5;
}

@media(max-width:767px) {
    .about-mission {
        flex-direction: column-reverse;
    }
}

.about-mission>div {
    padding: 30px;
}

.about-mission div img {
    max-width: 100%;
    height: 777px;
    object-fit: cover;
    object-position: top center;
    width: 100%;
}

.about-mission .mission-container {
    width: 25%;
}

@media(max-width:767px) {
    .about-mission .mission-container {
        width: 550px;
        max-width: 100%;
    }
}

.about-mission .mission-container div {
    position: relative;
    padding: 20px 0;
}

.about-mission .mission-container div::before {
    position: absolute;
    content: "";
    width: 172px;
    height: 2px;
    right: 0;
    background-color: #F7931E;
    bottom: 0;
}

.about-mission .mission-container div h2 {
    font-size: 50px;
    font-weight: 100;
    direction: rtl;
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .about-mission .mission-container div h2 {
        font-size: 40px;
    }
}

.about-mission .mission-container div p {
    color: #636363;
    direction: rtl;
    font-size: 21px;
    font-weight: lighter;
    line-height: 1.6;
}

@media(max-width:767px) {
    .about-mission .mission-container div p {
        font-size: 20px;
    }
}

.impa-team {
    min-height: 800px;
    display: flex;
    justify-content: end;
    background-color: #F5F5F5;
    align-items: center;
}

.impa-team div {
    background-color: #FFFFFFA1;
    width: 535px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 136px;
}

@media (min-width:1200px) {
    .impa-team div {
        position: relative;
        right: 100px;
    }
}

@media (max-width:767px) {
    .impa-team div {
        width: 100%;
        padding: 20px;
    }
}

.impa-team div img {
    width: 250px;
}

@media (max-width:767px) {
    .impa-team div img {
        width: 195px;
    }
}

.impa-team div p {
    text-align: right;
    color: #E55015;
    font-size: 29px;
    line-height: 43px;
}

@media (max-width:767px) {
    .impa-team div p {
        width: 330px;
        max-width: 100%;
        font-size: 23px;
    }
}


/* E-TPA PAGE****************************************************************************** */

.e-tpa-landing {
    background-color: #F5F5F5;
    background-image: url(https://impa-tpa.com/wp-content/uploads/2023/12/impa_etpa_banner_1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.e-tpa-landing div {
    margin-top: 200px;
}

.e-tpa-landing div h2 {
    color: #E55015;
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3em;
}

@media(max-width:767px) {
    .e-tpa-landing div h2 {
        font-size: 25px;
        padding: 0 15px;
        text-align: center;
    }
}

.about-tpa {
    background-color: #E55015;
    min-height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

@media(max-width:767px) {
    .about-tpa {
        flex-direction: column-reverse;
    }
}

@media(max-width:767px) {
    .about-tpa-1 {
        padding-bottom: 30px;
    }
}

@media(max-width:767px) {
    .about-tpa-2 {
        padding: 30px 0;
        margin-top: 75px;
    }
}

.about-tpa .description {
    width: 66%;
    direction: rtl;
}

@media(max-width:767px) {
    .about-tpa .description {
        width: 100%;
        padding: 0 20px;
    }
}

@media (min-width:1200px) {
    .about-tpa .description {
        width: 60%;
    }
}

.about-tpa .description p {
    text-align: right;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.7;
}

@media(max-width:767px) {
    .about-tpa .description p {
        font-size: 18px;
    }
}

.about-tpa .title-1 {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -50px;
}

.about-tpa .title-2 {
    width: 33%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media(min-width:768px) {
    .about-tpa .title-2 {
        position: relative;
        top: -50px;
        right: -40px;
    }
}

@media(max-width:767px) {
    .about-tpa .title-2 {
        padding: 40px 50px;
    }
}

@media(max-width:767px) {
    .about-tpa .title {
        width: 100%;
    }
}

@media (min-width:1200px) {
    .about-tpa .title {
        width: 28%;
    }
}

.about-tpa .title img {
    width: 150px;
    max-width: 100%;
}

@media(max-width:767px) {
    .about-tpa .title-1 img {
        width: 81px;
    }
}

@media(max-width:767px) {
    .about-tpa .title-2 img {
        width: 51px;
    }
}

.about-tpa .title-2 div {
    text-align: right;
}

@media(max-width:767px) {
    .about-tpa .title-2 div {
        margin: auto;
    }
}

.about-tpa .title h2 {
    color: white;
    font-size: 21px;
    margin: 27px 0 10px 0;
    font-weight: 800;
}

@media(max-width:767px) {
    .about-tpa .title h2 {
        font-size: 18px;
    }
}

.about-tpa .title p {
    color: white;
    font-size: 19px;
}

@media(max-width:767px) {
    .about-tpa .title p {
        font-size: 17px;
    }
}


.about-etpa {
    background-image: url(https://impa-tpa.com/wp-content/uploads/2023/12/IMPA-ETPA_banner_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f4f4f473;
    overflow: hidden;
}

.about-etpa>div {
    display: flex;
}

@media(max-width:767px) {
    .about-etpa>div {
        flex-direction: column-reverse;
    }
}

.about-etpa .side-1 {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    margin-top: -100px;
}

@media(max-width:767px) {
    .about-etpa .side-1 {
        width: 100%;
        align-items: center;
        margin-top: 0px;
        padding-top: 200px;
    }
}

.about-etpa .side-1 .img {
    width: 100%;
    text-align: center;
}

.about-etpa .side-1 img {
    margin-bottom: 80px;

}

@media(max-width:767px) {
    .about-etpa .side-1 img {
        margin-bottom: 70px;
        width: 150px;

    }
}

.about-etpa .side-1 .text {
    width: 400px;
    padding: 0 40px;
    max-width: 100%;
}

@media(max-width:767px) {
    .about-etpa .side-1 .text {
        width: 240px;
        padding: 0;
    }
}

.about-etpa .side-1 .text p {
    color: #606060;
    font-size: 30px;
    font-weight: normal;
    line-height: 39px;
    margin-bottom: 1.6em;
    direction: rtl;
    text-align: right;
}

@media(max-width:767px) {
    .about-etpa .side-1 .text p {
        font-size: 19px;
        text-align: center;
    }
}

.about-etpa .side-2 {
    padding: 40px 40px 40px 0;
    width: 55%;

}

@media(min-width:1200px) {
    .about-etpa .side-2 {
        width: 47%;

    }
}

@media(max-width:767px) {
    .about-etpa .side-2 {
        width: 95%;
        padding: 50px 20px;

    }
}

@media(max-width:767px) {
    .about-etpa .side-2 img {
        width: 115%;

    }
}

.about-etpa .side-2>div {
    min-height: 1016px;
    background-color: #41125FE0;
    padding-top: 197px;
}

@media(max-width:767px) {
    .about-etpa .side-2>div {
        min-height: 666px;
    }
}


.about-etpa .side-2>div h2 {
    color: #FFFFFF;
    direction: rtl;
    font-size: 42px;
    line-height: 54px;
    margin-top: 150px;
    padding: 0px 70px;
    text-align: right;
}

@media(max-width:767px) {
    .about-etpa .side-2>div h2 {
        font-size: 26px;
        width: 235px;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }
}

.data-mining {
    background-color: #F4F4F4;
    display: flex;
}

@media(max-width:767px) {
    .data-mining {
        flex-direction: column-reverse;
        align-items: center;
    }
}

.data-mining .side-1 {
    width: 45%;
}

@media(max-width:767px) {
    .data-mining .side-1 {
        width: 100%;
    }
}

.data-mining h2 {
    color: #8844A5;
    line-height: 1.3em;
    font-size: 37px;
    font-weight: 100;
    text-align: center;
    padding: 90px 40px 0;
}

@media(min-width:1200px) {
    .data-mining h2 {
        width: 495px;
        margin-left: auto;

    }
}

@media(max-width:767px) {
    .data-mining h2 {
        padding: 10px;
        font-size: 19px;
    }
}

.data-mining .side-2 {
    width: 55%;
    position: relative;
    top: -40px;
    padding-right: 40px;
}

@media(min-width:1200px) {
    .data-mining .side-2 {
        width: 47%;

    }
}

@media(max-width:767px) {
    .data-mining .side-2 {
        width: 95%;
        padding: 0 20px;
        top: 0;
    }
}

.data-mining .side-2 div {
    background-color: #41125FE0;
    padding-bottom: 20px;
}

@media(max-width:767px) {
    .data-mining .side-2 div {
        padding: 15px 0 100px 0;
    }
}

.data-mining .side-2 p {
    padding: 0 60px;
    direction: rtl;
    line-height: 1.7;
    font-size: 20px;
    color: white;
}

.data-mining .side-2 p:not(:last-child) {
    margin-bottom: 40px;
}

@media(max-width:767px) {
    .data-mining .side-2 p {
        font-size: 18px;
        text-align: center;
        padding: 0 20px;
    }
}

.impa-solution {
    background-color: #FFFFFF;
}

.impa-solution .impa-etpa {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 30px 0;
    background-color: #FFFFFF;
}

@media(max-width:767px) {
    .impa-solution .impa-etpa {
        flex-direction: column-reverse;
        padding: 30px 20px 0;
    }
}

.impa-solution .impa-etpa p {
    color: #606060;
    direction: rtl;
    font-size: 21px;
    line-height: 1.6;
}

@media(max-width:767px) {
    .impa-solution .impa-etpa p {
        font-size: 18px;
    }
}

.impa-solution .impa-etpa img {
    width: 640px;
    max-width: 100%;
}

@media(min-width:1200px) {
    .impa-solution .impa-etpa img {
        width: 60%;
    }
}

@media(max-width:991px) {
    .impa-solution .impa-etpa img {
        width: 50%;
        height: 175px;
        object-fit: cover;
    }
}

@media(max-width:767px) {
    .impa-solution .impa-etpa img {
        width: 100%;
        height: auto;
    }
}

.solution-container {
    display: flex;
    gap: 15px;
    padding: 20px;
    flex-wrap: wrap;
}

@media (min-width:1200px) {
    .solution-container {
        width: 1170px;
        margin: auto;
    }
}

.solution-container div {
    background-color: #491D66;
    padding: 30px 30px 0;
    min-height: 421px;
    width: calc((100% - 45px) / 4);
}

@media (max-width:991px) {
    .solution-container div {
        width: calc((100% - 15px) / 2);
    }
}

@media (max-width:767px) {
    .solution-container div {
        width: 100%;
    }
}

.solution-container div p {
    color: #FFFFFF;
    text-align: center;
    font-size: 20px;
    line-height: 38px;
    direction: rtl;
}

.solution-container div img {
    width: 58px;
    margin: 0px auto 30px;
    display: block;
}

@media(max-width:991px) {
    .solution-container div img {
        width: 85px;
    }
}

.tools-container {
    background-color: #FFFFFF;
}

.tools {
    display: flex;
    gap: 20px;
    padding-bottom: 15px;
}

@media (min-width:1200px) {
    .tools {
        width: 1170px;
        margin: auto;
    }
}

@media (max-width:767px) {
    .tools {
        padding: 15px;
        flex-direction: column-reverse;
    }
}

.tools .box {
    background-color: #FFFFFF;
    border: 2px solid #F7931E;
    padding: 20px 15px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width:767px) {
    .tools .box {
        width: 100%;
    }
}


@media (min-width:992px) {
    .tools .box div {
        height: 414px;
    }
}

.tools .box div img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

@media (max-width:767px) {
    .tools .box div img {
        width: 500px;
        display: block;
        margin: auto;
    }
}

.tools .box h2 {
    color: #4D4D4D;
    direction: rtl;
    font-size: 40px;
    margin-right: 16px;
}

@media (max-width:767px) {
    .tools .box h2 {
        font-size: 28px;
    }
}

.tools .box p {
    color: #606060;
    direction: rtl;
    font-size: 22px;
    margin-right: 16px;
    margin-bottom: 20px;
}

.data-imgs-risk .data {
    transition: all 0.4s linear;
    position: relative;
    left: auto;
    top: auto;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
}

.data-imgs-risk .data.active {
    max-height: 800px;
}

.data-imgs-risk .data>div {
    padding: 30px;
}

.data-imgs-risk .data img {
    max-width: 100%;
    width: 100%;
}



/* IMPACARE PAGE******************************************************************************* */

.video-container {
    min-height: 187px;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}

@media(max-width:767px) {
    .video-container {
        flex-direction: column-reverse;
    }
}

.video-container .video {
    width: 50%;
    background-color: #6495ed;
}

@media(max-width:767px) {
    .video-container .video {
        width: 100%;
    }
}

.video-container.video video {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.video-container .text {
    background-image: url("");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 49%;
    padding: 20px 30px 0 0;
}

@media(min-width:1200px) {
    .video-container .text {
        padding: 50px 60px 20px 0;
    }
}

@media(max-width:767px) {
    .video-container .text {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.video-container .text h2 {
    color: #E55015;
    font-size: 44px;
    width: 115px;
    max-width: 100%;
    font-weight: 100;
    margin-left: auto;
    text-align: right;
    line-height: 1.2;
}

@media(max-width:767px) {
    .video-container .text h2 {
        font-size: 34px;
        margin: auto;
        width: 153px;
    }
}

.impa-app-features {
    background-color: #f5f5f5;
    padding: 30px;
}

@media(min-width:1200px) {
    .impa-app-features {
        padding: 30px 50px;
    }
}

.impa-app-features .features-container {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .impa-app-features .features-container {
        flex-direction: column-reverse;
    }
}

.impa-app-features .features-container>div {
    direction: rtl;
    width: calc(100% / 3);
    border-radius: 6px;
}

@media(max-width:767px) {
    .impa-app-features .features-container>div {
        width: 100%;
    }
}

.impa-app-features .features-container>div:not(.about-app) {
    background-color: #ffffff;
    box-shadow: 0px 10px 35px -20px rgba(0, 0, 0, 0.16);
    padding: 40px;
}

@media(max-width:767px) {
    .impa-app-features .features-container>div:not(.about-app) {
        padding: 30px;
    }
}

.impa-app-features .features-container .about-app {
    padding: 30px;
}

@media(max-width:767px) {
    .impa-app-features .features-container .about-app {
        padding: 20px;
    }
}


.impa-app-features .features-container>div.w-50 {
    width: calc(100% / 2);
}

@media(max-width:767px) {
    .impa-app-features .features-container>div.w-50 {
        width: 100%
    }
}

.impa-app-features .features-container>div span {
    display: block;
    width: 60px;
    margin-bottom: 25px;
}

@media(max-width:767px) {
    .impa-app-features .features-container>div span {
        width: 40px;
    }
}

.impa-app-features .features-container>div h4 {
    color: #00b0f0;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 10px;
}

@media(max-width:767px) {
    .impa-app-features .features-container>div h4 {
        font-size: 20px;
    }
}

.impa-app-features .features-container>div p {
    color: #636363;
    direction: rtl;
    font-size: 20px;
    line-height: 29px;
    font-weight: normal;
}

.impa-app-features .features-container>div p a {
    display: inline-block;
    width: 9px;
    vertical-align: middle;
    margin-right: 11px;
    margin-bottom: -4px;
}

.impa-app-features .features-container .about-app .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

@media(min-width:1200px) {
    .impa-app-features .features-container .about-app .title {
        padding: 0 15px 0 35px;
    }
}

@media(max-width:767px) {
    .impa-app-features .features-container .about-app .title {
        flex-direction: column;
        align-items: flex-start;
    }
}

.impa-app-features .features-container .about-app .title p {
    color: #ff8000;
    margin-bottom: 10px;
}

.impa-app-features .features-container .about-app .title h2 {
    color: #00b0f0;
    font-size: 45px;
}

@media(max-width:767px) {
    .impa-app-features .features-container .about-app .title h2 {
        font-size: 32px;
    }
}

.impa-app-features .features-container .about-app .title img {
    width: 61px;
    max-width: 100%;
}

@media(min-width:1200px) {
    .impa-app-features .features-container .about-app .title img {
        width: 80px;
    }
}

@media(max-width:767px) {
    .impa-app-features .features-container .about-app .title img {
        width: 346px;
    }
}

.impa-app-features .features-container .about-app p {
    margin-bottom: 30px;
}


/* IMPACARD PAGE***************************************************************************** */
.impa-card {
    background-color: #F5F5F5;
    padding: 80px 0;
    display: flex;
}

@media(max-width:767px) {
    .impa-card {
        flex-direction: column-reverse;
        padding: 80px 30px;
    }
}

.impa-card .box {
    flex: 1;
    position: relative;
}

.impa-card .box-1 {
    padding: 20PX 40px 20px 20px;
}

@media(max-width:991px) {
    .impa-card .box-1 {
        padding: 20px;
    }
}

@media(min-width:1200px) {
    .impa-card .box-1 {
        padding: 20PX 40px 20px 100px;
    }
}


.impa-card .box h2 {
    color: #00b0f0;
    font-size: 35px;
    direction: rtl;
    margin-bottom: 15px;
}

.impa-card .box p {
    margin-bottom: 50px;
    color: #636363;
    font-size: 20px;
    line-height: 29px;
    direction: rtl;
}

.impa-card .box-2 div {
    width: 270px;
    max-width: 100%;
    border-radius: 75px 0;
    overflow: hidden;
}

@media(min-width:768px) {
    .impa-card .box-2 div {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media(max-width:991px) {
    .impa-card .box-2 div {
        width: 220px;
    }
}

@media(max-width:767px) {
    .impa-card .box-2 div {
        margin-left: auto;
    }
}

.impa-card .box img {
    max-width: 100%;
}

@media(min-width:768px) {
    .impa-card .box-3 div {
        position: absolute;
        bottom: 0;
    }
}


.impa-card .box h3 {
    color: #00b0f0;
    font-size: 35px;
    font-weight: 100;
    margin-bottom: 20px;
    direction: rtl;
}

@media(max-width:991px) {
    .impa-card .box h3 {
        font-size: 26px;
    }
}

.impa-card .box li {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}

.impa-card .box li .text {
    color: #636363;
    font-size: 18px;
}

.impa-card .box li .elementor-icon {
    display: block;
    width: 15px;
}

.impa-card .box li .elementor-icon svg {
    fill: #F18700;
}

.our-story {
    background-color: #fafafa;
    padding: 150px 0 200px;
    display: flex;
}

@media(max-width:991px) {
    .our-story {
        flex-direction: column-reverse;
        padding: 40px 0 200px;
    }
}

.our-story .box {
    padding: 80px 70px 80px 80px;
    margin: 0 30px;
    background-color: #ffffff;
    box-shadow: 0px 15px 30px 5px rgba(0, 0, 0, 0.06);
}

@media(max-width:767px) {
    .our-story .box {
        padding: 50px 20px 30px 20px;
    }
}

.our-story .box>div {
    margin-bottom: 50px;
}

.our-story .box div:nth-child(1) p {
    font-size: 16pt;
}

.our-story .box div:nth-child(2) p {
    font-size: 13pt;
    text-align: right;
    line-height: 1.7;
}

@media(max-width:767px) {

    .our-story .box div:nth-child(2) p,
    .our-story .box div:nth-child(1) p {
        text-align: center;
    }
}

.our-story .box h2 {
    color: #00b0f0;
    font-weight: 600;
    line-height: 1.3em;
    font-size: 41px;
    margin-bottom: 8px;
}

@media(max-width:767px) {
    .our-story .box h2 {
        text-align: center;
        font-size: 35px;
    }
}

.our-story .box p {
    color: rgb(127, 127, 127);
}

.our-story .box p span {
    color: rgb(246, 170, 62);
}

.our-story .box p span.bold {
    font-weight: bold;
}

.our-story .imgs-container {
    padding: 10px;
    display: flex;
}

@media(max-width:991px) {
    .our-story .imgs-container {
        min-height: 700px;
    }
}

@media(max-width:767px) {
    .our-story .imgs-container {
        flex-direction: column-reverse;
    }

    .our-story .imgs-container .box-img {
        margin-bottom: 70px;
    }
}

@media(min-width:768px) {
    .our-story .imgs-container {
        margin-right: 50px;
    }

    .our-story .imgs-container .box-img:nth-child(1) {
        padding: 0 0 0 40px;
    }

    .our-story .imgs-container .box-img:nth-child(1)>div {
        position: relative;
        bottom: -280px;
    }

    .our-story .imgs-container .box-img:nth-child(2)>div {
        position: relative;
        bottom: -90px;
    }
}

@media(min-width:1200px) {
    .our-story .imgs-container {
        margin-right: 100px;
    }

    .our-story .imgs-container .box-img:nth-child(2)>div {
        bottom: -70px;
    }
}

.our-story .imgs-container>div h2 {
    color: rgb(127, 127, 127);
    font-size: 17px;
    font-weight: 100;
    text-align: center;
    margin-top: 20px;
}

.our-story .imgs-container img {
    max-width: 100%;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
}