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

@font-face {
    font-family: 'Bahij-Janna';
    src: url('../fonts/bahij/BahijJanna.eot');
    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: 'Ping';
    src: url('../fonts/PingAR+LT-Regular.otf');

}

/******************************/
:root {
    --main: #206AB2;

    --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: 'Bahij-Janna', serif !important;
    color: var(--black);
    background: var(--white) !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;
}
.wp-pagenavi .pages{
    font-size: 0;
    border: 0;
    padding: 0;
    width: 0;
}
.wp-pagenavi a, .wp-pagenavi span{
    border-color: #092E4B !important;
    color: #092E4B  !important;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #fff  !important;
    color: #fff  !important;
}
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;
}
textarea.form-control{
    height: 200px;
}
.form-group, form {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] .form-group,
html[dir="ltr"] form {
    direction: ltr;
    text-align: left;
}
.gallery-item{
    margin:30px 0;
}
.gallery-item img {
    width:100%;
    height:300px;
}
.gallery-img{
 position:relative;   
}
.gallery-img a{
        position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 30px;
}
.gallery-img a i{
    transform: scale(.8) rotate(45deg);
    opacity: 0;
    transition:all linear .2s;
}
.gallery-img:hover a i{
    transform: scale(1);
    opacity: 1;
}
.form-control {
     direction: rtl;
    text-align: right;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--gray);

}

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

.main-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    text-align: center;
    border-radius: 35px;
    color: var(--main);
    background: transparent;
    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: linear-gradient(180deg, #206AB2 0%, #6DADDF 100%);
    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;
    float: left;
    color: var(--main);
    transition: transform 0.5s ease-in-out, color 0.35s ease-in-out;
}

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

.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);
    position: relative;
}


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

@media (max-width: 500px) {
    .main-tit {
        font-size: 28px;
    }
.about  .main-btn{
    
        color: var(--white);
        border-color: var(--white);
}
 .about    .main-btn::after {
     color: var(--white);
}
    .main-btn {
        width: 120px;
        height: 35px;
        line-height: 35px;
        font-size: 10px;
    }

}

/******************************/
/******************************/
header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 65.94%);

}

header.head-inside {
    position: relative;
    margin-bottom: 50px;
}

.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: 150px;
}

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

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


@media (max-width: 768px) {

}

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

/******************************/
/********* nav     ***********/
/******************************/


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

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

    .nav-list {
        display: flex;
        align-items: center;
        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 {
        display: block;
        color: var(--black);
        font-size: 22px;
        font-weight: bold;
        position: relative;
        text-align: start;
        padding: 10px 20px;
        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", serif;
        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-color: rgba(255, 255, 255, 1);
        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 > 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(--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);
    }

    .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) {

}

/******************************/
/*********slideshow***********/
/******************************/
.slider {
    position: relative;
}
.home-video video{
    width: 100%;
    display: block;
}
.slid-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.slid-body .slid-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 30px;
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.main-slider .owl-dots .owl-dot {
    background: #6DADDF;
    width: 40px;
    height: 5px;
    margin: 0 5px;
    transition: all .35s ease-in-out;


}

.main-slider .owl-dots .owl-dot.active {
    width: 80px;
    background: #206AB2;

}
@media (max-width: 992px) {
    .main-slider .item img{
        max-height: 650px;
    }
    .slid-body{
        width:100%;
    }
}
@media (max-width: 768px) {
    .main-slider .item img{
        max-height: 450px;
    }
    .slid-body .slid-title{
        font-size: 38px;
    }
}
@media (max-width: 500px){
    .main-slider .item img{
        max-height: 350px;
    }
    .slid-body .slid-title{
        font-size: 24px;
    }
}
/******************************/
/***********about**************/
/******************************/
.about {
    padding: 0 0 30px;
    position: relative;
}

.about .image img {
    width: 100%;
}

.about-main {
    position: absolute;
    top: 50%;
    left: 0;

    transform: translate(-50%, -50%);
}
html[dir="ltr"] .about-main{
    transform: translate(5%, -50%);
}
.about-description {
    width: 40%;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;

}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .about .image img{
    height:300px;
}
    .about-description{
font-size: 12px;
        width: 95%;
    }
    .about-main {
        position: absolute;
        top: 50%;
        left: 40%;
        transform: translate(-50%, -50%);
    }
}

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

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

.counters .counter-items .count {
    font-size: 130px;
    color:  #5199d2;
    -webkit-text-stroke: 1px #5199d2;
    line-height: 50px;
}

