@font-face {
    font-family: 'fedra';
    src: url('../fonts/fedra.ttf');
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf');
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Regular.eot');
    src: url('../fonts/tajawal/Tajawal-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/tajawal/Tajawal-Regular.woff2') format('woff2'),
    url('../fonts/tajawal/Tajawal-Regular.woff') format('woff'),
    url('../fonts/tajawal/Tajawal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
:root {
    --main: #95774C;
    --black: #000000;
    --white: #ffffff;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr !important;
    text-align: left !important;
}

html[dir="rtl"] body {
    direction: rtl !important;
    text-align: right !important;
}

body {
    font-family: 'fedra', serif !important;
    color: var(--white);
    background: #313133 !important;
    font-size: 16px;
}

p:last-of-type {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

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

.no-padding {
    padding: 0 !important;
}

.form-group, form {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .form-group,
html[dir="ltr"] form {
    direction: ltr;
    text-align: left;
}

.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--main);
}

.main-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    border-radius: 5px;
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all .35s ease-in-out;
}

.main-btn:hover {
    color: var(--white);
    background: transparent;
    border: 1px solid transparent;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: var(--main);
    z-index: -1;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
}

html[dir="ltr"] .main-btn::before {
    left: unset;
    right: 100%;
}

.main-btn:hover::before {
    transform: translateX(-100%);
}

html[dir="ltr"] .main-btn:hover::before {
    transform: translateX(100%);
}


.main-btn::after {
    font-family: "Font Awesome 6 Free", serif;
    content: "\f060";
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.5s ease-in-out, color 0.35s ease-in-out;
}

html[dir="ltr"] .main-btn::after {
    content: "\f061";
}

.main-btn:hover::after {
    transform: rotate(45deg);
    color: var(--white);
}

html[dir="ltr"] .main-btn:hover::after {
    transform: rotate(-45deg);
}

.main-tit {
    font-weight: bold; /* أو أي نمط خط آخر */
    font-size: 48px;
    color: var(--main);
}

.main-desc {
    font-weight: bold; /* أو أي نمط خط آخر */
    font-size: 20px;
    color: var(--main);
}

@media (max-width: 768px) {
    .main-tit {
        font-size: 36px;
    }

    .main-desc {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .main-tit {
        font-size: 24px;
    }
}

/******************************/
/******************************/
#header-search {
    display: inline-block;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

.open-search {
    color: var(--white);
    background-color: transparent;
    font-weight: bold;
    padding: 0;
    font-size: 24px;
    text-align: center;
    margin-inline-start: 10px;
    transition: all .35s ease-in-out;
}

.open-search:hover {
    color: var(--main);

}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    border: 0;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid;
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands', serif;
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Brands', serif;
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

#search-header input[type="search"] {
    background: rgba(0, 0, 0, 0);
    border-color: #5f5f5f;
}

#search-header input[type="search"],
#search-header .search-submit {
    color: #fff;
}

@media (max-width: 500px) {
    .open-search {
        color: var(--main);
    }
}

/******************************/
/******************************/
header {
    padding: 10px 0;
    background: #313133;

}

@media (max-width: 650px) {

}

/******************************/
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head-logo .main-logo {
    position: relative;
    z-index: 2;
}

.head-logo .main-logo img {
    max-width: 100px;
}

.header-icon {
    display: flex;
    align-items: center;
}

.header-icon a {
    margin-inline-start: 15px;
}

.language .dropdown {
    margin: 0 !important;
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .head-home {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2;
    }
}

/******************************/

.lang {
    color: var(--main);
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    transition: all .35s ease-in-out;
}

.header-url a {
    color: var(--main);
}

.header-icon a {
    margin: 0 10px;
}

.language {
    color: var(--white);
}

.language-drop {
    background: transparent;
    color: var(--white);
}

.language-drop::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.language-drop::after {
    content: none !important;
}

.language .dropdown-menu.show {
    text-align: center;
}


