@font-face {
  font-family: 'DroidKufiBold';
  src: url('../fonts/DroidKufi-Bold.ttf')  format('truetype');
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: 'DroidKufiNormal';
  src: url('../fonts/DroidKufi-Regular.ttf')  format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'RalewayBold';
  src: url('../fonts/Raleway-Bold.ttf')  format('truetype');
  font-weight: bold;
  font-style: bold;
}
@font-face {
  font-family: 'RalewayMedium';
  src: url('../fonts/Raleway-Medium.ttf')  format('truetype');
  font-weight: normal;
  font-style: normal;
}
*, *: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-bg-color: #ffffff;
    --main-color: #C00037;
    --main-coloRGBA: linear-gradient(#C00037, #ca1e4f);
    --main-padding: 30px 0;
    --main-font-familyBold: 'RalewayBold', 'DroidKufiBold';
    --main-font-familyMedium: 'RalewayMedium', 'DroidKufiNormal';
}
body{
    background-color: var(--main-bg-color);
    font-family:var(--main-font-familyMedium);
    font-size:12px;
    font-weight:400;
	direction: ltr
}
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font-familyBold);
  font-weight: bold;
  font-style: normal;
  margin: 0;
}
p{
  margin:0;
}
html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
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;
  color: #fff;
}
a:hover,a:active,a:focus,a:visited{
  text-decoration: none !important;
    color: #ffffff;
}

input, textarea, a, button {
  outline: none !important;
  text-decoration: none;
}

img{
  max-width: 100%;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
}
.active {
    color:var(--main-color) !important;
}

/*hamburger*/

.hamburger {
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 0px;
  border: none;
  position: relative;
  z-index: 0;
  float: right;
  padding-left: 8px;
  padding-right: 8px;
  -webkit-transition: background-color .2s linear;
  -ms-transition: background-color .2s linear;
  transition: background-color .2s linear;
  display: none;
  margin-top: 10px;
  border:1px solid #b3b0b0;
  cursor: pointer;
  margin-left: 10px;
}
.hamburger:hover{
  background-color:transparent;
}
.hamburger:hover span:nth-child(1) {
  transform: translate(0, -2px);
  -webkit-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
}
.hamburger:hover span:nth-child(3) {
  transform: translate(0, 2px);
  -webkit-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  -ms-transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.active span:nth-child(2) {
  transform: translate(-4px, 0);
  -webkit-transform: translate(-4px, 0);
  -ms-transform: translate(-4px, 0);
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  -ms-transform: rotate(-45deg) translate(4px, -4px);
}
.hamburger span {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  opacity: 0.7;
  margin: auto;
  background-color: #b3b0b0;
  display: block;
  margin-bottom: 4px;
  -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;
}
.hamburger span:last-child{
  margin-bottom: 0;
}
.hamburger:hover span{
  background-color: #fff;
  opacity: 1;
}

/*hamburger*/

/*menu*/

.menu-mobile{
  position: fixed;
  right: 0px;
  top: 0px;
  bottom: 0;
  height: 100%;
  width: 250px;
  background: var(--main-color);
  z-index: 1001;
  overflow-y:auto; 
  -webkit-transform:translateX(265px);
  -moz-transform:translateX(265px);
  -ms-transform:translateX(265px);
  -o-transform:translateX(265px);
  transform:translateX(265px);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
  -webkit-box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
  box-shadow: -2px 0 20px 0 rgba(33, 23, 23, 0.68);
}
.brand-area{
  position: relative;
  padding-top: 20px;
}
.close_menu{
  position: absolute;
  top: 0;
  left: 0px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  background-color: #fff;
  -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;
}
.close_menu:hover{
  background-color: #767676;
  color: #fff;
}
.brand-area a {
    width:90%;
    height: auto;
    display: block;
    background-size: contain;
    margin: 0px auto 0 auto;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 20px;
}
.brand-area a > img{
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.mmenu > ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.mmenu > ul li a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    padding: 10px;
    transition: all .3s;
}
.mmenu > ul li a > i{
  margin-left: 5px;
}
.mmenu > ul li a:hover {
    background: #7F91AB;
    color: #fff;
    border-color: #7F91AB;
}
.register-mobile{
  margin-top: 0 !important;
}
.register-mobile li:last-child > a{
  border-bottom: 0;
}
.plusIcon{
  font-size: 14px;
  margin-left: 5px;
}
.m-overlay {
    position: fixed;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #333;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.menu-toggle {
    overflow: hidden;
}
.menu-toggle .m-overlay {
    opacity: 0.6;
    visibility: visible;
}
.menu-toggle .menu-mobile {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);

}

