* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Almarai", sans-serif;
    font-weight: 400;
    text-decoration: none;
    list-style: none;
}
:root {
    --whait-color: #fff;
    --landing-background: linear-gradient(
        2.8deg,
        rgba(180, 18, 24, 0.8) 15.71%,
        rgba(115, 115, 115, 0) 89.15%
    );
    --about-background: linear-gradient(
        282.82deg,
        #b41218 4.66%,
        #4e080a 98.32%
    );
    --anouther-color: #001a72;
    --border-footer-source: linear-gradient(
        180deg,
        rgba(0, 26, 114, 0.17) 0%,
        rgba(0, 73, 115, 0.17) 100%
    );
    --land-text-color: #dcabad;
    --p-color: #666;
    --h1-color: #333;
    --link-color: #b41218;
    --a-color: #000;
    --open--transtion: 0.3s ease;
}
.container {
    margin: 0 auto;
    width: 90%;
}
html {
    scroll-behavior: smooth;
}
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    color: var(--anouther-color);
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
}
.loader .fa-gear {
    font-size: 150px;
    color: var(--whait-color);
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
    opacity: 0.3;
}
.loader .logoss {
    width: 150px;
    height: auto;
    animation: logo-bounce 1s ease infinite;
    position: absolute;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes logo-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.headers {
    background: var(--whait-color);
    height: 100px;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999999;
}
@media (max-width: 991px) {
    .headers {
        padding: 0.5rem 2rem;
    }
}
.phone-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fa-bars {
    display: none;
}
.phone-mobile img {
    display: none;
}
@media (max-width: 991px) {
    .fa-bars {
        font-size: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .phone-mobile img {
        display: block;
    }
}
.lang-chang {
    position: relative;
    display: inline-block;
    padding: 0.5rem;
    transition: background-color 0.3s ease;
}
.underlist {
    position: absolute;
    bottom: -100px;
    left: 0;
    display: none;
    background-color: var(--land-text-color);
    padding: 2rem 2rem 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1;
    border-radius: 10px;
    max-width: 100%;
}
@media (max-width: 991px) {
    .underlist {
        background-color: transparent;
    }
}
.underlist li {
    margin: 1rem 0;
}
.underlist li a {
    font-size: 15px;
    transition: var(--open--transtion);
}
.underlist li a:hover {
    color: var(--link-color);
    font-size: 17px;
}
.lang-chang.active .underlist {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.lang-chang b:hover {
    color: var(--link-color);
}
#chevron-icon,
.lang-chang b,
.lang-chang i {
    transition: transform 0.3s ease;
    z-index: 2;
    transition: var(--open--transtion);
}
.lang-chang.active #chevron-icon {
    transform: translateY(10px) rotate(180deg);
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 991px) {
    nav {
        flex-direction: column-reverse;
        position: fixed;
        right: 0;
        z-index: 9999;
        background: var(--land-text-color);
        height: 100%;
        padding: 2rem;
        top: 0;
        width: 20rem;
        display: none;
        justify-content: space-around;
    }
}
nav.active {
    display: flex;
}
ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    text-wrap: nowrap;
}
@media (max-width: 991px) {
    nav ul {
        flex-direction: column-reverse;
        flex-basis: 70%;
    }
}
ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}
ul li a {
    color: var(--a-color);
    font-size: 20px;
    transition: 0.3s ease;
}
@media (max-width: 991px) {
    ul li a {
        color: var(--whait-color);
    }
}
ul li a:hover {
    font-size: 22px;
    color: var(--anouther-color);
}
.languge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 20%;
}
@media (max-width: 991px) {
    .languge {
        flex-direction: column-reverse;
        flex-basis: 0%;
    }
}
.lang-chang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
}
@media (max-width: 991px) {
    .lang-chang {
        color: var(--whait-color);
    }
}
.lang-chang a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--a-color);
    margin-bottom: 5px;
    z-index: 9999;
}
@media (max-width: 991px) {
    .lang-chang a {
        color: var(--whait-color);
    }
}
.languge .lang-chang i:first-child {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    gap: 5px;
}
@media (max-width: 991px) {
    .hide {
        display: none;
    }
}
.loogo-phone {
    display: none;
}
@media (max-width: 991px) {
    .loogo-phone {
        display: block;
    }
}
.icone-land {
    color: var(--anouther-color);
    font-size: 15px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.serarching {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    width: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}
.serarching input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--anouther-color);
    border-radius: 7px;
    outline: none;
    text-align: end;
    padding-right: 30px;
}
.serarching i {
    font-size: 20px;
    color: var(--anouther-color);
    position: absolute;
    right: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.show-search {
    width: 500px;
    opacity: 1;
    max-width: 100%;
}
.hide-icon {
    display: none;
}

.new_about_us {
    display: flex; /* تفعيل flexbox */
    align-items: center; /* توسيط عموديًا */
    justify-content: space-between; /* توزيع العناصر */
    gap: 20px; /* مسافة بين النص والفيديو */
}

/* النص */
.new_about_us .splide__slide {
    flex: 1; /* ياخذ مساحة مرنة */
    text-align: right; /* النصوص لليمين */
    padding: 20px; /* مسافة داخلية */
    color: white;
}

.new_about_us .splide__slide h2 {
    font-size: 24px; /* حجم الخط للعناوين */
    margin-bottom: 15px; /* مسافة تحت العنوان */
}

.new_about_us .splide__slide p {
    font-size: 20px; /* حجم الخط للنصوص */
    line-height: 1.6; /* ارتفاع السطر لتحسين القراءة */
}

/* الفيديو */
.new_about_us video {
    flex: 1; /* ياخذ نفس مساحة النص */
    width: 50%; /* ما يخرج عن الحاوية */
    border-radius: 10px; /* حواف ناعمة (اختياري) */
}

@media (max-width: 991px) {
    .new_about_us {
        flex-direction: column-reverse; /* ترتيب عمودي على الشاشات الصغيرة */
        align-items: center; /* توسيط العناصر */
    }

    .new_about_us .splide__slide,
    .new_about_us video {
        width: 100%; /* عرض كامل للنص والفيديو */
        flex: none; /* إزالة المرونة */
        margin-bottom: 20px; /* مسافة بين النص والفيديو */
    }
}

@media (max-width: 600px) {
    .new_about_us .splide__slide h2 {
        font-size: 20px; /* تصغير حجم الخط للعناوين */
    }

    .new_about_us .splide__slide p {
        font-size: 20px; /* تصغير حجم الخط للنصوص */
    }
}

@media (max-width: 400px) {
    .new_about_us .splide__slide h2 {
        font-size: 18px; /* تصغير حجم الخط للعناوين */
    }

    .new_about_us .splide__slide p {
        font-size: 16px; /* تصغير حجم الخط للنصوص */
    }
}

.landing-gyps {
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: relative;
}
@media (max-width: 991px) {
    .landing-gyps {
        height: 100%;
    }
}
.landing-gyps .swiper {
    width: 100%;
    height: 100%;
    position: relative;
}
.landing-gyps .swiper .text {
    position: absolute;
    right: 0%;
    top: 50%;
    text-align: right;
    background-color: var(--land-text-color);
    z-index: 21;
    padding: 2rem;
    transform: translate(-15%, -50%);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 1s ease;
}
@media (max-width: 991px) {
    .landing-gyps .swiper .text {
        background-color: #dcabadc9;
        transform: translate(-5%, -50%);
        border-radius: 10px;
    }
}
@media (max-width: 769px) {
    .landing-gyps .swiper .text {
        background-color: #dcabadc9;
        transform: translate(0%, -50%);
        border-radius: 10px;
    }
}
.landing-gyps .swiper .text h2 {
    color: var(--anouther-color);
    margin-bottom: 2rem;
    font-weight: 900;
}
@media (max-width: 991px) {
    .landing-gyps .swiper .text h2 {
        font-size: 19px;
        margin-bottom: 1rem;
    }
}
@media (max-width: 769px) {
    .landing-gyps .swiper .text {
        background-color: rgb(220 171 173 / 50%);
        transform: translate(0%, -50%);
        border-radius: 10px;
    }
}
.landing-gyps .swiper .text span {
    color: #ed1c24;
    font-weight: 900;
}
.landing-gyps .swiper .text .box-text h3 {
    margin: 0 2rem 1rem 0;
    font-weight: 900;
    font-size: 25px;
}
@media (max-width: 991px) {
    .landing-gyps .swiper .text .box-text h3 {
        font-size: 19px;
    }
}
@media (max-width: 769px) {
    .landing-gyps .swiper .text .box-text h3 {
        font-size: 18px;
    }
}
.landing-gyps .swiper .text .box-text p {
    margin-right: 2rem;
    max-width: 100%;
    text-align: right;
    font-size: 20px;
    width: 500px;
    line-height: 1.8;
}
@media (max-width: 991px) {
    .landing-gyps .swiper .text .box-text p {
        font-size: 16px;
        width: 250px;
    }
}
@media (max-width: 769px) {
    .landing-gyps .swiper .text .box-text p {
        font-size: 16px;
    }
}
.landing-gyps .swiper-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(30%);
}
.landing-gyps .swiper-slide-active {
    opacity: 1;
    transform: translateX(0);
}
.landing-gyps .swiper-slide-prev {
    transform: translateX(-15%);
}
.landing-gyps .swiper-slide-next {
    transform: translateX(15%);
}
.landing-gyps .swiper-slide img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    max-height: 70vh;
}
.landing-gyps .swiper .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 30px);
    left: auto;
}
.landing-gyps .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 30px);
    right: auto;
}
.landing-gyps .swiper-button-next,
.swiper-button-prev {
    color: rgb(0 26 114 / 30%);
    background-color: rgb(217 217 217 / 30%);
    border-radius: 10px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--open--transtion);
    z-index: 99999;
}
/* @media (max-width: 991px) {
    .landing-gyps .swiper-button-next,
    .swiper-button-prev {
        display: none;
        padding: 0 0.5rem;
    }
} */
.landing-gyps .swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #004873;
}
.landing-gyps .swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 991px) {
    .landing-gyps .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 10px;
    }
}
.landing-gyps .swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--link-color);
}
.landing-gyps .cover-color {
    position: absolute;
    background: linear-gradient(
        to bottom,
        rgb(115 115 115 / 0%) 0%,
        #b41218 100%
    );
    width: 100%;
    height: 100%;
    z-index: 10;
}
.landing-gyps .swiper .text.visible {
    opacity: 1;
}
.landing-gyps .swiper .text h2,
.landing-gyps .swiper .text h3,
.landing-gyps .swiper .text p {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.landing-gyps .swiper .text.visible h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.landing-gyps .swiper .text.visible h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}
.landing-gyps .swiper .text.visible p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.5s;
}
.depart {
    margin: 1rem 0;
    position: relative;
}
.depart .about-us {
    background: linear-gradient(to bottom, #b41218 0%, #4e080a 100%);
    margin: 5rem 0;
    width: calc(100% - 5%);
    padding: 1rem 0;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.circal img {
    position: absolute;
    right: -40px;
    bottom: -40px;
}
.rdssae {
    position: absolute;
    right: 0;
    left: auto;
}
.depart .about-us .content {
    display: flex;
    justify-content: space-between;
}
.depart .about-us .content .splide__slide {
    text-align: right;
    padding: 2rem;
}
.depart .about-us .content .splide__slide h1 {
    color: var(--whait-color);
    text-align: center;
    padding-right: 2rem;
    margin-bottom: 3rem;
    font-size: 25px;
    font-weight: 900;
}
.depart .about-us .content .splide__slide h2 {
    color: var(--whait-color);
    padding-right: 2rem;
    margin-bottom: 3rem;
    font-size: 25px;
    font-weight: 700;
}
.depart .about-us .content .splide__slide p {
    color: var(--whait-color);
    line-height: 30px;
    font-size: 15px;
}
.depart .about-us .content .about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
@media (max-width: 991px) {
    .depart .about-us .content .about-img img:last-child {
        display: none;
    }
}
.depart .about-us video {
    display: flex;
    margin: 1rem auto;
    max-width: 100%;
    padding: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.text-slider {
    position: relative;
    width: 100%;
}
.depart .text-box {
    position: absolute;
    opacity: 0;
    transition: opacity 0.8s ease-in;
    width: 100%;
}
.depart .text-box.active {
    opacity: 1;
}
@media (max-width: 991px) {
    .depart .about-us .content .about-img {
        display: none;
    }
}
.depart .splide__arrow {
    display: none;
}
.depart .splide__pagination__page {
    display: none;
}
.services {
    padding: 1rem;
    position: relative;
}
.back-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, 50%);
    opacity: 0.1;
}
.back-cover-2 {
    position: absolute;
    top: -60%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, 50%);
    opacity: 0.1;
    z-index: -1;
}
.address {
    text-align: center;
    padding-top: 2rem;
}
.services h1 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 5px 0;
}
.services p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    color: var(--p-color);
}
.services .grid-img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.services .grid-img .box-services {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.services .grid-img .box-services img {
    width: 100%;
    border-radius: 5px;
    height: 350px;
    max-width: 100%;
}
.services .grid-img .box-services .text-hover {
    position: absolute;
    left: 0;
    bottom: -75%;
    width: 100%;
    padding: 1rem;
    background-color: #2bb7ac;
    opacity: 0;
    transition: bottom 0.5s ease, opacity 0.5s ease;
    line-height: 1.5;
}
.services .grid-img .box-services:hover .text-hover {
    opacity: 1;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 26, 114, 0.85) 0%,
        rgba(0, 73, 115, 0.45) 100%
    );
}
.services .grid-img .box-services .text-hover h3,
.services .grid-img .box-services .text-hover p {
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.services .grid-img .box-services:hover .text-hover h3,
.services .grid-img .box-services:hover .text-hover p {
    opacity: 1;
}
.services .grid-img .box-services .text-hover h3 {
    font-size: 1.5rem;
}
.services .grid-img .box-services .text-hover p {
    font-size: 1rem;
}
.services .grid-img .box-services .text-hover i {
    font-size: 1.5rem;
    margin: 0.5rem auto;
    color: #fff;
    border-radius: 50%;
    display: block;
    text-align: center;
}
@media (max-width: 991px) {
    .services h1 {
        font-size: 1.8rem;
    }
    .services p {
        font-size: 1rem;
    }
}
@media (max-width: 500px) {
    .services h1 {
        font-size: 1.5rem;
    }
    .services p {
        font-size: 0.9rem;
    }
    .services .grid-img .box-services .text-hover h3 {
        font-size: 1.2rem;
    }
    .services .grid-img .box-services .text-hover p {
        font-size: 0.8rem;
    }
    .services .grid-img .box-services .text-hover i {
        font-size: 1.2rem;
    }
}
.object {
    position: relative;
}
.object::before {
    content: " ";
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--link-color);
    bottom: -25px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%, 50%);
}
@media (max-width: 991px) {
    .object::before {
        width: 90%;
    }
}
.object .more-link {
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.object .more-link a {
    color: var(--link-color);
    font-size: 24px;
    font-weight: 900;
    border: 1px solid var(--link-color);
    padding: 5px 5rem;
    border-radius: 5px;
    transition: box-shadow 0.3s ease, border-width 0.3s ease;
}
.object .more-link a:hover {
    box-shadow: 0 0 8px 2px rgba(180, 18, 24, 0.5);
    border-width: 1.9px;
}
.object .more-link a::before {
    content: " ";
    background: var(--link-color);
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(0%, -50%);
}
@media (max-width: 1200px) {
    .object .more-link a::before {
        left: 65%;
    }
}
@media (max-width: 991px) {
    .object .more-link a::before {
        left: 85%;
    }
}
@media (max-width: 600px) {
    .object .more-link a::before {
        right: 85%;
    }
}
.object .more-link a::after {
    content: " ";
    background: var(--link-color);
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 60%;
    transform: translate(0%, -50%);
}
@media (max-width: 1200px) {
    .object .more-link a::after {
        right: 65%;
    }
}
@media (max-width: 991px) {
    .object .more-link a::after {
        right: 70%;
    }
}
@media (max-width: 600px) {
    .object .more-link a::after {
        right: 85%;
    }
}
.object .more-p {
    margin: 2rem 0;
    text-align: right;
    color: var(--anouther-color);
    font-size: 18px;
}
.object .object-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    background-image: url(/img/logo-hed.png);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center center;
}
.object .object-grid .boject-content,
.object .object-grid .boject-content-2,
.object .object-grid .boject-content-3,
.object .object-grid .boject-content-4 {
    flex: 0 0 46%;
    box-sizing: border-box;
}
@media (max-width: 1200px) {
    .object .object-grid .boject-content,
    .object .object-grid .boject-content-2,
    .object .object-grid .boject-content-3,
    .object .object-grid .boject-content-4 {
        flex: 1 0 100%;
    }
}
@media (max-width: 991px) {
    .object .object-grid .boject-content,
    .object .object-grid .boject-content-2,
    .object .object-grid .boject-content-3,
    .object .object-grid .boject-content-4 {
        flex: 0 0 100%;
    }
}
@media (max-width: 991px) {
    .object .object-grid {
        gap: 2rem;
        background-image: none;
    }
}
@media (max-width: 1200px) {
    .object .object-grid {
        gap: 2rem;
        background-size: contain;
    }
}
.object .object-grid .boject-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--anouther-color);
    padding: 1rem 0 0 5rem;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
    width: 500px;
    position: relative;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content {
        padding: 1rem 0 0 1rem;
    }
}
.object .object-grid .boject-content::before {
    content: " ";
    position: absolute;
    height: 200px;
    background: #fff;
    left: -40px;
    transform: skew(153deg, 8deg);
    width: 80px;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content::before {
        display: none;
    }
}
.object .object-grid .boject-content .icone {
    position: relative;
    flex-basis: 20%;
}
.object .object-grid .boject-content .icone i {
    color: var(--link-color);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}
