@font-face {
    font-family: 'TheSansArabic-Light';
    src: url('../fonts/TheSansArabic-Light.otf');
}

/******************************/
/******************************/
:root {

    --primary: #989a99;
    --secondary: #3cb8b8;
    --gray: #6b6b6b;
    --third: #d3c9b6;
    --black: #000;
    --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: 'TheSansArabic-Light';
    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 {
    color: var(--primary);
    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;
}
html[dir="ltr"] .contact-us .form-focused label{
    left: 15px;
    right: 0;

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

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


.main-title h2 {
    color: var(--black);
    font-size: 54px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: bold;
}

.main-btn {
    position: relative;
    color: var(--white) !important;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    border-radius: 35px;
    padding: 0;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    transition: all .35s ease-in-out;
}


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

}


@media (max-width: 768px) {
    .main-title h2 {
        font-size: 38px;
    }

}

@media (max-width: 500px) {
    .main-btn {
         font-size: 12px;

    }

    .main-title h2 {
        font-size: 28px;
    }
}


/******************************/
/* && header &&*/
/******************************/
header {
    padding: 20px 0;
}

.head-home {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
}

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

.header-icon .lang {
    color: var(--secondary);
    font-weight: bold;
    font-size: 18px;
}

.social-media {
    display: flex;
    align-items: center;
}

.social-media a {
    margin-inline-start: 10px;
    transition: all 0.5s ease-in-out;

}

.social-media a:hover {
    transform: translateY(-10px);
}

@media (min-width: 992px) {
    .whats-mob {
        display: none;
    }

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

    }

    .nav-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 0;
        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 {
        color: var(--black);
        background: transparent;
        font-weight: bold;
        padding: 5px 24px;
        text-align: center;
        font-size: 18px;
        position: relative;
        border-radius: 0;
        transition: all 0.5s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--secondary);
        font-weight: bold;

    }

    .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(--white);
        background: transparent;
        transition: all .35s ease-in-out;
    }


    .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-color: var(--white);
        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(--primary);
        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(--primary);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

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

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

    .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(--primary);
        font-size: 14px;
        transition: all .35s ease-in-out;
    }

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


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

    .head-logo .header-icon {
        display: none;
    }
}

