@font-face {
    font-family: 'RB-Bold';
    src: url('../fonts/RB/RB-Bold/RB-Bold.eot');
    src: url('../fonts/RB/RB-Bold/RB-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RB/RB-Bold/RB-Bold.woff2') format('woff2'),
    url('../fonts/RB/RB-Bold/RB-Bold.woff') format('woff'),
    url('../fonts/RB/RB-Bold/RB-Bold.ttf') format('truetype'),
    url('../fonts/RB/RB-Bold/RB-Bold.svg#RB-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'RB-Regular';
    src: url('../fonts/RB/RB-Regular/RB-Regular.eot');
    src: url('../fonts/RB/RB-Regular/RB-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/RB/RB-Regular/RB-Regular.woff2') format('woff2'),
    url('../fonts/RB/RB-Regular/RB-Regular.woff') format('woff'),
    url('../fonts/RB/RB-Regular/RB-Regular.ttf') format('truetype'),
    url('../fonts/RB/RB-Regular/RB-Regular.svg#RB-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    /*overflow: hidden;*/
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'RB-Regular';
    color: #000;
    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;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
}

.form-control {
    border-radius: 0;
}

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

.form-control:focus {
    border-color: #e40b18;
    box-shadow: 0 0 0 0.2rem rgba(228, 11, 24, .25);
}

.sec-tit {
    color: #e40b18;
    margin-bottom: 55px;
}

.sec-tit span {
    color: #000;
}

.main-btn {
    color: #fff;
    background-color: #515050;
    padding: 10px 45px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    transition: all .3s ease-in-out;
}

.main-btn:hover {
    color: #fff;
    background-color: #e40b18;
}

.circle-link a,
.circle-link span{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    transition: all .5s ease-in-out;
}

/******************************/
header {
    padding: 20px 0;
    background-image:url(../images/bg-smoky.jpg);
    font-weight: 500;
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    background-position: center;
    /* background-attachment: fixed; */
    background-size: cover;
    background-repeat: no-repeat;
}

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

}

.fly-icons {
    position: fixed;
    z-index: 4;
    top: 100px;
    right: 40px;
}

.fly-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #515050;
    border-radius: 100%;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, .3));
    transition: all .5s ease-in-out;
}

.fly-icons a:hover {
    color: #fff;
    background-color: #e40b18;
}

@media (min-width: 992px) {
}

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

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

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

.lang {
    color: #fff;
    background-color: transparent;
    font-weight: bold;
    padding: 5px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    transition: all .5s ease-in-out;
}

.lang:hover {
    color: #fff;
    background-color: #e40b18;
    border-color: #df3e3e;
}

@media (min-width: 992px) {
    .menu-logo img {
        max-height: 85px;
    }

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

    .nav-list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    .nav-list > .menu-item > a {
        display: flex;
        color: #fff;
        padding: 20px 15px;
        position: relative;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item > a:before {
        content: '';
        width: 100%;
        height: 3px;
        background-color: #e40b18;
        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-has-children > a:after {
        display: inline-block;
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 5px;
        color: #515050;
        transition: all .5s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: #fff;
    }

    .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: #e40b18;
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: #515050;
        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.6s ease;
    }

    .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: #fff;
        padding-bottom: 10px;
        border-bottom: 1px solid #f1f1f1;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f30a";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f30b";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: #393839;
        border-bottom: 1px solid #393839;
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: #393839;
    }

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

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

@media (max-width: 992px) {
    .menu-logo img {
        max-height: 65px;
    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: inline-block;
    }

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

    .menu-icons {
        display: flex;
        align-items: center;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 100%;
        color: #fff;
        background-color: #e40b18;
        margin-inline-start: 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: #393839;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 6;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid #e40b18;
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: #fff;
        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: #e40b18;
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid #fff;
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid #fff;
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: #fff;
        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: #e40b18;
    }

    .sub-menu {
        list-style: none;
        background-color: #515050;
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 15px 25px;
        color: #fff;

        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 .5s ease-in-out;
    }
}

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

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

.mainItem img.slid-thumb {
    width: 100%;
    position: relative;
    transition: all 25s ease;
    transform-style: preserve-3d;
}

.main-slider .active img {
    transform: scale(1.3);
}

.mainItem-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    background-color: rgba(255, 255, 255, .2);
}

