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

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

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


:root {
  --mein-color: #da4143;
  --sec-color: #fadbdb;
  --sec-color-2: #1b47a5;
}

ul {
  margin-bottom: 0;
  padding: 0;
	list-style: none
}
.container {
  position: relative;
  z-index: 5;
}
p {
  margin-bottom: 0;
}
a:hover {
  text-decoration: none !important;
}
img{
	width: 100%;
}
.above-all {
  overflow: hidden;
  position: relative;
	padding-inline-start: 60px
}
*,
*:hover,
*:active {
  outline: none !important;
}
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #e6e6e6;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--mein-color);
}

/*****/

/*****/

body {
    font-family: 'Kaff';
  font-weight: normal;
  text-align: right;
}
html[dir="ltr"] body {
  text-align: left;
}

.loading-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2c2c2c;
  z-index: 10000;
  transition: all 0.7;
}
.loading-section .inin {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  transition: all 0.7s;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
html[dir="ltr"] .loading-section .inin {
  right: auto;
  left: 10px;
}

.loading-section .inin.colored {
  transform: scale(300, 300);
  -webkit-transform: scale(300, 300);
  -moz-transform: scale(300, 300);
  -ms-transform: scale(300, 300);
  -o-transform: scale(300, 300);
}
.loading-section .logo-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.loading-section .logo-loading img {
  width: 200px;
  transition-property: all;
  transition-duration: 1.8s;
  /* transition-delay: .3s; */
  transition-timing-function: ease-in;
  filter: blur(100px);
  opacity: 0;
}
.loading-section .logo-loading img.colored {
  filter: blur(0);
  opacity: 1;
}

.open-side {
  width: 35px;
  height: 25px;
  display: none;
  position: relative;
  cursor: pointer;
}
.open-side .line {
  display: block;
  position: absolute;
  background-color: #8b8b8b;
  height: 4px;
  width: 100%;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.7s;
  box-shadow: 0 0 0px black;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}
.open-side .line:first-of-type {
  top: 0;
}
.open-side .line:nth-of-type(2) {
  top: calc(50% - 2px);
}
.open-side .line:nth-of-type(3) {
  bottom: 0;
}
.open-side.active .line:nth-of-type(2) {
  background-color: var(--mein-color);
  margin-inline-end: -15px;
}
.open-side.active .line:nth-of-type(3) {
  background-color: var(--sec-color-2);
}
.overly-mobal-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
  z-index: 2000;
  background-color: #fff;
  box-shadow: 0 0 100px var(--mein-color) inset;
  opacity: 0.5;
  transition: all 0.7s ease-in-out;
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
}
.overly-mobal-menu.active {
  height: 100%;
}
.slide-open-menu {
  position: fixed;
  z-index: 3000;
  width: 300px;
  height: 100%;
  background-color: #313131;
  box-shadow: 0 0 5px #313131;
  inset-inline-start: -300px;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  overflow: auto;
}
.slide-open-menu.active {
  inset-inline-start: 0;
}
.slide-open-menu .logo {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.slide-open-menu .logo i {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.7s;
  position: absolute;
  top: 10px;
  inset-inline-end: 10px;
  cursor: pointer;
}
.slide-open-menu .logo i:hover {
  color: var(--mein-color);
}
.slide-open-menu .logo img {
  filter: drop-shadow(0px 0px 3px var(--mein-color)) brightness(0) invert(1);
  width: 200px;
  -webkit-filter: drop-shadow(0px 0px 3px var(--mein-color)) brightness(0)
    invert(1);
}
.slide-open-menu .nav-listt {
  max-height: 100%;
  overflow-y: auto;
}
.slide-open-menu .nav-listt li a {
  display: block;
  color: #e6e6e6;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
}
.slide-open-menu .nav-listt li a:hover {
  background-color: var(--mein-color) !important;
  color: #fff !important;
}
.slide-open-menu .nav-listt .menu-item-has-children .arrow-down-in {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  width: 40px;
  height: 44px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  background-color: var(--mein-color);
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
}
.slide-open-menu .nav-listt .sub-menu {
  display: none;
  padding-inline-start: 15px;
}
.slide-open-menu .nav-listt .sub-menu a {
  font-size: 14px;
  color: #e6e6e6cf;
}
.wpml-ls-statics-footer {
  display: none !important;
}
img {
  width: 100%;
}
.lg-outer {
  direction: ltr;
}

input,
textarea {
  direction: rtl !important;
}
html[dir="ltr"] input,
html[dir="ltr"] textarea {
  direction: ltr !important;
}
.wpcf7-form-control-wrap {
  display: block;
}

/*custom*/

	/*all*/
.custom-padding-40{
	padding-top: 40px;
	padding-bottom: 40px
}
.custom-padding-30{
	padding-top: 30px;
	padding-bottom: 30px
}
.custom-padding-20{
	padding-top: 20px;
	padding-bottom: 20px
}
.custom-padding-10{
	padding-top: 10px;
	padding-bottom: 10px
}
.custom-img-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 1
}
.custom-img-contain{
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: relative;
	z-index: 1
}
.custom-full{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2
}

