.container {
    width: 100%;
    max-width: 1260px !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")
}

body {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: sky;
    font-size: 15px;
    font-weight: 300;
    text-align: left;
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sky bd;
}


/*  */

.top {
    background: linear-gradient(90deg, #F69453 100%, #F37521 50.01%, #D4622A 100.02%);
    min-height: 38px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.top .container .box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 769px) {
    .top .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .top .container .box2 {
        display: none;
    }
}

.top .container .box ul {
    background-image: url("img/lang.png");
    background-repeat: no-repeat;
    background-position: left 2px;
    margin: 2px 10px 0 0;
    padding: 0 9px 0 23px;
    list-style: none;
    border-right: 1px solid #fff;
    height: 20px;
}

.top .container .box ul li {
    margin: 0;
    padding: 0;
}

.top .container .box ul li a {
    color: #fff;
    text-decoration: none;
    outline: none;
}

.top .container .box ul li a:hover {
    color: #000;
}

.top .container .box .link {
    color: #fff;
    margin: 0px 6px 0;
    font-size: 21px;
    text-decoration: none;
    outline: none;
    padding: 0;
    height: 24px;
}

.top .container .box .link:hover {
    color: #000;
}

.top .container .box .mailto {
    background-image: url("img/mail.png");
    background-repeat: no-repeat;
    background-position: right center;
    color: #fff;
    padding: 4px 25px 0 0;
}

.top .container .box .mailto:hover {
    color: #000;
}


/*  */

header {
    background: #232323;
    padding: 15px 15px;
    position: sticky;
    top: 0;
    z-index: 99;
}

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

header .container img {
    width: auto;
    height: 52px;
}

@media (max-width: 769px) {
    header .container img {
        height: 40px;
    }
}

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

header .container ul.topnav li {
    position: relative;
}

header .container ul.topnav li a {
    color: #fff;
    text-decoration: none;
    outline: none;
    font-size: 17px;
    font-weight: 400;
    text-decoration: none;
    outline: none;
    padding: 10px 7px;
    font-size: 15px;
}

header .container ul.topnav li a:hover,
header .container ul.topnav li.current-menu-item a {
    color: #EC7124;
}

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

a.hot {
    border: 2px solid #EC7124;
    padding: 5px 20px 5px 48px;
    border-radius: 30px;
    color: #EC7124;
    position: relative;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    justify-content: center;
}

a.hot i {
    background-image: url("img/hot.gif");
    background-position: center 3px;
    background-repeat: no-repeat;
    background-size: 80%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 6px;
    background-color: #fff;
}
a.tel i{
 background-image: url("img/tel.gif");	
}
a.hot span {
    background-image: url("img/number.gif");
    background-size: 100% 100%;
    width: 52px;
    height: 15px;
}

header .container .box .bar {
    display: none;
}

@media (max-width: 769px) {
    header a.hot {
        font-size: 0;
        padding: 5px 5px 5px 48px;
    }
    header .container ul.topnav {
        position: fixed;
        top: 0;
        left: -350px;
        height: 100vh;
        width: 300px;
        display: flex;
        padding: 40px 40px;
        flex-direction: column;
        justify-content: center;
        z-index: 9999;
        transition: all 0.5s ease 0s;
        background: #232323;
        overflow-y: auto;
    }
    .open {
        transition: all 0.5s ease 0s;
        left: 0 !important;
    }
    header .container ul.topnav li {
        position: relative;
    }
    header .container ul.topnav li a {
        padding: 12px 0;
        height: auto;
        display: flex;
        border-bottom: 1px solid #ffffff1f;
    }
    header .container ul.topnav li:last-child {
        display: block;
    }
    header .container .box .bar {
        width: 30px;
        height: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 999;
        position: relative;
        margin: 0 0 0 10px;
    }
    header .bar::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 60%;
        height: 1px;
        background: #ffffff;
        transition: all 0.2s ease 0s;
    }
    header .bar::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        height: 1px;
        background: #ffffff;
        transition: all 0.2s ease 0s;
    }
    header .bar i {
        position: absolute;
        top: 50%;
        right: 0;
        width: 100%;
        height: 1px;
        margin-top: -1px;
    }
    header .bar i::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 0;
        width: 100%;
        height: 1px;
        background: #ffffff;
        transition: all 0.5s ease 0s;
    }
    header .bar i::before {
        content: "";
        position: absolute;
        top: 2px;
        right: 0;
        width: 100%;
        height: 1px;
        background: #ffffff;
        transition: all 0.5s ease 0s;
    }
    header .bar.on::before {
        width: 0;
        transition: all 0.2s ease 0s;
    }
    header .bar.on::after {
        width: 0;
        transition: all 0.2s ease 0s;
    }
    header .bar.on i::before {
        transform: rotate(50deg);
        transition: all 0.5s ease 0s;
    }
    header .bar.on i::after {
        transform: rotate(-50deg);
        transition: all 0.5s ease 0s;
    }
}