.slid-body {
}

.slid-tit {
    margin-bottom: 30px;
}

.slid-des {
}

.main-slider .owl-dots {
    position: absolute;
    display: flex;
    align-items: center;
}

.main-slider .owl-dots .owl-dot {
    width: 40px;
    height: 5px;
    background-color: #fff;
    border-radius: 15px;
    transition: all .5s ease-in-out;
}

.main-slider .owl-dots .owl-dot.active {
    width: 60px;
    background-color: #e40b18;
}

@media (min-width: 992px) {
    .mainItem img.slid-thumb {
        height: 100vh;
    }

    .slid-tit,
    .slid-des {
        font-size: 45px;
    }

    .main-slider .owl-dots {
        top: 50%;
        transform: translateY(-50%);
        right: 30px;
        flex-direction: column;
    }

    .main-slider .owl-dots .owl-dot {
        margin: auto;
    }

    .main-slider .owl-dots .owl-dot:not(:last-of-type) {
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .mainItem img.slid-thumb {
        height: 500px;
    }

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

    .slid-tit,
    .slid-des {
        font-size: 22px;
    }

    .main-slider .owl-dots {
        bottom: 30px;
        width: 100%;
        justify-content: center;
    }

    .main-slider .owl-dots .owl-dot {
        margin: 0 5px;
    }
}

/******************************/
.about-head{
    color: #fff;
    background-color: #e40b18;
    display: flex;
    justify-content: center;
    /*height: 100%;*/
    position: sticky;
    top: 0;
    align-items: center;
    padding: 60px;
    font-size: 50px;
    border-radius: 50px;
}

.about-exp {
    margin-bottom: 30px;
}


@media (min-width: 768px) {
    .about {
        padding: 55px 0;
        background: linear-gradient(#fff 55%, #f1f1f1 45%);
    }

    .about-content {
        margin-bottom: 55px;
    }

    .about-items {
        padding: 55px 0;
    }
}

@media (max-width: 768px) {

    .about {
        padding: 55px 0 25px 0;
    }

    .about-img {
        margin-bottom: 30px;
    }

    .about-content {
        margin-bottom: 25px;
    }

    .about-items {
        padding: 25px;
        background-color: #f1f1f1;
    }

    .about-items [class*='col-']:not(:last-of-type) .about-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #515050;
    }
}

/******************************/
html[dir="ltr"] .serv-head {
    flex-direction: column;
}
html[dir="rtl"] .serv-head {
    /*align-items: center;*/
}
.serv-head {
    color: #fff;
    background-color: #e40b18;
    display: flex;
    justify-content: center;

}

.serv-head span {
    /*color: #e40b18;*/
}

.serv-item {
    position: relative;
    color: #000;
    margin-bottom: 30px;
    transition: all .5s ease-in-out;
}

.serv-item-thumb {
    height: 215px;
    /*opacity: 0;*/
    /*visibility: hidden;*/
    transition: all .5s ease-in-out;
}

.serv-item-thumb img {
    height: 100%;
    max-height: 100%;
    width: 100%;
}

.serv-item-body {
    /*position: absolute;*/
    /*inset: 0;*/
    background-color: #f1f1f1;
    padding: 30px;
    transition: all .5s ease-in-out;

}

.serv-item-tit {
    margin-bottom: 20px;
    transition: all .5s ease-in-out;
}

.serv-item-exp {
    margin-bottom: 15px;
    font-size: 14px;
    /*overflow-y: auto;*/
    transition: all .5s ease-in-out;
}
.serv-item-url{
     color: #000;
}
.serv-item-url span {
    display: block;
    color: #fff;
     background-color: #000;
}

.serv-item:hover .serv-item-thumb {
    opacity: 1;
    visibility: visible;
}

.serv-item:hover .serv-item-body {
    background-color: rgba(228, 11, 24, .4);
}

.serv-item:hover .serv-item-tit,
.serv-item:hover .serv-item-exp {
    color: #fff;
}

.serv-item:hover .serv-item-url span {
    background-color: #e40b18;
}

.serv-item-exp::-webkit-scrollbar {
    width: 3px;
}

.serv-item-exp::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.serv-item-exp::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .services {
        padding: 100px 0 40px 0;
    }

    .serv-head {
        /*height: calc(100% - 30px);*/
        padding: 60px;
        font-size: 50px;
        border-radius: 50px;
        position: sticky;
        top: 0;
    }

}