@media (max-width: 992px) {
    .head-logo .open-search {
        color: var(--primary) !important;
    }

    .head-logo .header-icon {
        display: block;
    }

    .head-logo .header-icon a {
        margin: 0 10px;
        font-size: 24px;
    }

    .top-header .header-icon {
        display: none;
    }

    .whats-mob {
        display: block;
    }


    .whats-desc {
        display: none;
    }

    .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;
        justify-content: center;
        margin-bottom: 0;
    }

    .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: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 5px;
        text-align: center;
         color: var(--white) !important;
        padding: 0;
        display: inline-block;
        background-color: var(--primary);

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

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

    .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) {
    .top-icon {
        display: flex;
        align-items: center;
    }

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

@media (max-width: 500px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .head-home {
        position: relative;
    }

    .header-info {
        display: none;
    }

    .head-logo {
        justify-content: center;
    }

    .header-info .info .desc a {
        font-size: 11px;
    }
}

/******************************/
/* && slider &&*/
/******************************/

.slider {
    position: relative;
}

.main-slider .mainItem {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-slider .mainItem img.slid-thumb {

    position: relative;
    width: 100%;
}

.main-slider .active img.slid-thumb {
    width: 100%;
}

.main-slider .mainItem-overlay {
    position: absolute;
    inset: 0;
    top: 55%;
    left: 50%;
    transform: translate(-25%, -50%);
    z-index: 11;
}
html[dir="ltr"] .main-slider .mainItem-overlay{
    transform: translate(-75%, -50%);

}
.main-slider .slid-tit h3 {
    font-size: 52px;
    width: 93%;
    line-height: 85px;
    color: var(--white);
    font-weight: initial;
}

@media (max-width: 992px) {

    .main-slider .mainItem-overlay {
        top: 50%;
    }


    .main-slider .slid-body {
        padding: 0 35px;
    }

    .main-slider .slid-tit {
        width: 100%;
    }


}

@media (max-width: 768px) {
    .main-slider .mainItem-overlay {
        top: 55%;
        transform: translate(-10%, -50%);

    }

    .main-slider .slid-tit h3 {
        font-size: 32px;
        line-height: 64px;
        margin-bottom: 10px;
        width: 100%;

    }

    .main-slider .slid-tit {
        margin-inline-start: 0;
    }
}

@media (max-width: 500px) {

    .main-slider .mainItem-overlay {
        top: 50%;
    }

    .main-slider .mainItem img.slid-thumb {
        height: 250px;
    }

    .header-icon {
        margin-top: 30px;
    }

    .main-slider .slid-body {
        padding: 0;
    }

    .main-slider .slid-tit h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 10px;
        width: 100%;
    }

}

/******************************/
/* && sections &&*/
/******************************/
.sections {
    padding: 50px 0;
}

.sections-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sections-items {
    position: relative;
}

.sections-items .sections-img img {
    width: 450px;
    height: 450px;
    transform: scale(1);
    transition: all .35s ease-in-out;
}

.sections-items:hover .sections-img img {
    transform: scale(1.05);
}

.sections-items .sections-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sections-items .sections-content .tit {
    font-size: 42px;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    transition: all .35s ease-in-out;

}

.sections-items:hover .sections-content .tit {
    margin-bottom: 10px;
}

.sections-items .sections-content .url .icon {
    opacity: 0;
    transition: all .35s ease-in-out;
}

.sections-items:hover .sections-content .url .icon {
    opacity: 1;
}

.sections-items .sections-content .url .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--secondary);
}
.sections-en .sections-items .sections-content .url .icon i:before{
    content: "\f061";

}
@media (max-width: 768px) {
    .sections-items .sections-img img {
        width: 350px;
        height: 350px;
    }

    .sections-items .sections-content .tit {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .sections {
        padding: 30px 0;
    }

    .sections-items .sections-img img {
        width: 160px;
        height: 160px;
    }

    .sections-items .sections-content .tit {
        font-size: 20px;
    }

    .sections-items .sections-content .url .icon i {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

/******************************/
/* && services &&*/
/******************************/
.services {
    padding: 50px 0 0;
}

.services-items {
    position: relative;
}

.services-items:before {
    content: " ";
    background-image: url("../images/s-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: all .35s ease-in-out;
}

.services-items:hover:before {
    height: 100%;
}

.services-items .img img {
    width: 100%;
}

.services-content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: all .35s ease-in-out;
}

.services-items:hover .services-content {
    bottom: 5rem;
}

.services-items .services-content .tit {
    color: var(--secondary);
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0;
    transition: all .35s ease-in-out;

}

.services-items:hover .services-content .tit {
    margin-bottom: 20px;
}

.services-items .services-content .url {
    opacity: 0;
    transition: all .35s ease-in-out;
}

.services-items:hover .services-content .url {
    opacity: 1;
}
.services-modal-content{
    margin-top: 50px;
}

.services-modal-content  .tit{
    font-size: 34px;
    font-weight: bold;
    color: var(--secondary);
}
.services-modal-content .price{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
    text-align: center;
}
.services-modal-content .hd{
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
}
.services-modal-content .price .date{
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary);

}
.logo-modal{
    display: table;
    margin: 50px auto;
}
.desc-modal{
    width: 40%;
    margin: 0 auto 50px;
     color: var(--black);
    font-size: 24px;
    font-weight: bold;

}
.services-modal-content .price .sec{
    padding: 0 20px;
    margin: 0 20px;
    border-right: 1px solid var(--secondary) ;
    border-left: 1px solid var(--secondary) ;
}
#services3 .services-modal-content .price .sec{
    margin:  0 0 0 20px;
    padding: 0 0 0 20px;
    border-right: 0px solid var(--secondary) ;
}

.services-en #services3 .services-modal-content .price .sec{
    margin:  0 20px 0 0 ;
    padding: 0 20px 0 0;
    border-right: 1px solid var(--secondary) ;
    border-left: 0px solid var(--secondary) ;
}
@media (max-width: 768px) {
    .services .row {
        justify-content: center;
    }
    .desc-modal{
        width: 100%;
        font-size: 18px;

    }
}

@media (max-width: 500px) {
    .services {
        padding: 30px 0;
    }

    .services-items .services-content .tit {
        font-size: 18px;
    }

    .services-items:hover .services-content .tit {
        margin-bottom: 10px;
    }
}

/******************************/
/* && droon &&*/
/******************************/
.droon {
    padding: 50px 0;
}

.droon .droon-content {
    margin-top: 160px;
}

.droon .droon-content .main-title h2 {
    color: var(--secondary);
}

.droon .droon-content .desc {
    font-size: 36px;
    line-height: 55px;
    color: var(--black);
    margin-bottom: 20px;
}

.droon .droon-content .url .main-btn {
    background: transparent;
    color: var(--gray) !important;
    border: 1px solid var(--gray);
}

.droon .droon-content .url .main-btn:hover {
    color: var(--white) !important;
}

@media (max-width: 768px) {
    .droon .droon-content {
        margin-top: 50px;
    }

    .droon .droon-content .main-title h2 {
        font-size: 46px;
    }

    .droon .droon-content .desc {
        font-size: 24px;
        line-height: 36px;

    }
}