.counters .counter-items .text {
    font-size: 24px;
    font-weight: bold;
    color: var(--main);
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .counters .counter-items .content{
        margin-bottom: 30px;
    }
    .counters .counter-items .count {
        font-size: 75px;
    color:  #5199d2;
    -webkit-text-stroke: 1px #5199d2;
     }
}

/******************************/
/***********products**************/
/******************************/
.products {
    padding: 50px 0 100px;
}

.products .products-items .products-content .icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    background: #E6F5FC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.products .products-items .products-content .tit {
    font-size: 24px;
    font-weight: bold;
    color: var(--main);
    margin-bottom: 20px;
}

.products .products-items .products-content .description {
    font-size: 20px;
    font-weight: 400;
    color: var(--black);
    width: 80%;
    margin-bottom: 20px;
}
.alltit{
    display: flex;
    align-items: center;
    gap: 20px;
}
.products .products-items:nth-of-type(even) .row {
    flex-direction: row-reverse;
}

@media (max-width: 991px) {
.products {
    padding: 0px;
}
.products .products-image{
      margin-bottom: 50px;
}
.products .products-items .products-content .description{
    width:100%;
}
}

@media (max-width: 500px) {

}

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

.banner .banner-image img {
    width: 100%;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(0, -50%);
}

.banner-description {
    font-size: 56px;
    font-weight: bold;
    color: var(--white);

}
html[dir="ltr"] .banner-content{
    left: 20%;
}
html[dir="ltr"] .banner-description{
    width: 60%;
}
@media (max-width: 768px) {
    .banner-description{
        font-size: 38px;
    }
    html[dir="ltr"] .banner-description{
        width: 85%;
    }
    .banner {
    padding: 0; 
}
}

@media (max-width: 500px) {
    .banner-description{
        font-size: 28px;
    }
    html[dir="ltr"] .banner-description{
        width: 95%;
    }
}

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

.fabrics-items {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #BEBEBE;
    transition: all .35s ease-in-out;

}

.fabrics-image {
    margin-bottom: 30px;
}

.fabrics-items:hover {
    border-bottom: 1px solid var(--main);
}

.fabrics-items .fabrics-content .tit {
    width: 60%;
    font-size: 20px;
    font-weight: bold;
    display: table;
    margin: 0 auto 10px;
}

.fabrics-items .fabrics-content .main-btn {
    border: 1px solid transparent;
}

@media (max-width: 768px) {
    .fabrics-items .fabrics-content .tit{
        width: 85%;

    }
}

@media (max-width: 500px) {
    .fabrics-items .fabrics-content .tit{
        width: 95%;
        font-size: 18px;
    }
}

/******************************/
/***********production**************/
/******************************/

.production {
    padding: 0px 0;

}
.production img {
    width: 100%;
    
}
.production-items-image img {
    width: 100%;
}

.production-items-content {
    position: relative;
}

.production-item .production-item-content {
    display: flex;
    align-items: center;
}

.production-item-content .content {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
    margin-inline-end: 30px;
    margin-bottom: 20px;
}

.production-item-content .content .num {
    padding-inline-end: 15px;
    border-inline-end: 2px solid var(--white);
}

.production-item-content .content:last-of-type .num {
    border-inline-end: 2px solid transparent;
}

.production-items-content-desc {
    font-size: 48px;
    font-weight: bold;
    color: var(--white);
}
html[dir="ltr"] .production-items-content-desc{
    font-size: 36px;
}
@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .production .main-tit{
        margin-bottom: 30px;
    }
    .production-item-content .content{
        font-size: 28px;
    }
    .production-items-content-desc{
        font-size: 34px;
    }
}

/******************************/
/******************************/
.partners {
    padding: 50px 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-image: url("../images/bg clients.png");
}

@media (min-width: 992px) {
    .col-partners {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }

}

@media (max-width: 768px) {

}

@media (max-width: 500px) {

}

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

.news-items {
    background: var(--white);
    border-radius: 20px;
    position: relative;
    padding-bottom: 30px;
    transition: all .35s ease-in-out;

}