.menu-toggle .main-wrapper{

  -webkit-transform:translate3d(-250px,0,0);
  -moz-transform:translate3d(-250px,0,0);
  -ms-transform:translate3d(-250px,0,0);
  -o-transform:translate3d(-250px,0,0);
  transform:translate3d(-250px,0,0);

}
html.menu-toggle{
  overflow: hidden;
}
.mmenu .social-mobile li{
  display: inline-block;
  margin: 5px;
}
.mmenu .social-mobile{
  display: table;
  margin: auto;
  text-align: center;
}
.mmenu .social-mobile li a{
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
  color: #fff;
  font-size: 16px;
  padding:0;
  text-align: center;
}
.mmenu .social-mobile li a > i{
  margin: 0;
}
.mmenu .social-mobile li a{
  border-bottom: 0;
}

.wrapper-blur{
  -moz-filter: blur(1.5px);
  -webkit-filter: blur(1.5px);
  -ms-filter: blur(1.5px);
  filter: blur(1.5px);
}

.overlay-close {
    cursor: pointer;
    width: 60px;
    height: 60px;
    transform: scale(0);
    position: fixed;
    right: 20px;
    top: 20px;
    font-size: 0px;
    z-index: 9;
    border-radius: 50%;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    background-color:#0388B4;
}
.overlay-close:before, .overlay-close:after {
    border-color: #161616;
}
.overlay-close:before, .overlay-close:after {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
    content: '';
    position: absolute;
    height: 5px;
    width: 50px;
    top: 50%;
    left: 50%;
    background: #fff;
}
.overlay-close:before {
    transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
}
.overlay-close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
}


.owl-carousel.owl-loading {
    opacity: 1;
    display: block;
}
.owl-carousel .owl-refresh .owl-item{
    display:block;
    margin: 0 90px;
}
.owl-carousel .owl-refresh .cloned {
    display:none;
}




/*================================
        /-header-/
==================================*/

#header{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 2;
}
#headerPage {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 2;
    background: #000;
}
#header .logo_site, #headerPage .logo_site{
    float: left;
	width: 80px;
}
#header .logo_site > a{
    display: block;
}
#header .main_menu{
  float: right;
  margin-left: 80px;
  margin-top: 25px;
}
#header .main_menu > li{
  float: left;
  margin-right: 20px;
}
#header .main_menu > li:last-child{
  margin-right: 0;
}
#header .main_menu > li > a{
  display: block;
  color: #fff;
  font-size: 16px;
}
#headerPage .logo_site > a{
    display: block;
}
#headerPage .main_menu{
  float: right;
  margin-left: 80px;
  margin-top: 35px;
}
#headerPage .main_menu > li{
  float: left;
  margin-right: 20px;
}
#headerPage .main_menu > li:last-child{
  margin-right: 0;
}
#headerPage .main_menu > li > a{
  display: block;
  color: #fff;
  font-size: 16px;
}

/*================================
        /-Footer-/
==================================*/

#footer {
    overflow: hidden;
}
.bottomFooter {
	background:#000;
	padding: 25px 0;
	position:relative;
}
.bottomFooter img {
	float: left;
	width: 80px;
}
.bottomFooter .copyright {
	margin-left: 100px;
    font-size: 18px;
    color: #fff;
    margin-top: 20px;
}
.bottomFooter .power {
	float: right;
	margin-top: 30px
}
.bottomFooter .power a {
	border: 1px solid #fff;
	border-radius: 10px;
	padding: 5px 20px;
	color: #fff
}
.bottomFooter .imgBGBody {
    position: absolute;
    right: 0;
    top: -20px;
    bottom: 0;
    width: 100%;
    z-index:1;
}
.text-left {
    position:relative;
    z-index:9;
}