/* slider */

.slider-all {
    position: relative;
}

.slider-all .ger {
    background: rgb(35, 35, 35);
    background: linear-gradient(90deg, rgba(35, 35, 35, 1) 31%, rgba(244, 244, 244, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    color: #fff;
}

.slider-all .ger .container {
    display: flex;
    height: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

.slider-all .ger .container .block {
    width: 100%;
    max-width: 450px;
    background-image: url("img/slider.png");
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.slider-all .ger .container .block h1 {
    color: #EC7124;
    margin: 0 0 15px;
}

.slider-all .ger .container .block strong {
    margin: 0 0 15px;
    font-size: 19px;
    display: flex;
}

.slider-all .ger .container .block .text {
    padding: 0 0 0 100px;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.slider-all .ger .container .block .text::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 90px;
    border-top: 1px solid #D4622A;
}

.slider-all .ger .container .block .text p {
    color: #8B8B8B;
    width: 100%;
    margin: 0 0 15px;
}

.slider-all .ger .container .block .text .call {
    background: linear-gradient(90deg, #F69453 100%, #F37521 50.01%, #D4622A 100.02%);
    height: 48px;
    border-radius: 13px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0 14px 0 0;
}

.slider-all .ger .container .block .text .call i {
    background-image: url("img/a.png");
    background-size: 100% 100%;
    width: 14px;
    height: 15px;
    margin: 0 0 0 8px;
    display: inline-block;
}

.slider-all .ger .container .block .text .call:hover {
    background: #F37521;
}

@media (max-width: 769px) {
    .slider-all .ger {
        background: rgb(35, 35, 35);
        background: linear-gradient(0deg, rgba(35, 35, 35, 1) 31%, rgba(244, 244, 244, 0) 100%);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 20;
        display: flex;
        align-items: flex-end;
        color: #fff;
    }
    .slider-all .ger .container {
        display: flex;
        height: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: flex-end;
    }
    .slider-all .ger .container .block {
        width: 100%;
        max-width: 450px;
        background-image: url("img/slider.png");
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
    }
    .slider-all .ger .container .block .text {
        padding: 0;
    }
    .slider-all .ger .container .block .text::after {
        display: none;
    }
}


/*  */

.slider {
    position: relative;
}

.slider .item {
    position: relative;
    padding: 0;
}

.slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}


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

section {
    padding: 50px 10px;
    clear: both;
}

.step {
    color: #636363;
}

.step .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.step .container h2 {
    color: #000;
    margin: 0 0 15px;
    font-size: 30px;
}

.step .container>p {
    margin: 0 0 20px;
}

.step .container .all-step {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.step .container .all-step .items {
    padding: 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.step .container .all-step .items img {
    width: 130px;
    height: auto;
}

.step .container .all-step .items h4 {
    color: #000;
    margin: 20px 0;
    color: #000;
    font-size: 18px;
}

.step .container .all-step .items p {
    font-size: 15px;
    color: #636363;
    margin: 0;
    text-align: center;
}

.step .container .all-step .items span {
    width: 60px;
    height: 50px;
    background-image: url("img/next2.png");
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: block;
    position: absolute;
    top: 75px;
    right: -30px;
}

.step .container .all-step .items:last-child span {
    display: none;
}

@media (max-width: 769px) {
    .step .container .all-step .items span {
        display: none;
    }
}


/*  */

.about {}

.about .container {
    display: flex;
    flex-wrap: wrap;
    background: #F4F4F4;
    border-radius: 15px;
    padding: 0;
    flex-direction: row-reverse;
    max-width: 1200px !important;
}

.about .container .block {
    display: flex;
    padding: 0;
}

.about .container .block2 {
    padding: 40px;
    color: #636363;
    background-image: url("img/wsq2.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 769px) {
    .about .container .block2 {
        padding: 40px 30px;
        background-size: auto 50%;
    }
}

.about .container .block video {
    width: 100%;
    height: 338px;
    border-radius: 0 15px 15px 0;
}

@media (max-width: 769px) {
    .about .container .block video {
        height: 203px;
        border-radius: 15px 15px 0 0;
    }
}

.about .container .block h2 {
    color: #232323;
    font-size: 22px;
    margin: 0 0 15px;
}

.about .container .block ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.about .container .block ul li {
    display: block;
    padding: 3px 0 7px 30px;
    background-image: url("img/li.png");
    background-position: left 0px;
    background-repeat: no-repeat;
    color: #000;
    font-size: 14px;
}


/*  */

.wakel {
    background: #F4F4F4;
}

.wakel .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    max-width: 1100px !important;
}

.wakel .container h2 {
    color: #232323;
}

.wakel .container p {
    color: #636363;
}

.wakel .container .all-wakel {}

.wakel .container .all-wakel .item {
    padding: 10px;
}

.wakel .container .all-wakel .item .box {
    background: #fff;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    color: #000;
    text-align: center;
    font-size: 14px;
    flex-direction: column;
}

.wakel .container .all-wakel .item span {
    height: 50px;
    margin: 0 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wakel .container .all-wakel .item span img {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 100%;
}


/*  */

.serv {
    background: #fff !important;
}

.serv .container {
    max-width: 1200px !important;
}

.serv .container .all-serv {
    display: flex;
    flex-wrap: wrap;
}

.serv .container .all-serv .serv-box {
    padding: 10px;
}

.serv .container .all-serv .serv-box .box {
    border-radius: 15px;
    text-align: center;
    position: relative;
    display: flex;
    background: #D56329;
}

@media (min-width: 960px) {
    .serv .container .all-serv .serv-box:nth-child(4) {
        width: 50% !important;
    }
    .serv .container .all-serv .serv-box:nth-child(5) {
        width: 50% !important;
    }
}

.serv .container .all-serv .serv-box img {
    width: 100%;
    height: 300px;
    transition: all 0.5s ease 0s;
    object-fit: cover;
    border-radius: 15px;
}

.serv .container .all-serv .serv-box .box:hover img {
    transition: all 0.5s ease 0s;
    opacity: 0.2;
}

.serv .container .all-serv .serv-box h4 {
    background: #fff;
    font-size: 17px;
    transition: all 0.5s ease 0s;
    color: #666;
    font-family: 'sky';
    padding: 11px 20px 9px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    width: 60%;
    position: absolute;
    z-index: 9;
    bottom: 20px;
    right: 20%;
    border-radius: 20px;
}

.serv .container .all-serv .serv-box .box:hover h4 {
    transition: all 0.5s ease 0s;
    bottom: 125px;
}


/*  */

.about-com {}

.about-com .container {
    display: flex;
    flex-wrap: wrap;
    background: #F4F4F4;
    border-radius: 15px;
    padding: 0;
    flex-direction: row;
    max-width: 1200px !important;
    align-items: center;
}

.about-com .container .block {
    padding: 30px;
}

.about-com .container .block2 {
    padding: 30px;
    display: flex;
    padding: 40px;
    color: #636363;
    background-image: url(img/wsq2.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 190px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-com .container .block img {
    margin: 0 auto;
    height: auto;
    max-width: 100%;
    max-height: 360px;
    display: block;
}

.about-com .container .block h2 {
    color: #000;
    margin: 0 0 15px;
}

.about-com .container .block .icon-all {
    display: flex;
    flex-wrap: wrap;
}

.about-com .container .block .icon-all .icon-box {
    padding: 5px;
    color: #5F5F5F;
    font-size: 17px;
    margin: 0 0 5px;
}

.about-com .container .block .icon-all .icon-box h4 {
    margin: 0 0 0;
    font-size: 44px;
    color: #000;
    direction: ltr;
}

.about-com .container .block .icon-all .icon-box h4 span {
    color: #D4622A;
}


/*  */

.cobtacts {}

.cobtacts .container {
    display: flex;
    flex-wrap: wrap;
    color: #949494;
    text-align: center;
    background-color: #232323;
    padding: 30px;
    background-image: url("img/k1.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 250px;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    max-width: 1200px !important;
}

.cobtacts .container:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url("img/k2.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto 250px;
    border-radius: 15px;
}

.cobtacts .container h2 {
    font-size: 30px;
    color: #EC7124;
    margin: 0 0 15px;
    text-align: center;
}

.cobtacts .container>p {
    max-width: 700px;
    display: block;
    margin: 0 auto 20px;
}

.cobtacts .container .block {
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    justify-content: center;
}

.cobtacts .container .block .icon-box {
    padding: 15px;
    direction: ltr;
}

.cobtacts .container .block .icon-box span {
    width: 60px;
    height: 60px;
    display: block;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cobtacts .container .block .icon-box span img {
    max-width: 60%;
    height: auto;
}

.cobtacts .container .block .icon-box h3 {
    color: #EC7124;
    font-size: 16px;
}


/*  */

.val {}

.val .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
}

.val .container .block {
    padding: 20px;
}

.val .container .block h2 {
    color: #000;
    margin: 0 0 20px;
}

.val .container .block p {
    margin: 0 0 20px;
    color: #636363;
}

.val .container .block img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    max-height: 500px;
}

.val .container .block .vaal {}

.val .container .block .val-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: baseline;
    margin: 0 0 10px;
    font-family: sky bd;
}

.val .container .block .val-box span {
    position: relative;
    width: 80%;
    background: #EDECEC;
    height: 8px;
    border-radius: 5px;
    max-width: 350px;
    margin-right: 10px;
}

.val .container .block .val-box p {
    padding: 0;
    margin: 0;
    width: 100%;
    color: #000;
}

.val .container .block .val-box span i {
    background: linear-gradient(90deg, #F69453 0%, #F37521 50.01%, #D4622A 100.02%);
    height: 8px;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.val .container .block .val-box span i:after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #d36229;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: -4px;
    z-index: 9;
}


/*  */

.comment {}

.comment .container {
    display: flex;
    flex-wrap: wrap;
    background: #F4F4F4;
    max-width: 1200px !important;
    padding: 40px 20px;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
}

.comment .container h2 {
    color: #232323;
    margin: 0 0 15px;
}

.comment .container p {
    color: #636363;
    margin: 0 0 30px;
}

.comment .container .comment-slider {
    padding: 0;
    max-width: 1000px;
    display: block;
    margin: 0 auto;
}

.comment .container .comment-slider .comment-box {
    padding: 10px;
}

.comment .container .comment-slider .comment-box .box {
    box-shadow: 0px 5px 6px 0px #67779F14;
    background-color: #fff;
    background-image: url("img/qq.png");
    background-repeat: no-repeat;
    background-position: right 20px top 24px;
    background-size: 36px auto;
    border-radius: 20px;
    padding: 25px;
}

.comment .container .comment-slider .comment-box .box .user {
    color: #636363;
    padding: 0 0 0 64px;
    margin: 0 0 30px;
    background-image: url("img/user.png");
    background-repeat: no-repeat;
    background-position: top left;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comment .container .comment-slider .comment-box .box .user h4 {
    color: #EC7124;
    margin: 0;
    font-size: 16px;
}

.comment .container .comment-slider .comment-box .box p {
    margin: 0;
    color: #232323;
    font-size: 15px;
}

.comment-slider .owl-buttons {
    display: flex;
    margin: 0;
    justify-content: center;
}

.comment-slider .owl-buttons .owl-prev {
    width: 67px;
    height: 67px;
    margin: 0;
    background-image: url("img/l.png");
    background-size: 100% 100%;
    font-size: 0;
}

.comment-slider .owl-buttons .owl-next {
    width: 67px;
    height: 67px;
    margin: 0;
    background-image: url("img/r.png");
    background-size: 100% 100%;
    font-size: 0;
}


/* mails */

.mails {
    margin: 0px 0 -110px;
    position: relative;
    z-index: 20;
}

.mails .container {
    background: linear-gradient(90deg, #F69453 0%, #F37521 50.01%, #D4622A 100.02%);
    padding: 0;
    border-radius: 20px;
    max-width: 850px !important;
    display: flex;
    flex-wrap: wrap;
}

.mails .container .block {
    width: 100%;
    height: auto;
    background-image: url("img/sr1.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 150px auto;
}

.mails .container .block2 {
    width: 100%;
    height: auto;
    min-height: 110px;
    background-image: url("img/sr2.png");
    padding: 10px 30px;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 70px auto;
    display: flex;
    color: #fff;
    align-items: center;
    flex-wrap: wrap;
}

.mails .container .block2 .box {
    padding: 10px 15px;
}

.mails .container .block2 .box h3 {
    font-size: 18px;
    margin: 0 0 5px;
}

.mails .container .block2 .box p {
    margin: 0;
}

.mails .container .block2 .box form {
    position: relative;
    padding: 0 !important;
    margin: 15px 0 0;
}

.mailpoet_spacer {
    display: none !important;
}

.mails .container .block2 .box form .mailpoet_text {
    background: #FFFFFF2B !important;
    border: 2px solid #FFFFFF42 !important;
    color: #fff !important;
    font-family: sky !important;
}

.mails .container .block2 .box form .mailpoet_submit {
    background-image: url("img/go.png");
    background-size: 100% 100%;
    width: 70px;
    height: 55px !important;
    position: absolute;
    top: 2px;
    right: 0px;
}

.mails *::placeholder {
    /* Edge 12 -18 */
    color: #fff !important;
}


/*  */

footer {
    background: #232323;
    padding: 100px 15px 0;
}

footer .container {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px !important;
    align-items: center;
}

footer .container .foot {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer .container .foot img {
    width: auto;
    height: 61px;
    margin: 0 0 15px;
}

footer .container .foot p {
    margin: 0 0 0;
    color: #949494;
    display: block;
    max-width: 400px;
    direction: ltr;
}

footer .container .foot a {
    display: inline-flex;
    margin: 0 0 10px;
    min-width: 170px;
}

footer .container .foot a.tel i {
    background-image: url("img/tel.gif");
    background-size: 65%;
    background-position: center 6px;
}

footer .container .foot a p {
    margin: 0;
    color: #fff;
    direction: ltr;
}


/*  */

.copy {
    border-top: 1px solid #FFFFFF1A;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.copy span {
    color: #949494;
}

.copy span a {
    color: #d36229;
    text-decoration: none;
    outline: none;
}

.copy span a:hover {
    color: #fff;
}

.copy ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
}

.copy ul li {
    list-style: none;
}

.copy ul li a {
    color: #949494;
    text-decoration: none;
    outline: none;
    padding: 5px;
}

.copy ul li a:hover {
    color: #d36229;
}

@media (max-width: 769px) {
    .copy span {
        width: 100%;
        text-align: center;
        margin: 10px 0 0;
    }
}


/*  */

.fix {
    position: fixed;
    right: 5px;
    bottom: 10px;
    z-index: 99;
}

.fix a {
    border: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
    width: 100px;
    padding: 10px 0;
}

.fix a.tel i {
    background-image: url("img/tel.gif");
    background-size: 69%;
    background-position: center 7px;
}

.fix a i {
    width: 50px;
    height: 50px;
    border: 2px solid #ec7124;
    margin: 0 auto 5px;
    position: relative;
    right: auto;
    top: auto;
    left: auto;
}

.fix a p {
    margin: 0;
    font-family: sky bd;
    color: #666;
}

@media (max-width: 769px) {
    .fix a p {
        display: none;
    }
}


/*  */

.head-page {
    background-color: #232323;
    color: #fff;
    background-image: url("img/head.png");
}

.head-page .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 760px !important;
    padding: 0 10px;
}

.head-page .container h2.tit {
    color: #EC7124;
    font-size: 36px;
    margin: 0 0 15px;
    text-align: center;
}

.head-page .container p {
    color: #949494;
}

.head-page .container strong {
    color: #fff;
    font-weight: normal;
}

.coll-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.coll-box a {
    margin: 5px;
    min-width: 177px;
}

.coll-box p {
    margin: 0;
    direction: ltr;
    color: #fff !important;
    font-size: 14px;
}


/*  */

.container-head {
    max-width: 1200px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #636363;
}

.container-head .block {
    padding: 15px;
}

.container-head h2 {
    color: #232323;
}

.img-head {
    width: 100%;
    height: auto;
    max-height: 520px;
    border-radius: 0 0 30px 30px;
    margin: 0 0 25px;
    object-fit: cover;
}


/*  */

.head-page .container .block {
    position: relative;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    max-width: 680px;
    justify-content: center;
}

.head-page .container .block .icon-box {
    padding: 15px;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.head-page .container .block .icon-box span {
    width: 60px;
    height: 60px;
    display: block;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head-page .container .block .icon-box span img {
    max-width: 60%;
    height: auto;
}

.head-page .container .block .icon-box h3 {
    color: #EC7124;
    font-size: 16px;
}


/*  */

.contacts-page {}

.contacts-page .container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    max-width: 1200px !important;
}

.contacts-page .container .block {
    padding: 20px 50px;
}

@media (max-width: 769px) {
    .contacts-page .container .block {
        padding: 20px 15px;
    }
}

.contacts-page .container .block form {
    padding: 0;
}

.contacts-page .container .block iframe {
    width: 100%;
    height: 420px;
    border-radius: 10px;
}

.contacts-page .container .block .maps {
    margin: 0;
    border: 1px solid #ECECEC;
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    color: #232323;
    font-family: sky bd;
    align-items: center;
}

@media (max-width: 769px) {
    .contacts-page .container .block iframe {
        margin: 25px 0 0;
    }
    .contacts-page .container .block .maps {
        margin: 0;
        border: 1px solid #ECECEC;
        padding: 8px;
        border-radius: 50px;
        display: inline-flex;
        color: #232323;
        font-family: sky bd;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        width: 100%;
    }
}

.contacts-page .container .block .maps span {
    background-color: #F4F4F4;
    display: flex;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    margin: 0 15px 0 0;
    background-image: url("img/maps.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 60%;
}

.contacts-page .container .block .maps a {
    background: linear-gradient(90deg, #F69453 100%, #F37521 50.01%, #D4622A 100.02%);
    height: 40px;
    border-radius: 50px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0 0 0 20px;
    font-family: 'sky';
}

.contacts-page .container .block .maps a i {
    background-image: url("img/a.png");
    background-size: 100% 100%;
    width: 14px;
    height: 15px;
    margin: 0 0 0 8px;
    display: inline-block;
}

.wpcf7-form-control {
    padding: 25px 20px 5px;
    margin: -20px 0 0;
    border: 1px solid #E2E2E2;
    outline: none;
    border-radius: 10px;
    clear: both;
    width: 100%;
    text-align: left;
    min-height: 50px;
    max-height: 120px;
}

label i {
    font-style: inherit;
    position: relative;
    z-index: 9;
    font-size: 15px;
    padding: 16px 20px 0;
    display: inline-block;
    margin: 0px 0 -4px;
    float: left;
}

.send {
    width: 120px;
    display: block;
    margin: 0 auto;
    height: 40px;
}

.send i {
    background-image: url(img/a.png);
    background-size: 100% 100%;
    width: 14px;
    height: 15px;
    margin: 0 0 0 8px;
    display: inline-block;
}

.send .wpcf7-form-control {
    width: 120px;
    display: block;
    margin: 0 auto;
    background: linear-gradient(90deg, #F69453 100%, #F37521 50.01%, #D4622A 100.02%);
    height: 40px;
    border-radius: 15px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin: 0;
    font-family: 'sky';
    border: none;
    text-align: center;
}

.aligncenter {
    clear: both;
    margin: 0 auto;
    display: block;
}
.alignleft{
	float: left;
	margin: 10px;
}
.alignright{
	float: right;
	margin: 10px;
}
/***
*******************************************************/

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