/*
Theme Name: V1
Theme URI: https://wa.me/201125437161
Author: Ahmed Abou Saif
Author URI: https://wa.me/201125437161
Description: Ahmed Abou Saif 
Version: 1.0

*/


.container {
    width: 100%;
    max-width: 1170px !important;
    position: relative;
    padding: 0;
}

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


a {
    text-decoration: none;
    transition: all 0.5s ease 0s;
    outline: none;
}

a:hover {
    transition: all 0.5s ease 0s;
    outline: none;
}


/*@font-face {
font-family:DIN;
font-style:normal;
font-weight:normal;
src:url("fonts/ArbFONTS-DINNEXTLTARABIC-LIGHT-1.ttf") format('truetype')
}
*/

@font-face {
    font-family: sky;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/sky.ttf") format('truetype')
}

@font-face {
    font-family: sky bd;
    src: url("fonts/2c458bc98aac2311643f30a231a7ea30.woff2")format("woff2"), url("fonts/2c458bc98aac2311643f30a231a7ea30.woff")format("woff")
}




/* @font-face {
    font-family: Avenir;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/AvenirLTProLight.otf") format('')
}
@font-face {
    font-family: Nature;
    font-style: normal;
    font-weight: normal;
    src: url("fonts/Nature.ttf") format('truetype')
} */


body {
    margin: 0;
    padding: 0;
    color: #231F20;
    font-family: Signika;
    font-size: 17px;
    font-weight: 300;
    text-align: left;
    direction: ltr;
    background: #F8F7F0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: Outfit; */
}

/*  */




/*  */
header {
    padding: 0 20px;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 99;
    /* min-height: 106px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #181219; */
    /* border-bottom: 1.5px solid #EDEDED14; */
}

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

header .container img {
    height: 104px;
    width: auto;
    margin: -10px 0 -60px;
    border: 20px solid #f8f7f0;
    background: #f8f7f0;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 769px) {
    header .container img {
        height: 80px;
        width: auto;
        margin: 0;
    }
}

header .container ul.topnav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0;
}

header .container ul.topnav li {
    padding: 0 5px;
}

@media (min-width: 769px) {
    header .container ul.topnav li:last-child {
        display: none;
    }
}

header .container ul.topnav li a {
    color: #FFFFFF99;
    text-decoration: none;
    outline: none;
    padding: 25px 15px 15px;
    font-size: 18px;
    background-image: url("img/li.png");
    background-repeat: no-repeat;
    background-position: center top;
}

header .container ul.topnav li:hover a {
    color: #ED7122;
}

header .container ul.topnav .current_page_item a {
    color: #ED7122 !important;
    background-image: url("img/lih.png");

}


@media (max-width: 769px) {
    header .container ul.topnav {
        /* display: none */
        position: fixed;
        display: flex;
        top: 0;
        left: -330px;
        transition: all 0.5s ease 0s;
        height: 100vh;
        width: 300px;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        padding: 20px 15px;
        z-index: 999;
    }

    .open {
        transition: all 0.5s ease 0s;
        left: 0 !important;
    }

    header .container ul.topnav li {
        border-bottom: 1px solid #eeeeee45;
    }

    header .container ul.topnav li a {
        /* display: block; */
        /* background-position: right 30px top; */
        margin: 6px 0;
        display: inline-block;
    }
}