/*================================
        /-sectionSliderHome-/
==================================*/


.sectionSliderHome {
	height: 100vh;
	position: relative;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
	padding-top: 110px;
}
.sectionSliderHome:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image:linear-gradient(#000000, #020202);
    width: 100%;
    height: 100%;
	opacity: .9;
    z-index: 1;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px,0,0);
    padding: 50px 0;
}
.thumb_slide {
	position: relative;
}
.thumb_slide .numberSlide {
	font-size: 56px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -40px;
    z-index: 1;
}
.thumb_slide img {
	height: 330px;
    width: 600px !important;
	object-fit: cover;
    margin: auto;
}
.thumb_slide {
    position:relative; 
    display: inline-block;
}
.thumb_slide:before {
    position:absolute; 
    left:-1px; 
    top:-1px; 
    content:'';
    border-top: 70px solid transparent;
    border-right: 70px solid transparent;
}
.thumb_slide:after {
    position:absolute; 
    left:-2px; 
    top:-2px; 
    content:'';
    border-top: 70px solid rgb(10, 11, 11);
    border-right: 70px solid transparent;
}
.socialSlide {
	margin-bottom: 20px
}
.socialSlide li{
	display: inline-block;
	margin: 5px;
    border: 2px solid #fff;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    float: left;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.socialSlide li:hover, .socialSlide li:focus{
	background: var(--main-color);
	border: 2px solid var(--main-color);
}
.slide_txt h2 {
	text-align: left;
	color: #fff;
	font-size: 32px;
	margin-bottom: 15px;
}
.slide_txt p {
	text-align: left;
	color: #fff;
	margin-bottom: 35px;
	font-size: 14px
}
.slide_txt button {
	float: left;
	color: #fff;
	border:1px solid #fff;
	border-radius: 0;
	font-size: 16px;
	width: 100px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: transparent;
	-webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.slide_txt button:hover, .slide_txt button:focus{
	background: var(--main-color);
	border: 1px solid var(--main-color);
}
.slide_txt button {
    position:relative;
    display: inline-block;
}
.slide_txt button:before {
    position:absolute; 
    right:-1px; 
    top:-1px; 
    content:'';
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
}
.slide_txt button:after {
    position:absolute; 
    right:-2px; 
    top:-2px; 
    content:'';
    border-top: 15px solid rgb(10, 11, 11);
    border-left: 15px solid transparent;
}

#homeSlider .owl-dots {
    position: absolute;
    bottom: 190px;
    width: 100%;
    right: -60px;
}
#homeSlider.owl-theme .owl-dots .owl-dot.active span {
    background: var(--main-color);
	border: 0;
}
#homeSlider.owl-theme .owl-dots .owl-dot span {
    margin: 9px;
    background-color: transparent;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    display: block;
    border: 2px solid #fff;
}
.imgSliderBottom {
	background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    bottom: 0;
    z-index: 9;
    width: 100%;
}

.sectionSliderHome .imgBGBody {
    position: absolute;
    right: 0;
    top: -20px;
    bottom: 0;
    z-index:1;
    width: 100%
}
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 999;
}

/*================================
        /-sectionAbout-us-/
==================================*/