@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 60%;
    }

    .nav-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 0;
        width: 100%;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-start: 5px;
    }

    .nav-list > .menu-item > a {
        display: block;
        color: var(--white);


        padding: 5px 25px;
        font-size: 18px;
        position: relative;
        text-align: center;
        transition: all 0.5s ease-in-out;
    }


    .nav-list > .menu-item > a:before, .nav-list > .menu-item.active a:before {
        content: '';
        width: 0;
        height: 3px;
        background-color: var(--main);
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transform: scale(0);
        transition: all .5s ease-in-out;
    }

    .nav-list > .menu-item:hover > a:before, .nav-list > .menu-item.active a:before {
        opacity: 1;
        width: 100%;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f0d7";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 10px;
        color: var(--main);
        background: transparent;
        transition: all .35s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);


    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--black);
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 350px;
        background-color: rgba(220, 220, 220, 1);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.2s ease-in-out;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

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

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: var(--black);
        padding-bottom: 10px;
        transition: all 0.5s ease-in-out;
    }


    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f324";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f323";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--black);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

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

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--main);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }


    html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f100";
    }

    html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f101";
    }

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        display: inline-block;
        margin-inline-start: 10px;
        color: var(--black);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        color: var(--main);
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--main);
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {


    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .head-logo {
        display: flex;
        align-items: center;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        color: var(--white);
        background-color: var(--main);
        margin-inline-end: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }


    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background: #313133;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 999;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;

    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid var(--main);
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--white);
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--main);
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid var(--black);
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid var(--black);
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: var(--black);
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: var(--main);
    }

    .sub-menu {
        list-style: none;
        background-color: var(--main);
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: var(--white);

        transition: all .3s linear;
    }

    .mobile-nav-list .sub-menu a:hover {
        color: #393839;
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .35s ease-in-out;
    }
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .language, .language-drop {
        color: var(--main);
    }
}

/******************************/
/******************************/

.slideshow {
    position: relative;
    overflow: hidden;
}

.main-slider .swiper-slide img {
    width: 100%;
}

.main-slider .main-slider-items {
    position: relative;
    text-align: center;
}

.main-slider .main-slider-items:after {
    content: " ";
    background: linear-gradient(180deg, rgba(49, 49, 51, 0) 0%, #313133 51.92%);
    position: absolute;
    bottom: -50%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.main-slider .main-slider-items .main-slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: var(--white);
}

.main-slider .main-slider-items .main-slider-content .tit {
    font-size: 46px;
    font-weight: bold;
    width: 80%;
    margin: 0 auto 50px;
    text-align: center;
}

.main-slider .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-slider .swiper-button-next:after, .main-slider .swiper-button-prev:after {
    content: none !important;
}

.main-slider .custom-arrow {
    width: 40px;
    height: 40px;
    background-color: #313133;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.main-slider .swiper-button-prev.custom-arrow {
    left: 10px;
    right: unset;
}

.main-slider .swiper-button-next.custom-arrow {
    right: 10px;
    left: unset;
}

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

@media (max-width: 768px) {
    .main-slider .main-slider-items .main-slider-content .tit{
        width: 95%;
        font-size: 34px;
    }
}

@media (max-width: 500px) {
    .main-slider .main-slider-items .main-slider-content .tit{
        width: 100%;
        font-size: 16px;
    }
}

/******************************/
/******************************/
.about {
    position: relative;
    padding: 50px 0;
}

.vision-message-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vision-message-item .icon {
    display: flex;
    flex: .3;
}

.vision-message-item .icon img {
    max-width: 100px;
}

.vision-message-item .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: .7;
}

.vision-message-item .content .tit {
    color: var(--main);
    font-size: 24px;
    font-weight: bold;
}

.vision-message-item .content .desc {
    font-size: 16px;
    font-weight: 500;
}

.vision-message-item .content .desc li {
    list-style: disc;

}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
.about-description{
    font-size: 14px;
    margin: 30px 0;
}
}

/******************************/
/******************************/
.services {
    padding: 200px 0 100px;
    position: relative;
}

.services-head {
    text-align: start;
}

.services-head .main-tit {
    text-align: start;
}

.services .row-serv .services-items {
    margin-bottom: 30px;
}

.services .row-serv .services-items .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    text-align: center;
    margin-bottom: 10px;

}

.services .row-serv:nth-of-type(3n+1) .services-items .icon {
    background: #FFECD6;
}