.news-items:before {
    content: " ";
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-image: url("../images/semi.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 90px;
    height: 74px;
    background-size: contain;
}
html[dir="ltr"] .news-items:before{
   right: 15px;
    left: unset;
}
.news-items:hover {
    box-shadow: 0px 4px 4px 0px #00000040;
    background: #E8F1FF;
}

.news-items .news-img img {
    border-radius: 20px 20px 0 0;
    width: 100%;
}

.news-items .news-content {
    padding: 30px 10px;
}

.news-items .news-content .tit{
    color: var(--main);
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}
.news-items .news-content .desc{
    color: var(--black);
    font-size: 18px;
     margin-bottom: 20px;
}
@media (max-width: 768px) {
    .news-items .news-content .desc{
        font-size: 16px;
    }
    .news-items:before {
        width: 50px;
        height: 35px;
        bottom: 26px;

    }
}

@media (max-width: 500px) {

    .news-items:before {
        bottom: 15px;
        width: 75px;
        height: 55px;
    }

}

/******************************/
/******************************/
.contact-us-items{
    position: relative;
    padding: 75px;
}
.page-main-form .contact-us-items{
     margin-top: -50px;
}
.contact-us-items:before{
    content: " ";
    position: absolute;
    top: 20%;
    right: 0;
    left: 0;
    width: 100%;
    height: 70%;
    border: 1px solid var(--main);
    border-radius: 15px;
}
.info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info .icon {
    color: var(--main);
    border: 1px solid var(--main);
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 24px;
    margin-inline-end: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content .value {
    font-size: 20px;
    color: #6DADDF;
    margin-bottom: 5px;
}

.info-content .value a {
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {

}

@media (max-width: 500px) {
    .contact-us-items{
        padding: 20px;
    }
    .contact-us-items:before {
        top: 6%;
        height: 92%;

    }
     .info-content h3{
        font-size: 20px;
    }
    .info-content .value{
        font-size: 16px;
    }
}

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

}
.footer-logo{
    margin-bottom: 20px;
}
.social-media{
    margin-bottom: 20px;

}
.social-media a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 26px;
    color: var(--white);
    border-radius: 50%;
    margin: 0 10px;
    border: 1px solid var(--white);
}

.footer-list ul{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}
.footer-list ul li {

    margin:0 10px ;
    color: var(--white);
}

.footer-list ul li a {
    color: var(--white);
}
.whatsapp{
    position: fixed;
    top: 70%;
    right: 10px;
    z-index: 2;
}
.end-footer {
    display: flex;
    align-items: center;
    justify-content: center;

}

.map iframe {
    border-radius: 25px;
    width: 100%;
}


.copy-write {
    color: var(--white);
}

.copy-write a {
    color: var(--main);
}

@media (max-width: 500px) {
    .footer-logo {
        margin-top: 30px;
    }
    .footer-list ul{
        flex-wrap: wrap;
    }
    footer { 
    padding: 20px 0;}
}

.breadcrumb-area {
    padding: 50px 0;
    background-image: url("../images/footer bg.png");
    background-size: cover;
    background-attachment: fixed;
}
.breadcrumb-area .page-tit{
    color: var(--main);
}
.breadcrumb-area a {
    color: var(--main);
    font-size: 18px;
}




@media (max-width: 768px) {
    .footer-logo {
        margin: 20px auto;
        display: table;
    }


    .footer-logo-desc {
        font-size: 14px;
        margin-bottom: 20px;

    }

    .end-footer {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }

    .social-menu {
        margin-bottom: 10px;
    }
}

@media (max-width: 500px) {

    .social-media {
        text-align: center;
        margin: 10px 0;
    }

    .footer-logo-desc {
        font-size: 12px;
    }

    .social-menu {
        flex-direction: column;
    }

    .social-menu .footer-list-end {
        margin: 10px 0;
    }
}

.map {
    margin-bottom: 30px;
}

.map iframe {
    width: 100%;
    height: 250px;
    border-radius: 20px;
}

.uploadBox label {
    justify-content: center !important;
    border-radius: 35px;
}
/**/
.uploadBox input {
    display: none;
}

.uploadBox label {
    border: 1px solid #000;
    background: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5px 20px;
    font-size: 17px;
    color: #000;
    margin: 0;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.upload-icon {
    margin-inline-start: 30px;

    transition: all .4s ease-in-out;
}

.uploadBox label:hover {
    background: #65b13f;
    color: #fff;
}

.uploadBox label:hover .upload-icon {
    /*filter: brightness(0) invert(1);*/
}

.uploadBox label:hover {
    background: var(--main) !important;
    color: #fff;
}

.single-gallery a{
    border: 1px solid var(--main);
    border-radius: 10px;
}
.single-gallery a img{
    border-radius: 10px;
}