.sectionAboutUS {
	padding: 180px 0 60px;
	margin-top:-1px;
	position:relative;
	background:#fff;
	z-index:1;
}
.sectionAboutUS .imgAbout {
	text-align: center;
	position: relative
}
.img-About {
	width: 420px;
    margin: auto;
}
.imgAbout:before {
    position:absolute; 
    right:67px; 
    top:-1px; 
    content:'';
    border-top: 50px solid #fff;
    border-left: 50px solid transparent;
}
.imgAbout:after {
    position:absolute; 
    right:67px; 
    top:-2px; 
    content:'';
    border-top: 50px solid #fff;
    border-left: 50px solid transparent;
}
.sectionAboutUS .imgAbout .BG_Aout {
	position: absolute;
    z-index: -1;
    top: -120px;
    left: 0;    width: 500px;
}
.sectionAboutUS .secTitleAbout h5 {
	font-size: 25px;
	color: var(--main-color);
	margin-bottom: 10px
}
.sectionAboutUS .secTitleAbout p {
	color: #000;
	margin-bottom: 50px;
	width: 60%;
    font-size: 16px;
}
.sectionAboutUS .btnMore {
	background: var(--main-color);
	color: #fff;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: block;
	font-size: 15px;
	position: relative
}
.sectionAboutUS .btnMore:before {
    position:absolute; 
    right:-1px; 
    top:-1px; 
    content:'';
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
}
.sectionAboutUS .btnMore:after {
    position:absolute; 
    right:-2px; 
    top:-2px; 
    content:'';
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
}


/*================================
        /-sectionOurServices-/
==================================*/



.sectionOurServices {
	padding: 150px 0 80px;
	position: relative;
}
.sectionOurServices .imgBGBody{
	position: absolute;
    right: 0;
    top: -360px;
    z-index:2;
}
.headTitel {
	width: 70%;
	margin:30px auto
}
.headTitel h2 {
	color: var(--main-color);
	margin-bottom: 15px;
}
.headTitel p {
	color: #000;
	font-size: 12px;
}


.sectionOurServices .item {
	padding: 30px 20px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 6px 0px rgba(186, 186, 186, .4);
    -moz-box-shadow: 0px 0px 6px 0px rgba(186, 186, 186, .4);
    -ms-box-shadow: 0px 0px 6px 0px rgba(186, 186, 186, .4);
    -o-box-shadow: 0px 0px 6px 0px rgba(186, 186, 186, .4);
    box-shadow: 0px 0px 6px 0px rgba(186, 186, 186, .4);
    border-radius: 10px;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
	width:90%;
	height: 330px
}
.sectionOurServices .boxServices {
	text-align: center;
}
.sectionOurServices .boxServices img {
	margin-top: -40px;
	position:relative;
	height: 120px;
    object-fit: cover;
}
.sectionOurServices .boxServices figure {
    position:relative;
}
.sectionOurServices .boxServices figure:before {
    position:absolute; 
    right:-1px; 
    top:-1px; 
    content:'';
    border-top: 35px solid #ffffff;;
    border-left: 45px solid transparent;
}
.sectionOurServices .boxServices figure:after {
    position:absolute; 
    right:-2px; 
    top:-2px; 
    content:'';
    border-top: 45px solid #ffffff;;
    border-left: 45px solid transparent;
}
.sectionOurServices .boxServices .titleServices h6 {
	color: var(--main-color);
	font-size: 15px;
	margin: 20px 0;
	line-height: 1.3;
}
.sectionOurServices .boxServices .titleServices p {
	color: #000;
	font-size: 12px;
	margin-bottom: 20px;
    height: 85px;
    overflow: hidden;
}
.sectionOurServices .boxServices a {
	color: var(--main-color);
	display: block;
	font-weight: bold;
	width: 100px;
    margin: auto;
    position: absolute;
    bottom: 15px;
    right: 50px;
}
.sectionOurServices .boxServices a i {
    display: inline-block;
    float: right;
    margin-top:4px;
}
.BG_BottomServices {
	background: #000;
	width: 100%;
	height: 300px;
    display: block;
    position: absolute;
    bottom: 60px;
    overflow: hidden;
}
.BG_BottomServices .imgBGBody {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index:2;
}
#ourServicesSlider .owl-dots {
    position: absolute;
    bottom: -20px;
    width: 100px;
	top: 50%;
    left: 50%;
    transform: translate(-50%, 80%);
}
#ourServicesSlider .owl-dots .owl-dot {
	margin: auto;
	display: inline-block;
}
#ourServicesSlider .owl-dots .owl-dot.active span {
    background: var(--main-color);
}
#ourServicesSlider .owl-dots .owl-dot span {
    margin: 9px;
    background-color: transparent;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
}


