body {
    font-family: "Montserrat-Arabic-Regular", sans-serif;

    overflow-x: hidden;
    padding-top: 105px;

}

.overflow {
    overflow: hidden;
}

:root {
    --main-color: #0E2743;
    --main-hover: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);


}

.show {
    display: block;
}

.top-header {
    border-bottom: 1px solid rgba(192, 221, 247, 0.2);
}

.whats-icon {
    color: #fff;
    font-size: 40px;
    position: fixed;
    z-index: 9999;
    top: 72%;
    inset-inline-start: 50px;
    background: var(--main-hover);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2, 1.2);
        opacity: 0;
    }
}

img {
    image-rendering: -webkit-optimize-contrast;
}

/*style scroll bar*/
/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--main-hover);
}

/*preloader*/
.preloader {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.progress {
    position: fixed;
    z-index: 99999;
    top: 0;
    width: 100%;
    height: 5px;
    background-color: #f7f7f7;
    background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
    background-repeat: repeat-x;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    overflow: hidden;
}

.progress-bar {
    animation: progress 6s ease infinite;
    padding: 1px;
    color: rgba(255, 255, 255, 100);
    background-image: linear-gradient(135deg,
            var(--main-hover),
            var(--main-color));
    /* border-radius: 4px 4px 4px 4px; */
}

html[dir="ltr"] .progress-bar {
    background-image: linear-gradient(135deg,
            var(--main-color),
            var(--main-hover));
}

@keyframes progress {
    from {
        width: 0;
        color: rgba(255, 255, 255, 0);
    }

    .whatsapp-icon to {
        width: 100%;
        color: rgba(255, 255, 255, 1);
    }
}

/*preloader*/


/*                          header section                     */
.main-banner {
    background: #0E2743;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.main-banner:after {
    content: "";
    background-image: url(../images/shape.png);
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 100%;
    z-index: -1;
}

.active-link a {
    color: #fff !important;
    font-family: "Montserrat-Arabic-Bold";
    position: relative;

}

.counter-section {
    /* background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%); */
    border-radius: 18px;
    padding: 40px;
    width: 292px;
    position: relative;
    overflow: hidden;
}

.counter-section::after {
    content: "";
    background-image: url(../images/yellow-bg.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    height: 100%;
    /* inset-inline-start: 40%; */
    width: 100%;
    background-position: 0;
    right: 0;
    background-size: contain;
    z-index: -1;
}

.counter-number {
    color: var(--main-color);
    font-size: 42px;
    font-family: "Montserrat-Arabic-Bold";
    text-align: start;
    margin: 0;
    position: relative;
}

.counter-number:after {
    content: "+";
    color: #fff;
    font-size: 42px;
    font-family: "Montserrat-Arabic-Bold";
    margin-inline-start: 5px;
}

.active-link a:after {
    content: "";
    position: absolute;
    height: 1.5px;
    width: 57px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--main-hover);
    bottom: 0;
    top: 135%;
}

.counter-name {
    color: rgba(242, 248, 253, 1);
    font-size: 16px;
}

.count {
    margin-bottom: 30px;
}

.card-line-section {
    background: var(--main-hover);
    padding: 20px 0;
    overflow: hidden;
}

.cards-list {
    display: flex;
    align-items: center;
    gap: 20px;

    list-style: none;
    margin: 0;
    padding: 0;

    width: 100%;
}

@keyframes cards {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.card-l {
    color: #fff;
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
    white-space: nowrap;
    /*animation: cards 3s linear infinite;*/
}


.star {
    margin-inline-end: 20px;
}

/*                          dropdown                            */
.dropdown-div {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    border: 0;
    outline: none;
    padding: 0;
}

.dropbtn:focus {
    border: 0;
    outline: none;
    color: var(--main-hover);
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background-color: #fff;
    color: var(--sec-color);
    text-align: center;
    min-width: 120px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.11);
    border-radius: unset;
    z-index: 300;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px 0;
    transition: all 0.3s ease-in-out;
}

/* Links inside the dropdown */
.dropdown-link {
    color: var(--main-color);
    padding: 5px 15px;
    text-decoration: none;
    display: block;

    font-size: 14px;
    transition: all 0.3s ease-in-out;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:after {
    content: "";
    font: var(--fa-font-light);
    font-size: 12px;
}

.dropdown-link:hover {
    color: var(--main-hover);
}

/* Show the dropdown menu on hover */
.dropdown-div:hover .dropdown-content {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}

/*                          dropdown                            */
/*top header*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    background-color: var(--main-color);
    transition: all 0.3s ease-in-out;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: all 0.3s ease-in-out;
}

.big-menu li a {
    color: #B3C4D6;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.top-header-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-btn {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    outline: none;

    transition: 0.5s;
}

.search-btn:after {
    content: "";
    font: var(--fa-font-light);
    font-size: 14px;
    color: #B3C4D6;

    transition: 0.5s;
}

.search-btn:hover:after {
    color: #fff;
}

.search-btn:after:focus {
    border: 0;
    outline: none;
    color: #fff;
}

.close-search:after {
    content: "X";
    font: var(--fa-font-light);
    font-size: 14px;

    transition: 0.5s;
}

.search-content {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    background: var(--main-color);
    padding: 0;
    display: flex;
    justify-content: center;
    top: 85px;
    transition: 0.5s;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.fixed-header .search-content {
    top: 65px;
}

.height-when-close {
    height: 0;
}

.height-when-open {
    height: 65px;
    padding: 5px 0 0;
    visibility: visible;
    opacity: 1;
}

.big-menu li a:hover {
    color: #fff;

    text-decoration: none;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    /* width: 152px; */
    height: 47px;
    border-radius: 200px;
    font-size: 14px;
    font-family: "Montserrat-Arabic-Bold";
    padding: 0px 13px;
}

.contact-link:hover {
    color: #fff;
    text-decoration: none;
}

.whatsapp-icon {
    color: #fff;
    font-size: 40px;
    position: fixed;
    z-index: 9999;
    top: 72%;
    inset-inline-start: 50px;
    background: var(--main-hover);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.whatsapp-icon:hover {
    text-decoration: none;
    color: :#fff !important;
}

.whatsapp-icon::after {
    display: flex;
    background-color: #f3b912;
    opacity: 0.102;
    border-radius: 300px;
    height: 66px;
    width: 66px;
    animation: pulsate 2s ease-out;
    animation-iteration-count: infinite;
    opacity: 0;
    content: "";
    z-index: -1;
    margin: auto;
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    bottom: 0;
}

.big-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.greeting {
    display: flex;
    color: #fff;
    font-size: 14px;
    text-align: start;
    align-items: center;
    margin: 40px 0 20px;
}

.greeting img {
    margin-inline-end: 5px;
}

.main-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 100px;
}

.main-title {
    color: #fff;
    font-size: 62px;
    text-align: start;
    font-family: "Montserrat-Arabic-SemiBold";
    line-height: 87px;
    max-width: 728px;
    margin: 0;
}

.note {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cards-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cards-section {
    display: flex;
    gap: 8px;
    width: 546px;
    flex-wrap: wrap;
}

.card {
    color: rgba(254, 254, 254, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    border-radius: 100px;
    padding: 0 30px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.07);
}

.card-text {
    color: rgba(179, 196, 214, 1);
    text-align: start;
    font-size: 16px;
    line-height: 26px;
    position: relative;
    max-width: 546px;
    margin-bottom: 0;
}

.card-text:before {
    content: url(../images/line.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: -30px;
}

.counter-bar {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.main-img {
    width: 818px;
}

@media (min-width: 992px) {
    .menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        z-index: 99;
    }

    .menu-item-has-children:hover a {
        color: var(--main-color);
    }

}


.sub-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 8px);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: max-content;
    min-width: 185px;
    list-style: none;
    max-width: 185px;
    background-color: var(--sec-color);
    color: #fff;
    display: flex;

    text-align: start;
    border: none;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;

    flex-direction: column;
}

.sub-menu li {
    padding: 2px 0;
}

.lang a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 3px;
}