header .container .box {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container .box select {
    border: none;
    outline: none;
    color: #7c7c7c;
    padding: 5px;
}

header .container .box .bar {
    width: 25px;
    height: 20px;
    position: relative;
    border-top: 3px solid #ed7122;
    margin: 0 15px 0 0;
    cursor: pointer;
    display: none;
}

@media (max-width: 769px) {
    .box2{
        display: none !important;
    }
    header .container .box .bar {
        display: block;
    }
}

header .container .box .bar::after {
    content: "";
    position: absolute;
    border-top: 3px solid #ed7122;
    bottom: 0;
    right: 0;
    width: 30%;
}

header .container .box .bar::before {
    content: "";
    position: absolute;
    border-top: 3px solid #ed7122;
    bottom: 49%;
    right: 0;
    width: 59%;
    z-index: 9;
}

a.contact {
    background-color: #fff;
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
    outline: none;
    height: 50px;
    margin: 0;
    display: flex;
    border-radius: 55px;
    font-size: 18px;
    background-image: url("img/contact.gif");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: auto 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
a.contact i{
    background-image: url("img/Icon.png");
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    margin: 0 0 0 5px;
}

@media (max-width: 769px) {
    header .container .box a.contact {
        display: none;
    }
}

a.contact:hover {
    background: #39B54A;
}
/*  */
.s{
    background-image: url("img/s.png");
    background-size: 100% 100%;
    margin: 0 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 50%;
}
.s:hover{
    background-color: #39B54A;
}

#searchform{
    display: block !important;
}
.modal-title{
    color: #000;
    border: none;
}
.modal-dialog input{
    width: 100%;
    text-align: left;
    padding: 10px;
    border: 1px solid #ddd;
    outline: none;
    margin: 0 0 15px;
    border-radius: 5px;
}
.modal-dialog .wpcf7-submit {
    color: #fff;
    padding: 6px 10px 5px;
    border: none;
    font-size: 22px;
    margin: 0;
    display: inline-block;
    border-radius: 10px;
    background: #ED7122;
    text-transform: uppercase;
    /* font-family: 'BAHNSCHRIFT'; */
    text-align: center;
}
.modal-dialog .wpcf7-submit:hover {
    color: #fff;
    background: #000;
}




.whapp {
    width: 53px;
    height: 53px;
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 50%;
    background-image: url("img/wa.gif");
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}

/*  */


section {
    overflow: hidden;
    width: 100%;
    padding: 80px 10px;
}

/*  */
.hero {
    padding: 0;
    position: relative;
    /* background: #000; */
    border-radius: 0;
    border: 15px solid #F8F7F0;
}
.boxviduo{
    border-radius: 15px;
    background: #000;
    position: relative;
}

.hero video {
    width: 100%;
    height: 100vh;
    margin: 0 0 -10px;
    object-fit: cover;
    border-radius: 15px;
    opacity: 0.4;
}

.hero .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    display: flex;
    /* background: #FFFFFF; */
    /* background: linear-gradient(270deg, rgba(255, 255, 255, 1) 33%, rgba(255, 255, 255, 0) 100%); */
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
    color: #fff;
}
.hero  .down{
    background-image: url("img/c.png");
    background-size: 100% auto;
    width: 138px;
    height: 69px;
    /* background-color: #f00; */
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -69px;
}
img.d{
    width: 30px;
    height: auto;
    margin: -40px auto 0;
    display: block;
    transform: rotate(90deg);
}


.hero .text .container {
    position: relative;
    z-index: 9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    flex-direction: column;
    max-width: 700px !important;
}

.hero .text .container h1 {
    font-size: 50px;
    margin: 0 0 20px;
    display: block;
    font-weight: 400;
    text-transform: capitalize;
    color: #fff;
}
.hero .text .container h1 strong{
    background: #ED7122;
    border-radius: 15px 0;
    font-weight: 400;
    padding: 0 15px;
}
@media (max-width: 769px) {
    .hero .text .container h1 {
        font-size: 30px;
    }
}

.hero .cover .container p {}


.hero .text .container  a {
    background-color: #fff;
    font-size: 18px;
    color: #ed7122;
    text-align: center;
    text-decoration: none;
    outline: none;
    height: 50px;
    padding: 0 25px 0 15px;
    margin: 15px 0 0;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    cursor: pointer;
    background-image: url("img/a.png");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.hero .text .container  a:hover {
    background-color: #39B54A;
    color: #fff;
}



form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    background: none;
    padding: 20px 20px 0px;
    border-radius: 20px;
}