@media (max-width: 992px) {
    .services {
        padding: 55px 0 25px 0;
    }

    .serv-head {
        margin-bottom: 30px;
        text-align: center;
        padding: 30px;
        font-size: 25px;
    }
}

@media (min-width: 768px) {
    .services-items .serv-item {
        overflow: hidden;
    }

    html[dir="ltr"] .services-items [class*='col-']:first-of-type .serv-item {
        border-radius: 30px 0 0 0;
    }

    html[dir="ltr"] .services-items [class*='col-']:nth-of-type(2) .serv-item {
        border-radius: 0 30px 0 0;
    }

    html[dir="ltr"] .services-items [class*='col-']:nth-of-type(3) .serv-item {
        border-radius: 0 0 0 30px;
    }

    html[dir="ltr"] .services-items [class*='col-']:last-of-type .serv-item {
        border-radius: 0 0 30px 0;
    }


    html[dir="rtl"] .services-items [class*='col-']:first-of-type .serv-item {
        border-radius: 0 30px 0 0;
    }

    html[dir="rtl"] .services-items [class*='col-']:nth-of-type(2) .serv-item {
        border-radius: 30px 0 0 0;
    }

    html[dir="rtl"] .services-items [class*='col-']:nth-of-type(3) .serv-item {
        border-radius: 0 0 30px 0;
    }

    html[dir="rtl"] .services-items [class*='col-']:last-of-type .serv-item {
        border-radius: 0 0 0 30px;
    }

}

@media (max-width: 768px) {

}

