@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: #26357B;
    --secondary: #BCA55B;
    --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;
    direction: rtl;
    text-align: right;
}

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;
    background-color: var(--primary); /* Blue color */
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 60px;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 7px 0 var(--secondary); /* Gold shadow */
    transition: all 0.4s ease-in-out; /* Smooth transition for all properties */
}

.main-btn:hover {
    box-shadow: none;
    transform: translateY(-7px);
    background: var(--secondary);
    color: var(--white);
}


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

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

@media (max-width: 500px) {
    .main-btn {
        padding: 10px 40px;
    }

    .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;
    background: transparent;
}

.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(--primary);

}

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

}

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

}

@media (min-width: 992px) {
    #close-menu {
        display: none;
    }

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

    .nav-list {
        display: flex;
        margin-inline-start: 50px;
        width: 100%;
        justify-content: space-evenly;
    }

    .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.home i {
        font-size: 26px;
        color: var(--white);

    }

    .nav-list > .menu-item > a {
        display: flex;
        color: #282828;
        font-weight: bold;
        font-size: 18px;
        position: relative;
        padding: 15px 10px;
        transition: all 0.5s ease-in-out;
    }

    html[dir="ltr"] .nav-list > .menu-item > a {
        padding: 15px 10px;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f103";
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: #282828;
        margin-inline-start: 10px;
        transition: all .35s ease-in-out;
    }

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

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

    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: 250px;
        background: rgba(72, 41, 109, .7);

        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(--white);
        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", serif;
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

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

    }

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

    }

    .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: "\f104";
    }

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

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        display: inline-block;
        margin-inline-end: 10px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        background: var(--gray);
        color: var(--white);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

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

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

@media (max-width: 992px) {
    #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);
    }

    html[dir="ltr"] #close-menu {
        right: 80px;
    }

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

    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: inline-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", serif;
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        color: var(--white);
        background-color: var(--primary);
        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);
    }

    .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) {
    .mid-header {
        justify-content: space-between;
    }
}

@media (max-width: 500px) {
    .main-logo img {
        max-width: 170px;
    }

    .main-nav-url .main-btn {
        width: 75px;
    }

    .mid-header {
        justify-content: space-between;
    }

    header {
        position: relative;
        z-index: 9;
    }


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

    .nav-btn {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

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

.main-slider .mainItem {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 999;
    padding-bottom: 120px;
}

.main-slider .mainItem:before {
    content: " ";
    background-image: url("../images/slider.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-slider .mainItem:after {
    content: " ";
    background-image: url(../images/bg-slider.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 278px;
    height: 293px;
    z-index: 0;
    animation: colors 4s infinite ease-in-out;
}

@keyframes colors {
    50% {
        transform: translate(-55%, -55%);

    }
}

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

.main-slider .slid-tit {
    position: absolute;

    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -15%);
    color: var(--white);
    z-index: 11;
}

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

}

.main-slider .slid-tit .tit {
    font-size: 40px;
    color: var(--black);
    font-weight: bold;
}

.main-slider .slid-tit .desc {
    font-size: 14px;
    color: var(--black);
    width: 85%;
    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);
}
.slider-video video{
   width: 100%; 
}
@media (max-width: 768px) {
    .main-slider .slid-tit .tit {
        font-size: 20px;
        margin-bottom: 0;
    }

    .main-slider .slid-tit .desc {
        width: 75%;
    }
    .main-slider .mainItem:after{
        width: 180px;
        height: 223px;
    }
}

@media (max-width: 500px) {
    .main-slider .slid-tit{
        transform: translate(-50%, -20%);
    }
    .main-slider .mainItem:after{
        width: 130px;
        height: 223px;
    }
}


/******************************/
/* && 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;
    flex-direction: column;
}

.about-icon-items .icon-tit .img {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4C6FFF2E;
    border-radius: 50%;
}

.about-icon-items .icon-tit .tit {
    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;
}

.about-items {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.about-items:before {
    content: " ";
    background-image: url("../images/agency.png");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translate(-50%, -50%);
    width: 101px;
    height: 157px;
    z-index: 0;
    animation: colors 4s infinite ease-in-out;
}

.about-items-content {
    padding-inline-start: 120px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.about-image {
    display: flex;
    flex: 1;

}

.about-image img {

}

@media (max-width: 768px) {
    .about-icon-items .description {
        margin: 20px auto 20px;
    }
    .about-items{
        flex-direction: column-reverse;
    }
    .about-items-content{
        padding-inline-start: 15px;
    }
    .about-description-header{
        font-size: 24px;
    }
}
@media (max-width: 500px) {
    .about-items:before{
        content: none;
    }
}



/******************************/
/*counters*/
/******************************/
.counters {
    padding: 50px 0;
    background-image: url("../images/numbers.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.all-count #counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

.all-count #counter .item:nth-of-type(odd) .icon {
    float: right;
    margin-left: -50px;
    margin-top: -35px;
}

.all-count #counter .item:nth-of-type(even) .icon {
    float: left;
    margin-right: -50px;
    margin-top: -35px;
}

.all-count #counter .item {

    margin-bottom: 50px;
    flex: 0 0 48%;
    max-width: 48%;
}

html[dir="ltr"] .all-count #counter .item .content .text {
    font-size: 20px;
}