.language-icon {
    font-size: 14px;
}

.sub-menu li a {
    color: #fff !important;

    text-decoration: none;
    line-height: 2.143;
    display: block;

    font-size: 14px;
    text-align: start;

    width: 100%;

    transition: all 0.3s ease-in-out;
}

.sub-menu li a:hover {
    color: var(--main-hover) !important;
}

.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.102);
}

.menu-item-has-children a.active::after {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .search-content {
        top: 55px;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        inset-inline-start: 20px;
    }


    .menu-item-has-children a::after {
        font-size: 10px;

    }

    .height-when-open {
        height: 57px;
    }

    .hidden-in-mobile-icon {
        display: none;
    }

    .sub-menu {
        align-items: start;
        padding: 0;
        width: unset;
        margin-inline-start: 13px;
    }

    .sub-menu::before {
        display: none;
    }

    .sub-menu {
        min-width: unset;
        z-index: 99;
        padding: 0;
        height: unset;
        justify-content: flex-start;
        max-width: 100%;
    }

    .sub-menu li a {
        line-height: 20px;

        color: var(--main-color) !important;
    }

    .sub-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transition: none;
        box-shadow: none;
        border-radius: 0;
        left: 0;
        right: 0;
        transform: translateX(0);
        background-color: transparent;
    }

    .sub-menu li a:hover,
    .sub-menu li:hover>a {
        color: var(--main-hover);
    }
}

.fixed-nav {
    margin-top: -150px;
    transition: all 0.3s ease-in-out;
}

.fixed-nav .nav-header {
    padding: 10px 0;
}

.fixed-header {
    position: fixed;
    top: 0;
}

.fixed-header .fixed-nav {
    margin: 0;
}

.img-logo {
    width: 125px;
}

.search-section {
    position: relative;
}

.search-input {
    position: relative;
    background-color: #f7f7f7;
    max-width: 100%;
    width: 100%;
    height: 0;
    padding: 0 16px;
    padding-inline-end: 45px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--main-color);

    border: 1px solid transparent;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.height-when-open .search-input {
    height: 40px;
}

.search-input:focus {
    outline: none;
    border: 1px solid #F08120
}

.top-header-list li {

    transition: 0.5s;
    color: rgba(179, 196, 214, 1);
}

.top-header-list li:hover {
    color: var(--main-hover);
}


.search-input::placeholder {
    color: var(--main-color);
    font-size: 14px;
}

.search-button {
    position: absolute;
    top: 50%;
    inset-inline-end: 18px;
    outline: none;
    transform: rotate(0deg) translateY(-50%);

    color: var(--main-color);
    background-color: transparent;
    border: none;
    font-size: 18px;
    padding: 0;
    transition: 0.5s;
}

.search-button:hover {
    color: var(--main-color);
    opacity: 0.7;
}

.search-button:focus {
    outline: none;
}


/*                          header section                     */

/*    card-line-section     */

/*    card-line-section     */


/*                      services-section                      */
.services-section {
    padding: 70px 0 60px;
}

.service-title-section {
    width: 546px;
}

.service-note {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-family: "Montserrat-Arabic-Bold";
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}

.service-note img {
    margin-inline-end: 5px;
}

.service-title {
    color: rgba(21, 63, 105, 1);
    font-size: 52px;
    font-family: "Montserrat-Arabic-Bold";
    margin: 0;
    line-height: 73px;
    max-width: 415px;

}

.service-note2 {

    background: linear-gradient(90deg, #69B0E1 -6.26%, #477EAD 29.35%, #2E5A87 60.37%, #1F4470 85.64%, #193C67 100.57%, #193C67 108.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-text {
    width: 546px;
    position: relative;
}

.service-t {
    color: rgba(71, 82, 94, 1);
    font-size: 18px;
    text-align: start;
    line-height: 29px;
    margin: 0 0 30px;

}

.service-text:before {
    content: url(../images/line2.png);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: -40px;
}

.more-link {
    background: linear-gradient(90deg, #69B0E1 -6.26%, #477EAD 29.35%, #2E5A87 60.37%, #1F4470 85.64%, #193C67 100.57%, #193C67 108.61%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-block {
    display: flex;
    transition: 0.5s;
    position: relative;
    border-radius: 16px;
    height: 300px;

}

.service-details {
    /* background-color: rgba(241, 241, 242, 1); */
    width: 50%;
    /* background-image: url(../images/a.png); */
    background-repeat: no-repeat;
    padding: 30px 20px;
    background-position: -95px 0%;
    display: flex;
    border-radius: 0 16px 16px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.service-image {
    width: 50%;
    position: relative;

}

.service-image img {
    border-radius: 16px 0 0 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-block-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 16px;
    /* background-color: #0a1a2bdb; */
    visibility: hidden;
    opacity: 0;
    border-radius: 16px;
    transition: 0.5s;
    display: flex;
}

.service-block-cover .service-details {
    background-color: #0a1a2bdb;
}

.service-img-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-end: 0;
    border-radius: 16px 0 0 16px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #0a1a2b7a;
    width: 100%;
}

.service-block-cover .service-title2 {
    color: #fff;
    margin: 0 0 15px;
}

.service-p {
    color: rgba(179, 196, 214, 1);
    font-size: 14px;
    line-height: 22.4px;
    text-align: start;
    margin: 0 0 15px;
    max-width: 214px;
}

.more-link-2 {
    background: var(--main-hover);
    -webkit-background-clip: text;
}

.service-block:hover .service-block-cover {
    visibility: visible;
    opacity: 1;

}

.service-title2 {
    color: var(--main-color);
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
    max-width: 173px;
    line-height: 28px;
}

.transparent {
    background: transparent;
}

/*                      services-section                      */

/****** story section   ***/
.story-section {
    background-color: var(--main-color);
    position: relative;
    padding: 107px 0;
    overflow: hidden;
}

.story-section:before {
    content: url(../images/a-2.png);
    position: absolute;
    inset-inline-start: 0;
    top: 110px;
}

.story-section-content {
    display: flex;
    gap: 46px;
    justify-content: space-between;
    z-index: 9;
    position: relative;
    z-index: 0;
}

.story-title {
    color: #fff;
    text-align: start;
    font-size: 52px;
    font-family: "Montserrat-Arabic-Bold";
    line-height: 73px;
    max-width: 539px;
    margin: 0 0 28px;
}

.story-note {
    text-align: start;
    color: rgba(179, 196, 214, 1);
    font-size: 18px;
    margin: 0 0 30px;
    line-height: 29px;
    max-width: 513px;
}

.story-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 150px;
    max-width: 539px;
    align-items: space-between;
    gap: 30px;
    margin-bottom: 43px;
}

.story-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 18px;
}

.story-list-icon {
    color: #fff;
    font-size: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);

}