.services .row-serv:nth-of-type(3n+2) .services-items .icon {
    background: #FFF7C9;
}

.services .row-serv:nth-of-type(3n+3) .services-items .icon {
    background: #DFF9FF;
}

.services .row-serv .services-items .text {
    font-size: 20px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .services .row-serv .services-items .li{
        font-size: 14px;
    }

}

@media (max-width: 500px) {
    .services .row-serv .services-items{
        text-align: center;
    }
    .services .row-serv .services-items .icon{
        margin: 0 auto;
    }
}

/******************************/
/******************************/
.projects {
    padding: 50px 0;
}

.project-swiper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    overflow: clip;
}

.project-swiper .swiper-slide {
    flex-shrink: 0;
    position: relative;
    transition-property: transform;
    width: 100%;
    height: 100%;
}

.project-swiper .swiper-slide:before {
    content: " ";
    background: linear-gradient(180deg, rgba(49, 49, 51, 0) 0%, #313133 51.92%);
    position: absolute;
    bottom: -50%;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.project-swiper .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 15px;
}

.project-swiper {
    position: relative;
}

.project-swiper .content {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 30px;
    align-items: center;
    justify-content: space-between;
    display: none;
    z-index: 2;
}

.project-swiper .swiper-slide-active .content {
    display: flex;
}

.project-swiper .content .tit {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/******************************/
.counters {
    padding: 100px 0;
    position: relative;
}

.counters:before {
    content: "";
    background-image: url("../images/bgopacity.png");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 482px;
    height: 807px;
}

html[dir="ltr"] .counters:before {
    right: 0;
    left: unset;
}

.counters-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

html[dir="ltr"] .counters-image {
    left: 0;
    right: unset;
    transform: rotateY(180deg);
}

.counter-items {
    display: flex;
    align-items: center;
    justify-content: center;

}


.all-count .item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.counter-items .content {
    text-align: center;
}

.counter-items .content .count {
    font-size: 80px;
    color: transparent;
    -webkit-text-stroke: 1px #868686;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Inter', serif;

}

.counter-items .content .text {
    font-size: 34px;
    color: var(--main);
    font-weight: 500;
}

@media (max-width: 768px) {
    .counters-image{
        opacity: .3;
    }
}

/******************************/
/******************************/
.blogs {
    background-image: url("../images/news-bg.png");
    background-size: cover;
     background-repeat: no-repeat;
    padding: 50px 0;
    position: relative;

}

.blogs:before {
    content: " ";
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.blogs .blog-slider .swiper-wrapper{
    margin-top: 30px;
}
.blog-slider .main-slider-items {
    display: flex;
    align-items: center;
    position: relative;
}

.blog-slider .main-slider-items:before {
    content: " ";
    background-image: url("../images/semi.png");
    background-repeat: no-repeat;
    position: absolute;
    width: 90px;
    height: 74px;
    bottom: 20px;
    left: 10px;
}

.blog-slider .img {
    display: flex;
    flex: .5;
    height: 350px;
}

.blog-slider .blog-slider-content {
    display: flex;
    flex-direction: column;
    flex: .5;
    background: #313133;
    padding: 30px 15px;
    height: 350px;
}

.blog-slider .swiper-slide .blog-slider-content .url .main-btn {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--white);
}

.blog-slider .swiper-slide .blog-slider-content .url .main-btn:hover {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
}

.blog-slider .swiper-slide.swiper-slide-active .blog-slider-content .url .main-btn {
    color: var(--white);
    background: var(--main);
    border: 1px solid var(--main);
}

.blog-slider .swiper-slide.swiper-slide-active .blog-slider-content {
    background: #000000;
    box-shadow: 0px 4px 4px 0px #00000040;

}

.blog-slider .blog-slider-content .desc {
    width: 75%;
    margin-bottom: 120px;
}

.blog-slider .img img {
    width: 100%;
}

.blog-slider .blog-arrow .swiper-button-next, .blog-slider .blog-arrow .swiper-button-prev {
    top: 25px !important;
    width: 30px;
    height: 30px;
    color: var(--white);
}

.blog-slider .blog-arrow .swiper-button-next:after, .blog-slider .blog-arrow .swiper-button-prev:after {
    font-size: 14px !important;
}

.blog-slider .dot-blog {
    position: absolute;
    top: 10px !important;
    left: 16%;
    width: 23px;
    height: 23px;
}
html[dir="ltr"] .blog-slider .dot-blog{
    right: 16%;
    left: unset;
}
.blog-slider .swiper-button-next {
    left: 15%;
}

.blog-slider .swiper-button-prev {
    left: 17%;
    right: unset !important;
}
html[dir="ltr"] .blog-slider .swiper-button-next {
    right: 15%;
    left: unset;
}

html[dir="ltr"] .blog-slider .swiper-button-prev{
    right: 17% !important;
    left: unset !important;
}
@media (max-width: 768px) {
    .blog-slider .img {

        height:250px;
    }
    .blog-slider-content .tit{
        margin-bottom: 10px;
    }

    .blog-slider .blog-slider-content .desc {
        width: 95%;
        margin-bottom: 10px;
    }
    .blog-slider .blog-slider-content {
        height: 250px;
        padding: 5px;
    }

}

/******************************/
/******************************/
.partners {
    padding: 50px 0;
}

.partners .main-slider-items {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .main-slider-items
    /******************************/
    /******************************/
.contact-us {
    padding:   0 50px;
}

.contact-us .form {
    background: #FFFFFF17;
    padding: 15px;
}

.contact-us .form-control {
    height: 50px;
    border-radius: 0;
    color: #A09F9F;
    background: transparent;
    border: none;
    border-bottom: 1px solid #A09F9F;
    margin-bottom: 40px;
}

.contact-us .form-control:focus {
    border-bottom: 1px solid var(--main);
    box-shadow: none;

}

.contact-us textarea {
    height: 230px !important;
    border-radius: 20px;
    border: 1px solid #fff;

}

.contact-us .form-focused {
    position: relative;
    margin-bottom: 30px;
}

.contact-us .form-focused label {
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 10px;
    right: 15px;
    color: #b7b7b7;
    transition: all .5s ease-in-out;
}

.contact-us .focused label {
    top: -30px;
    right: 0;
    font-size: 18px;
    color: var(--main);
}

.contact-content .main-link {
    margin: 0 15px;
}

/******************************/
/******************************/
footer {
    position: relative;
    padding: 100px 0    500px;

}

footer:before {
    content: " ";
    background-image: url("../images/footer-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 513px;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.main-footer-content {
position: relative;
    z-index: 99;
}

.footer-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.footer-list li {
    margin: 0 10px;
}

.footer-list li a {
    color: var(--white) !important;
    font-size: 18px;
    font-weight: bold;
}

.info-footer {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 50px;
}

.info {
    margin-bottom: 15px;
}

.info .icon {
    font-size: 24px;

    text-align: center;
    background: transparent;
    margin-inline-end: 10px;
    color: var(--main);
     transform: translateY(0);
    transition: all .35s ease-in-out;
}

.info .info-content .kay {
    color: var(--main);
    font-size: 18px;
    font-weight: bold;
}

.info .info-content .value {
    display: block;
    color: var(--white);
}

.powerd-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
     padding: 20px 0;
    font-size: 18px;
    flex-wrap: wrap;
}

.powerd-content span {
    color: var(--white);
}

.powerd-content a {
    color: var(--main);
    margin: 0 5px;
}

.fly-icon {
    position: fixed;
    top: 75%;
    right: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 2222;
}

.fly-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #19191a;
    color: var(--white);
    text-align: center;
    margin: 2px 0;
    border-radius: 5px;
}

.fly-icon a:hover {
    background: var(--main);
    color: var(--white);
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    footer {
        padding: 30px 0 300px;

    }

    .col-footer {
        margin: 30px 0;
    }

}

@media (max-width: 500px) {
    .info-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-list ul {
        flex-wrap: wrap;
    }

    .powerd-content {
        display: inline-block;
        text-align: center;
    }

    .main-footer .nav-list a {
        margin: 0 5px;
    }
}

.breadcrumb-area{
    background: #19191a;
    margin-bottom: 50px;
    padding: 15px 0;
}
.breadcrumb-area a{
    color: var(--main);
}
.map iframe{
    width: 100%;
    height: 250px;
}