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


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

}

/******************************/
/******************************/
:root {
    --primary: #1D8FCE;
    --secondary: #174179;
    --gray: #747474;
    --black: #000000;
    --white: #ffffff;
}

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

.wrap {
    overflow: hidden;
}

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

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

body {
    font-family: 'norsal', serif;
     color: var(--black);
    background: var(--white);
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: bold;
    color: var(--white);
}

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;
}

ul li {
}

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

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

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

textarea.form-control {
    height: 200px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--primary);
}

.main-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 220px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white) !important;
    cursor: pointer;
    transition: all .35s ease-in-out;
}

.main-btn:hover {
    background: var(--secondary);
    border: 1px solid var(--secondary);
    color: var(--white) !important;
    transform: translateY(-5px);
}

.main-title {
    position: relative;
    color: var(--primary);
    font-size: 72px;
     margin-bottom: 10px;
    font-weight: bold;
}

.main-title i {
    font-size: 20px;
}

@media (max-width: 500px) {
    .main-btn {
        font-size: 12px;
        width: 100px;
        height: 30px;
        line-height: 30px;
    }

    .main-title {
        font-size: 28px;
        margin: 10px 0;
    }
}



/******************************/
/* && header &&*/
/******************************/
header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 20px 0;
 }


.main-nav-url {
    display: flex;
    align-items: center;
}

.main-nav-url .phone-market a {
    margin-inline-end: 10px;
}

.main-nav-url .lang {
    font-size: 18px;
    font-weight: bold;
    margin-inline-start: 10px;
    padding-inline-start: 10px;
    color: var(--white);
 }

.main-nav-url .lang:hover {
    color: var(--primary);
}


.mid-header {
    display: flex;
    align-items: center;

}
/*nav*/
#close-menu {
    display: inline-block;
    position: absolute;
    right: 300px;
    top: 45%;
    z-index: 9999;
    width: 50px;
    height: 120px;
    border-radius: 1.1rem;
    background-color: var(--primary);
}
.menu-item-has-children {
    display: flex;
    width: 100%;
    align-items: center;
}

.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;
    justify-content: space-between;
    width: 100%;
}
.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", serif;
    font-weight: 900;
    color: var(--white);
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.nav-btn {

    border-radius: 100%;
    color: var(--white);
 font-size: 24px;
    margin-inline-end: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

html[dir="rtl"] .nav-btn {
    margin-inline-end: 10px;
}

html[dir="ltr"] .nav-btn {
    margin-inline-start: 10px;
}

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-color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 99;
    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(--primary);
}

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

.mobile-nav-list .menu-item > a {
    display: block;
    color: var(--black);
    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(--primary);
}

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(--gray);
}

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


.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: 500px) {
    .main-logo img {
        max-width: 170px;
    }
    .mid-header{
        justify-content: space-between;
    }

    header {
        position: relative;
        z-index: 9;
        background: var(--gray);
    }


    .contact-whats {
        width: 35px;
        border: none;
    }

    .contact-whats span {
        display: none;
    }

    .head-inf {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .top-header {
        flex-direction: row;
    }

    .head-inf .info {
        margin-bottom: 8px;
    }

    .head-inf .info .desc {
        margin-inline-start: 5px;
        font-size: 12px;
    }

}

/******************************/
/* && slider &&*/
/******************************/
.slider {
    position: relative;
}

.main-slider .mainItem {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 999;
}
.main-slider .mainItem:before{
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0,0,0,.4);
}

.mainItem .slider-img img {
    width: 100%;
    max-height: 750px;
}

.main-slider .slid-tit {
    position: absolute;
    inset: 0;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -15%);
    color: var(--white);
    z-index: 11;
}

.main-slider .slid-tit .url {
    margin: 20px 0;

}

.main-slider .slid-tit .tit {
    font-size: 24px;
    color: var(--white);
    font-weight: bold;
}
.main-slider .slid-tit .desc{
    font-size: 14px;
    color: var(--white);
    width: 50%;
    text-align: start;
margin-top: 10px;
}
.main-slider .owl-nav {
    position: absolute;
    bottom: 0;
    left: 12%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--white);
    padding: 25px 15px;
    width: 150px;

}
html[dir="ltr"] .main-slider .owl-nav{
    flex-direction: row-reverse;
}
html[dir="ltr"] .main-slider .slid-tit{
    transform: translate(-75%, -15%);
}
.main-slider .owl-nav div {

    text-align: center;
    font-size: 28px;
     color: var(--white);
    transition: all .35s ease-in-out;
}