.more-div {
    width: 213px;
    height: 50px;
    background: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.more-link-3 {
    color: #fff;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
    gap: 23px;
    width: 152px;
    height: 50px;
    border-radius: 25px;
    z-index: 99;
    transition: all 0.5s ease;
}

.more-icon {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-inline-end: 6px;
    transition: all 0.5s ease;
}

.more-div:hover {
    color: #fff;
    text-decoration: none;
}

.story-image {
    position: relative;
    border-radius: 18px;
    max-width: 50%;
}

.story-img {
    border-radius: 18px;
}

/****** story section   ***/
/**** projects section ***/
.projects-section {
    padding: 100px 0;
}

.projects-section-title-bar {
    display: flex;
    align-items: self-end;
    margin: 0 0 50px;
    justify-content: space-between;
}

.projects-section-title-bar .more-div {
    background: #80808038;
}


.projects-title .service-title {
    max-width: 100%;

}

.projects-section-title-bar .more-div {
    margin-bottom: 18px;
}

.projects-tabs {
    margin: 0 0 30px;
    border-bottom: 0;
    display: flex;
    gap: 16px;
    align-items: center;
}

.projects-tabs li {
    margin: 0;
}

.projects-tabs>li.active>a,
.projects-tabs>li.active>a:hover,
.projects-tabs>li.active>a:focus {
    padding: 10px 20px;
    color: #fff;
    border: 0;
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    height: 46px;
    border-radius: 200px;
    margin: 0;
}

.projects-tabs>li>a {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    margin: 0;
    font-size: 14px;
    background-color: transparent;
    color: rgba(85, 106, 128, 1);
    font-family: "Montserrat-Arabic-Medium";
    border-radius: 200px;
    height: 46px;
}

.projects-tabs>li>a:hover {
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    border: 1px solid transparent;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.project-block {
    border-radius: 16px;
    overflow: hidden;
    transition: 0.5s;
}

.project-img {
    border-radius: 16px;
    transition: 0.5s;
    width: 100%;
}

.project-block:hover .project-img {
    transform: scale(1.05);
}

/**** projects section ***/
/*** team section **/
.team-section {
    padding: 0 0 100px;
}

.team-section-title-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 50px;
}

.team-section .more-div {
    background: #80808038;
}

.team-section-title-bar .service-title {
    max-width: 100%;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 50px;
}

.team-block {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.07);
    transition: 0.5s;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-block:hover {
    box-sizing: border-box;
    background-clip: padding-box;
    border-image-slice: 2;
    border-width: 2px;
    border-image-source: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    border-radius: 8px;

}

.team-img {
    border-radius: 8px;
    border: 1px solid #f08120;
    margin-bottom: 20px;
    transition: 0.5s;
}

.team-name {
    color: var(--main-color);
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
    transition: 0.5s;
    margin: 0 0 22px;
}

.job {
    display: block;
    margin: 0;
    color: rgba(85, 106, 128, 1);
    font-size: 14px;
    font-family: "Montserrat-Arabic-Medium";
    text-align: center;
}

.team-block:hover .team-img {
    border: 1px solid rgba(0, 0, 0, 0.07);
}

.team-block:hover .team-name {
    text-decoration: none;
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.read-more-div {
    display: flex;
    justify-content: center;
}

/*** team section **/

/** working section **/
.working-section {
    padding: 0 0 100px;
}

.working-content {
    display: flex;
    justify-content: space-around;

}

.working-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.working-icon {
    background: var(--main-hover);
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    margin-bottom: 65px;
}

.step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 133px;
    height: 50px;
    border-radius: 25px;
    color: #fff;
    background-color: var(--main-color);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
}

.working-title {
    color: rgba(21, 63, 105, 1);
    text-align: center;
    margin: 0 0 10px;
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
    max-width: 308px;
    height: 45px;
    overflow: hidden;
}

.working-text {
    text-align: center;
    color: rgba(71, 82, 94, 1);
    margin: 0;
    max-width: 308px;
    font-size: 18px;
    line-height: 29px;
}

/** working section **/
/*                                   footer                            */
.footer-section {
    padding: 50px 0 35px;
    position: relative;
    background-color: var(--main-color);
    overflow: hidden;
}

.footer-section:before {
    content: url(../images/a-2.png);
    position: absolute;
    inset-inline-start: 0;
    top: -50px;
}

.footer-section::after {
    content: url(../images/a-3.png);
    position: absolute;
    inset-inline-end: 0;
    bottom: 0;
}

.footer-logo-bar {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer-logo-bar:after {
    content: url(../images/certificate.png);
    position: absolute;
    top: 60px;
    inset-inline-end: 0;
}

.img-logo-2 {
    width: 264px;
    margin-bottom: 20px;
}

.img-logo-2 img {
    width: 100%;
}

.footer-p {
    text-align: center;
    max-width: 450px;
    color: rgba(179, 196, 214, 1);
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 13px;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    gap: 8px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(179, 196, 214, 1);
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.14);

}

.social-icon:hover {
    color: #fff;
    text-decoration: none;
    background: var(--main-hover);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.mb-24 {
    margin-bottom: 24px !important;
}



.nav-foot-header {
    color: var(--main-color);
    text-transform: uppercase;
    text-align: start;
    font-size: 16px;
    font-family: "IBMPlexSansArabic-SemiBold";
    margin: 0 0 28px;
    white-space: nowrap;
}

.nav-foot-header-2 {
    color: var(--main-color);
    text-transform: uppercase;
    text-align: start;
    font-size: 16px;
    font-family: "IBMPlexSansArabic-SemiBold";
    margin: 0 0 28px;
    white-space: nowrap;
}

html[dir="rtl"] .nav-foot-header,
html[dir="rtl"] .nav-foot-header-2 {
    font-family: "IBMPlexSansArabic-Bold";
}

.footer-note {
    text-align: justify;
    font-size: 15px;
    color: var(--main-color);
    line-height: 2;
    margin: 0;

}

@media (min-width: 991px) {


    .footer-note {
        margin-bottom: 20px;
    }

}

.footer-accordion.nav-foot-header {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-foot {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 12px;
}

.nav-foot-link {
    color: var(--main-color);
    font-size: 15px;
    transition: 0.5s;
    text-transform: capitalize;
}

.nav-foot-link:hover {
    color: var(--main-hover);
}


.newsletter-bar {
    display: flex;
    justify-content: space-between;
    padding: 57px 70px;
    align-items: center;
    background-color: rgba(31, 54, 80, 1);
    border: 1px solid rgba(242, 152, 26, 1);
    border-radius: 200px;
    margin: 0 0 30px;
    z-index: 9;
    position: relative;
}

.newsletter {
    width: 30%;
}


.newsletter-title {
    color: #fff;
    font-size: 32px;
    text-align: start;
    font-family: "Montserrat-Arabic-Bold";
    margin: 0;
    width: 100%;
    line-height: 1.5;
}

.newsletter-input-div {
    width: 61%;
    height: 68px;
    position: relative;
}

.newsletter-input {
    width: 100%;
    display: flex;
    height: 68px;
    border: 1px solid transparent;
    background-color: rgba(241, 247, 254, 1);
    transition: 0.5s;
    align-items: center;
    padding: 0 30px;
    padding-inline-end: 170px;
    outline: none;
    color: var(--main-color);
    font-size: 14px;
    border-radius: 34px;
}

.newsletter-input::placeholder {
    font-size: 14px;
    color: rgba(127, 131, 135, 1);
}

.newsletter-input:focus {
    border: 1px solid rgba(240, 129, 32, 1);
    outline: none;
}

.newsletter-btn {
    padding: 0;
    outline: none;
    border: 0;
    background: var(--main-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
    width: 150px;
    height: 46px;
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    inset-inline-end: 10px;
    transition: 0.5s;
    border-radius: 23px;

}

.contact-list {
    list-style: none;
    margin: 0 0 25pxpx;
    padding: 0;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-list li a {
    color: rgba(179, 196, 214, 1);
    font-size: 16px;
    transition: 0.5s;
    direction: ltr;
}

.contact-list li a:hover {
    background: var(--main-hover);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-decoration: none;
}

.contact-list li a i {
    font-size: 18px;
}

.newsletter-btn:hover {
    color: #fff;
}

.newsletter-btn:focus {
    color: #fff;
    border: 0;
    outline: none;
}

.footer-nav {
    margin: 0 0 31px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

.footer-nav li a {
    color: rgba(179, 196, 214, 1);
    font-size: 14px;
    transition: 0.5s;
}

.footer-nav li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-nav li.active a {
    color: #fff;
    font-family: "Montserrat-Arabic-Bold";
}

.text-center {
    text-align: center !important;
}

.copy-flex {
    border-top: 1px solid rgba(241, 247, 254, 0.07);
    padding: 36px 0 0;
}

.copy-flex-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    justify-content: center;
}

.copy-right {
    text-align: center;
    font-size: 14px;

    color: rgba(241, 247, 254, 1);

}

/*                                   footer                            */

/*   features section    */
.features-section {
    padding: 70px 40px;
    padding-inline-start: 60px;
    background-color: #f7f7f7;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
}

.footer-accordion.nav-foot-header {
    margin-bottom: 28px;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    color: var(--main-hover);
    font-size: 36px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-title {
    color: var(--main-color);
    text-align: start;
    text-transform: capitalize;
    font-size: 19px;
    font-family: "IBMPlexSansArabic-Bold";
    margin: 0;
}

.feature-note {
    font-size: 17px;
    text-align: start;
    margin: 0;
    color: var(--main-color);
}

/*    features section */

/** packages section **/
.packages-section {
    background-color: var(--main-color);
    padding: 50px 0;
}

.packages-section-title-bar {
    display: flex;
    justify-content: center;
    margin: 0 0 50px;
    flex-direction: column;
    align-items: center;
}

.packages-section-title-bar .service-title {
    color: #fff;
    max-width: 100%;
}

.packages-tabs {
    display: flex;

    border-bottom: 0;
    gap: 10px;
    align-items: center;
    width: max-content;
    height: 70px;
    background: #fff;
    margin: 0 auto 50px;
    border-radius: 35px;
    padding: 10px;
}

.packages-tabs li {
    margin: 0;
}

.packages-tabs>li.active>a,
.packages-tabs>li.active>a:hover,
.packages-tabs>li.active>a:focus {
    padding: 11px 53px;
    color: #fff;
    border: 0;
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    height: 50px;
    border-radius: 200px;
    margin: 0;
}

.packages-tabs>li>a {
    padding: 11px 53px;
    border: 0;
    margin: 0;
    font-size: 20px;
    background-color: transparent;
    color: rgba(85, 106, 128, 1);
    font-family: "Montserrat-Arabic-Bold";
    border-radius: 200px;
    height: 50;
}

.packages-tabs>li>a:hover {
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);

    color: #fff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 0 50px;
}

.package-block {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.07);
}

.package-category {
    color: #fff;
    display: block;
    text-align: start;
    font-size: 18px;
    margin: 0 0 20px;
    height: 36px;
    font-family: "Montserrat-Arabic-Medium";
}

.package-price {
    background: var(--main-hover);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    font-size: 32px;
    margin: 0 0 30px;
    display: block;
    text-align: start;
    font-family: "Montserrat-Arabic-Bold";
}

.package-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: rgba(179, 196, 214, 1);
}

.package-list-icon {
    color: rgba(254, 249, 238, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: var(--main-hover);
}

.subscribe-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 50px;
    border-radius: 25px;
    background: var(--main-hover);
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
}

.subscribe-link:hover {
    text-decoration: none;
    color: #fff;
}

.popular-block {
    box-sizing: border-box;
    background-clip: padding-box;
    border-image-slice: 2;
    border-width: 2px;
    border-image-source: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    border-radius: 0;
    background-color: rgba(241, 247, 254, 1);
}

.popular-block .package-category {
    background: var(--main-hover);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin: 0;
}

.popular-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.popular-label {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--main-hover);
    padding: 8px 14px;
    border-radius: 200px;
    font-size: 14px;
}

.popular-block .package-price {
    color: var(--main-color);
    background: transparent;
    -webkit-text-fill-color: var(--main-color)
}

.popular-block .package-list li {
    color: rgba(85, 106, 128, 1);
}

/** packages section **/

/* services page */
.page-title-div {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.page-title {
    color: #fff;
    text-align: center;
    font-size: 62px;
    font-family: "Montserrat-Arabic-SemiBold";
    margin: 0;
}

.serv-title {
    max-width: 100%;
    text-align: center;
    margin: 0 0 50px;
}

.service-content {
    display: flex;
    gap: 28px;
}

.service-title3 {
    font-size: 52px;
    text-align: start;
    font-family: "Montserrat-Arabic-Bold";
    margin: 0 0 27px;
    color: var(--main-color);
    max-width: 552px;
    line-height: 73px;
}

.serv-p {
    text-align: start;
    font-size: 18px;
    color: rgba(85, 106, 128, 1);
    width: 100%;
    line-height: 29px;
    margin: 0;
}

.service-textt {
    max-width: 513px;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.service-img {
    border-radius: 20px;
    max-width: 50%;
    flex: 50%;
    height: 570px;
}

.serv-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* services page */
/** story page **/
.aims-section {

    padding: 100px 0;
}

.aims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aim-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 24px;
    border: 1px solid rgba(225, 225, 242, 1);
    border-radius: 8px;
    box-shadow: 0px 0px 35px 0px rgba(2, 14, 28, 0.07);
    background: linear-gradient(90deg, rgba(105, 176, 225, 0.04) -6.26%, rgba(71, 126, 173, 0.04) 29.35%, rgba(46, 90, 135, 0.04) 60.37%, rgba(31, 68, 112, 0.04) 85.64%, rgba(25, 60, 103, 0.04) 100.57%, rgba(25, 60, 103, 0.04) 108.61%);
    transition: all 0.5s ease;
}

.aim-icon {
    color: var(--main-color);
    font-size: 56px;
    margin: 0 0 20px;
}

.aim-title {
    color: var(--main-color);
    font-size: 42px;
    font-family: "Montserrat-Arabic-Bold";
    text-align: center;
    margin: 0 0 38px;
}

.aim-p {
    text-align: center;
    font-size: 18px;
    line-height: 29px;
    margin: 0;
    color: rgba(85, 106, 128, 1);
}

.title-block {
    background: linear-gradient(90deg, #69B0E1 -6.26%, #477EAD 29.35%, #2E5A87 60.37%, #1F4470 85.64%, #193C67 100.57%, #193C67 108.61%);
    position: relative;
    justify-content: center;
    z-index: 9;
    overflow: hidden;
}

.title-block::before {
    content: "";
    position: absolute;
    top: 0;
    background-image: url(../images/a.png);
    left: 0;
    width: 100%;
    height: 115%;
    z-index: -1;
    background-size: cover;
}

.title-block .aim-title {
    color: #fff;
    max-width: 145px;
    line-height: 56px;
}

.working-inner-page {
    padding: 100px 0 !important;
}

/** story page **/
/*** testimonials section **/
.testimonials-section {
    padding: 122px 0 78px;
}

.testimonials-slider {
    position: relative;
}

.testimonial-block {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    padding: 30px;

    border: 2px solid rgba(0, 0, 0, 0.07);
}

.testimonial-block:hover {
    box-sizing: border-box;
    background-clip: padding-box;
    border-image-slice: 2;
    border-width: 2px;
    border-image-source: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}

.rating li i {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
}

.testimonial-title {
    color: rgba(21, 63, 105, 1);
    font-size: 16px;
    font-family: "Montserrat-Arabic-Bold";
    text-align: start;
    margin: 0 0 16px;
}

.test-p {
    font-size: 16px;
    color: rgba(85, 106, 128, 1);
    text-align: start;
    line-height: 26px;
    margin: 0 0 16px;
}

.user-bar {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-image {
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.user-name {
    font-size: 16px;
    color: var(--main-color);
    font-family: "Montserrat-Arabic-Bold";
    text-align: start;
    margin: 0;
}

.swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    gap: 8px;
    justify-content: center;
    bottom: -15px;
    width: 100%;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main-color);
    opacity: 0.7;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none !important;
}

.inner-projects-title-bar {
    justify-content: center;
}

.swiper-pagination .swiper-pagination-bullet:hover {
    background: var(--main-hover);
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-hover);
    opacity: 1;
}

.swiper-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.swiper-btn {
    position: absolute;
    z-index: 1;
    top: 42%;


    transform: translateY(-50%);

    font-size: 30px;
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-btn:hover {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.swiper-btn.swiper-btn-next {
    left: -30px;
}

.swiper-btn.swiper-btn-prev {
    right: -30px;
}

/*** testimonials section **/

/** blog-section **/
.blog-section {
    padding: 0 0 100px;
}

.blog-content {
    display: flex;
    gap: 30px;
}

.big-blog {
    width: 50%;
    background-color: var(--main-color);
    padding: 30px;
    border-radius: 12px;
    height: max-content;
}

.blog-img {
    border-radius: 12px;
    margin: 0 0 30px;
    overflow: hidden;
}

.blog-image {
    transition: 0.5s;
    border-radius: 12px;
    width: 100%;
}

.big-blog:hover .blog-image {
    transform: scale(1.05);
}

.blog-title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.blog-title {
    color: #fff;
    display: block;
    transition: 0.5s;
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
}

.big-blog:hover .blog-title {
    text-transform: none;
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(179, 196, 214, 1);
    font-size: 14px;
}

.blog-date i {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.blog-text {
    text-align: start;
    font-size: 16px;
    color: rgba(179, 196, 214, 1);
    line-height: 26px;
    margin: 0 0 32px;
}

.small-blogs {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.small-blog-block {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(241, 241, 242, 1);
    background-color: rgba(241, 241, 242, 1);
    padding: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: 0.5s;
}

.small-blog-block:hover {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
}

.small-blog-img {
    width: 163px;
    height: 135px;
    border-radius: 8px;
    overflow: hidden;
}

.small-blog-image {
    border-radius: 8px;
    width: 100%;
    transition: 0.5s;
    height: 100%;
}

.small-blog-block:hover .small-blog-image {
    transform: scale(1.05);
}

.small-blog-title {
    color: var(--main-color);
    display: block;
    transition: 0.5s;
    margin: 0 0 8px;
    font-size: 20px;
    font-family: "Montserrat-Arabic-Bold";
}

.small-blog-title:hover {
    text-decoration: none;
}

.small-blog-block:hover .small-blog-title {
    color: #fff;
}

.small-blog-text {
    text-align: start;
    font-size: 14px;
    color: rgba(71, 82, 94, 1);
    margin: 0 0 15px;
    line-height: 22.4px;
    max-width: 295px;
    transition: 0.5s;
}

.small-blog-block:hover .small-blog-text {
    color: rgba(179, 196, 214, 1);
}

.small-blog-date-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.small-blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(71, 82, 94, 1);
    font-size: 14px;
    transition: 0.5s;
}

.small-blog-block:hover .small-blog-date {
    color: rgba(179, 196, 214, 1);
}

.small-blog-date i {
    color: var(--main-color);
    font-size: 20px;
    transition: 0.5s;
}

.small-blog-block:hover .small-blog-date i {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/** blog-section **/
/*** brands-section **/
.brands-section {
    padding: 0 0 100px;
}

.brands-slider {
    position: relative;
}

.brands-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.brand-all-block {
    border: 1px solid #80808038;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 20px;
}

/*** brands-section **/
/*                                    media query                                    */
/*                    menu in phone size                      */

@media (max-width: 991px) {
    body {
        padding-top: 65px;
    }

    .card-line-section {
        display: none;
    }

    .aims-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .working-inner-page {
        padding: 50px 0 !important;
    }

    .aims-section {
        padding: 50px 0;
    }

    .service-title3 {
        line-height: 1.67;
    }

    .service-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-title3 {
        text-align: center;
        font-size: 30px;
        max-width: 100%;
    }

    .service-textt {
        max-width: 100%;
    }

    .page-title-div {
        padding: 50px 0;
    }

    .page-title {
        font-size: 30px;
    }

    .footer-logo-bar:after {
        content: " ";
        position: absolute;
        top: -38px;
        inset-inline-end: 0;
        width: 150px;
        height: 103px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(../images/certificate.png);
        background-size: cover;
    }

    .working-section {
        padding: 0 0 50px;
    }

    .swiper-pagination {
        display: flex;
    }

    .blog-section {
        padding: 0 0 50px;
    }

    .blog-content {
        flex-wrap: wrap;
    }

    .big-blog {
        width: 100%;
    }

    .blog-title-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .small-blogs {
        width: 100%;
    }

    .small-blog-block {
        flex-wrap: wrap;
    }

    .swiper-btn {
        display: none;
    }

    .packages-tabs>li.active>a,
    .packages-tabs>li.active>a:hover,
    .packages-tabs>li.active>a:focus {
        padding: 11px;
        font-size: 17px;
    }

    .testimonials-section {
        padding: 50px 0 80px;
    }

    .packages-tabs>li>a {
        padding: 11px;
        font-size: 17px;
    }

    .packages-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .working-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .service-block {
        height: auto;
    }

    .projects-section {
        padding: 50px 0;
    }

    .team-section {
        padding: 0 0 50px;
    }

    .team-grid {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .team-section-title-bar .service-title {
        margin: 0;
    }

    .projects-section-title-bar {
        flex-wrap: wrap;
        margin: 0 0 30px;
    }

    .projects-tabs {
        width: 100%;
        overflow-x: scroll;
        padding: 15px 0;
    }

    .projects-tabs li {
        white-space: nowrap;
    }

    .projects-tabs::-webkit-scrollbar {
        height: 5px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .story-section {
        padding: 50px 0;
    }

    .story-section-content {
        flex-wrap: wrap;
    }

    .story-title {
        font-size: 30px;
        line-height: 1.6;
        max-width: 100%;
    }

    .story-note {
        font-size: 16px;
        max-width: 100%;
    }

    .story-list {
        max-height: max-content;
    }

    .service-title2 {

        font-size: 13px;

        max-width: 100%;
        line-height: 21px;
    }

    .service-details {
        padding: 10px 20px;
    }

    .service-p {
        font-size: 10px;
        line-height: 17.4px;
        margin: 0 0 5px;
    }

    .service-img-cover {
        width: 100%;
    }

    .service-details img {
        width: 30px;
    }

    .service-block-cover .service-title2 {
        margin: 0 0 5px;
    }

    .more-link-2 {
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .services-section {
        padding: 50px 0;
    }

    .service-title-bar {
        flex-wrap: wrap;
    }

    .main-title-bar {
        flex-wrap: wrap;
    }

    .service-title-section {
        width: 100%;
    }

    .service-title {

        font-size: 30px;


        line-height: 1.4;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .service-t {
        font-size: 16px;
        margin: 0 0 15px;
        line-height: 26px;
    }

    .main-title {
        line-height: 1.6;
        max-width: 100%;
        font-size: 30px;
    }

    .reserve-link {
        display: none;
    }

    .cards-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cards-section {
        width: 100%;
    }

    .card-text:before {
        content: " ";
    }

    .card-text {
        width: 100%;
    }

    .counter-bar {
        flex-wrap: wrap;
        gap: 15px;
    }

    .main-img {
        display: none;
    }

    .counter-section {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .contact-link {

        display: none;
    }

    .count {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navgition .contact-link {
        display: flex;
        margin: 40px auto 0;
        width: 100%;
    }

    .footer-accordion {
        cursor: pointer;
        width: 100%;
        transition: 0.4s;

    }

    .footer-accordion.nav-foot-header {
        margin-bottom: 0;
    }

    .footer-accordion:after {
        content: "";
        font-family: "Linearicons-Free";

        font-size: 13px;
        transition: all 0.5s ease-out;
    }

    .footer-panel {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease-out;
        padding: 0 15px;
    }

    .footer-accordion.active:after {
        transform: rotate(180deg);
    }

    .footer-note {
        max-width: 100%;
    }

    .menu-item-has-children:after {
        content: "";
    }

    .sub-menu li a:after {
        content: "" !important;
    }

    .gallery {
        gap: 15px;
    }

    .img-logo {
        width: 150px;
    }

    .lang a {
        font-size: 15px !important;
    }

    .top-header-list {
        gap: 15px;
        flex-direction: row-reverse;
    }

    .search-input {
        height: 40px;
        border-radius: 24px;
    }



    .menu-item-has-children a:hover {
        color: var(--main-hover) !important;
    }

    .menu-item-has-children {
        width: 100%;
        position: unset;
    }

    .menu-item-has-children a:after {
        content: "";
        font: var(--fa-font-light);
        position: absolute;
        inset-inline-end: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: 0.5s;
    }

    .menu-item-has-children.active a:after {
        transform: rotate(180deg);
        top: 20%;
    }

    .sub-menu li:not(:last-child) {
        margin-bottom: 10px;
    }

    .sub-menu {
        margin-top: 15px;
    }

    .sub-menu li a {
        font-size: 16px !important;
    }

    .nav-foot-header {
        font-size: 16px;
    }

    .nav-foot-cont {
        text-align: start;
        margin-bottom: 20px;
    }

    .copy-right {
        order: 2;
    }

    .bars-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .navgition .bars-icon {
        position: absolute;
        top: 37px;
        inset-inline-end: 20px;
    }

    .line {
        background-color: rgba(179, 196, 214, 1);
        width: 18px;
        height: 1.3px;
    }

    .navgition .bars-icon .line-2 {
        display: none;
    }

    .navgition .bars-icon .line-1 {
        transform: translate(0px, 3px) rotate(-45deg);
    }

    .navgition .bars-icon .line-3 {
        transform: translate(0px, -3px) rotate(45deg);
    }

    .discount {
        font-size: 14px;
        inset-inline-start: 10px;
    }

    .features-section {
        margin-bottom: 50px;
        padding: 30px 20px;
        padding-inline-start: 20px;
        margin-top: 50px;
        flex-wrap: wrap;
        gap: 30px;
    }

    .new-arrivals-section {
        padding: 0px 0 50px;
    }




    .nav-header {
        padding: 24px 0;
    }

    .top-header-list li {
        font-size: 20px;
    }

    .search-btn:after {
        font-size: 16px;
    }

    .newsletter-bar {
        justify-content: center;
        padding: 30px 20px;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        margin-bottom: 0;
        padding-inline-start: 20px;
    }

    .copy-flex-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .env-icon {
        display: none;
    }

    .newsletter-title {
        text-align: center;
        font-size: 17px;
    }

    .newsletter-btn {
        width: 95px;
    }

    .newsletter-input {
        padding-inline-end: 90px;
    }

    .contact-list {
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0 50px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-foot-header-2 {
        margin: 30px 0 15px;
        text-align: center;
    }

    .footer-note {
        margin-bottom: 20px;
        max-width: 100%;
    }

    footer {
        padding: 0 0 20px;
    }

    .nav-header {
        padding: 10px 0;
        justify-content: space-between;
    }

    footer .img-logo {
        margin: 0 auto;
        width: 101px;
        position: relative;
        top: 0;
    }


    .features-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .search-button {
        font-size: 16px;
    }

    .newsletter-note {
        font-size: 13px;
    }

    .newsletter-input-div {

        width: 100%;

    }

    .newsletter {
        width: 100%;
    }

    .newsletter-input {
        width: 100%;
    }

    .best-seller-section {
        padding: 0px 0 56px;
    }

    .big-title {
        font-size: 24px;
        margin: 0 0 22px;
    }

    .fixed-header .search-content {
        top: 65px;
    }

    .add-cart-btn {
        font-size: 12px;
    }

    .cart-icon {
        font-size: 14px;
    }

    .product-name {
        height: 50px;
        padding: 0;
        font-size: 13px;
    }

    .social-list {
        flex-direction: row;
        justify-content: center;
        margin: 0 0 30px;
        width: 100%;
    }

    .mb-24 {
        margin-bottom: 15px !important;
    }

    .apps {
        justify-content: center;
    }

    .copy-flex {
        margin: 0;
        padding: 15px 0;
    }

    .tk {
        text-align: start;
    }

    .navgition {
        display: block;
        position: fixed;
        padding: 30px 20px;
        padding-top: 0;
        left: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        clip-path: circle(10.9% at 16% 16%);
        background-color: var(--main-color);
        transition: 0.4s;
        z-index: 8;
        overflow-y: auto;
        transition: all 0.3s ease-in-out;
        margin-inline-end: 0;
    }

    html[dir="ltr"] .navgition {
        clip-path: circle(11.2% at 86% 14%);
    }

    .reset-left {
        left: 0;
        top: 0;
        clip-path: circle(139.6% at 9% 15%);
        visibility: visible;
        opacity: 1;
    }

    html[dir="ltr"] .reset-left {
        clip-path: circle(121.2% at 86% 14%);
    }

    .big-menu {
        text-align: start;
        align-items: flex-start;
        padding: 128px 0 0;
        flex-direction: column;
    }

    .big-menu li a {
        font-size: 18px;
        display: flex;
        width: 100%;
        position: relative;
        transition: 0.5s;
        font-family: "Montserrat-Arabic-Bold";
    }

    .lang {
        position: absolute;
        top: 30px;

    }

    .big-menu li a:hover {
        color: #fff;
    }

    /*                    menu in phone size                      */
}

/*                                    media query                                    */

/*                                 arrow-top                           */
.arrow-top {
    position: fixed;
    bottom: 15px;
    inset-inline-start: 15px;
    display: none;
    z-index: 10;
    text-decoration: none !important;
}

.arrow-top-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    color: #808080;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.arrow-top-arrow:hover {
    background-color: var(--main-color);
    color: #fff;
}

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


    .story-list {
        max-height: 150px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        display: grid;
    }

    .blog-content {
        flex-wrap: nowrap;
    }

    .big-blog {
        width: 50%;

    }

    .small-blogs {
        width: 50%;
        gap: 10px;
    }

    .swiper-pagination {
        bottom: -40px;
    }
}

@media (min-width: 992px) and (max-width: 1180px) {
    .projects-tabs>li>a {
        font-size: 11px;
    }

    .projects-tabs {
        gap: 10px;
    }

    .service-image img {
        object-fit: cover;
    }

    .projects-tabs>li.active>a,
    .projects-tabs>li.active>a:hover,
    .projects-tabs>li.active>a:focus {
        font-size: 13px;
    }
}

.inner-whats-b {
    border: 3px solid #FEFEFE;
    border-radius: 50%;
    position: relative;
    padding: 12px;
    backdrop-filter: blur(14px);
}

.inner-whats-b i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 26px;
}

.whats-hero {
    position: relative;
}

.whats-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    border-radius: 50%;
    top: 0;
    left: -50%;
    z-index: -1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.inner-whats-b img {
    animation: spin 8s linear infinite;
}

.main-banner .main-title span {
    background: var(--main-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-img-cover.transparent {
    display: none;
}
.service-details::after {
    content: "";
    position: absolute;
    width: 277px;
    height: 100%;
    background-image: url(../images/bg-serv.jpeg);
    right: 0;
    border-radius: 0 16px 16px 0;
    top: 0;
    background-size: cover;
    z-index: -1;
    opacity: 0.6;
}

.story-image img {
    height: 100%;
    object-fit: cover;
}
.d-none {
    display: none;
}
.whats-hero.footer-cta {
    position: absolute;
    left: 6%;
    top: 17%;
}

.footer-logo-bar:after {
    display: none;
}

.fixed-header {
    z-index: 999999999 !important;
}

.main-banner {
    z-index: 99999;
}
.whats-hero.footer-cta::after {
    z-index: 1;
}

.whats-hero.footer-cta .inner-whats-b {
    z-index: 2;
}
.ksa-center {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}
.ksa-center img {
    width: 150px;
}
.over-serv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serv-b-new {
    height: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.over-serv {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 16px;
}

.serv-ico {
    position: absolute;
    z-index: 2;
    background: var(--main-color);
    padding: 15px;
    border-radius: 0px 0px 16px;
    left: 0;
}
.serv-b-new::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg-serv.jpeg);
    right: 0;
    border-radius: 16px;
    top: 0;
    background-size: cover;
    z-index: -1;
    opacity: 1;
    transition: all 0.5s ease;
    /* filter: brightness(0.7); */
}
.content-ser {
    padding-top: 65px;
    padding: 65px 30px 0px 30px;
    position: relative;
    z-index: 1;
}
.serv-ico img {
    filter: brightness(0) invert(1);
}

.content-ser h3 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    transition: all 0.5s ease;
}

.content-ser p {
    font-size: 16px;
    line-height: 1.7;
}
a.link-b {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.serv-b-new:hover::after {
    opacity: 0;
}

::after {}

.serv-b-new:hover h3 {
    color: white;
}

.serv-b-new:hover p {
    color: white;
}
.serv-ico img {
    width: 39px;
}
.serv-ico img {
    width: 39px;
}

.service-details img {
    width: 50px;
}
.serv-b-new::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    right: 0;
    border-radius: 16px;
    top: 0;
    background-size: cover;
    z-index: 0;
    opacity: 0;
    transition: all 0.5s ease;
}
.serv-b-new:hover::before {
    opacity: 0.5;
}
.more-div:hover span.more-link-3 {
    transform: translatex(-61px);
}

.more-div:hover .more-icon {
    transform: translatex(162px);
}

ul.cards-list .js-marquee {
    display: flex;
}
section.contacr-sec-p {
    background: var(--main-color);
    padding: 100px 0px;
    color: white;
    border-bottom: 1px solid rgba(242, 152, 26, 1);
    padding-bottom: 0px;
}

.contact-info-p {
    height: 756px;
    border: 1px solid rgba(242, 152, 26, 1);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}
ul.contact-info-list {
    padding: 0px;
    list-style: none;
}

ul.contact-info-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    /* background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%); */
    padding: 10px;
    border-radius: 43px;
    align-items: center;
    padding-inline-start: 20px;
    border: 1px solid rgba(242, 152, 26, 1);
}

ul.contact-info-list li i {
    color: white;
    font-size: 25px;
}

ul.contact-info-list li a {
    color: white;
    font-size: 16px;
}

ul.contact-info-list li p {
    font-size: 16px;
    margin: 0;
}
.contact-info-p-inn h3 {
    font-size: 32px;
    margin: 0;
    margin-bottom: 30px;
}

.contact-form-p {
    border: 1px solid rgba(242, 152, 26, 1);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-form-p h3 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 32px;
}

section.contacr-sec-p .row .col-md-6 {
    height: 100%;
}

.contact-info-p::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/a-2.png);
    z-index: 0;
}
.contact-info-p-inn {
    position: relative;
    z-index: 1;
}
.contact-info-p-inn {
    position: relative;
    z-index: 1;
}

form.contact-form .form-group label {
    margin-bottom: 10px;
}

form.contact-form .form-group input {
    height: 50px;
    border-radius: 34px;
}

form.contact-form .form-group label button.btn.btn-primary {
    width: 100%;
    display: block;
}

form.contact-form .btn-primary {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    font-size: 18px;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    border: none;
    margin-top: 20px;
}


form.contact-form .form-group {
    margin-bottom: 20px;
}
.iframe iframe {
    width: 100%;
    height: 100%;
}

.iframe {
    height: 450px;
    margin-top: 80px;
}

.btn-mhover {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: none;
    outline: none;
    border: 1px solid rgba(242, 152, 26, 1);
    border: 1px solid transparent;
}

.btn-mhover::after {
    position: absolute;
    content: "";
    display: block;
    left: 15%;
    right: -20%;
    top: -4%;
    height: 150%;
    width: 150%;
    bottom: 0;
    background-color: var(--main-color);
    transform: skewX(45deg) scale(0, 1);
    z-index: -1;
    transition: all 0.5s ease-out 0s;
}

.btn-mhover:hover::after {
       transform: skewX(45deg) scale(1, 1);
}
.proj-img {
    width: 100%;
    height: 500px;
}

.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.body-inner {
    padding: 90px 0px;
}

.proj-content li {margin-bottom: 10px;font-size: 16px;color: #B3C4D6;}

.proj-content h3 {
    font-size: 32px;
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    background: linear-gradient(90deg, #F5D60B -5.56%, #F5D60B -2.09%, #F4BE11 17.57%, #F2981A 52.27%, #F08120 80.03%, #F07822 97.38%, #F07822 110.1%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
}



.proj-content li::marker {
    color: rgba(242, 152, 26, 1);
}

section.single-pro-sec.body-inner .row {
    align-items: center;
    display: flex;
    margin-bottom: 50px;
}

section.single-pro-sec.body-inner .row:nth-child(even) {
    flex-direction: row-reverse;
}

.bolog-details-area .post-thumb {
  margin-bottom: 35px;
}

.bolog-details-area .post-thumb img {
  border-radius: 5px;
}

.bolog-details-area .blog-details-content>span {
  font-family: var(--font-saira);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 5px;
  padding: 5px 22px;
  display: inline-block;
  margin-bottom: 25px;
}

.bolog-details-area .blog-details-content h2 {
  font-weight: 600;
  font-size: 50px;
  text-transform: capitalize;
  /* color: navajowhite; */
  margin-bottom: 30px;
  background: var(--main-hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .bolog-details-area .blog-details-content h2 {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .bolog-details-area .blog-details-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content h2 {
    font-size: 36px;
  }
}

.bolog-details-area .blog-details-content .author-and-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .bolog-details-area .blog-details-content .author-and-meta {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.bolog-details-area .blog-details-content .author-and-meta .author-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bolog-details-area .blog-details-content .author-and-meta .author-area .author-img img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.bolog-details-area .blog-details-content .author-and-meta .author-area .author-content h6 {
  margin-bottom: 0;
  font-family: var(--font-saira);
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #b5b5b5;
}

.bolog-details-area .blog-details-content .author-and-meta .author-area .author-content h6 span {
  color: var(--theme-color);
}

.bolog-details-area .blog-details-content .author-and-meta .blog-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content .author-and-meta .blog-meta {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.bolog-details-area .blog-details-content .author-and-meta .blog-meta li {
  font-family: var(--font-saira);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: #b5b5b5;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
}

.bolog-details-area .blog-details-content .author-and-meta .blog-meta li svg {
  width: 13px;
  fill: #b5b5b5;
}

.bolog-details-area .blog-details-content .author-and-meta .blog-meta li::after {
  content: "";
  height: 10px;
  width: 2px;
  background-color: var(--theme-color);
  border-radius: 4px;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content .author-and-meta .blog-meta li::after {
    display: none;
    visibility: hidden;
  }
}

.bolog-details-area .blog-details-content .author-and-meta .blog-meta li:first-child::after {
  display: none;
  visibility: hidden;
}

.bolog-details-area .blog-details-content p {
  font-family: var(--font-saira);
  font-weight: 300;
  font-size: 15px;
  line-height: 32px;
  margin-bottom: 20px;
}

.bolog-details-area .blog-details-content p:last-child {
  margin-bottom: 0;
}

.bolog-details-area .blog-details-content>h3 {
  font-family: var(--font-saira);
  font-weight: 600;
  font-size: 30px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content>h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.bolog-details-area .blog-details-content blockquote {
  background-image: url(../img/inner-pages/blockquote-bg.png),
    linear-gradient(#171717, #171717);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 80px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .bolog-details-area .blog-details-content blockquote {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content blockquote {
    padding: 30px 20px;
  }
}

.bolog-details-area .blog-details-content blockquote .blockquote-icon-01 {
  position: absolute;
  left: 60px;
  bottom: 20px;
}

@media (max-width: 767px) {
  .bolog-details-area .blog-details-content blockquote .blockquote-icon-01 {
    left: 20px;
  }
}

.bolog-details-area .blog-details-content blockquote .blockquote-icon-02 {
  position: absolute;
  right: 60px;
  bottom: 20px;
}

@media (max-width: 767px) {
  .bolog-details-area .blog-details-content blockquote .blockquote-icon-02 {
    right: 20px;
  }
}

.bolog-details-area .blog-details-content blockquote p {
  font-family: var(--font-saira);
  font-weight: 300;
  font-size: 20px;
  line-height: 45px;
  letter-spacing: 0.03em;
  color: var(--white-color);
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content blockquote p {
    font-size: 18px;
    line-height: 40px;
  }
}

.bolog-details-area .blog-details-content blockquote h3 {
  margin-bottom: 0;
  font-family: var(--font-saira);
  font-weight: 500;
  font-size: 30px;
  color: var(--theme-color);
}

@media (max-width: 576px) {
  .bolog-details-area .blog-details-content blockquote h3 {
    font-size: 24px;
  }
}

.bolog-details-area .blog-details-content .blog-details-img-group {
  padding-top: 15px;
  margin-bottom: 35px;
}

.bolog-details-area .blog-details-content .blog-details-img img {
  border-radius: 5px;
}

.bolog-details-area .blog-details-content .blog-tag-and-social {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .bolog-details-area .blog-details-content .blog-tag-and-social {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.bolog-details-area .blog-details-content .blog-tag-and-social .tag {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .tag h6 {
  margin-bottom: 0;
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
  color: #ffffff;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .tag ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .bolog-details-area .blog-details-content .blog-tag-and-social .tag ul {
    flex-wrap: wrap;
  }
}

.bolog-details-area .blog-details-content .blog-tag-and-social .tag ul li a {
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 15px;
  display: inline-block;
  transition: 0.5s;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .tag ul li a:hover {
  color: var(--theme-color);
  border: 1px solid rgba(6, 216, 137, 0.1);
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social {
  display: flex;
  align-items: end;
  gap: 15px;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social h6 {
  margin-bottom: 0;
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 18px;
  text-transform: capitalize;
  color: #ffffff;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social ul li {
  line-height: 1;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social ul li a {
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
  transition: 0.5s;
  line-height: 0.5;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social ul li a i {
  line-height: 1;
}

.bolog-details-area .blog-details-content .blog-tag-and-social .social ul li a:hover {
  color: var(--theme-color);
}

.bolog-details-area .details-navigation {
  margin-top: 40px;
}

.widget-area .single-widgets {
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid #B3C4D6;
  padding: 35px 25px;
  margin-bottom: 35px;
  border-radius: 5px;
}

.widget-area .single-widgets:last-child {
  margin-bottom: 0;
}

.widget-area .single-widgets .widget-title {
  border-bottom: 1px solid #B3C4D6;
  margin-bottom: 25px;
}

.widget-area .single-widgets .widget-title h4 {
  font-weight: 500;
  font-size: 24px;
  display: inline-block;
  text-transform: capitalize;
  padding-bottom: 5px;
}

.widget-area .wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
}

.widget-area .wp-block-search__inside-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px 0px 0px 5px;
  height: 50px;
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #dedada;
  padding: 10px 15px;
}

.widget-area .wp-block-search__inside-wrapper .wp-block-search__button {
  height: 50px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: var(--theme-color);
  border-radius: 0px 5px 5px 0px;
  transition: 0.5s;
}

.widget-area .wp-block-search__inside-wrapper .wp-block-search__button svg {
  fill: var(--black-color2);
  transition: 0.5s;
}

.widget-area .wp-block-search__inside-wrapper .wp-block-search__button:hover svg {
  fill: var(--white-color);
}

.widget-area .wp-block-categoris-cloud {
  margin: 0;
  padding: 0;
  list-style: none;
}

.widget-area .wp-block-categoris-cloud li {
  margin-bottom: 15px;
}

.widget-area .wp-block-categoris-cloud li:last-child {
  margin-bottom: 0;
}

.widget-area .wp-block-categoris-cloud li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-saira);
  font-weight: 500;
  font-size: 16px;
  color: #b5b5b5;
  transition: 0.5s;
}

.widget-area .wp-block-categoris-cloud li a:hover {
  color: var(--theme-color);
}

.widget-area .recent-post-wraper .widget-cnt {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.widget-area .recent-post-wraper .widget-cnt:last-child {
  margin-bottom: 0;
}

.widget-area .recent-post-wraper .widget-cnt .wi {
  height: 85px;
  min-width: 110px;
}

.widget-area .recent-post-wraper .widget-cnt .wi img {
  border-radius: 5px;
  height: 85px;
  width: 110px;
}

.widget-area .recent-post-wraper .widget-cnt .wc a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-saira);
  color: #b5b5b5;
  transition: 0.5s;
  display: inline-block;
}

@media (max-width: 576px) {
  .widget-area .recent-post-wraper .widget-cnt .wc a {
    font-weight: 400;
  }
}

.widget-area .recent-post-wraper .widget-cnt .wc a:hover {
  color: var(--theme-color);
}

.widget-area .recent-post-wraper .widget-cnt .wc h6 {
  margin-bottom: 20px;
}

.widget-area .recent-post-wraper .widget-cnt .wc h6 a {
  font-size: 18px;
  font-weight: 500;
  color: black !important;
  transition: 0.5s;
}

@media (max-width: 576px) {
  .widget-area .recent-post-wraper .widget-cnt .wc h6 a {
    font-size: 16px;
  }
}

.widget-area .recent-post-wraper .widget-cnt .wc h6 a:hover {
  color: var(--theme-color);
}

.widget-area .wp-block-tag-cloud {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.widget-area .wp-block-tag-cloud a {
  font-family: var(--font-saira);
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #ffffff;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  display: inline-block;
  transition: 0.5s;
}

.widget-area .wp-block-tag-cloud a:hover {
  color: var(--theme-color);
  border: 1px solid rgba(6, 216, 137, 0.1);
}


.post-thumb.magnetic-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.bolog-details-area.sec-mar.body-inner {
    /* background: var(--main-color); */
    border-bottom: 1px solid rgba(242, 152, 26, 1);
}
section.single-pro-sec.body-inner {
    background: var(--main-color);
    border-bottom: 1px solid rgba(242, 152, 26, 1);
}
.aim-block:hover {
    transform: translateY(-10px);
    box-shadow: 1px 1px 1px var(--main-color);
}
.js-marquee-wrapper {
    display: flex;
}
.project-block a {
    display: block;
    height: 100%;
}

.project-block a img {
    height: 250px;
}