@media (max-width: 500px) {
    .droon .row {
        flex-direction: column-reverse;
    }

    .droon .droon-content {
        text-align: center;
        margin-top: 10px;
    }

    .droon {
        padding: 30px 0;
    }

    .droon-img {
        margin: 0 auto;
        display: table;
    }

    .droon-img img {
        max-width: 300px;
    }

}

/******************************/
/* && works &&*/
/******************************/
.works {
    background: #f0f0f0;
    padding: 50px 0;
}

.works .main-title h2 {
    margin-bottom: 0px;
    font-weight: bold;
}

.works .main-title .desc {
    color: var(--secondary);
    font-size: 36px;
    font-weight: bold;
}

.works .row .col-works:nth-child(odd) {
    margin-top: 30px;
}

.works-items {
    position: relative;
    margin-bottom: 10px;
    border-radius: 15px;
    transition: all .35s ease-in-out;

}

.works-items .works-img img {
    border-radius: 15px;
    transition: all .35s ease-in-out;
}

.works-items:before {
    content: " ";
    bottom: 0;
    left: 0;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 2;
    transition: all .35s ease-in-out;
    opacity: 0;
}

.works-items:hover:before {
    opacity: 1;
}

.works-items:hover {
    box-shadow: 14px 15px 24px rgba(0, 0, 0, 0.36);

}

.works-items .works-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dcdcdc;
    border-radius: 0 0 15px 0;
    padding: 30px 15px 30px 30px;
    position: absolute;
    width: 90%;
    bottom: 0;
    right: 0;
    transition: all .35s ease-in-out;
}

.works-items:hover .works-content {
    background: rgba(0, 0, 0, .7);
}

.works-items .works-content .tit {
    font-size: 20px;
    font-weight: bold;
    color: var(--gray);
    transition: all .35s ease-in-out;

}

.works-items:hover .works-content .tit {
    color: var(--secondary);
}

.works-items .works-content .icon i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 15px;
    transition: all .35s ease-in-out;
}

.works-items:hover .works-content .icon i {
    border: 1px solid var(--secondary);
    color: var(--white);
    background: var(--secondary);
}
.works-en .works-items .works-content .icon i:before{
    content: "\f061";

}
.works-url {
    margin: 50px auto 0;
    display: table;
}
.modal-xl {
    max-width: 1200px;
    margin: auto;
}
.modal-content .img img{
    border-radius: 15px;
    width: 100%;
    max-height: 370px;
}
.modal-dialog .modal-content{
    padding: 30px ;
    border-radius: 30px;
}
.work-modal-content{
    margin-top: 50px;
}
.work-modal-content .url-icon{
    display: flex;
    align-items: center;
}
.work-modal-content  .tit{
    font-size: 34px;
    font-weight: bold;
    color: var(--secondary);
}
.work-modal-content .desc{
    margin: 20px 0;
    font-size: 20px;
    font-weight: bold;
}
.work-modal-content .url-icon .btn{
    margin-inline-start: 30px;
}