.object .object-grid .texts {
    text-align: center;
    background-color: var(--whait-color);
    position: relative;
    border-radius: 0 50px 0 0;
}
.object .object-grid .texts::before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 100%;
    background: var(--anouther-color);
    left: -29px;
    transform: skew(-17deg, 0deg);
}
@media (max-width: 991px) {
    .object .object-grid .texts::before {
        display: none;
    }
}
.object .object-grid .texts h3 {
    padding: 1rem;
    color: var(--link-color);
    font-size: 20px;
}
.object .object-grid .texts p {
    padding: 1rem;
    color: var(--anouther-color);
    font-size: 15px;
}
.object .object-grid .boject-content-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--link-color);
    padding: 1rem 5rem 0 0rem;
    border-radius: 50px 0 0;
    overflow: hidden;
    width: 500px;
    position: relative;
}
.object .object-grid .boject-content-2::before {
    content: " ";
    position: absolute;
    height: 200px;
    background: #fff;
    right: -40px;
    transform: skew(-153deg, -8deg);
    width: 80px;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-2 {
        padding: 1rem 1rem 0 0rem;
        gap: 1rem;
    }
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-2::before {
        display: none;
    }
}
@media (max-width: 991px) {
    .object .object-grid .boject-content,
    .object .object-grid .boject-content-2 {
        width: 100%;
    }
}
.object .object-grid .boject-content-2 .icone-2 {
    position: relative;
    flex-basis: 20%;
}
.object .object-grid .boject-content-2 .icone-2 i {
    color: var(--anouther-color);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}