.all-count #counter .item .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    box-shadow: 0px 0px 14px 0px #00000026;
    border-radius: 10px;
padding: 15px 0;

}

.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);
    margin-top: -5px;
}

@media (max-width: 768px) {
    .counters    {
        background-attachment: fixed;

    }

    .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;
    }
    .counters .col-lg-3{
        text-align: center;
    }
    .counters .col-lg-3 img{
        max-width: 150px;
    }
}

@media (max-width: 500px) {
    .all-count #counter .item .content {
        margin-inline-start: 10px;
    }
    .counters .col-lg-3 img{
        max-width: 100px;
    }
    .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;
    }
}
/******************************/
/* && service &&*/
/******************************/
.service {
    padding: 50px 0;
}
.service-items{
    padding: 30px 10px;
    transition: all .35s ease-in-out;
}
.service-items:hover {
    box-shadow: 0px 0px 40px 0px #00000021;
    border-radius: 15px;
    transition: all .35s ease-in-out;
}
.service-items .service-items-content-main{
    display: flex;
    align-items: flex-start;
}
.service-items .service-items-content-main .icon{
    margin-inline-end: 10px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    text-align: center;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-items:hover .service-items-content-main .icon{
    transition: all .35s ease-in-out;
    background: var(--secondary);
}
.service-items .service-items-content-main .service-content{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex: .99;
}
.service-items .service-items-content-main .service-content .tit{
    color: var(--primary);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.service-items:hover .service-items-content-main .service-content .tit{
    transition: all .35s ease-in-out;
    color: var(--secondary);
}
.service-items .service-items-content-main .service-content .desc{
    color: var(--gray);
    font-size: 14px;
     margin-bottom: 10px;
}
.service-items .service-items-content-main .service-content .url a{
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}
.col-loop:nth-of-type(even) .service-items .service-items-content-main .service-content  .url a{
    color: var(--secondary);
}
.services-url{
    width: 100%;
    height: 100%;
}
.services-url a {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .services-url{
        height: 150px;
    }
}

/******************************/
/* && projects.php &&*/
/******************************/
.testimonial{
    padding: 50px 0;
    background-image: url("../images/testt.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-slider{
    padding: 50px 0 100px;
}
.testimonial-slider .mainItem-overlay{
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
}
.testimonial-slider .testimonial-tit{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.testimonial-slider .testimonial-tit .tit{
    margin-inline-start: 10px;
}
.testimonial-slider .testimonial-tit .tit .title{
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: bold;
}
.testimonial-slider .testimonial-tit .tit .rating i {
    color: gold;
}
.testimonial-slider .mainItem-overlay .desc{
    color: var(--gray);
    width: 80%;
    font-size: 16px;
}
.testimonial-slider .owl-dots{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
}
.testimonial-slider .owl-dots .owl-dot{
    width: 100px;
    height: 3px;
    background: var(--gray);

}
.testimonial-slider .owl-dots .owl-dot.active{
    background: var(--secondary);
}
@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

/******************************/
/* && clients &&*/
/******************************/
.clients {
    padding: 50px 0;
}
.clients-description-header{
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary);
}
.clients .clint-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.col-clients{
    flex: 0 0 16.66666%;
    max-width: 16.66666%;
}

.clint-url {
    display: table;
    margin: 50px auto;
}
.clients .url{
    margin: 25px auto 0;
    display: table;
}
@media (max-width: 768px) {
    .clint-img {
        margin-top: 20px;
    }
    .col-clients{
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .clint .clint-img img {
        max-width: 75px;
    }
}

/******************************/
/* && contact-us &&*/
/******************************/
.contact-us{
    padding: 50px 0;
}
.map iframe{
    border-radius: 15px;
}
/******************************/
/* && footer &&*/
/******************************/
footer {
    padding: 100px 0 50px;
    position: relative;
    background-image: url("../images/footer.png");
    background-size: cover;
    margin-top: 50px;

}

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

.main-footer .main-title{
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: start;

}

.footer-list li {
    float: right;
    width: 50%;
    margin-bottom: 5px;
    list-style: disc !important;
}

.footer-list li a {
    color: #1E1E1E; !important;
    font-size: 14px;
    font-weight: bold;
}


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

    text-align: center;
    margin-inline-end: 10px;
    color: #1E1E1E;

     transform: translateY(0);
    transition: all .35s ease-in-out;
}
.info{
    margin-bottom: 10px;
}
.info .info-content .value {
    display: block;
    color: #1E1E1E;
}

.powerd-content {
    font-size: 18px;
    text-align: center;
    margin-top: 50px;
}

.powerd-content span {
    color: #1E1E1E;
}

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

.fly-icon {

    display: flex;
    align-items: center;

}
.logo-footer{
    margin-bottom: 10px;
}
.fly-icon a {
    font-size: 34px ;
    border-radius: 50%;
    background: transparent;
    color: var(--primary);

    text-align: center;
    margin:  0 5px;
    transition: all .35s ease-in-out;

}

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

.fly-whats{
    position: fixed;
    top: 65%;
    right: 10px;
    z-index: 2;
}
.fly-whats img{
    max-width: 60px;
    max-height: 60px;
}
@media (max-width: 992px) {

}

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

    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-image: url("../images/footer.png");
    background-size: cover;
}

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

.content-inside.service .service-items-content-main {
    margin: 15px auto;
    display: table;
}