.main-slider .owl-nav div:hover {
     color: var(--white);
}

@media (max-width: 768px) {
    .main-slider .slid-tit .tit {
        font-size: 20px;
         margin-bottom: 0;
    }
    .main-slider .slid-tit .desc{
        width: 75%;
    }
}

@media (max-width: 500px) {
    .main-slider .slid-tit{
        width: 100%;
    }
    .main-slider .slid-tit{
        left: 50%;
        transform: translate(-7%, -70%);
    }
}


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

.about-description {
    font-size: 18px;
    color: var(--black);
}

.about-url {
    margin: 50px auto;
    display: table;
}

.about-icon-items .icon-tit {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.about-icon-items .icon-tit .tit {
    margin-inline-start: 20px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.about-description-header {
font-size: 36px;
    font-weight: bold;
    color: var(--secondary);
}
.about-description-md , .about-description-lst{
    text-align: justify;
}

@media (max-width: 768px) {
    .about-icon-items .description{
        margin: 20px auto 20px ;
    }
}


/******************************/
/* && service &&*/
/******************************/
.service{
    padding: 50px 0 ;
}
.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr; /* يضمن أن الصفوف تكون متساوية في الارتفاع */

}
.service-items-content:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2; /* يمتد على صفين */
}

.service-items-content:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.service-items-content:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.service-items-content:nth-child(4) {
    grid-column: 3;
    grid-row: 1 / span 2; /* يمتد على صفين */
}
.service-items-content{
    position: relative;
    overflow: hidden;
}
.service-items-content:before{
    content: " ";
    background: rgba(0,0,0,.3);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.service-items-content .service-ic-tit{
    display: flex;
    align-items: center;
}
.service-items-content .service-ic-tit .tit{
    margin-inline-start: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}
.service-items-content:hover .service-ic-tit .tit{
    color: var(--primary);
    transition: all .35s ease-in-out;
}
.service-items-content .service-content .desc{
    color: var(--white);
}

.service-items-content .images img{
    width: 100%;
}

.service-items-content-main {
    position: absolute;
    bottom: -40px;
    right: 0;
    padding: 15px;
    transition: all .35s ease-in-out;
}
.service-items-content:hover .service-items-content-main{
    bottom: 0 ;
    transition: all .35s ease-in-out;
}
.service-items-content .service-content{
    opacity: 0;
    visibility: hidden;
}
.service-items-content:hover .service-content{
    opacity: 1;
    visibility: visible;
    transition: all .35s ease-in-out;
}
.service-content .desc{
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--white);
}
.service-content .url a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
}
.service-content .url a:hover{
    background: var(--secondary);
    color: var(--white);
    transition: all .35s ease-in-out;
}
.service-items-content:hover .icon img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(96%) saturate(18%) hue-rotate(235deg) brightness(103%) contrast(100%);
}

@media (max-width: 768px) {
    .service-items {
        grid-template-columns: 1fr 1fr; /* عمودان */
        grid-template-rows: auto; /* الصفوف تتكيف مع المحتوى */
        grid-gap: 10px; /* فراغ بين الأعمدة والصفوف */
    }

    .service-items-content:nth-child(1) {
        grid-column: 1 / span 2; /* يمتد على العمودين */
        grid-row: 1; /* أول صف */
    }
    .service-items-content:nth-child(1) .images img{
        max-height: 350px;
        object-fit: fill;
    }
    .service-items-content:nth-child(4) .images img{
        max-height: 350px;
        object-fit: fill;
    }

    .service-items-content:nth-child(2) {
        grid-column: 1; /* العنصر الثاني في العمود الأول */
        grid-row: 2; /* الصف الثاني */
    }

    .service-items-content:nth-child(3) {
        grid-column: 2; /* العنصر الثالث في العمود الثاني */
        grid-row: 2; /* الصف الثاني */
    }

    .service-items-content:nth-child(4) {
        grid-column: 1 / span 2; /* العنصر الرابع يمتد على العمودين */
        grid-row: 3; /* الصف الثالث */
    }
}
@media (max-width: 500px) {
    .service-items {
        grid-template-columns: 1fr; /* عنصر واحد لكل صف */
    }

    .service-items-content:nth-child(1),
    .service-items-content:nth-child(2),
    .service-items-content:nth-child(3),
    .service-items-content:nth-child(4) {
        grid-column: 1; /* العناصر جميعها في نفس العمود */
        grid-row: auto; /* الصفوف تتكيف مع المحتوى */
    }
    .service{
        padding: 0;
    }
}


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