.custom-full-center{
		position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2
}
.custom-img-style-base{
	    border-radius: 2px;
    box-shadow: 0 2px 5px #0000006e;
}

[class^="custom-head"],
[class^="custom-btn"]{
	text-transform: capitalize
}
[class^="custom-head"],
[class^="custom-text"]{
    width: 100%;
}
[class^="custom-text"] p{
	margin-bottom: 10px
}

.links-media{
	    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    margin-top: 10px;
	row-gap: 5px
}
.links-media a{
	background-color: #372727;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
	transition: all .7s;
	box-shadow: 0 0 3px #16395f80;
	position: relative;
	top: 0
}
.links-media a:hover{
	color: #fff;
	background-color: var(--mein-color);
	box-shadow: 0 3px 3px var(--mein-color);
	top: -3px
}

.custom-overlay{
	    background-color: var(--mein-color);
    opacity: .8;
}

	/*head*/
.custom-head-1{
        color: #372727;
    font-weight: 500;
    font-size: 23px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.custom-head-2{
    color: #372727;
    font-weight: 500;
    font-size: 26px;
    text-shadow: 0 0 0.5px #372727;
    line-height: 1.4;
    margin-bottom: 10px;
}

.custom-head-3{    
	color: black;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 0 0px black;
}

.custom-head-4{
	    color: black;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
}

	/*text*/
.custom-text-1{
    color: #5d5d5d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-text-2{
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 0 0px #000;
    margin-bottom: 10px;
    font-weight: normal;
}

.custom-text-3,
.custom-text-3 .link-text{
	    margin-bottom: 5px;
    color: #262626;
    font-size: 15px;
    line-height: 1.6;
	transition: all .7s
}
.custom-text-3 .link-text{
	margin-bottom: 0px;
}
.custom-text-3 .link-text:hover{
	    color: var(--mein-color);
    text-shadow: 0 0 0.5px var(--mein-color);
}

.custom-text-4{
        color: #61676d;
    font-size: 18px;
    text-shadow: 0 0 0px #61676d;
    line-height: 1.6;
}

	/*btn*/
.custom-btn-1{
background-color: #372727;
    color: #fff;
    display: inline-flex;
    min-width: 200px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 10px;
    border: 2px solid #372727;
    transition: all .7s;
}
.custom-btn-1:hover{
	background-color: transparent;
	color: #372727;
	border-radius: 2px
}


/*custom*/
/*about-us2-section*/

.about-us2-section .container [class^="col-"]{
        display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.about-us2-section .container:nth-of-type(odd) [class^="col-"]:first-of-type{
    order: 2;
}
.about-us2-section .container:nth-of-type(odd) [class^="col-"]:last-of-type{
    order: 1;
}
.about-us2-section .custom-text-1{
    margin-bottom: 0;
}

.img-custom-1{
    padding-inline-start: 60px;
    position: relative;
    padding-top: 20px;
    padding-bottom: 35px;
    width: 90%;
    margin-inline-end: auto;
}
.img-custom-1 .img,
.img-custom-2 .img{
        width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 5px #0000005c;
    position: relative;
    z-index: 2;
}
.img-custom-1 span{
        position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: 95%;
    height: 100%;
    background-color: var(--mein-color);
    border-radius: 15px;
    box-shadow: 0 0 5px #da4143bd;
}

.img-custom-2{
        position: relative;
    padding-top: 30px;
    padding-inline-end: 30px;
        width: 90%;
    margin-inline-start: auto;
}
.img-custom-2 span{
    border-radius: 15px;
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    width: 150px;
    height: 150px;
    background-color: var(--sec-color);
    box-shadow: 0 0 5px var(--sec-color);
}

/*about-us2-section*/
/*customer-opinions-section*/

.customer-opinions-section .position-relative{
	    margin-bottom: 20px;
}
.customer-opinions-section .position-relative .quote-icon{
	    color: var(--mein-color);
    font-size: 150px;
    position: absolute;
    z-index: 10;
    line-height: 1;
    top: -90px;
    inset-inline-start: 90px;
}
.owl-nav{
	    margin: 0!important;
    position: absolute!important;
    width: 100%!important;
    display: flex!important;
    align-items: center!important;
    justify-content: space-between!important;
    height: 0!important;
    top: calc(50% - 15px)!important;
    left: 50%!important;
    transform: translateX(-50%)!important;
}
.owl-nav button{
	margin: 0!important
}
.owl-nav button:hover{
	background-color: transparent!important
}
.owl-nav button i{
	    color: var(--mein-color)!important;
    font-size: 30px!important;
    width: 30px!important;
    height: 30px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
	transition: all .7s!important
}
.owl-nav button i:hover{
	    color: var(--sec-color)!important;
}

.c-o-in{
    margin: 0 auto;
    padding: 40px 30px 20px 30px;
    border-radius: 10px;
    border: 1.5px solid var(--mein-color);
    box-shadow: 0 0 5px #da41433b;
	position: relative;
	    width: 90%;
}
.c-o-in .custom-text-1{
	    margin-bottom: 10px;
	
}
.c-o-in .other-info{
	width: fit-content;
    margin-inline-start: auto;
}
.c-o-in .other-info h4{
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 0 0 0px #000;
    margin-bottom: 0;
        font-weight: normal;
}
.c-o-in .other-info h5{
	    margin-bottom: 0;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.5;
}
.customer-opinions-section .owl-nav button i{
        color: #372727!important;
}
.customer-opinions-section .owl-nav button i:hover{
    color: var(--mein-color)!important;
}

/*customer-opinions-section*/
/*contact-us-section*/

.contact-us-section .contact-us-section-container{
	display: flex;
	flex-wrap: wrap;
	    background-color: #fff;
    box-shadow: 0 5px 4px #0003;
    border-radius: 10px;
}
.contact-us-section .contact-us-section-container .col-custom:nth-of-type(1){
	width: 66.66666%
}
.contact-us-section .contact-us-section-container .col-custom:nth-of-type(2){
	width: 33.33333%
}
.contact-us-section .contact-us-section-container .contact-us-in{
	    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-inline-end: 15px;
    padding-inline-start: 60px;
}
.contact-us-section .contact-us-section-container .contact-us-in .icon-works-time{
        position: absolute;
    width: 70px;
    top: 40px;
    inset-inline-end: 40px;
}
.map{
	width: 100%;
	height: 100%;
	    overflow: hidden;
    box-shadow: 0 0 5px #0000003d;
    border-radius: 2px;
}
.map iframe{
	width: 100%;
	height: 100%
}
.contact-us-section .contact-us-section-container .img{
	    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 5px #00000052;
}

.custom-overlay-shep-container{
	padding-top: 40px;
    padding-inline-start: 40px;
	position: relative
}
.custom-overlay-shep-container .custom-overlay-shep{
	    background-color: var(--mein-color);
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 10px;
    z-index: -1;
}

/*contact-us-section*/
/*footer*/

footer{
	    box-shadow: 0 -2px 5px #00000026;
}
footer.custom-padding-40{
	padding-top: 50px;
    padding-bottom: 50px;
}
footer .footer-logo{
	    width: 150px;
}
footer [class^="col-"]{
	display: flex;
	align-items: center
}
footer .nav-listt{
	    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 50px;
}
footer .nav-listt li a{
	color: #766b6b;
    font-weight: 500;
    font-size: 13px;
    transition: all .7s;
	position: relative;
	top: 0px
}
footer .nav-listt li a:hover{
	color: var(--mein-color);
	top: -2px
}

/*footer*/
/*about-us-page*/

.custom-img-r{
	    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 5px #00000047;
}

/*about-us-page*/
/*recruitment-page*/

.form-custom-1 br{
    display: none!important;
}
.input-in-1{
        margin-bottom: 25px;
}
.input-in-1 input,
.input-in-1 textarea,
.input-in-1 select{
        width: 100%;
    height: 50px;
    border: 1px solid #a3a3a3;
    box-shadow: 0 0 3px #a3a3a347;
    border-radius: 8px;
    padding: 6px 15px;
}
.input-in-1 textarea{
    height: 150px;
}
.input-in-1 .name-field{
        display: block;
    margin-bottom: 10px;
    color: black;
    font-weight: 500;
    text-shadow: 0 0 0px black;
    font-size: 14px;
        text-transform: capitalize;
}
.input-in-1 ::-webkit-input-placeholder { 
        display: block;
    margin-bottom: 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-shadow: 0 0 0.5px #8e8e8e;
    font-size: 13px;
    text-transform: capitalize;
}
.input-in-1 ::-moz-placeholder { 
        display: block;
    margin-bottom: 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-shadow: 0 0 0.5px #8e8e8e;
    font-size: 13px;
    text-transform: capitalize;
}
.input-in-1 :-ms-input-placeholder { 
        display: block;
    margin-bottom: 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-shadow: 0 0 0.5px #8e8e8e;
    font-size: 13px;
    text-transform: capitalize;
}
.input-in-1 :-moz-placeholder { 
        display: block;
    margin-bottom: 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-shadow: 0 0 0.5px #8e8e8e;
    font-size: 13px;
    text-transform: capitalize;
}
.input-in-1 .input-in-1-upload{
    width: 100%;
    height: 50px;
    border: 1px solid #a3a3a3;
    box-shadow: 0 0 3px #a3a3a347;
    border-radius: 8px;
    padding: 6px 15px;
        position: relative;
}
.input-in-1 .input-in-1-upload .wpcf7-form-control-wrap{
        position: static;
}
.input-in-1 .input-in-1-upload input{
        position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0;
    z-index: 10;
}
.input-in-1 .input-in-1-upload .btn-input{
    position: absolute;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 7px;
    font-weight: 500;
    box-shadow: 0 0 5px #0000003d;
    border-radius: 4px;
    width: 120px;
    height: 35px;
    top: 7px;
    inset-inline-start: 7px;
    text-shadow: 0 0 0px #000;
    font-size: 14px;
    text-transform: capitalize;
}
.input-in-1 .input-in-1-upload .name-file-upload{
    display: block;
    margin-bottom: 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-shadow: 0 0 0.5px #8e8e8e;
    font-size: 13px;
    text-transform: capitalize;
        position: absolute;
    inset-inline-start: 140px;
    top: 13px;
    margin-bottom: 0;
}

/*recruitment-page*/
/*services-section*/

.serv-in{
	display: block;
	text-align: center;
	margin-bottom: 30px;
	transition: all .7s;
	position: relative;
	top: 0
}
.serv-in .img{
	    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 5px #00000040;
    margin-bottom: 15px;
}
.serv-in .custom-head-1{
	    font-size: 21px;
    line-height: 1.4;
    overflow: hidden;
    height: 28px;
    margin-bottom: 10px;
}
.serv-in p{
	    color: #404040;
    font-size: 13px;
    text-shadow: 0 0 0px #404040;
    line-height: 1.8;
    max-height: 47px;
    overflow: hidden;
    margin-bottom: 15px;
}
.serv-in:hover{
	transform: scale(1.03, 1.03);
	top: -5px
}

/*services-section*/
/*works-galary-section*/

.works-galary-section .owl-nav{
	display: none!important
}
.works-galary-section .item{
	    display: block;
    width: 100%;
        height: 330px;
    overflow: hidden;
    border-radius: 10px;
    border: 5px solid var(--mein-color);
}
.works-galary-section .works-galary-in{
	width: 105%;
}

/*works-galary-section*/
/*single-page*/

.single-page{
	padding-bottom: 40px
}
.single-page .img-breadcramp{
	width: 100%;
    height: 400px;
}
.single-page .img-breadcramp .custom-overlay{
    background-color: var(--mein-color);
    opacity: .1;
    z-index: 3;
}
.single-page .img-breadcramp .custom-head-2{
	position: absolute;
    z-index: 5;
    bottom: 20px;
    margin-bottom: 0;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    font-weight: bold;
}
.single-page .img-breadcramp .logo-breadcramp{
	    position: absolute;
    top: 20px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
}
.single-page .others-services > .custom-head-1{
	padding: 30px 0;
	position: relative
}
.single-page .others-services > .custom-head-1:before{
        content: '';
    position: absolute;
    display: block;
    background-color: var(--mein-color);
    width: 220px;
    height: 100%;
    top: 0;
    inset-inline-start: -150px;
    z-index: -1;
}

/*single-page*/
/*custom-nav-bar-section*/

.custom-nav-bar-section{
	text-align: center;
	padding-top: 10px
}
.custom-nav-bar-section .logo{
	display: inline-block
}
.custom-nav-bar-section .logo img{
	    width: 120px;
}

/*custom-nav-bar-section*/
/*about us section*/

.about-us-section .img-about{
	  -webkit-mask-image: url('../images/about-us-img.png');
  mask-image: url('../images/about-us-img.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;    
	
	width: 100%;
    height: 450px;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
	margin-top: -60px;
}

/*about us section*/
/*side-nav*/

.side-nav{
	    position: fixed;
    top: 0;
    inset-inline-start: 0;
    z-index: 100;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 5px #0000003b, -2px 0 5px #0000003b;
    width: 60px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
	transition: all .7s
}
.side-nav.show-in{
	box-shadow: none
}
.side-nav a{
	    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--mein-color);
    font-size: 25px;
    cursor: pointer;
}
.side-nav a.lang-icon{
	    background-color: var(--mein-color);
    color: #fff;
    border-radius: 50%;
display:none;
}

.side-nav-popup{
	    position: fixed;
    top: 0;
	inset-inline-start: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 99;
    padding: 30px 150px;
	overflow: auto;
	transition: all .7s;
	opacity: 0
}
.side-nav-popup.show-in{
	inset-inline-start: 0%;
	opacity: 1
}
.side-nav-popup [class^="col-"]:first-of-type{
	display: flex;
	align-items: center;
	position: relative;
	    padding: 30px 0;
}
.side-nav-popup [class^="col-"]:last-of-type{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center
}
.side-nav-popup [class^="col-"]:first-of-type:before{
content: '';
    position: absolute;
    display: block;
    background-color: var(--mein-color);
    width: 3px;
    height: 100%;
    top: 0;
    inset-inline-end: 0;
    border-radius: 60px;
}
.side-nav-popup img{
	    width: 200px;
}
.side-nav-popup .nav-listt > li{
	    margin-bottom: 15px;
}
.side-nav-popup .nav-listt > li:last-of-type{
	margin-bottom: 0
}
.side-nav-popup .nav-listt > li > a{
	    color: var(--mein-color);
    font-size: 15px;
    font-weight: 500;
	transition: all .7s
}
.side-nav-popup .nav-listt > li > a:hover{
	color: #000
}

/*side-nav*/

@media (max-width: 1199px) {
    .img-custom-2,
    .img-custom-1{
        width: 100%;
    }
    .customer-opinions-section .position-relative .quote-icon{
		    font-size: 80px;
		    top: -50px;
	}
	.works-galary-section .item{
		    height: 270px;
	}
}
@media (max-width: 991px) {
	[class^="custom-head-"],
	[class^="custom-text-"],
	.product-2-in{
		text-align: center
	}
	.custom-img-res{
		text-align: center
	}
	.about-us2-section .container:nth-of-type(odd) [class^="col-"]:first-of-type{
        order: 1;
    }
    .about-us2-section .container:nth-of-type(odd) [class^="col-"]:last-of-type{
        order: 2;
    }
	.about-us2-section .container{
	    margin-top: 0;
	    margin-bottom: 30px;
	}
	.about-us2-section .container [class^="col-"]:first-of-type{
	    margin-bottom: 15px;
	}
	.img-custom-2,
	.img-custom-1{
	    width: 50%;
        margin-right: auto;
        margin-left: auto;
	}
	.customer-opinions-section .position-relative .quote-icon{
		    opacity: .2;
		inset-inline-start: auto;
		left: 50%;
		transform: translateX(-50%)
	}
	.c-o-in .other-info{
	    width: 100%;
	    text-align: center;
	}
	.links-media{
		justify-content: center
	}
	footer{
		text-align: center
	}
	footer .footer-logo{
		    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
	}
	footer .nav-listt{
		justify-content: center;
		    column-gap: 40px;
	}
	.about-us-page [class^="col-"]:first-of-type{ 
		    margin-bottom: 20px;
	}
	.input-in-1 .name-field,
	.input-in-1 input, 
	.input-in-1 textarea, 
	.input-in-1 select{
		text-align: center
	}
	.side-nav-popup [class^="col-"]:first-of-type:before{
		content: none
	}
	.side-nav-popup [class^="col-"]:first-of-type{
		padding: 0;
		order: 2
	}
	.side-nav-popup [class^="col-"]:last-of-type{
		order: 1
	}
	.side-nav-popup .nav-listt {
		width: 100%;
		text-align: center
	}
	.side-nav-popup img{
		margin-bottom: 20px
	}
	.side-nav-popup img{
		    width: 120px;
	}
}

@media (max-width: 767px) {
    	.img-custom-2,
	.img-custom-1{
	    width: 100%;
        margin-right: auto;
        margin-left: auto;
	}
    .customer-opinions-section .position-relative .owl-nav{
		display: none!important
	}
	.c-o-in{
	    width: 100%;
	        padding: 40px 10px 20px 10px;
	}
	.contact-us-section .contact-us-section-container .col-custom:nth-of-type(1),
	.contact-us-section .contact-us-section-container .col-custom:nth-of-type(2){
		width: 100%
	}
	.contact-us-section .contact-us-section-container .contact-us-in{
		    padding-inline-start: 15px;
	}
	.side-nav-popup{
		padding: 30px 70px;
	}
}
@media (max-width: 575px) {
    .custom-head-2{
            font-size: 20px;
    }
	.single-page .custom-head-1{
		    font-size: 19px;
	}
	.side-nav-popup{
padding-inline-end: 10px;
    padding-inline-start: 60px;
	}
}
@media (max-width: 500px) {
	.custom-overlay-shep-container{
		    padding-top: 20px;
    padding-inline-start: 20px;
	}
	footer .nav-listt{
		    column-gap: 25px;
	}
}
@media (max-width: 400px) {
    .custom-overlay-shep-container{
		    padding-top: 10px;
    padding-inline-start: 10px;
	}
}
@media (max-width: 350px) {
    
}


.page-loading {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mein-color);
  z-index: 9999999955;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /*display: none*/
}

.page-loading .navbar-brand {
      display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: 1s fadelogo forwards;
    animation: 1s fadelogo forwards;
    transform: scale(1.5);
    width:250px;
}
.page-loading .navbar-brand img{
    filter:brightness(0) invert(1);
	    width: 150px;
}

.page-loading .navbar-brand:after {
  content: "";
  width: 0px;
  height: 0px;
  background-color: #e54042;
  position: absolute;
  right: -120px;
  left: auto;
  border-radius: 50%;
  box-shadow: 0px 0px 85px 100px #e54042;
  -webkit-animation: 2s ease-in-out fader infinite;
          animation: 2s ease-in-out fader infinite;
}

@-webkit-keyframes fader {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-500px, 10px);
  }
}

@keyframes fader {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(-500px, 10px);
  }
}