.object .object-grid .texts-2 {
    text-align: center;
    background-color: var(--whait-color);
    position: relative;
    border-radius: 50px 0 0 0;
}
.object .object-grid .texts-2::before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 100%;
    background: var(--link-color);
    right: -29px;
    transform: skew(17deg, 0deg);
}
@media (max-width: 776px) {
    .object .object-grid .texts-2 {
        padding: 1rem 1rem 0 0rem;
    }
}
@media (max-width: 991px) {
    .object .object-grid .texts-2::before {
        display: none;
    }
}
@media (max-width: 776px) {
    .object .object-grid .texts-2::before {
        display: none;
    }
}
.object .object-grid .texts-2 h3 {
    padding: 1rem;
    color: var(--link-color);
    font-size: 20px;
}
.object .object-grid .texts-2 p {
    padding: 1rem;
    color: var(--anouther-color);
    font-size: 15px;
}
.object .object-grid .boject-content-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--anouther-color);
    padding: 1rem 5rem 0 0rem;
    border-radius: 50px 0 0;
    overflow: hidden;
    width: 500px;
    position: relative;
}
.object .object-grid .boject-content-3::before {
    content: " ";
    position: absolute;
    height: 200px;
    background: #fff;
    right: -40px;
    transform: skew(-153deg, -8deg);
    width: 80px;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-3::before {
        display: none;
    }
}
@media (max-width: 767px) {
    .object .object-grid .boject-content-3::before {
        display: none;
    }
}
@media (max-width: 991px) {
    .object .object-grid .boject-content,
    .object .object-grid .boject-content-2 {
        width: 100%;
    }
}
.object .object-grid .boject-content-3 .icone-3 {
    position: relative;
    flex-basis: 20%;
}
.object .object-grid .boject-content-3 .icone-3 i {
    color: var(--link-color);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}