/*================================
      /-sectionOurBusiness-/
==================================*/

.sectionOurBusiness {
	padding: 50px 0 80px;
	position: relative;
	overflow: hidden;
}
.sectionOurBusiness:before {
	content: "";
    width: 480px;
    height: 550px;
    background: #f4f4f4;
    position: absolute;
    right: 0;
    top: 230px;
    display: block;
}
.sectionOurBusiness .headTitel {
	margin-bottom: 120px
}
.sectionOurBusiness .boxBusiness {
	padding: 30px;
}
.sectionOurBusiness .boxBusiness figure {
	position: relative
}
.sectionOurBusiness .boxBusiness img {
	height: 280px;
	object-fit: cover;
}
.sectionOurBusiness .boxBusiness figure span {
	background: var(--main-color);
	width: 6px;
    height: 80px;
    border-radius: 5px;
    display: block;
    position: absolute;
    bottom: -40px;
    right: 50%;
}
.sectionOurBusiness .boxBusiness h5 {
	margin-top: 60px;
    text-align: center;
    font-size: 22px;
	font-weight: normal
}
.col-sm-4:nth-child(2) .boxBusiness {
	margin-top: 40px
}
.col-sm-4:nth-child(3) .boxBusiness {
	margin-top: 80px
}
.sectionOurBusiness .btnMore {
	background: var(--main-color);
	color: #fff;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 15px;
	display: block;
    position: absolute;
    top: 270px;
    right: 70px;
}
.sectionOurBusiness .btnMore:before {
    position:absolute; 
    right:-1px; 
    top:-1px; 
    content:'';
    border-top: 15px solid #f4f4f4;
    border-left: 15px solid transparent;
}
.sectionOurBusiness .btnMore:after {
    position:absolute; 
    right:-2px; 
    top:-2px; 
    content:'';
    border-top: 15px solid #f4f4f4;
    border-left: 15px solid transparent;
}



/*================================
      /-sectionKnowUs-/
==================================*/


.sectionKnowUs {
	padding: 90px 0 230px;
}
.boxVideo {
	width: 600px;
	margin: auto;
	margin-top: 80px;
	position: relative;
	text-align:center;
}
.boxVideo img {
	width: 580px;
    display: block;
    position: absolute;
    top: -100px;
    z-index: -1;
}
.boxVideo video {
	display: block;
	margin: auto;
	height: 280px;
    border-radius: 20px;
}



/*================================
      /-Page About Us-/
==================================*/


.titleKnow {
	margin-top: 150px;
}
.titleKnow h5 {
	color: var(--main-color);
	font-size: 22px;
	margin-bottom: 15px;
}
.titleKnow p {
	font-size: 15px;
	color: #000;
}

.sectionDoknow {
	background: #f5f5f5;
	padding: 50px 0;
}
.sectionDoknow .headTitel {
	width: 100%;
	margin-bottom: 35px;
}
.listKnow {
	clear: both;
	margin-bottom: 40px
}
.listKnow img {
    float: left;
    height: 50px;
    max-width: 50px;
}
.listKnow .desKnow {
	margin-left: 60px
}
.listKnow .desKnow h5 {
	color: var(--main-color);
	margin-bottom: 5px
}
.imgDoKnow {
	text-align: center
}
.imgDoKnow img {
	border-radius: 35px;
	width: 400px;
	height: 360px;
	object-fit: cover
}



/*================================
      /-sectionServicesPage-/
==================================*/