/******************************/
.projects {
    padding: 75px 0 50px 0;
    background: linear-gradient(to bottom, #000 50%, #fff 50%);
}

.pro-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.pro-item-thumb img {
    height: 400px;
    width: 100%;
}

.pro-item-body {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    padding: 30px;
    background-color: rgba(0, 0, 0, .85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all .5s ease-in-out;
}

.pro-item-tit {
    color: #fff;
    margin-bottom: 20px;
}

.pro-item-url span {
    display: block;
    color: #fff;
    background-color: #e40b18;
}

.prosCarousel .owl-dots {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.prosCarousel .owl-dots .owl-dot {
    width: 75px;
    height: 5px;
    background-color: #d3d3d3;
    transition: all .5s ease-in-out;
}

.prosCarousel .owl-dots .owl-dot.active {
    background-color: #e40b18;
}

@media (min-width: 768px) {
    .pro-item-body {
        opacity: 0;
        visibility: hidden;
    }

    .pro-item:hover {
        box-shadow: 0 0 24px rgba(18, 16, 11, 43);
    }

    .pro-item:hover .pro-item-body {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    html[dir="rtl"] .prosCarousel .owl-nav {
        flex-direction: row-reverse;
    }

    .prosCarousel .owl-nav {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .prosCarousel .owl-nav div {
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 100%;
        color: #fff;
        background-color: #e40b18;
        margin: 0 5px;
        transition: all .5s ease-in-out;
    }

}

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

.client-item {
    height: 185px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all .5s ease-in-out;
}

.client-item img {
    max-height: 100%;
    object-fit: contain;
}

.client-item:hover {
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    transform: translateY(-5px);
}

/******************************/
.statistics{
    background-image: url("../images/bg-why.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.stat-head {
    color: #fff;
    background-color: #e40b18;

}

.stat-items {
    padding: 50px 0 20px 0;
}

.stat-item {
    padding: 30px;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.stat-item:after {
    content: '';
    background-image: url("../images/why-item-shape.png");
    width: 66px;
    height: 31px;
    position: absolute;
    top: -10px;
    right: -9px;
}

.stat-item-num {
    padding: 10px;
    margin-inline-end: 15px;
    background-color:#e40b18;
    color: #fff;
    border-radius: 5px;
}

.stat-item-tit{
    margin-bottom:0;
}
@media (min-width: 992px) {
    .stat-head {
    font-size: 60px;
    padding: 100px 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    margin: -50px 0;
    }
}

@media (max-width: 992px) {
    .statistics {
       padding: 0 50px 0;
    }

    .stat-head {
        font-size: 20px;
        padding: 30px;
        border-radius: 0 0 30px 30px;
        text-align: center;
    }
}

/******************************/
.home .contact {
    padding-top: 150px;
}

.contact-info {
    padding: 50px 35px 20px 35px;
    border-width: 20px 20px 0 20px;
    border-style: solid;
    border-color: #e40b18;
    border-radius: 30px 30px 0 0;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item-tit {
    color: #e40b18;
    margin-bottom: 20px;
}

.contact-info-item-data,
.contact-info-item-data a {
    color: #58595b;
    font-size: 14px;
}

.contact-info-item-data p {
    margin-bottom: 5px;
}

.contact-info-item-data a:not(:last-of-type) {
    margin-inline-end: 5px;
}

.contact-info-item-data a:not(:last-of-type):after {
    content: '-';
    margin-inline-start: 5px;
}

.map iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/******************************/
footer {
    color: #fff;
    padding: 30px 0 60px 0;
    background-image:url(../images/bg-smoky.jpg);
    font-weight: 500;
    /*background-position: center;*/
    /*background-attachment: fixed;*/
    
    background-position: center;
    /* background-attachment: fixed; */
    background-size: cover;
    background-repeat: no-repeat;
}
.foot-logo a{
    height:100px;
}
.foot-logo img{
    max-height:100%;
}
.foot-logo,
.foot-menu {
    margin-bottom: 30px;
}

.foot-menu ul {
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
}

.foot-menu li {
    display: inline-block;
    margin-inline-end: 45px;
}

.foot-menu li a {
    color: #fff;
    transition: all .5s ease-in-out;
}

.foot-menu li a:hover,
.foot-menu li.active a,
.foot-copyright a {
    color: #fff;
}

/******************************/
.breadcrumb-area {
    /*background-color: #e40b18;*/
    background-image:url(../images/bg-breadcrumb.jpg);
    padding: 30px 0;
    font-weight: 500;
    background-position: center;
    background-attachment: fixed;
}

.breadcrumb-area,
.breadcrumb-area a {
    color: #fff;
}

.sec-padding {
    padding: 70px 0;
}

.sec-bg:nth-child(odd) {
    background-color: #fff;
}

.sec-bg:nth-child(even) {
    color: #000;
    background-color: #f1f1f1;
}

.content-block-item {
    position: relative;
    z-index: 1;
    padding: 30px;
    background-color: #f1f1f1;
    border: 1px solid #e40b18;
    box-shadow: 0 0 12px rgba(241, 241, 241, .24);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .3s ease-in-out;
}

.content-block-item-icon {
    width: 50px;
    height: 50px;
    padding: 5px;
    margin: 0 auto 15px auto;
    border: 1px solid #e40b18;
    display: flex;
    align-content: center;
    align-items: center;
}

.content-block-item-icon img {
    max-height: 100%;
    margin: auto;
    transition: all .3s ease-in-out;
}

.content-block-item-tit {
    color: #000;
    transition: all .3s ease-in-out;
}

.content-block-item-exp {
    color: #ababab;
}

.timeline {
}

.timeline-item {
    position: relative;
}

.timeline-item:nth-of-type(even) .row {
    flex-direction: row-reverse;
}

.timeline-item:before {
    position: absolute;
    content: '';
    top: 5px;
    width: 15px;
    height: 15px;
    z-index: 2;
    background: #e40b18;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px #e40b18;
}

.timeline-item:after {
    position: absolute;
    content: '';
    top: 30px;
    width: 1px;
    height: calc(100% - 30px);
    background: #fff;
}

@media all and  (min-width: 991px) {

    .timeline-item:before,
    .timeline-item:after {
        left: 50%;
        transform: translateX(-50%);
    }

}

.gallery-item-image img {
    height: 150px;
    width: 300px;
}


@media all and  (min-width: 991px) {
    .timeline-item:nth-of-type(odd) .timeline-inner {
        padding-inline-end: 40px;
    }

    .timeline-item:nth-of-type(even) .timeline-inner {
        padding-inline-start: 40px;
    }
}

@media all and  (max-width: 991px) {
    .timeline-item .timeline-inner {
        padding-inline-start: 25px;
    }

    html[dir="ltr"] .timeline-item:before {
        left: -5px;
    }

    html[dir="rtl"] .timeline-item:before {
        right: -5px;
    }
}

html[dir="ltr"] .timeline-item:after {
    border-right: 1px dotted #e40b18;
}

html[dir="rtl"] .timeline-item:after {
    border-left: 1px dotted #e40b18;
}

html[dir="rtl"] .wpcf7,
html[dir="rtl"] .wpcf7 input[type="url"],
html[dir="rtl"] .wpcf7 input[type="email"],
html[dir="rtl"] .wpcf7 input[type="tel"] {
    direction: rtl;
}

html[dir="ltr"] .wpcf7,
html[dir="ltr"] .wpcf7 input[type="url"],
html[dir="ltr"] .wpcf7 input[type="email"],
html[dir="ltr"] .wpcf7 input[type="tel"] {
    direction: ltr;
}

/******************************/
.newsItem {
    box-shadow: 0 0 9px rgba(0, 0, 0, .24);
    transition: all 0.3s ease;
}

.news-item-thumb {
    overflow: hidden;
}

.news-item-thumb img {
    width: 100%;
    height: 200px;
    transform-style: preserve-3d;
    transition: all 2500ms ease-in-out;
}

.news-item-body {
    padding: 35px 45px;
    background-color: #f1f1f1;
    transition: all 0.3s ease;
}

.news-item-tit {
    margin-bottom: 20px;
}

.news-item-tit a {
    color: #214021;
    transition: all 0.3s ease;
}

.news-item-des {
    margin-bottom: 15px;
}


.newsItem:hover {
}

.newsItem:hover .news-item-tit a {
    color: #000;
}

.newsItem:hover .news-item-thumb img {
    transform: scale(1.3) rotate(-3deg);
}


/******************************/
/*WordPress Core Editor Style*/
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

@media only screen and (min-width: 768px) {
    .full-width .alignfull {
        width: 100%;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .full-width .alignfull img {
        -webkit-border-radius: 0 !important;
        -moz-border-radius: 0 !important;
        border-radius: 0 !important;
    }

    .full-width .alignwide:not(.wp-block-columns):not(.wp-block-gallery) {
        margin-left: calc(25% - 21vw);
        margin-right: calc(25% - 21vw);
        width: auto;
        max-width: 1000%;
    }

    .alignwide img,
    .alignfull img {
        display: block;
        margin: 0 auto;
    }

    .wp-block-image {
        max-width: none;
    }
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
    height: 100% !important;
}

img.alignright {
    float: right;
    margin: 0.5em 0 0.5em 1em;
}

img.alignnone {
    /*margin: 5px 20px 20px 0;*/
}

img.alignleft {
    float: left;
    margin: 0.5em 1em 0.5em 0;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}

.wp-caption {
    max-width: 100%;
    padding: 10px;
}

.wp-caption.alignright,
.story img.alignright {
    float: right;
    max-width: 320px;
    margin: -10px 0 10px 20px;
}

.wp-caption.alignleft {
    float: left;
    max-width: 320px;
    margin: 0 20px 10px 0;
}

.wp-caption p.wp-caption-text {
    padding: 10px 5px 5px;
    margin: 0;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/******************************/
html[dir="rtl"] .serviceCarousel .owl-nav,
html[dir="rtl"] .projectCarousel .owl-nav{
    flex-direction: row-reverse;
}
.service-slider,
.project-slider{
    margin-bottom:30px;
}
.serviceItem img,
.projectItem img{
    width:100%;
    height:625px;
    object-fit: contain;
}
.serviceCarousel .owl-nav,
.projectCarousel .owl-nav{
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.serviceCarousel .owl-nav div ,
.projectCarousel .owl-nav div{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    background-color: #515050;
    margin:  0 5px;
    transition: all 0.3s ease-in-out;
}
.serviceCarousel .owl-nav div:hover,
.projectCarousel .owl-nav div:hover{
    background-color: #e40b18;
}
/******************************/