/*  */
.rows{
    padding: 5px;
    text-align: left;
    font-size: 16px;
}
.rows p{
    margin: 0;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
}
.wpcf7-form-control{
    min-height: 50px;
    width: 100%;
    border-radius: 10px;
    color: #000000;
    background-color: #fff;
    border: 1px solid #1211271F;
    outline: none;
    text-align: left;
    direction: ltr;
    padding: 10px 15px;
    direction: ltr;
    font-size: 16px;
    max-height: 140px;
    margin: 5px 0 0;
    appearance: none;
}
select{
    background-image: url("img/select.png");
    background-position: right 15px center;
    background-repeat: no-repeat;
}
/*  */
.wpcf7-submit{
    width: 140px;
    height: 49px;
    display: flex;
    /* background-image: url(img/sub.png);
    background-position: right 15px center;
    background-repeat: no-repeat;
    background-size: 25px auto; */
    background-color: #ED7122;
    border-radius: 28px;
    margin: 0 auto;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    outline: none;
    transition: all 0.5s ease 0s;
    align-items: center;
    text-align: center;
    float: none;
    font-size: 16px;
    text-align: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
.wpcf7-submit:hover{
    opacity: 0.7;
    transition: all 0.5s ease 0s;
}
.intl-tel-input.separate-dial-code .selected-flag {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    color: #ED7122;
    font-weight: bold;
    border-radius: 10px;
    
}
.intl-tel-input.separate-dial-code .selected-dial-code {
    display: table-cell;
    direction: ltr;
    vertical-align: middle;
    padding-left: 10px;
}
.intl-tel-input {
    float: left;
    margin: 5px 0 0;
}
.iti-flag {
    display: none;
}
.intl-tel-input .country-list li.country {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
/*  */


section{
    padding: 50px 10px;
    clear: both;
    position: relative;
}
.why{
    background-image: url("img/bg1.png");
    background-repeat: no-repeat;
    background-position: right top 20vh;
    background-size: auto 150px;
}
.why .container{
    display: flex;
    flex-wrap: wrap;
}
.tit{
    background-image: url("img/titup.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: auto 51px;
    padding: 55px 0 10px;
    position: relative;
    text-align: center;
    margin: 0 auto 30px;
}
.tit strong{
    text-transform: uppercase;
    margin: 0;
}
.tit h1{
    color: #000;
    font-size: 35px;
    font-weight: 700;
    margin: -10px 0 18px;
}
.tit:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 23px;
    background-image: url("img/w.png");
    background-repeat: no-repeat;
    background-position: center bottom;
}
.point{
    display: flex;
    flex-wrap: wrap;
}
.point .why-box{
    padding: 10px;
}
.point .why-box .box{
    background-image: url("img/box.png");
    background-repeat: no-repeat;
    background-position: 100% 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 30px 30px;
    align-items: center;
    border-radius: 15px;
    position: relative;
}
.point .why-box .box img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 20px 0 0;
}
.point .why-box .box h4{
    color: #231F20;
    margin: 0;
    font-size: 19px;
}
.point .why-box .box p{
    width: auto;
    color: #404A3DCC;
    border-top: 1px solid #404A3D1A;
    padding: 20px 40px 0 0;
    margin: 20px 0 0;
    display: flex;
}
/*  */
.about{}
.about .container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.about .container .block{
    padding: 20px;
    position: relative;
    color: #666666;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about .container .block-img{}
.about .container .block-img:after{
    content: "";
    width: 50px;
    height: 50px;
    background-image: url("img/gren.svg");
    background-size: 50px 50px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
}
.about .container .block-img img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.about .container .block-img .num{
    border: 25px solid #f8f7f0;
    border-radius: 20px;
    position: absolute;
    right: -5px;
    bottom: -5px;
    background: #f8f7f0;
}
.about .container .block-img .num div{
      background: #27AAE1;
      color: #fff;
      display: flex;
      border-radius: 20px;
      padding: 15px 25px;
      flex-direction: column;
      align-items: center;
      min-width: 220px;
}
.about .container .block-img .num h2{
    font-size: 60px;
    font-weight: 700;
    border-bottom: 1px solid #0e739d;
    width: 100%;
    text-align: center;
}

.about .container .block h6{
    background-color: #fff;
    background-image: url("img/o.png");
    background-repeat: no-repeat;
    background-position: left 10px center;
    color: #ED7122;
    padding: 5px 20px 1px 31px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0 0 20px;
}
.about .container .block h1{
    color: #000;
    font-size: 35px;
    font-weight: 700;
    margin: -10px 0 18px;
}
.about .container .block p{

}
.about .container .block .about-p{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0 0;
}
.about .container .block .about-p .about-box{
    padding: 0 20px 0 0;
}
.about .container .block .about-p .about-box .box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.about .container .block .about-p .about-box .box img{
    width: 67px;
    height: 67px;
    border: 1px solid #895A2133;
    border-radius: 15px;
    margin: 0 0 15px;
    padding: 10px;
    background: #fff;
}
.about .container .block .about-p .about-box .box h4{
    color: #895A21;
    margin: 0 0 10px;
    font-size: 20px;
}

.about .container .block a {
    background-color: #fff;
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
    outline: none;
    height: 50px;
    margin: 0;
    display: flex;
    border-radius: 55px;
    font-size: 18px;
    background-image: url("img/contact.gif");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: auto 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
.about .container .block a:hover{
    background: #39B54A;
}
.about .container .block a i{
    background-image: url("img/Icon.png");
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    margin: 0 0 0 5px;
}
/*  */
.products{}
.products .container{
    background-color: #F7EADB;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    background-image: url(img/bgg.png);
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: 100% auto;
    flex-direction: column;
    align-items: center;
}
.products .container::after{
    content: ""; 
    position: absolute;
    right: 0;
    top: 10vh;
    width: 8%;
    height: 200px;
    background-image: url("img/bg1.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
}
.products .container::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10vh;
    width: 8%;
    height: 200px;
    background-image: url("img/bg2.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.products .container > a{
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
    outline: none;
    height: 50px;
    margin: 0;
    display: flex;
    border-radius: 55px;
    font-size: 18px;
    background-image: url("img/contact.gif");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: auto 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
.products .container  > a:hover{
    background: #39B54A;
}
.products .container  > a i{
    background-image: url("img/Icon.png");
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    margin: 0 0 0 5px;
}
/*  */
.pro-slider{
    max-width: 1000px;
    margin: 0 auto 20px;
}
.pro-box {
    padding: 5px;
}
.pro-box .box {
    background-image: url("img/pro.png");
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 15px;
    color: #666666;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.pro-box .box img {
    width: 100%;
    margin: 0 0 10px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
}
.pro-box .box span {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 10px;
    color: #666666;
}
.pro-box .box span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #39B54A;
    border-radius: 50%;
}
.pro-box .box h3 {
    margin: 0 0 10px;
    color: #231F20;
    font-weight: 600;
    font-size: 22px;

}
.pro-box .box p {
    padding: 10px 0;
    border-top: 1px solid #E8E8E8;
    margin: 0 30px 0 0;
    font-size: 15px;
    font-weight: 300;
}
.pro-box .box a{
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 0;
    text-decoration: none;
    outline: none;
    height: 40px;
    width: 40px;
    margin: 0;
    display: flex;
    border-radius: 55px;
    font-size: 18px;
    background-image: url("img/contact.gif");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: auto 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
.pro-box .box a:hover{
    background: #39B54A;
}
.pro-box .box a i{
    background-image: url("img/Icon.png");
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    margin: 0 0 0 5px;
}
.owl-prev{
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: 50%;
    margin-top: -20px;
    background-image: url("img/l.png");
    background-size: 100% 100%;
}
.owl-next{
    font-size: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: 50%;
    margin-top: -20px;
    background-image: url("img/r.png");
    background-size: 100% 100%;
}
@media (max-width: 769px) {
    .owl-prev{
        left: -30px;
    }
    .owl-next{
        right: -30px;
    }
}
/*  */
.choose{}
.choose .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.tit-center{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.tit-center h6{
    background-color: #fff;
    background-image: url(img/o.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
    color: #ED7122;
    padding: 5px 20px 1px 31px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 0 0 0;
}
.tit-center h1{
     color: #000;
     font-size: 35px;
     font-weight: 700;
     margin: -15px 0 18px;
     padding: 30px 0 0;
     background-image: url("img/tit.png");
     background-repeat: no-repeat;
     background-position: left 10px top;
     background-size: auto 30px;
}
.choose .container .block{
    display: flex;
    flex-wrap: wrap;
}
.choose .container .block > img{
    width: 100%;
    height: auto;
    margin: 20px auto;
}
.choose .container .block .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 30px;
    padding: 0 10px;
}
.choose .container .block .box img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 15px;
    margin: 0 auto 20px;
    background-color: #fff;
}
.choose .container .block .box h3{
    color: #ED7122;
    font-size: 22px;
    margin: 0 0 10px;
}
.choose .container .block .box p{
    color: #6C6666;
}
/*  */
.photo{}
.photo .container{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photo .container::after{
    content: "";
    width: 50px;
    height: 50px;
    background-image: url(img/bloue.png);
    background-size: 50px 50px;
    position: absolute;
    left: -10px;
    top: -25px;
    z-index: 9;
}
.photo .container::before{
        content: "";
    width: 50px;
    height: 50px;
    background-image: url(img/bloue.png);
    background-size: 50px 50px;
    position: absolute;
    right: -10px;
    top: -25px;
    z-index: 9;
}
.photo .container .photo-slider{}
.photo .container .photo-slider .item{
    padding: 10px;
}
.photo .container .photo-slider .item img{
    width: 100%;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
}

.photo .container > a{
    color: #fff;
    padding: 0 20px;
    text-decoration: none;
    outline: none;
    height: 50px;
    margin: 20px auto 0;
    display: flex;
    border-radius: 55px;
    font-size: 18px;
    background-image: url("img/contact.gif");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: auto 40px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F69453 0%, #F37521 50%, #D4622A 99.99%);
}
.photo .container  > a:hover{
    background: #39B54A;
}
.photo .container  > a i{
    background-image: url("img/Icon.png");
    width: 16px;
    height: 16px;
    background-size: 100% 100%;
    margin: 0 0 0 5px;
}

.photo  .owl-prev{
    position: relative;
    left: auto;
    top: auto;
    margin: 5px;
    background-image: url("img/ll.png");
}
.photo  .owl-next{
    position: relative;
    right: auto;
    background-image: url("img/rr.png");
    top: auto;
   margin: 5px;
}
.photo .owl-buttons{
    display: flex;
    justify-content: center;
}


.modal-slider img{
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}
.modal-slider .owl-prev{
    left: 0;
}
.modal-slider .owl-next{
    right: 0;
}
/*  */
.partners{
    padding: 50px 20px;
}
.partners .container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.partners .container .partners-slider{
    max-width: 1000px;
}
.partners .container .partners-slider .box{
    padding: 10px;
    height: 120px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partners .container .partners-slider .box img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.all{
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 20px 0 0;
}
.partners .container .block{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.partners .container .block > img{
    width: 110%;
    height: auto;
    border-radius: 20px 0 0 20px;
    object-fit: cover;
}
@media (max-width: 769px) {
    .partners .container .block > img{
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0 0 ;
    margin: 0 0 -30px;
}
}

.partners .container .block-text{
    background-color: #ffffff;
    display: flex;
    border-radius: 20px;
    padding: 30px;
    color: #666666;
    background-image: url("img/bbgg.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    flex-direction: column;
    align-items: flex-start;
}
.partners .container .block-text h6{
    background-color: #fff;
    background-image: url(img/o.png);
    background-repeat: no-repeat;
    background-position: left 10px center;
    color: #ED7122;
    padding: 5px 20px 1px 31px;
    border-radius: 10px;
    display: flex;
    margin: 0 0 10px;
}
.partners .container .block-text h1{
    color: #000;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px;
}
.partners .container .block-text p{
    margin: 0;
}
.partners .container .block-text .what{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0 0;
}
.partners .container .block-text .what .box{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
.partners .container .block-text .what .box span{
    color: #ED7122;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 15px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background-image: url("img/wh.png");
    background-size: 100% 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.partners .container .block-text .what .box h4 {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

/*  */
.certificates{
    padding-top: 20px;
}
.certificates .container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
.certificates .container .box{
    padding: 10px;
}
.certificates .container .box span{
    background-image: url("img/crit.png");
    background-size: 100% 100%;
    height: 200px;
    display: flex;
    padding: 20px 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.certificates .container .box span img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
/*  */



/*  */
.footer{
    clear: both;
    padding: 15px 20px;
    display: flex;
}
footer{
    padding: 40px 10px 0;
    background: #F8EADB;
    color: #231F20;
    border-radius: 20px;
    width: 100%;
    position: relative;
}
footer .container{
    display: flex;
    flex-wrap: wrap;
    min-height: 300px;
    padding: 0;
}
footer .container .foot{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}
footer .container .foot img{
    margin: 0 0 20px;
    /* width: 36px; */
    max-height: 65px;
}
footer .container .foot .media img{
    width: 34px;
}
footer .container .foot p{
    max-width: 350px;
}
footer .container .foot h3{
    color: #895A21;
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 500;
}
footer .container .foot ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .container .foot ul li{}
footer .container .foot ul li a{
    padding: 2px 0;
    display: inline-block;
    color: #231F20;
    text-decoration: none;
    outline: none;
}
footer .container .foot ul li a:hover{
    color: #895A21;
}


.media{
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 10px 0;
}
.media a{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    text-decoration: none;
    outline: none;
    margin: 0 4px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    border: 1px solid #231f2047;
    border-radius: 50%;
}

.media a img{
    width: 34px;
    height: 34px;
    border-radius: 50%;
}
.media a:hover{
opacity: 0.7
}

form.mailpoet_form{
    padding: 0 !important;
    position: relative;
    background: none !important;
}
.mailpoet_spacer{
    display: none !important;
}
.mailpoet_submit{
    position: absolute;
    top: 4px;
    right: 5px;
    margin: 0 !IMPORTANT;
    /* font-family: 'Outfit' !important; */
    font-size: 16px !important;
    padding: 11px 15px !important;
    background: #895A21;
    width: 110px !important;
}
.mailpoet_text{

    height: 55px !important;
    border-radius: 50px !important;
}
/*  */
.mobile{
    display: none;
}
@media (max-width: 769px) {
    .mobile{
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        list-style: none;
        margin: 0;
        background: #fff;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99;
        align-items: center;
        justify-content: space-around;
    }
    .mobile li{}
    .mobile li a{
        display: block;
        padding: 5px;
        color: #000;
        text-decoration: none;
        outline: none;

    }
    .mobile li.current-menu-item a{
        color: #231F20;
    }
}

.copy{
    text-align: center;
    padding: 10px 15px;
    border-top: 1px solid #0000001C;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 10px auto 0;
}
.copy a{
    color: #fff;
    text-decoration: none;
    outline: none;
    margin: 10px 0;
}
.copy a:hover{
    color: #14B4EF;
}
@media (max-width: 769px) {
    .copy{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.mailpoet_paragraph {
    width: 100% !important;
}
footer .media{
    position: absolute;
    left: 0;
    bottom: -10px;
    background: #f8f7f0;
    padding: 15px 15px 15px 0;
    width: auto;
    display: flex;
    border-radius: 0 20px 0 0;
}

footer .media div{
    display: flex;
    flex-wrap: wrap;
    background: #000;
    padding: 4px 5px 8px;
    border-radius: 50px;
}
footer .cont{
    position: absolute;
    right: 0;
    bottom: -10px;
    background: #f8f7f0;
    padding: 15px 0 15px 15px;
    width: auto;
    display: flex;
    border-radius: 20px 0 0 0;
}
@media (max-width: 769px) {
    footer .media{
    position: relative;
    left: auto;
    bottom: auto;
    background: #f8f7f0;
    padding: 15px;
    width: auto;
    display: flex;
    border-radius: 20px;
    justify-content: center;
}
footer .cont{
    display: none;
}
}
/*  */
.head{
    padding: 0;
    position: relative;
    border: 15px solid #F8F7F0;
}
.body{
    background: #000;
    border-radius: 20px;
}
.head video{
    width: 100%;
    height: 340px;
    border-radius: 20px;
    opacity: 0.7;
    object-fit: cover;
}

.head .cavers{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 0;
}
.head .cavers h1{
    color: #fff;
    font-size: 25px;
    margin-top: 10px;
}
/*  */
.about-page{
    background-image: url("img/bg2.png");
    background-repeat: no-repeat;
    background-position: left top 10vh;
    background-size: 6% auto;
}
.about-page .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-page .container img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.about-page .container ul{
    margin: 15px 0 0;
    list-style: none;
    /* column-count: 2; */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .about-page .container ul{
    column-count: 1;
}
}

.about-page .container ul li{
    display: flex;
    padding: 0 0 0 30px;
    color: #000;
    background-image: url("img/lli.png");
    background-repeat: no-repeat;
    background-position: left 5px;
    margin: 0 0 10px;
    width: 270px;
}
/*  */
.history{
    position: relative;
}
.history::after{
    content: "";
    position: absolute;
    top: 118px;
    left: 0;
    right: 0;
    border-bottom: 1px solid #404A3D33;
    z-index: -1;
}
.history-box{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
}
.history-box h2{
    color: #F8F7F0;
    margin: 0 0 25px;
    font-size: 50px;
    -webkit-text-stroke: 1px #895A21;
    position: relative;
    font-weight: bold;
    font-family: sans-serif;
}
.history-box h2:after{
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ED7122;
    position: absolute;
    left: 0;
    bottom: -16px;
}
.history-box h4{
    color: #000;
    margin: 0 0 10px;
}
.history-box p{
    color: #666666;
}
/*  */
.prud-page{}
.prud-page .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid #DBDBDB;
    padding: 0 0 30px;
    max-width: 1000px !important;
}
.prud-page .container .pro-box{
    padding: 10px;
}
/*  */
.quality-page .container{
    padding: 0 0 10px;
    border-bottom: 1px solid #DBDBDB;
    display: flex;
    flex-direction: row-reverse;
}
.quality-page ul{}
.quality-page ul li{
    width: 100% !important;
    color: #666666 !important;
}
.page{}
.page .container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px !important;
}

/*  */
.gallery{
    padding: 0;
    margin: 0 !important;
    border: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.gallery .gallery-item{
    padding: 5px;
    border: none;
    margin: 0 !important;
}
.gallery .gallery-item a{
    padding: 0;
    border: none;
    margin: 0;
}
.gallery .gallery-item a img{
    width: 100%;
transition: all 0.5s ease 0s;
    height: 300px;
    border-radius: 15px;
    margin: 0;
    padding: 0;
    border: none;
    object-fit: cover;
}
.gallery .gallery-item a img:hover{
transition: all 0.5s ease 0s;
    opacity: 0.6;
}
/*  */
.ico{
    padding: 15px;
    background: #F8F7F0;
    border: 1px sienna #895A2121;
}
.ico~i{
    width: 47px;
    height: 47px;
    background-image: url("img/call.png");
    background-size: 100% 100%;
    position: absolute;
    bottom: 0;
    right: 0;
}
/*  */
.span {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 10px;
    color: #666666;
}
.span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #39B54A;
    border-radius: 50%;
}
.pro-page{}
.pro-page .container{}
.pro-page .container .block{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pro-page .container .block img{
    margin: 0 -20px 0 0;
    background: #000;
}
@media (max-width: 769px) {
    .pro-page .container .block img{
    margin: 0 0 -20px;
}
}
/*  */
.info{
    padding: 20px;
}
.info .container{
    display: flex;
    flex-wrap: wrap;
    color: #666666;
    font-size: 16px;
    flex-direction: column;
}
.info .container h1{
   color: #895A21;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 18px;
}
.text .container{
    border-bottom: 1px solid #DBDBDB;
    padding: 0 0 40px;
}
.text .container h1{
    color: #000;
}
.text .container ul{
    margin: 15px 0 0;
    list-style: none;
    /* column-count: 2; */
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 769px) {
    .text .container ul{
    column-count: 1;
   
}
}

.text .container ul li{
    display: flex;
    padding: 0 0 0 30px;
    color: #000;
    background-image: url("img/lli.png");
    background-repeat: no-repeat;
    background-position: left 5px;
    margin: 0 0 10px;
    width: 100%;
}

/*  */
.table{
    background: #fff;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 769px) {
    .table{
    background: #fff;
    border-radius: 20px;
    overflow-x: scroll;
    display: block;
    margin: 0 auto;
    float: none;
    width: 360px;
    clear: both;
}
}


.table table{
    border-radius: 20px;
}
.table table thead tr{
    color: #895A21;
    font-weight: 400;
}
.table table tr td{
    padding: 10px 5px;
    border: 1px solid #E8E8E8;
    text-align: center;
}
.table table tr td.name{
    color: #895A21;
    font-size: 18px;
    font-weight: 400;
}

.on{
    height: 40px;
    width: 100%;
    background-image: url("img/x.png");
    background-repeat: no-repeat;
    background-position: center center;
    display: block;

}
.on1{
    height: 40px;
    width: 100%;
    display: block;
    background-image: url("img/on.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}


/*  */




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

@media (max-width: 769px) {}



/*::placeholder { 
color: #ffffff50;
}*/


/*
background-color: rgba(80,104,140,0.5);
transition: all 0.5s ease 0s;
transform: scale(1.2);

*/

.owl-carousel {
    direction: ltr !important;
    position: relative;
}