.sectionServicesPage {
    padding:10px 0 60px;
}
.sectionServicesPage .headTitel{
	margin-bottom: 30px
}
.box_services:nth-child(odd) .secLeft {
	float: left
}
.box_services:nth-child(even) .secLeft {
	float: right
}
.box_services:nth-child(odd) .secRight {
	float: right
}
.box_services:nth-child(even) .secRight {
	float: left
}
.box_services:nth-child(even) .secLeft strong {
	color: var(--main-color);
	font-size: 60px;
	position: absolute;
	top: -40px;
    font-weight: normal;
    left: -350px;
}
.box_services strong {
	color: var(--main-color);
	font-size: 60px;
	position: absolute;
	top: -40px;
    font-weight: normal;
    right: 50px;
    z-index: 9;
}
.secLeft .imgAbout:before {
    position: absolute;
    right: 67px;
    top: -1px;
    content: '';
    border-top: 60px solid #fff;
    border-left: 60px solid transparent;
}
.box_services:nth-child(even) .secLeft .imgAbout:before {
    position: absolute;
    left: 67px;
    right:auto;
    top: -1px;
    content: '';
    border-top: 60px solid #fff;
    border-right: 60px solid transparent;
    border-left: 0;
}
.box_services:nth-child(even) .imgAbout:after {
    position: absolute;
    left: 67px;
    right:auto;
    top: -2px;
    content: '';
    border-top: 50px solid #fff;
    border-right: 50px solid transparent;
    border-left: 0;
}
.box_services:nth-child(even) .imgAbout .BG_Aout {
    position: absolute;
    z-index: -1;
    top: -100px;
    left: 0;
    width: 500px;
}
.box_services .secRight, .box_services .secLeft {
	width: 50%;
	position: relative
}
.box_services .secTitleAbout {
	width: 70%
}
.box_services:nth-child(odd) .secTitleAbout {
	width: 80%;
	float: left
}
.box_services:nth-child(even) .secTitleAbout {
	width: 80%;
	float: right
}
.box_services .secTitleAbout span {
	color: var(--main-color);
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: normal;
	display: block
}
.box_services .secTitleAbout p {
    color: #000;
    margin-bottom: 50px;
    width: 100%;
    font-size: 16px;
    text-align: justify;
}
.box_services {
	margin-bottom: 0;
	overflow: hidden;
    padding: 80px 0;
}



/*================================
      /-sectionProjectsPage-/
==================================*/


.sectionProjectsPage {
	padding: 20px 0
}
.sectionProjectsPage .headTitel{
	margin-bottom: 40px
}
.sectionProjectsPage .boxProjects {
	position: relative;
	margin-bottom:3px;
	overflow: auto;
}
.imagesMasonry img {
    height:100%;
}
.sectionProjectsPage .boxProjects .imagesMasonry {
	height: 350px;
	width: 50%;
	float:left;
	object-fit: cover
}
.sectionProjectsPage .boxProjects:nth-child(even) .imagesMasonry {
	float:right;
}
.sectionProjectsPage .dataInfo {
	height: 350px;
    flex-wrap: wrap;
    display:flex
}
.sectionProjectsPage .boxProjects:nth-child(odd) > .imagesMasonry {
	padding-right: 3px;
}
.sectionProjectsPage .boxProjects:nth-child(odd) .dataInfo .imagesMasonry:nth-child(even) {
	margin-right: auto;
}
.sectionProjectsPage .boxProjects .dataInfo .imagesMasonry {
	height: 49.5%;
	width:49.5%;
	object-fit: cover;
}
.sectionProjectsPage .boxProjects .dataInfo .imagesMasonry:nth-child(even) {
	margin-right:3px;
}
.sectionProjectsPage .boxProjects .dataInfo .imagesMasonry:nth-child(1),
.sectionProjectsPage .boxProjects .dataInfo .imagesMasonry:nth-child(2) {
	margin-bottom:3px;
}
.sectionProjectsPage .boxProjects .imagesMasonry{
  transition: 0.4s;
  overflow: hidden;
  cursor: pointer;
}
.sectionProjectsPage .boxProjects img:hover {
  transform: scale(1.4) rotate(15deg);
  transition: 0.4s;
}
.sectionProjectsPage .dataInfo .btnMore {
	border:2px solid var(--main-color) !important;
	color:var(--main-color) !important;
	background: transparent;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 15px;
	border-top-left-radius: 0;
	font-size: 15px;
	display: block;
	margin: auto
}
.sectionProjectsPage .btnMore {
	background: var(--main-color);
	color: #fff;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 15px;
	border-top-left-radius: 0;
	font-size: 15px;
	display: block;
	margin: auto;
	margin-top: 50px;
}