.all-count #counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.all-count #counter .item .icon{
    width: 150px;
    height: 150px;
    line-height: 150px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0px 0px 12px 0px #00000042;

}

.all-count #counter .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
 }
html[dir="ltr"] .all-count #counter .item .content .text{
font-size: 20px;
}


.all-count #counter .item .content {
    margin-inline-start: 10px;
}

.all-count #counter .item .content .count {
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--secondary);
}
.all-count #counter .item .content .text{
    color: var(--black);
}
@media (max-width: 768px) {
    .all-count #counter{
        flex-wrap: wrap;
    }
    .all-count #counter .item{
        flex: 0 0 50%;
        max-width: 50%;
        justify-content: space-around;
        border-inline-end: none;
    }
    .all-count #counter .item .content {
        margin-inline-start: 5px;
    }
    html[dir="ltr"] .all-count #counter .item .content .text{
        font-size: 16px;
    }
}
@media (max-width: 500px) {
    .all-count #counter .item .content {
        margin-inline-start: 10px;
    }
    .counters{
        padding: 50px 0 20px;
    }
    .all-count #counter .item .icon{
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    .all-count #counter .item .icon img{
        max-width: 35px;
    }
    .all-count #counter .item .content .count{
        font-size: 32px;
    }
    .all-count #counter .item .content .text{
        font-size: 14px;
    }
    .all-count #counter .item{
        padding-inline-end: 5px;
        margin-bottom: 20px;
    }
}

/******************************/
/* && projects.php &&*/
/******************************/
.projects{
    padding: 50px 0;
    position: relative;
}

.projects-tit{
    background: #164077;
    padding: 30px 0;
}
.projects-tit .projects-tit-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.projects-tit .projects-tit-content .main-title{
    color: var(--primary);
}
.projects-tit .projects-tit-content .desc-tit{
    color: var(--white);
}
.projects-tit .main-title{
    margin-inline-end: 20px;
}
.projects-mainItem{
position: relative;
}
.projects-mainItem:before{
    content: " ";
    background: rgba(0,0,0,.4);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.projects-mainItem .mainItem-overlay{
    position: absolute;
    top: 35%;
    left: 50%;
    width: 80%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    transform: translate(-50%, -50%);
    justify-content: space-between;

}
.projects-mainItem .mainItem-overlay .slid-tit{
    margin-bottom: 50px;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
    border-bottom:2px solid var(--white);
}
.projects-mainItem .mainItem-overlay .slid-tit .text{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--white);
}
.projects-mainItem .mainItem-overlay .slid-tit .desc{
    font-size: 18px;
    color: var(--white);
}
.projects-mainItem .mainItem-overlay .slid-tit:before{
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 150px;
    background: var(--secondary);
}

.projects-mainItem .mainItem-overlay .location-url{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: var(--white);
}
.projects-mainItem .mainItem-overlay .location-url .icon span{
    margin-inline-start: 10px;
    font-size: 18px;
}

.projects-mainItem .mainItem-overlay .location-url .url a  {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
}
.projects-mainItem .mainItem-overlay .location-url .url a:hover{
    background: var(--secondary);
    color: var(--white);
    transition: all .35s ease-in-out;
}
.projects-mainItem .projects-img img{
    width: 100%;
}


.projects-slider .owl-nav {
    position: absolute;
    top: 25%;
    left: 10%;
    transform: translate(0, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--white);
    padding: 25px 15px;
    width: 150px;

}

.projects-slider .owl-nav div {

    text-align: center;
    font-size: 28px;
    color: var(--white);
    transition: all .35s ease-in-out;
}

.projects-slider .owl-nav div:hover {
    color: var(--white);
}