@media (max-width: 768px) {
    .modal-dialog .modal-content{
        padding: 15px;
        border-radius: 30px;
        margin: 0 15px;
    }
    .works-items .works-content {
        padding: 15px 15px 15px 15px;
    }

    .works-items .works-content .tit {
        font-size: 14px;
    }

    .works .row .col-works:nth-child(odd) {
        margin-top: 20px;
    }

    .works-items .works-content .icon i {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}

@media (max-width: 500px) {
    .works .row .col-works:nth-child(odd) {
        margin-top: 0;
    }
}

/******************************/
/* && experience &&*/
/******************************/
.experience {
    padding: 50px 0;
}

.experience .main-title h2 {
    margin-bottom: 20px;
}

.experience .main-title .desc {
    color: var(--secondary);
    font-size: 36px;
    font-weight: bold;
}

.experience-content span {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .experience .main-title .desc {
        font-size: 18px;
    }

    .experience .main-title .desc {
        margin-bottom: 20px !important;
    }

    .experience-content span {
        font-size: 18px;
    }
    
}

@media (max-width: 500px) {
    .experience-content span {
        font-size: 14px;
    }

    .experience .main-title .desc {
        margin-bottom: 10px !important;
    }

    .experience-content span {
        font-size: 14px;
    }

    .experience-content span {
        font-size: 14px;
    }
}

/******************************/
/* && footer &&*/
/******************************/
footer {
    background-image: url("../images/footer.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 250px 0 30px;
    position: relative;
}

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

.footer-logo {
    display: table;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mid-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 60px;
    padding-bottom: 30px;
}

.info .icon {
    width: 60px;
    height: 60px;
    text-align: center;
    transform: translateY(0);
    transition: all .35s ease-in-out;
}

.info:hover .icon {
    transform: translateY(-5px);
}

.info .info-content {
    margin-inline-start: 10px;
}

.info .info-content .kay {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

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

.main-footer .main-nav .nav-list {
    width: 75%;
    justify-content: space-evenly;
    margin: 0 auto;
}

.main-footer .nav-list > .menu-item {
    margin: 0 !important;
}

.main-footer .nav-list > .menu-item > a {
    color: var(--white);
    padding: 0;
    margin: 0;
}

.powerd-content {
    text-align: center;
    padding: 50px 0 30px;
}

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

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

@media (max-width: 992px) {
    .main-footer .main-nav .nav-list {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    footer:before {
        background-size: contain;
    }

    .mid-footer .main-tit {
        width: 100%;
        margin-bottom: 20px;
    }

    .mid-footer {
        margin: 30px 0 20px;
    }

    .footer-logo {
        top: 2%;
    }

    .info .icon {
        width: 50px;
        height: 50px;
    }

    footer {
        background-size: cover;
        background-position: bottom;
        padding: 110px 0 30px;
              margin-top: 80px;



    }

    .main-footer .main-nav .nav-list {
        width: 100%;
    }

    .powerd-content {
        padding: 30px 0 30px;
    }
    .mobile-logo{
                margin-bottom: 40px;

    }

}

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

    .mid-footer .info {
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: 120px;
    }
.mid-footer {
    margin: 30px 0 20px;
}
    footer {
        padding: 85px 0 30px;
                      margin-top: 100px;

     }

    .footer-logo {
        top: -7%;
    }
}

/******************************/
/* && breadcrumbs &&*/
/******************************/
.breadcrumbs{
    padding: 20px 0;
}
.breadcrumbs .col-bread:first-child{
    font-size: 46px;
    font-weight: bold;
}
.breadcrumbs .col-bread:last-child{
    text-align: end;
    font-size: 24px;
}
@media (max-width: 500px) {
    .breadcrumbs .col-bread:last-child,.breadcrumbs .col-bread:first-child{
        text-align: center;
        margin-top: 10px;
    }
}
/******************************/
/* && inside droons &&*/
/******************************/
.inside-home {
    background-image: url("../images/breadcramp.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0;
    margin-bottom: 30px;
    position: relative;
}
.work-inside .main-title h2{
    margin-bottom: 50px;

}
.inside .droon-inside .main-title h2 {
    margin-bottom: 50px;
}

.inside .droon-items {
    margin-bottom: 30px;
}

.inside .droon-items .droon-content .tit {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: bold;
}
.inside .droon-items .droon-content .desc{
    font-size: 18px;
}
.droons-gool{

    background-color: #f0f0f0;
    padding: 50px 0;
    position: relative;
}
.droons-gool:before{
    content: " ";
    width: 100%;
    height: 320px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../images/gool-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.droons-gool-desc{
    margin-top: 120px;
}
.droons-gool-desc .tit{
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: bold;
}
.droons-gool-desc .desc span{
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
}
.inside .works {
    background: #fff;
}
.about-content-desc{
    margin-top: 120px;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px){
    .about-content-desc{
        margin-top: 70px;
    }
}
    @media (max-width: 500px) {
        .about-content img{
            width: 250px;
            height: 250px;
            margin: 20px auto;
            display: table;
        }
       .row .col-abt:last-child{
            order: -1;
        }
        .about-content-desc{
            margin-top: 20px;
            margin-bottom: 30px;
        }
    .inside .droon-inside .main-title h2 {
        margin-bottom: 20px;
    }
    .droon-content{
        margin-top: 20px;
    }
    .droons-gool:before{
        background-size: contain;
    }
    .work-inside .main-title h2{
        margin-bottom: 20px;

    }
    .droons-gool-desc{
        margin-top: 20px;
    }
        .services-modal-content .price .date{
            font-size: 18px;
        }
}
.contact-us-content .main-btn{
    margin-inline-start: 15px;
}

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

.contact-us {
    padding: 50px 0  ;
}

.contact-us .main-tittle span {
    color: #fff;
}

.contact-us .contact-form form input {
    width: 100%;
    overflow: visible;
}

.contact-us-content {
    margin-top: 50px;
}

.contact-us .form-control {
    height: 45px;
    border-radius: 10px;
    background: transparent;
    color: #7da8a3;
    border: 1px solid #7da8a3;
    margin-bottom: 40px;

}

.contact-us .form-control:focus {
    border: 1px solid #1f1f29;
    box-shadow: none;

}

.contact-us textarea.form-control {
    height: 220px;
    border-radius: 20px;
    border: 1px solid #7da8a3;

}

.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: #7da8a3;
    transition: all .5s ease-in-out;
}

.contact-us .focused label {
    top: -33px;
    right: 0;
    font-size: 18px;
    color: #1f1f29;
}

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


.contact-us .ins-link {
    border-radius: 35px;
}

iframe:focus {
    outline: none;
}

iframe[seamless] {
    display: block;
}
.work-inside .main-btn {
        margin: 30px auto 0;
    display: table;
}