/*==================================
      /-sectionCustomersPage-/
==================================*/

.sectionCustomersPage {
	padding: 100px 0
}
.sectionCustomersPage .headTitel{
	margin-bottom: 100px
}
.sectionCustomersPage .boxCustomers {
	border: 1px solid #d8d8d8;
    text-align: center;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 40px;
    height: 140px;
    line-height: 140px;
}
.sectionCustomersPage .boxCustomers img {
    max-width:130px;
    max-height: 130px;
}
.sectionCustomersPage .btnMore {
	background: var(--main-color);
	color: #fff;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 15px;
	border-top-left-radius: 0;
	font-size: 15px;
	display: block;
	margin: auto
}



.sectionContactPage {
	padding: 100px 0
}
.sectionContactPage .headTitel{
	margin-bottom: 100px
}
.sectionContactPage .form-control{
	height: 50px;
    border: 1px solid #C1C0C0;
    box-shadow: none;
    border-radius: 0;
}
.sectionContactPage textarea{
	height: 120px !important;
	width: 100%;
    border: 1px solid #C1C0C0;
    box-shadow: none;
    border-radius: 0;
}
.widthSection {
	width: 800px;
	margin: auto
}
.sectionContactPage .btnMore {
	background: var(--main-color);
	color: #fff;
	width: 130px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 15px;
	border-top-left-radius: 0;
	font-size: 15px;
	display: block;
	margin: auto
}

.dataContact {
	text-align: center;
	margin-top: 30px
}
.dataContact li {
	display: inline-block;
	margin: 0 20px;
	font-size: 13px;
	color: #333
}
.dataContact li i {
	color: var(--main-color)
}
#googleMap2 {
    height: 400px;
    margin: 60px 0;
}


/*==================================
      /-projectPage-/
==================================*/

.boxProject .thumb_slide img {
    height: 500px;
    width: 85% !important;
    object-fit: cover;
    margin: auto;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
	position: relative
}
.boxProject .thumb_slide img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background:#000;
    width: 100%;
    height: 100%;
	opacity: .5;
    z-index: 1;
}
.boxProject .thumb_slide .numberSlide {
    font-size: 56px;
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 240px;
    top: 40px;
    z-index: 1;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    text-align: center;
}
#productSlider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px,0,0);
    padding: 0;
}
.boxProject .socialSlide {
    margin-bottom: 20px;
    position: absolute;
    left: 20px;
    top: 100px;
}
.boxProject .socialSlide li {
    display: block;
    margin: 5px;
    border: 0;
    width: 30px;
    height: 30px;
	margin-bottom: 15px;
    text-align: center;
    line-height: 30px;
    float: inherit;
}
.sectionProductSlider {
    height: 150vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 120px;
}
.sectionProductSlider .slide_txt {
	margin: 130px auto;
    width: 85%;
}
.sectionProductSlider .headTitel {
    width: 95%;
    margin: auto;
}
.tagClients{
	display: flex;
	margin-top: 40px
}
.tagClients div {
	border: 1px solid var(--main-color);
	margin-bottom: 30px;
	margin-right: 20px;
	text-align: center;
	padding: 10px;
	border-radius: 5px
}
.tagClients h5{
	color: var(--main-color);
	margin-bottom: 10px
}

.flexMasonry {
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
}
.flexMasonry .boxBig {
    width: 50%;
    position:relative
}
.flexMasonry .boxBig p {
    position:absolute;
}
.boxDivMasonry {
    width:50%;
    display: flex;
    flex-wrap: wrap;
}
.boxMasonry {
    text-align: center;
    margin: 0 2.5px;
    width: 49%;
    position:relative;
}
.boxMasonry p {
    position:absolute;
}