@media (max-width: 500px) {
    .projects-tit .projects-tit-content{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .projects-mainItem .mainItem-overlay .slid-tit .text{
        margin-bottom: 5px;
    }
    .projects-mainItem .mainItem-overlay .slid-tit{
        margin-bottom: 5px;
        padding-bottom: 10px;
    }
    .projects-mainItem .mainItem-overlay .location-url .url a{
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}


/******************************/
/* && banner &&*/
/******************************/
.banner{
    display: flex;
    align-items: center;
    background: var(--secondary);
    margin: 50px 0;
}
.banner .banner-items{
    margin-inline-start: 20px;
}
.banner .banner-items .tit{
    margin-bottom: 10px;
    font-size: 34px;
    color: var(--white);
}
.banner .banner-items .desc{
    margin-bottom: 10px;
    font-size: 20px;
    width: 80%;
    color: var(--white);
}
@media (max-width: 768px) {
    .banner{
        margin: 25px 0;
    }
    .banner .banner-items .desc{
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .banner{
        flex-direction: column;
    }
    .banner .banner-items{
        padding: 30px 0;
    }

}
/******************************/
/* && news &&*/
/******************************/
.news{
    padding: 50px 0 50px;
}
.news-slider .owl-dots{
    position: absolute;
    bottom: -20px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}
.news-slider .owl-dots .owl-dot{
    width: 80px;
    height: 2px;
    margin: 0 10px;
    background: var(--gray);
}
.news-slider .owl-dots .owl-dot.active{
    background: var(--secondary);
    transition: all .35s ease-in-out;
}
.news .news-items .tit{
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--balck);
}
.news .news-items .desc{
    font-size: 18px;
    margin: 10px 0;
    color: var(--balck);
}
.news .news-items .url a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
}
.news .news-items .url a:hover{
    background: var(--secondary);
    color: var(--white);
    transition: all .35s ease-in-out;
}
@media (max-width: 500px) {
    .news{
        padding: 0;
    }
}
/******************************/
/* && clients &&*/
/******************************/
.clients{
    padding: 50px 0;
}
.clients .clint-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.clint-url{
    display: table;
    margin: 50px auto;
}
@media (max-width: 768px) {
    .clint-img{
        margin-top: 20px;
    }
    .clint .clint-img img{
        max-width: 75px;
    }
}
/******************************/
/* && footer &&*/
/******************************/
footer {
    padding: 25px 0  ;
    position: relative;


}

.place-time {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 50px 0;
}

.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: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: transparent;
    margin-inline-end: 10px;
    color: var(--white);
    background: var(--primary);
    transform: translateY(0);
    transition: all .35s ease-in-out;
}

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

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

.powerd-content {
    margin: 0 auto;
    padding: 20px 0;
    font-size: 18px;


    text-align: center;
}

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

.powerd-content a {
    color: var(--secondary);
}

.fly-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

.fly-icon a {

    color: var(--gray);
    text-align: center;
    margin:0 2px ;
    font-size: 24px;
}

.fly-icon a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .powerd-content{
        width: 100%;
    }
    footer {
        padding: 30px 0 0;

    }

    .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;
    }
}

/******************************/
/* && inside &&*/
/******************************/

.inside-head{
    position: relative;
    background: var(--gray);
}
.wp-pagenavi{
    display: table;
    margin: 30px auto;
}
.wp-pagenavi a {
     color: var(--primary);

}
.page-editor{
    margin: 30px auto;
    text-align: center;
    display: table;
}
.content-inside{
    margin: 30px 0;
}

.table-container {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.table-row {
    display: table-row;
}

.table-cell {
    display: table-cell;
    padding: 10px;

}
.table-cell-e{
    background: var(--primary);
    color: var(--white);
}
.content-inside-prod .page-thumb{
    margin-bottom: 50px !important;
}
.content-inside-prod .page-thumb img{
    max-height: 550px;
    width: 100%;
}
.map iframe{
    width: 100%;
    height: 370px;
}
.page-editor.mt-2 .col-lg-6 img{
    width: 100%;
    max-height: 350px;
}
.add-content-prod{
    margin-top: 50px;
}
.add-content-prod .row{
    margin: 30px 0;
}

.add-content-prod .row:nth-of-type(even){
    flex-direction: row-reverse;
}
.add-content-row-icon-tit{
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}
.add-content-row-icon-tit .tit{
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}
.add-content-prod .img img{
    max-height: 350px;
    width: 100%;
    border-radius: 15px;
}
.add-content-row-icon-tit .icon{
    margin-inline-end: 10px;
}
.page-main-table{
 margin-top: 30px;
}

.service-item .image .images img{
    height:  350px ;
    object-fit: fill;
}