@import url(../css/all.min.css);
@import url(../css/bootstrap.css);
@import url(../css/owl.carousel.min.css);
@import url(../css/owl.theme.default.min.css);
@import url(../css/animate.css);
@import url(https://db.onlinewebfonts.com/c/dee436f274c410c23fc3de43367ef1ae?family=Janna+LT);


*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

:root {
    --main-color: #2A324A;
    --sub-color: #AD7909;
    --ph-color: #BFBFBF;
    --sec-padding: 80px 0;
}

body {
    font-family: 'Janna LT', sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Janna LT', sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}

p {
    margin: 0;
}

html,
button,
input,
select,
textarea {
    color: #222;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

img {
    vertical-align: middle;

}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


a,
button {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

p {
    margin: 0;
}

a {
    cursor: pointer !important;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus,
a:visited {
    text-decoration: none !important;
}

input,
textarea,
a,
button {
    outline: none !important;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.main-wrapper {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding-top: 105px;
}

.menu-toggle .main-wrapper {
    -webkit-transition: -webkit-transform .0s ease;
    transition: -webkit-transform .0s ease;
    transition: transform .0s ease;
    transition: transform .0s ease,
        -webkit-transform .0s ease;
}

.hamburger,
.is-closed {
    background: transparent;
    flex-direction: column;
    justify-content: center;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    transition: background-color .2s linear;
    margin-right: 0px;
}

.is-closed:before {
    content: "";
    background: #fff;
    width: 35px;
    height: 35px;
    position: absolute;
    top: 13px;
    right: 3px;
    border-radius: 50%;
}

.hamburger span,
.is-closed span {
    width: 25px;
    height: 3px;
    border-radius: 20px;
    background-color: #fff;
    display: block;
    margin-bottom: 4px;
    -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger span:nth-child(1) {
    width: 25px
}

.hamburger span:nth-child(2) {
    width: 21px
}

.hamburger span:nth-child(3) {
    width: 17px
}

.is-closed span:nth-child(1) {
    transform: rotate(45deg);
    width: 17px;
    background: var(--main-color);
}

.is-closed span:nth-child(2) {
    display: none;
}

.is-closed span:nth-child(3) {
    background: var(--main-color);
    ;
    transform: rotate(135deg);
    margin-top: -6px;
    width: 17px
}

.hamburger {
    display: none;
}

/* Style Header */

#header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
}

#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.top-header ul {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.rtl .top-header ul {
    margin-right: auto;
    margin-left: unset;
}

.top-header li {
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--main-color);
}

.rtl .top-header li {
    margin-right: 15px;
    margin-left: unset;
    padding-right: 15px;
    padding-left: unset;
    border-right: 1px solid var(--main-color);
    border-left: 0;
}

.top-header li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.rtl .top-header li:first-child {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
}

.top-header li a {
    display: flex;
    align-items: center;
    color: var(--main-color);
    padding: 5px;
    font-size: 14px;
}

.top-header li a .icon {
    width: 15px;
    height: 15px;
}

.bottom-header {
    background: var(--main-color);
    padding: 5px 0;
}

.logo-site a {
    display: inline-block;
}

.logo-site img {
    max-width: 160px;
}

.main_menu {
    display: flex;
}

.main_menu > li {
    margin-right: 45px;
}

.rtl .main_menu > li {
    margin-left: 45px;
    margin-right: unset;
}

.main_menu > li:last-child {
    margin-right: 0;
}


.rtl .main_menu > li:last-child {
    margin-left: 0;
}

.main_menu > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 400;
    position: relative;
    padding: 10px 0;
}

.main_menu > li.active a {
    color: var(--sub-color);
    font-weight: 700;
}

.main_menu > li.lst-lang {
    display: none;
}

.main_menu > li.lst-lang a {
    display: flex;
    align-items: center;
}

.main_menu > li.btn-call {
    margin-right: 0;
}

.rtl .main_menu > li.btn-call {
    margin-left: 0;
}

.main_menu > li.lst-lang .icon-lang {
    background: url(../images/lang-white.svg);
}

.main_menu > li > a.btn-site {
    padding: 10px 15px;
    border-radius: 5px;
}

#header.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 1px 7px rgb(0 0 0 / 16%);
    z-index: 33;
}

.contact-whats {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1;
}

.rtl .contact-whats {
    left: 30px;
    right: auto;
}

.contact-whats a {
    background: var(--main-color);
    border: 2px solid var(--sub-color);
    color: var(--sub-color);
    font-size: 23px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-whats a:hover {
    transform: scale(1.1);
}


/* Style Home Slide */

.section_home {
    position: relative;
    z-index: 1;
}

.section_home .item:before {
    content: "";
    background: rgb(0 0 0 / 32%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.section_home .item {
    position: relative;
    display: flex;
    align-items: end;
    min-height: calc(100vh - 105px);
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    padding-bottom: 80px;
}

.section_home .item:before {
    content: "";
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(42, 50, 74, 1) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

#slide-home .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
}

#slide-home .owl-dot {
    background: #BFBFBF;
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%
}

#slide-home .owl-dot.active {
    background: var(--sub-color);
}


/* Style Stac Site */

.sec_head {
    position: relative;
    width: 70%;
    margin: 0 auto 40px;
    text-align: center;
}

.sec_head h2 {
    color: var(--main-color);
    font-size: 24px;
    position: relative;
    text-transform: capitalize;
    line-height: 1.5;
}

.sec_head span {
    font-size: 14px;
    color: var(--sub-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.btn-site {
    height: 40px;
    font-size: 15px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    border-radius: 5px;
    justify-content: center;
    background: var(--sub-color);
    width: max-content;
    position: relative;
    overflow: hidden;
}

.btn-site:before {
    background: var(--ph-color);
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: -10px;
    width: 0%;
    transform: skew(-10deg);
    transition-duration: .6s;
    z-index: 0;
}

.btn-site:hover:before {
    position: absolute;
    content: "";
    top: 0;
    left: -10px;
    width: 120%;
    z-index: 0
}

.btn-site span {
    color: #fff;
    position: relative;
    font-weight: 700;
    text-transform: capitalize;
}

.btn-site:hover span {
    color: var(--main-color);
}

.icon {
    background-size: 100% 100% !important;
    display: block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.rtl .icon {
    margin-right: unset;
    margin-left: 8px;
}

.icon-email {
    background: url(../images/email.svg);
}

.icon-lang {
    background: url(../images/lang.svg);
}

/* Style About */

.d-about {
    flex-wrap: wrap;
}

.d-about > div {
    padding: 40px 80px;
    position: relative;
    display: flex;
    flex: 0 50%;
}

.cont-about {
    background: var(--sub-color);
}

.cont-why {
    background: var(--main-color);
}

.d-about > div figure {
    width: 120px;
    margin-bottom: 0;
}

.txt-about {
    width: calc(100% - 120px);
    padding-left: 30px;
}

.txt-about {
    padding-left: unset;
    padding-right: 30px;
}

.txt-about strong {
    color: #fff;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.txt-about h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 26px;
}

.cont-why .txt-about h3 {
    color: var(--sub-color);
}

.txt-about p {
    color: #fff;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.txt-about .btn-site {
    margin: 0;
    padding: 10px 15px;
}

.txt-about .btn-site span {
    font-size: 14px;
}

.cont-about .txt-about .btn-site {
    background: var(--main-color)
}



/* Style Products */

.section_products {
    position: relative;
    padding: 60px 0;
}

.item-products {
    position: relative;
    margin-bottom: 24px;
}

.txt-products h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--main-color);
}

.txt-products p {
    font-size: 15px;
    color: #676767;
    line-height: 1.7;
}

/* Style Products */

.section_projects {
    position: relative;
    padding: 30px 0;
}

.section_projects .sec_head {
    position: relative;
    z-index: 3
}

.section_projects .sec_head span {
    color: #fff;
}

.section_projects .sec_head h2 {
    color: var(--sub-color);
}

.section_projects:after {
    content: "";
    background: url(../images/bg-project.png);
    background-size: 100% 100%;
    width: 100%;
    height: 50%;
    opacity: 7%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2
}

.section_projects:before {
    content: "";
    background: var(--main-color);
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.item-projects {
    position: relative;
    display: block;
}

.projects_page .item-projects {
    margin-bottom: 40px
}

.item-projects:before {
    content: "";
    background: rgb(42 50 74 / 22%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.item-projects figure {
    margin-bottom: 0;
}

.txt-proj {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2
}

.rtl .txt-proj {
    left: auto;
    right: 0;
}

.number-project {
    background: rgb(0 0 0 / 23%);
    border-left: 8px solid var(--sub-color);
    width: 50px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
}

.rtl .number-project {
    margin-right: unset;
    margin-left: 10px;
}

.number-project strong {
    display: block;
    color: #fff;
    font-size: 22px;
}

.txt-proj h6 {
    color: #fff;
    font-size: 18px;
}

#project-slider .owl-dots {
    padding-top: 25px;
    text-align: center;
    display: block !important;
}

#project-slider .owl-dots .owl-dot {
    margin: 0 5px;
}

#project-slider .owl-dots .owl-dot span {
    width: 25px;
    height: 10px;
    background: #BFBFBF;
    display: block;
}

#project-slider .owl-dots .owl-dot.active span {
    background: var(--sub-color);
}

/* Style Clients */

.section_clients {
    background: #F4F4F6;
    padding: 20px 0;
    position: relative;
}

#clients-slider {
    width: 130%;
}

.item-clients {
    margin-bottom: 0;
    height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style Fotter */

footer {
    position: relative;
}

.top-footer {
    background: var(--main-color);
    border-bottom: 1px solid #1E2740;
}

.top-footer .row {
    align-items: center;
}

.cont-fotter {
    display: flex;
    padding: 30px 20px;
    position: relative;
}

.cont-fotter:before {
    content: "";
    background: #1E2740;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.rtl .cont-fotter:before {
    left: auto;
    right: 0;
}

.cont-fotter figure {
    width: 40px;
    margin-bottom: 0;
}

.cont-fotter figure svg {
    width: 30px;
    height: 30px;
}

.txt-cont-ft {
    width: calc(100% - 40px);
    padding-left: 15px;
}

.rtl .txt-cont-ft {
    padding-left: unset;
    padding-right: 15px;
}

.txt-cont-ft p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 5px;
}

.txt-cont-ft span {
    color: #fff;
    font-size: 16px;
}

.logo-ft {
    display: block;
}

.logo-ft img {
    width: 180px;
    max-width: 100%;
}


.middle-footer {
    padding: 30px 0;
    background: var(--main-color);
}

.menu-ft h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
}

.menu-ft ul li {
    margin-bottom: 15px;
}

.menu-ft ul li a {
    color: #CCCCCC;
    font-size: 14px;
}

.li-ft li a:hover {
    color: var(--sub-color);
}

.list-contact li {
    display: block;
    margin-bottom: 10px;
    color: #fff
}

.list-contact li a {
    color: #fff;
    display: flex;
    align-items: center;
}

.list-contact li a:hover {
    opacity: .5
}

.list-contact li a svg {
    margin-right: 10px;
    background: #535B63;
    width: 23px;
    height: 23px;
    margin-right: 10px;
    padding: 10px;
}

.list-contact li a svg {
    margin-right: unset;
    margin-left: 10px;
}

.bottom-ft {
    padding: 15px 0 10px;
    background: #10172E;
}

.cont-bt {
    text-align: center;
}

.cont-bt p {
    color: var(--sub-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.cont-bt p a {
    color: var(--sub-color);
}

/* Style breadcrumb */

.stage-padding {
    padding: 40px 0;
    position: relative;
}

.breadcrumb {
    position: relative;
    padding: 30px 0;
    background: url(../images/breadcrumb.png);
    background-size: 100% 100%;
}

.breadcrumb:before {
    content: "";
    background: rgb(173 121 9 / .54);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.breadcrumb-bar {
    position: relative;
    text-align: center;
}

.breadcrumb-bar h6 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--main-color);
}

.breadcrumb-bar ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-bar li {
    padding-right: 10px;
    margin-right: 10px;
    color: #fff;
    position: relative;
}

.breadcrumb-bar li:before {
    content: "";
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    right: -2.5px;
    bottom: 7px;
}

.rtl .breadcrumb-bar li:before {
    right: auto;
    left: -2.5px;
}

.breadcrumb-bar li:last-child:before {
    display: none;
}

.breadcrumb-bar li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.rtl .breadcrumb-bar li {
    padding-left: 10px;
    margin-left: 10px;
    padding-right: unset;
    margin-right: unset;
}

rtl .breadcrumb-bar li:last-child {
    margin-left: 0;
    padding-left: 0;
}

/* Style About Page */

.cont--about {
    position: relative;
}

.cont--about strong {
    /*color: var(--sub-color);*/
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.cont--about h3 {
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.cont--about p {
    color: #676767;
    font-size: 15px;
    line-height: 2;
}

/* Style Services Page */

.head-page {
    margin-bottom: 20px;
}

.head-page h4 {
    color: var(--main-color);
    font-size: 23px;
}

.item-service {
    position: relative;
    margin-bottom: 24px;
}

.txt-serv h5 {
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--sub-color);
}

.txt-serv h5 a {
    color: var(--sub-color);
}

.txt-serv p {
    font-size: 15px;
    color: #676767;
    line-height: 1.7;
}

/* Style Request Quotation */

.section_request_quotation {
    background: #F4F4F6;
    position: relative;
    padding: 50px 0;
}

.cont-quotation h5 {
    color: var(--main-color);
    margin-bottom: 30px;
    font-size: 22px;
}

.form-quotation .form-group {
    position: relative;
    margin-bottom: 20px;
    padding-right: 15px;
}

.rtl .form-quotation .form-group {
    padding-right: unset;
    padding-left: 15px;
}

.form-quotation .form-group label {
    color: var(--main-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
}

.form-quotation .form-group .form-control {
    background-color: #fff;
    border-radius: 5px;
    height: 45px;
    border: 0;
    padding-left: 25px;
}

.rtl .form-quotation .form-group .form-control {
    padding-left: unset;
    padding-right: 25px;
}

.form-quotation .form-group textarea.form-control {
    height: 100px
}

.form-quotation .form-group .form-control::placeholder {
    color: #575757;
    font-size: 14px;
}

.form-quotation .d-flex .form-group {
    flex: 0 25%;
}

.form-quotation .form-group {
    width: 50%
}

.form-quotation .btn-site {
    margin: 0;
}

/* Style Service Details */

.btn--back {
    font-weight: 700;
    color: var(--main-color);
    cursor: pointer
}

.btn--back svg {
    margin-right: 8px;
}

.rtl .btn--back svg {
    margin-left: 8px;
    margin-right: unset;
}

.thumb-service img {
    width: 100%;
}

.txt-serv-dtl strong {
    color: var(--sub-color);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.txt-serv-dtl h5 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.5;
}

.txt-serv-dtl p {
    color: #676767;
    font-size: 15px;
    line-height: 2;
}

.modalSuc {
    max-width: 380px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cont-succ {
    padding: 20px 10px;
    text-align: center;
}

.cont-succ h5 {
    margin-bottom: 15px;
    color: var(--main-color);
    font-size: 17px;
}

.cont-succ p {
    margin-bottom: 20px;
    color: var(--main-color);
    font-size: 15px;
}

.cont-succ ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style Project Details */

.cont-proj-dtl .thumb-proj {
    float: left;
    width: 50%;
    margin: 0 35px 30px 0;
}

.rtl .cont-proj-dtl .thumb-proj {
    float: left;
    width: 50%;
    margin: 0 0 30px 35px;
}

.cont-proj-dtl .thumb-proj figure {
    margin-bottom: 0
}

.cont-proj-dtl .thumb-proj img {
    width: 100%;
}

.txt-proj-dtl strong {
    color: var(--sub-color);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.txt-proj-dtl h5 {
    color: var(--main-color);
    margin-bottom: 20px;
    font-size: 25px;
    line-height: 1.5;
}

.txt-proj-dtl p {
    color: #676767;
    font-size: 15px;
    line-height: 2;
}

/* Style MDI Page */

.cont--mdi {
    position: relative;
}

.cont--mdi strong {
    color: var(--sub-color);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.cont--mdi h3 {
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.cont--mdi p {
    color: #676767;
    font-size: 15px;
    line-height: 2;
}

/* Style Contact Page */

.contact-ifo {
    background: var(--main-color);
    padding: 50px 80px;
    position: relative;
}

.contact-ifo h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
}

#googleMap2 {
    height: 552px;
}

.lst-contact {
    display: flex;
    flex-wrap: wrap;
}

.item-contact {
    display: flex;
    flex: 0 50%;
    margin-bottom: 40px;
}

.item-contact figure {
    width: 25px;
    font-size: 24px;
    color: var(--sub-color);
}

.item-contact figure svg {
    max-width: 25px;
    max-height: 25px;
}

.item-contact.w100 {
    flex: 0 100%;
}

.txt-contact {
    width: calc(100% - 40px);
    padding-left: 20px;
}

.rtl .txt-contact {
    padding-left: unset;
    padding-right: 20px;
}

.txt-contact h6 {
    color: var(--sub-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.txt-contact p {
    color: #fff;
    font-size: 16px;
}


/* Style 404 Page */

.cont-not-found {
    text-align: center;
}

.thumb-not-found {
    margin-bottom: 50px;
}

.thumb-not-found img {
    max-width: 380px;
}

.txt-not-found h5 {
    color: var(--main-color);
    margin-bottom: 15px;
}

.txt-not-found p {
    line-height: 1.7;
    color: #676767;
    font-size: 13px;
    margin-bottom: 40px;
}