.object .object-grid .texts-3 {
    text-align: center;
    background-color: var(--whait-color);
    position: relative;
    border-radius: 50px 0 0 0;
}
.object .object-grid .texts-3::before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 100%;
    background: var(--anouther-color);
    right: -29px;
    transform: skew(17deg, 0deg);
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-3 {
        padding: 1rem 1rem 0 0rem;
        gap: 1rem;
    }
}
@media (max-width: 776px) {
    .object .object-grid .boject-content-3 {
        padding: 1rem 1rem 0 0rem;
        gap: 1rem;
    }
}
@media (max-width: 991px) {
    .object .object-grid .texts-3::before {
        display: none;
        padding: 1rem 1rem 0 0rem;
    }
}
@media (max-width: 776px) {
    .object .object-grid .texts-3::before {
        display: none;
        padding: 1rem 1rem 0 0rem;
    }
}
.object .object-grid .texts-3 h3 {
    padding: 1rem;
    color: var(--link-color);
    font-size: 20px;
}
.object .object-grid .texts-3 p {
    padding: 1rem;
    color: var(--anouther-color);
    font-size: 15px;
}
.object .object-grid .boject-content-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: var(--link-color);
    padding: 1rem 0 0 5rem;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
    width: 500px;
    position: relative;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-4 {
        padding: 1rem 0 0 1rem;
        gap: 1rem;
    }
}
@media (max-width: 776px) {
    .object .object-grid .boject-content-4 {
        padding: 1rem 0 0 1rem;
        gap: 1rem;
    }
}
.object .object-grid .boject-content-4::before {
    content: " ";
    position: absolute;
    height: 200px;
    background: #fff;
    left: -40px;
    transform: skew(153deg, 8deg);
    width: 80px;
}
@media (max-width: 991px) {
    .object .object-grid .boject-content-4::before {
        display: none;
    }
}
@media (max-width: 776px) {
    .object .object-grid .boject-content-4::before {
        display: none;
    }
}
.object .object-grid .boject-content-4 .icone-4 {
    position: relative;
    flex-basis: 20%;
}
.object .object-grid .boject-content-4 .icone-4 i {
    color: var(--anouther-color);
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}
.object .object-grid .texts-4 {
    text-align: center;
    background-color: var(--whait-color);
    position: relative;
    border-radius: 0 50px 0 0;
}
.object .object-grid .texts-4::before {
    content: " ";
    position: absolute;
    width: 50px;
    height: 100%;
    background: var(--link-color);
    left: -29px;
    transform: skew(-17deg, 0deg);
}
@media (max-width: 991px) {
    .object .object-grid .texts-4::before {
        display: none;
    }
}
@media (max-width: 776px) {
    .object .object-grid .texts-4::before {
        display: none;
    }
}
.object .object-grid .texts-4 h3 {
    padding: 1rem;
    color: var(--link-color);
    font-size: 20px;
}
.object .object-grid .texts-4 p {
    padding: 1rem;
    color: var(--anouther-color);
    font-size: 15px;
}
.contact-us {
    margin-top: 5rem;
    background: linear-gradient(-120deg, #ffff 0%, #98aae5 90%);
    width: calc(100% - 5%);
    padding: 2rem 0;
    max-width: 100%;
    position: relative;
}
.circal-2 img {
    position: absolute;
    right: -40px;
    top: -40px;
}
.contact-us h1 {
    text-align: right;
    margin: 0rem 0 1rem 0;
    border-bottom: 2px solid var(--anouther-color);
    padding: 1rem 0;
    color: var(--anouther-color);
}
@media (max-width: 991px) {
    .contact-us h1 {
        font-size: 15px;
    }
}
.contact-us .contact-dis {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
@media (max-width: 991px) {
    .contact-us .contact-dis {
        flex-direction: column;
    }
}
.contact-us .contact-dis form {
    margin-top: 3rem;
    border: 1px solid var(--anouther-color);
    padding: 2rem;
    border-radius: 10px;
    flex-grow: 1;
}
.contact-us .contact-dis form input {
    text-align: right;
    width: 99%;
    background: transparent;
    padding: 1rem;
    outline: none;
    border: 1px solid var(--anouther-color);
    border-radius: 10px;
    margin: 1rem;
}
.contact-us .contact-dis form textarea {
    text-align: right;
    width: 99%;
    background: transparent;
    padding: 3rem 1rem;
    outline: none;
    border: 1px solid var(--anouther-color);
    border-radius: 10px;
    margin: 1rem;
    max-width: 100%;
}
.contact-us .contact-dis form button {
    text-align: center;
    display: block;
    background: var(--anouther-color);
    padding: 1rem;
    margin: 1rem 0 1rem 0.5rem;
    color: var(--whait-color);
    width: 100%;
    border: none;
    transition: var(--open--transtion);
    border-radius: 10px;
}
.contact-us .contact-dis form button:hover {
    color: var(--link-color);
}
.contact-us .contact-dis .location {
    max-width: 100%;
}
.contact-us .contact-dis .location .phone {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
    margin: 2rem 0;
}
.contact-us .contact-dis .location img {
    border-radius: 15px;
}
@media (max-width: 991px) {
    .contact-us .contact-dis .location img {
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}
.contact-us .contact-dis .location .phone b {
    font-size: 25px;
    color: var(--anouther-color);
}
@media (max-width: 991px) {
    .contact-us .contact-dis .location .phone b {
        font-size: 15px;
    }
}
.contact-us .contact-dis .location .phone i {
    font-size: 25px;
    color: var(--anouther-color);
}
@media (max-width: 991px) {
    .contact-us .contact-dis .location .phone i {
        font-size: 15px;
    }
}
.contact-box {
    position: relative;
    overflow: hidden;
}
.rdssaess {
    position: absolute;
    right: 0;
    top: 5%;
}

.features {
    position: relative;
    background-color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 64px;
    box-sizing: border-box;
    gap: 64px;
    text-align: center;
    font-size: 18px;
    color: #4d4d4d;
    font-family: Inter;
}

@media (max-width: 991px) {
    .features {
        margin: 32px;
        gap: 32px;
    }
}

.features .text {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.features .text .t-tagline {
    align-self: stretch;
    position: relative;
    line-height: 28px;
    font-weight: 600;
    color: var(--anouther-color);
    text-transform: uppercase;
    font-size: 16px;
    width: 100%;
    height: 24px;
    flex-shrink: 0;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    display: inline-block;
    align-items: center;
    justify-content: center;
}

.features .text .t-tagline::before {
    content: " ";
    background: var(--link-color);
    height: 1px;
    width: 100%;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(0%, -50%);
}
@media (max-width: 1200px) {
    .features .text .t-tagline::before {
        left: 65%;
    }
}
@media (max-width: 991px) {
    .features .text .t-tagline::before {
        left: 85%;
    }
}
@media (max-width: 600px) {
    .features .text .t-tagline::before {
        right: 85%;
    }
}
.features .text .t-tagline::after {
    content: " ";
    background: var(--link-color);
    height: 1px;
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    right: 60%;
    transform: translate(0%, -50%);
}
@media (max-width: 1200px) {
    .features .text .t-tagline::after {
        right: 65%;
    }
}
@media (max-width: 991px) {
    .features .text .t-tagline::after {
        right: 70%;
    }
}
@media (max-width: 600px) {
    .features .text .t-tagline::after {
        right: 85%;
    }
}

.features .text .t-title {
    align-self: stretch;
    position: relative;
    font-size: 30px;
    line-height: 42px;
    color: #000;
}

.features .container {
    align-self: stretch;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 32px 24px;
    text-align: left;
    font-size: 16px;
    color: #000;
}
.features .container .features-container {
    flex: 1;
    height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 340px;
}
.container-md-icon {
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    height: 44px;
}

.container-md-icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    background: red;
    color: var(--whait-color);
    font-size: 24px;
}
.features-text {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.t-feature-title01 {
    align-self: stretch;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-align: center;
}
.t-feature-subtitle01 {
    align-self: stretch;
    position: relative;
    line-height: 24px;
    text-align: center;
}

.features-container-md-icon {
    width: 44px;
    position: relative;
    border-radius: 12px;
    height: 44px;
    object-fit: cover;
}

.p {
    margin: 0;
}

@media (max-width: 991px) {
    .features .container {
        justify-content: center;
    }
    .features .container .features-container {
        min-width: 100%;
        max-width: 100%;
        flex: 1 0 100%;
    }
}

@media (max-width: 600px) {
    .features {
        padding: 32px 16px;
        gap: 32px;
    }
    .features .text {
        gap: 8px;
    }
    .features .text .t-title {
        font-size: 24px;
        line-height: 32px;
    }
    .features .container {
        gap: 24px 16px;
    }
    .features .container .features-container {
        min-width: 100%;
        max-width: 100%;
        flex: 1 0 100%;
        height: auto;
        gap: 12px;
    }
    .features .container .features-container .features-text {
        gap: 6px;
    }
    .features .container .features-container .t-feature-title01 {
        font-size: 16px;
        line-height: 24px;
    }
    .features .container .features-container .t-feature-subtitle01 {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 400px) {
    .features .container .features-container .features-text {
        gap: 4px;
    }
    .features .container .features-container .t-feature-title01 {
        font-size: 14px;
        line-height: 20px;
    }
    .features .container .features-container .t-feature-subtitle01 {
        font-size: 12px;
        line-height: 16px;
    }
}



.exhibition-container {
    width: 100%;
    position: relative;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    font-size: 70px;
    color: #ffcc00;
    font-family: Almarai;
}
.article {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.background {
    align-self: stretch;
    background: linear-gradient(-120deg, #001a72 0%, #b41218 90%);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 110px 412.5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}
.container2 {
    width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 0px 47px;
    box-sizing: border-box;
    max-width: 1080px;
}
.heading-1 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px 10px;
}
.div {
    position: relative;
    font-size: 60px;
    color: #ffffff;
    line-height: 84px;
    font-weight: 800;
}
.background2 {
    align-self: stretch;
    background-color: #efe9e4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 57.2px;
}
.container3 {
    width: 1790.7px;
    display: flex;
    align-items: flex-start;
    padding: 27px 0px;
    box-sizing: border-box;
    max-width: 1790.7px;
}
.margin {
    align-self: stretch;
    width: 614.8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0px 53.7px 0px 0px;
    box-sizing: border-box;
    min-height: 1px;
}
.container-icon {
    align-self: stretch;
    max-width: 100%;
    overflow: hidden;
    height: 367.8px;
    flex-shrink: 0;
    object-fit: cover;
    min-height: 1px;
}
.container-icon3 {
    align-self: stretch;
    max-width: 100%;
    overflow: hidden;
    height: 367.8px;
    flex-shrink: 0;
    object-fit: cover;
    min-height: 1px;
}

.overlay {
    align-self: stretch;
    background-color: rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 15px 412.5px 5px;
}
.container8 {
    width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 0px 608.7px;
    box-sizing: border-box;
    max-width: 1080px;
}
.container9 {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px 0px 10px;
}
.div2 {
    align-self: stretch;
    position: relative;
    line-height: 23.8px;
}

@media (max-width: 991px) {
    .exhibition-container .background {
        padding: 50px 20px;
    }
    .exhibition-container .container2 {
        width: 100%;
        padding: 0 10px;
    }
    .exhibition-container .heading-1 .div {
        font-size: 30px;
        line-height: 42px;
    }
    .exhibition-container .background2 {
        padding: 50px 20px;
    }
    .exhibition-container .container3 {
        width: 100%;
        padding: 0 10px;
        flex-direction: column;
    }
    .exhibition-container .margin {
        width: 100%;
        padding: 0 0 20px 0;
    }
    .exhibition-container .container-icon ,    .exhibition-container .container-icon3{
        height: auto;
    }
    .exhibition-container .container8 {
        width: 100%;
        padding: 0 10px;
    }
}
@media (max-width: 600px) {
    .exhibition-container .background {
        padding: 30px 10px;
    }
    .exhibition-container .heading-1 .div {
        font-size: 24px;
        line-height: 32px;
    }
    .exhibition-container .background2 {
        padding: 30px 10px;
    }
    .exhibition-container .margin {
        padding: 0 0 10px 0;
    }
}
@media (max-width: 400px) {
    .exhibition-container .heading-1 .div {
        font-size: 20px;
        line-height: 28px;
    }
}

footer {
    background: linear-gradient(-5deg, #b41218 0%, #001a72 60%);
    padding: 2rem 0;
}
footer .phones {
    display: flex;
    align-items: center;
    gap: 1rem;
}
footer .phones i {
    color: var(--whait-color);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    transition: 0.5s ease;
    padding: 10px;
    border-radius: 50%;
}
footer .phones strong {
    color: var(--whait-color);
    font-size: 20px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}
footer .phones i:hover {
    color: var(--link-color);
    border: 1px solid var(--link-color);
}
footer .phones i:hover + strong {
    opacity: 1;
    transform: translateY(0);
    color: var(--link-color);
}
footer .fot-dis {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--whait-color);
}
@media (max-width: 991px) {
    footer .fot-dis {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}
footer .fot-dis .links ul {
    gap: 3rem;
}
@media (max-width: 991px) {
    footer .fot-dis .links ul {
        gap: 1rem;
    }
}
footer .fot-dis .links ul li a {
    color: var(--whait-color);
    font-size: 15px;
}
footer .fot-dis .links ul li a:hover {
    color: var(--anouther-color);
}
footer .fot-dis .social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 15%;
}
footer .fot-dis .social i {
    color: var(--whait-color);
    font-size: 25px;
    transition: 0.3s ease-in-out;
    padding: 10px;
    border-radius: 50%;
}
footer .fot-dis .social i:hover {
    color: var(--link-color);
    border: 1px solid var(--link-color);
}
.copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}
@media (max-width: 991px) {
    .copy-right {
        flex-direction: column;
    }
}
.copy span {
    color: var(--whait-color);
}
.logos {
    position: relative;
}
.logo {
    opacity: 0;
    position: absolute;
    top: -30px;
    transition: opacity 0.5s ease;
}
.logos-en .logo {
    left: auto;
    right: 0;
}
@media (max-width: 991px) {
    .logo {
        top: 0;
        transform: translate(-50%, 0%);
    }
}
.servicess h1 {
    text-align: center;
    color: var(--anouther-color);
    margin: 1rem 0;
    border-bottom: 1px solid var(--anouther-color);
    width: fit-content;
    margin: 1rem auto;
    padding: 5px 0;
}
.servicess .main {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin: 2rem 0;
}
@media (max-width: 991px) {
    .servicess .main {
        flex-direction: column-reverse;
    }
}
.servicess main .link-pro .prudect {
    display: block;
    margin: 0 auto;
    width: 10rem;
    text-align: center;
}
@media (max-width: 991px) {
    .servicess main .link-pro .prudect {
        width: 100%;
    }
}
.servicess main .link-pro .prudect li {
    padding: 1rem;
}
.servicess main .link-pro .prudect li a:hover {
    color: var(--link-color);
    font-size: 20px;
}
.servicess .img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}
.servicess .img-grid .texts::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 26, 114, 0.35);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.servicess .img-grid .texts .prudcont {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 100%;
    text-align: center;
    line-height: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.servicess .img-grid .texts:hover::before,
.servicess .img-grid .texts:hover .prudcont {
    opacity: 1;
}
.servicess .img-grid .texts h3 {
    color: var(--link-color);
}
.servicess .img-grid .texts p {
    color: var(--link-color);
}
.servicess .texts {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}
.servicess .texts img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}
.servicess .texts:hover .prudcont {
    opacity: 1;
}
@media (max-width: 768px) {
    .servicess .img-grid {
        grid-template-columns: 1fr;
    }
}
.link-pro {
    position: relative;
}
.link-pro .prudect {
    display: none;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: rgba(220, 171, 173, 0.9);
    width: 100%;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 7;
    padding: 1rem;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}
.link-pro .prudect.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.link-pro .prudect a {
    color: var(--whait-color);
}
.link-pro .dropdown-header {
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    font-size: 25px;
    color: var(--anouther-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
@media (max-width: 991px) {
    .link-pro .prudect {
    }
}
@media (min-width: 992px) {
    .link-pro .prudect {
        display: block;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        visibility: visible;
    }
}
.link-pro .dropdown-header i {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.link-pro .prudect.show + .dropdown-header i {
    transform: rotate(180deg);
}
.prudect {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.prudect.show {
    display: block;
    opacity: 1;
}
.about-pro {
    padding: 1rem;
}
.about-pro h1 {
    text-align: center;
    color: var(--anouther-color);
    margin: 1rem 0;
    border-bottom: 1px solid var(--anouther-color);
    width: fit-content;
    margin: 1rem auto;
    padding: 5px 0;
}
.about-pro .pro-text {
    text-align: center;
    flex-direction: column;
}
.about-pro .pro-text img {
    margin: 0 auto;
    display: block;
    width: 100%;
    max-width: 70rem;
    border: 2px solid var(--anouther-color);
    border-radius: 30px;
}
.about-pro .pro-text h2 {
    color: var(--anouther-color);
    font-size: 2rem;
    font-weight: 700;
}
.about-pro .pro-text p {
    width: 90%;
    margin: 1rem auto;
    color: var(--anouther-color);
    line-height: 1.5;
    font-weight: 500;
    font-size: 1.25rem;
}
.about-pro .main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-around;
    gap: 1rem;
}
.about-pro .pro-text {
    text-align: center;
    flex-grow: 1;
}
.about-pro .pro-text h2,
.about-pro .pro-text p {
    width: auto;
    max-width: 70rem;
    margin: 1rem auto;
}
@media (max-width: 991px) {
    .about-pro .main {
        flex-direction: column-reverse;
        align-items: center;
    }
}
.about-pro .link-pro .prudect li {
    margin: 1rem 0;
}
.about-pro .link-pro li a:hover {
    color: var(--link-color);
    font-size: 20px;
}
.dec {
    color: var(--link-color);
    transition: var(--open--transtion);
}
.dec:hover {
    color: var(--whait-color);
}
