html{
     overflow-x:hidden;
}
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'CocoSharp' !important;
  overflow-x:hidden;
}

body a {
  text-decoration: none;
}

body ul {
  list-style: none;
  padding-left: 0;
}
.about-second{
    padding: 155px 0;
    overflow: hidden;
    display:none;
}
.second-about-img{
    border-radius: 100%;
    position: relative;
    width: 300px;
    height: 300px;
}
.second-about-img::before {
    content:"";
    left: -60px;
    right: -60px;
    top: -60px;
    bottom: -60px;
    border-radius: 100%;
    border: 1px solid #f0f0f0;
    position:absolute;
}
.second-about-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.second-about-img::after {
     content:"";
    left: -140px;
    right: -140px;
    top: -140px;
    bottom: -140px;
    border-radius: 100%;
    border: 1px solid #f5f5f5;
       position:absolute;
}
.about-second .right {
    margin-left: 60px;
}
.about-second .right h1 {
    color: #42464e;
    font-size: 26px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}
.about-second  .right .signature {
    margin-top: 50px;
}
.about-second  .right .signature img{
    width:200px;
}
.about-second .right .info {
    font-weight: 500;
    margin-left: 20px;
}
.about-second .right .info .name {
    color: #42464e;
    font-size: 15px;
    margin-bottom: 7px;
    text-align: center;
}
.about-second .right .info .position {
    margin: 0;
    font-size: 13px;
    text-align: center;
    color: #7f7f7f;
}
.projects-full .quote{
    margin-left:30px;
}
.parent-project{
    position:relative;
    transition:all 0.4s ease;
}
.dropdown-project{
    position:absolute;
    background:#fff;
    padding:20px;
    top:50px;
    left:0;
        width: 210px;
        border-radius: 5px;
        visibility:hidden;
        opacity:0;
        transition:all 0.4s ease;
}
.parent-project:hover .dropdown-project{
    opacity:1;
    visibility:visible;
}
.dropdown-project a{
    color:#000;
}
.dropdown-project a:hover{
    opacity:0.6;
}
.dropdown-project li{
    padding:10px 0;
}
.nav-bar-fixed-top {
    padding:9px 0 !important;
  background-color:rgba(17,17,17,.8);
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  box-shadow: 0 1px 5px rgb(0 0 0 / 14%);
}
.container{
    padding:0 74px;
}
 
.nav-bar-fixed-top .subscribe{
    color:#fff !important;
    font-weight:700;
}
 
.display-none {
  display: none;
}

.nav-top {
  background: rgba(17, 17, 17, 0.8);
}
.nav-bottom .logo img {
  
  height: 110px;
  object-fit: contain;
  filter: grayscale(100%) invert(1) brightness(2.5);

}
.nav-top .container-xl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.search {
  position: relative;
}

.search i {
  position: absolute;
  left: 25px;
  top: 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%);
  font-size: 13px;
  color: #999;
}

.search input {
  width: 264px;
  height: 40px;
  padding-left: 35px;
  outline: none;
  font-size: 13px;
  border: none;
}

.nav-top .contacts_langs {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
}

.contacts_langs a {
  color: #fff;
  margin-right: 24px;
  font-weight: bold;
}

.contacts_langs i {
  margin-right: 4px;
}

.contacts_langs .current_lang {
  display: flex;
  align-items: center;
  font-size: 13px;
  padding: 8px 12px;
  position: relative;
  cursor: pointer;
}

.current_lang::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: hsla(0, 0%, 100%, 0.3);
  opacity: 0.3;
  border: 1px solid #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  z-index: -1;
  transition: 0.3s background-color;
  -webkit-transition: 0.3s background-color;
  -moz-transition: 0.3s background-color;
  -ms-transition: 0.3s background-color;
  -o-transition: 0.3s background-color;
}

.current_lang:hover::after {
  background-color: hsla(0, 0%, 100%, 0.7);
}

.current_lang:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.current_lang:hover .lang {
  opacity: 1;
}

.current_lang i {
  font-size: 8px;
  transition: 0.3s transform;
  -webkit-transition: 0.3s transform;
  -moz-transition: 0.3s transform;
  -ms-transition: 0.3s transform;
  -o-transition: 0.3s transform;
}

.current_lang .lang {
  display: flex;
  opacity: 0;
  align-items: center;
  font-size: 13px;
  padding: 8px 12px;
  color: black;
  background-color: white;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
  transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
}

.current_lang img,
.current_lang span {
  margin-right: 8px;
}

.nav-bottom {
 padding:15px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  position: fixed;
  z-index: 111;
  width: 100%;
  -o-transition: 0.3s;
}

.nav-bottom .toggler {
  display: none;
}

.nav-bottom .toggler .btn i {
  color: #fff;
}

.nav-bottom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.8);
}

.nav-bottom .container-xl {
  display: flex;
  justify-content: space-between;
  display: flex;
  align-items: center;
  padding:0 34px;
}

.nav-bottom .nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.nav-bottom .nav-items .nav-item {
  position: relative;
}

.nav-bottom .nav-items .nav-link {
  font-size: 13px;
  color: #fff;
  padding: 16px 12px;
  display: inline-block;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.nav-bottom .nav-items .nav-item:hover .nav-link {
  opacity: 0.5;
}

.nav-bottom .nav-items .nav-item:hover .drop-menu-wrapper {
  opacity: 1;
  visibility: visible;
}

.nav-bottom .nav-items .subscribe {
  background-color: #83b75b;
  padding: 16px 20px;
  text-transform: uppercase;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  margin-left: 24px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.nav-bottom .nav-items .subscribe:hover {
  background-color: #93c36f;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 10%);
}

.nav-bottom .nav-items .login {
  background-color: #fff;
  font-weight:700;
  color: #666666;
  font-size: 13px;
  padding: 16px 20px;
  margin-left: 10px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  box-shadow: 0 6px 12px 0 rgb(0 0 0 / 10%);
  position: relative;
}

.nav-bottom .nav-items .login:hover .drop-links {
  opacity: 1;
  visibility: visible;
}

.nav-bottom .nav-items .login:hover i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.nav-bottom .nav-items .login i {
  margin-left: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.nav-bottom .nav-items .drop-links {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s opacity;
  -webkit-transition: 0.3s opacity;
  -moz-transition: 0.3s opacity;
  -ms-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
}

.nav-bottom .nav-items .drop-links .drop-links-inner {
  padding-top: 5px;
}

.nav-bottom .nav-items .drop-link {
  background-color: #6d717c;
  opacity: 0.95;
  display: block;
  color: #fff;
  text-align: center;
  padding: 16px 10px;
  font-size: 13px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.nav-bottom .nav-items .drop-menu-wrapper {
  padding-top: 17px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
}

.nav-bottom .nav-items .drop-menu {
  background-color: white;
  padding: 16px 32px;
}

.nav-bottom .nav-items .drop-menu::after {
  content: "";
  position: absolute;
  top: 1%;
  left: 50%;
  border-width: 0 12px 16px;
  border-style: solid;
  border-color: transparent transparent white transparent;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.nav-bottom .nav-items .drop-menu li a {
  padding: 4px 0 8px;
  display: block;
  color: #3f3f3f;
}

.nav-bottom .nav-items .drop-menu li a:hover {
  color: black;
}

.nav-bottom .nav-items .drop-link:hover {
  opacity: 1;
}

.nav-bottom .nav-items .drop-link:not(:last-child) {
  margin-bottom: 5px;
}

/*.slider {*/
/*  background: url(/img/photo-1583024011792-b165975b52f5.jfif);*/
/*  height: 580px;*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  transition: 0.3s;*/
/*  -webkit-transition: 0.3s;*/
/*  -moz-transition: 0.3s;*/
/*  -ms-transition: 0.3s;*/
/*  -o-transition: 0.3s;*/
/*  position: relative;*/
/*}*/

/*.slider .container-xl {*/
/*  position: relative;*/
/*  height: 100%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  padding:0 74px;*/
/*}*/

/*.slider .controller {*/
/*  position: absolute;*/
/*  right: 74px;*/
/*  bottom: 122px;*/
/*}*/

/*.slider .controller button {*/
/*  width: 56px;*/
/*  height: 56px;*/
/*  background-color: #f2f4f7;*/
/*  border-radius: 50%;*/
/*  -webkit-border-radius: 50%;*/
/*  -moz-border-radius: 50%;*/
/*  -ms-border-radius: 50%;*/
/*  -o-border-radius: 50%;*/
/*}*/

/*.slider .controller button:first-child {*/
/*  margin-right: 16px;*/
/*}*/

/*.slider .controller button i {*/
/*  font-size: 16px;*/
/*}*/

/*.slider .captions .slider-header {*/
/*  font-family: BOG-Bold;*/
/*  */
/*  color: white;*/
/*  line-height: 2.2;*/
/*  margin-bottom: 24px;*/
/*  font-size:40px;*/
  
/*}*/

/*.slider .captions .slider-text {*/
  
/*  color: white;*/
/*}*/

/*.slider .captions button {*/
/*  background-color: #83b75b;*/
/*  font-size: 13px;*/
/*  color: #fff;*/
/*  padding: 16px 24px;*/
/*}*/

/*.slider .captions button:hover {*/
/*  background-color: #93c36f;*/
/*}*/

/*.slider::before {*/
/*  content: "";*/
/*  background-image: linear-gradient(90deg, #000, rgba(10, 10, 10, 0));*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*}*/

.slider-main{
  height: 600px;
  position: relative;
}
 .slider-main .container{
     padding:0 74px;
 }
.slider-carusel img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.slider-main .slider-carusel::before {
  content: "";
  background-image: linear-gradient(90deg, #000, rgba(10, 10, 10, 0));
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
}
.slider-main .slider__desc{
  position: absolute;
  bottom: 32%;
  z-index: 1111;
  color: #fff;
}
.slider-main .slider__desc h1{
    font-size:40px;
    line-height:2.2;
    margin-bottom:20px;
    font-weight: 700;
}
.slider-main .slider-carusel a {
   background-color: #83b75b;
  font-size: 13px;
   color: #fff; 
  padding: 16px 24px;
 } 

 .slider .captions button:hover {
  background-color: #93c36f;
 }
 .slider-main .owl-nav button{
     display:block;
     width:56px;
     height:56px;
     border-radius:50%;
     background:#fff !important;
 }
 .slider-main .owl-nav{
         display: flex;
    position: absolute;
    bottom: 20%;
    right: 18%;

 }
 .slider-main .owl-nav .owl-prev{
     margin-right:15px;
 }
#about {
  padding: 100px 0;
  position: relative;
}
#about .about-text{
    display:flex;
    align-items:center;
    height:100%;
}
#about .container {
  max-width: 1050px;
}

#about .slogan {
  position: absolute;
  font-size: 24em;
  z-index: -1;
  
  color: #fcdc4c0f;
  top: -115px;
  width: 100%;
  text-align: center;
  font-weight:900;
}

#about .about-img {
  position: relative;
}

#about .about-img img {
  width: 500px;
  position: relative;
  z-index: 11;
}

#about .about-img::before {
  content: "";
  position: absolute;
  width: 225px;
  border: 7px solid #ffdc4d;
  height: 340px;
  left: 30%;
}

 

#about .about-text p {
  font-weight: 500;
}

.projects {
  padding: 50px 0;
}
.projects .container-fluid {
  position: relative;
}
.projects .projects-head {
  text-align: center;
  margin-bottom: 70px;
  
}
.projects .projects-head h6{
    line-height:24px;
    
}
.projects .projects-head h5{
    font-weight:900;
    font-size:38px;
}
.slick-box-big {
  padding: 20px;
}
.slick-box-big:hover .slick-wrap-img {
  transform: scale(1.1);
}
.projects .slick-wrap-img {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s !important;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s,
    -webkit-box-shadow 0.3s !important;
  border-radius: 4px;
  overflow: hidden;
} 
.projects .owl-nav{
    display:block !important;
}
.projects .owl-carousel .owl-prev {
  position: absolute;
  left: 10px;
  top: 35%;
}
.projects .owl-carousel .owl-next {
  position: absolute;
  right: 10px;
  top: 35%;
}
.projects .owl-carousel .owl-nav svg {
  fill: #bdc2c6;
  transition: all 0.3s ease;
}
.projects .owl-carousel .owl-next:hover svg {
  fill: #000;
}
.projects .owl-carousel .owl-prev:hover svg {
  fill: #000;
}
.projects .owl-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  background-color: #fafafa !important;
  border-radius: 50%;
  display: block;
}
.projects  .owl-item {
  opacity: 0.4;
}
.projects .active {
  opacity: 1;
}
.news-descr {
  margin-top: 20px;
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
  color: #000;
}
.slick-box-big:hover .slick-wrap-img::after {
  height: 100% !important;
}
.projects .slick-wrap-img img {
  width: 100%;
  height: 254px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.projects .slick-wrap-img p {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 24px;
  right: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 12px;
  color: #fff;
  margin-bottom: 0;
}

.projects .slick-wrap-img:before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #373a42;
  opacity: 0.25;
}

.projects .slick-wrap-img:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 50%;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.6)),
    to(transparent)
  );
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

#activity {
  background-color: #f4f4f4;
  padding: 120px 0 100px 0;
  position: relative;
}

 #activity .container{
     padding:0 74px;
 }

#activity .activity-left {
  font-size: 16px;
   line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: left;
  transform-origin: left;
  position: absolute;
  bottom:10px;
  z-index: 2;
  text-transform: lowercase;
  left: 45px;
}

#activity .services-item {
  position: relative;
  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;
  background: #fff;
  border-radius: 15px;
  top: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #212121;
  height: 150px;
  cursor: pointer;
  margin-bottom:20px;
}

#activity .services-item .service-back-img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  overflow: hidden;
  border-radius: 15px;
}

#activity .services-item:hover {
  color: #fff;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 28px 53px -8px #c4c4c4;
  box-shadow: 0 28px 53px -8px #c4c4c4;
}
#activity .services-item:hover .service-icon{
        filter: grayscale(100%) invert(1) brightness(2.5);
}
#activity .services-item:hover img {
  opacity: 1;
}

#activity .services-item:hover .overlay {
  display: block;
}

#activity .services-item .overlay {
  display: none;
  border-radius: 15px;
}

#activity .overlay {
  background-color: #00000091;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

#activity .services-item-wrap {
  text-align: center;
  z-index: 0;
}
#activity .services-item-wrap  img{
        filter: hue-rotate(200deg);

}
#activity .service-icon {
  width: 70px;
}

#activity .services-item h2 {
  font-size: 18px;
  margin-top:20px;
}

.news-overlay {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.first-box:hover img,
.news-box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.news-overlay:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(30, 30, 30, 0)),
    to(#1e1e1e)
  );
  background-image: linear-gradient(180deg, rgba(30, 30, 30, 0), #1e1e1e);
  opacity: 0.5;
}

#news {
  padding: 50px 0;
}
#news .row{
    margin-left:0;
    margin-right:0;
}
.newsCaption {
  height: 400px;
   margin-bottom:15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
}
.news-text{
    position:absolute;
    left:20px;
    bottom:60px;
}
.newsCaption::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.05) 45%,
    rgba(0, 0, 0, 0.75) 78%,
    rgba(0, 0, 0, 0.75) 100%
  );
  opacity: 0.6;
}

.newsCaption img {
  z-index: -1;
  width: 100%;
  height: 100%;
  
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s ease;
  will-change:transform;
}
.newsCaption::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #303e45;
  opacity: 0;
  transition: 0.4s ease;
}
#news .news-head {
  margin-bottom: 60px;
  padding-left:0;
}
.newsCaption .newsDate {
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  color: #f8f8f8;
}
.newsCaption .newsName {
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f8f8f8;
  display: none;
}
.newsCaption:hover::after {
  opacity: 0.6;
}
.newsCaption:hover img {
  transform: scale(1.05);
}
#news .owl-nav {
  pointer-events: none;
  margin-top: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

#news .owl-nav button {
  pointer-events: auto;
  /* background: transparent !important; */
  outline: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 6px 0 !important;
  transition: background-color 0.25s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  color: #fafafa;
}

.newsCaption h1 {
  z-index: 1;
  font-size: 22px;
  color: #f8f8f8;
  margin: 19px 0 17px;
  font-weight: 700;
}

#news .news-head h2 {
  font-weight: 700;
  font-size:38px;
}

#news .news-context .first-box {
  width: 670px;
  height: 500px;
}

#news .news-context .first-box img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#news .news-context .news-box {
  width: 380px;
  height: 500px;
}

#news .news-context .news-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#news .news-text-time {
  position: absolute;
  top: 20%;
  left: 20%;
  z-index: 111;
}

#news .news-text-time h5 {
  color: white;
}

#news .news-text-name {
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 350px;
  color: white;
  z-index: 111;
}

#news .all-news {
  margin-top: 50px;
  position: relative;
  width: 190px;
  padding: 10px 0;
}

#news .all-news h3 {
  color: #000;
  font-size:20px;
}

.all-news::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  display: block;
  height: 2px;
  width: calc(100% + 2px);
  color: inherit;
  background-color: currentColor;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.all-news:hover::before {
  width: 0;
  left: auto;
  right: -1px;
}

.news .no-js .owl-carousel,
.owl-carousel.owl-loaded {
  padding: 0;
}

.partners {
  padding: 50px 0;
}

.partners .container {
  max-width: 1160px;
}

.partners .partners-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partners .partners-head h1 {
  font-size: 35px;
  line-height: 1.37;
  font-weight: 900;
}

.partners .chain {
  text-align: center;
}

.partners .chain .chain__item {
  margin: 39px 10px;
  display: inline-block;
}

.partners .chain .chain__item:hover img {
  -webkit-filter: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.partners .chain .chain__item .middle {
  width: 168px;
  height: 60px;
}

.partners .chain .chain__item .middle img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.8;
  width:100%;
  padding:20px;
}

 
.section-promo {
  background-image: url("/img/1603955396_16039553961_0.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 404px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.section-promo .container  {
  position: relative;
  z-index: 2;
  max-width:1342px;
}

.section-promo::after {
  content: "";
  position: absolute;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000),
    to(rgba(10, 10, 10, 0))
  );
  background-image: linear-gradient(90deg, #000, rgba(10, 10, 10, 0));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.section-promo .promo-caption .promo-header {
  color: #fff;
  line-height: 1.56;
  font-weight: 700;
   
  font-size:36px;
}

.section-promo .promo-caption .promo-desc {
  font-size: 16px;
  color: #fff;
  padding: 24px 0;
}

.promo-caption {
  position: relative;
  z-index: 2;
   
}

.section-promo .promo-caption .promo-btn {
  background-color: #83b75b;
  padding: 16px 24px;
  font-size: 13px;
  color: #fff;
  font-weight:700;
  text-transform: uppercase;
  transition: 0.3s background-color;
  -webkit-transition: 0.3s background-color;
  -moz-transition: 0.3s background-color;
  -ms-transition: 0.3s background-color;
  -o-transition: 0.3s background-color;
}

.section-promo .promo-caption .promo-btn:hover {
  background-color: #93c36f;
}

.footer {
  padding: 50px 0;
  background-color: #fafafa;
}

.footer .footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom:0;
}
.footer .footer-social{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.call-order{
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid green;
    width: 160px;
    height: 40px;
    border-radius:5px;
    color:#000;
}
.call-order:hover{
     color:#000;
}
.footer .footer-menu ul li a {
  line-height: 14px;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}
.footer .footer-menu ul li:hover a,
.footer .footer-social ul li:hover a{
    opacity:0.5;
}
.footer .footer-social {
  padding: 30px 0;
  border-bottom: 1px solid #d6d9db;
}

.footer .footer-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

.footer .footer-social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #bdbdbd;
  margin-right: 20px;
}

.footer .footer-social ul li a svg {
  width: 10px;
  color: white;
}
.footer .footer-social ul li a .fa-facebook-f{
    width:8px;
}
.footer .footer__crbar {
  padding-top: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer .footer__crbar .footer__cr {
  float: left;
  color: #000;
  letter-spacing: 0.37px;
  line-height: 23px;
}

.footer .footer__crbar .footer__cr-text {
  line-height: 12px;
  font-size: 12px;
}

.footer .footer__crbar .footer__cr-text--reserv {
  font-weight: 200;
  font-size: 12px;
  margin-top: 10px;
}

.footer__partners {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer__partners:hover img{
    opacity:0.5;
}
.footer__partners p{
    margin-bottom:0;
    font-size:14px;
}
.footer__partner {
  display: inline-block;
  text-decoration: none;
  margin-left: 10px;
}
.slider-carusel{
    height:600px;
}
@media screen and (max-width: 1124px){
    .nav-bottom{
     display:none;   
    }
    .mobile-nav{
        display:block !important;
    }
    .projects-full .full-pro-img a {
        width:42% !important;
    }
}
@media only screen and (max-width: 768px) {
  #activity .col-md-3 {
    max-width: 100%;
    margin-bottom: 20px;
  }
  #about .slogan {
    font-size: 10em;
    top:120px;
  }
  .static-about-bg h1{
      font-size:40px !important;
  }
  .contact-inner input:focus ~ .field, .contact-inner textarea.fell ~ .field, .contact-inner textarea:focus ~ .field {
    top: 27px !important;
    
}
.static-contact {
    flex-direction: column;
}
.contact-inner input {
    height:70px;
}
  #about .about-text {
    text-align: center;
    width: 100%;
    margin-top: 30px;
  }
  #about .about-img {
    text-align: center;
  }
  .footer-menu ul{
      flex-direction:column;
  }
  .footer-menu ul li{
      padding:20px 0;
      border-bottom:1px solid #e7e7e7;
  }
  .static-about-content{
      padding:100px 0 !important;
  }
   .static-about-content img{
      width:100%;
  }
}

@media only screen and (max-width: 425px) {
    .container{
        padding:20px !important;
    }
    #about .about-img img{
        width:100%;
    }
    #about .about-img::before {
     
    width: 165px;
    
    height: 219px;
    left: 19%;
}
.slider-main .slider__desc h1{
    font-size:25px;
}
.section-promo .promo-caption .promo-header{
    font-size:20px;
}
#activity .container{
    padding: 30px 40px !important;
}
#activity .activity-left {
    left: 21px;
    bottom: 46px;
    
}
#about .slogan {
    top:90px;
}
.slider-main .slider__desc {
    left:20px;
}
.static-about-bg .container{
    padding:0;
}
.static-about-bg h1 {
    
    font-size: 37px !important;
    line-height: 22px !important;
}
}
 .static-about-bg{
  background-color: #465d00;
  padding: 150px 0;
  color: white;
   
   
  background-position: right bottom;
  background-size: 50%;
  background-repeat: no-repeat;
  position:relative;

}
.static-bg-parent{
    position:absolute;
    bottom:0;
    width:800px;
    right:0;
    filter:hue-rotate(298deg);
    opacity:0.2;
}
.static-about-bg .container{
    padding:0 74px;
}
.static-about-bg h1{
  margin-bottom: 0;
  font-size: 72px;
  line-height: 80px;

}
 .static-about-bg p{
  margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 27px;

}
.static-about .static-main{
  text-align: center;
   
}
.static-about-content{
    padding:100px;
}
.static-about-content p{
    margin-bottom:0;
}
.static-about .static-main img{
  border-radius: 10px;
}
.static-desc{
  margin-top: 30px;
}
/*projects full story*/
.projects-full{
  padding: 50px 0;
}
 .projects-full .full-pro-img{
     display:flex;
     flex-direction:row;
     flex-wrap:wrap;
      justify-content:center;
 }
.projects-full .full-pro-img a{
  width: 31% ;
  margin-left:20px;
  height:300px;
 margin-bottom:20px;
 
}
.projects-full .full-pro-img a img{
    width:100%;
     border-radius: 5px;
     height:100%;
     object-fit:cover;
    
}
.full-pro-desc{
  margin-top: 50px;
}
.full-pro-desc h1{
  margin-bottom: 30px;
}
/*news full story*/
.news-full{
  padding: 50px 0;
}
.news-full-content{
  padding: 90px;
  background-color: #f4f5f7;
  border-radius: 5px;
}
.news-full-img{
 display: flex;
    
    flex-direction: row;
    flex-wrap: wrap;
  margin-bottom: 30px;
}
.news-full-img a{
    width:31.3%;
    margin:10px;
    height:300px;
}
.news-full-img img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 5px;
}
.news-full-desc h1{
    margin-bottom:40px;
}
/*mobile*/
.mobile-nav {
  display: none;
  padding:10px 0;
  position: fixed;
  top: 20px;
  left: 0px;
  z-index: 99;
  background-color: transparent;
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.mobile-nav .logo-img img {
  width: 85px !important;
}

.mobile-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mobile-menu {
  position: fixed;
  top: 0px;
  right: 0;
  padding: 0;
  left: unset;
  height: 100vh;
  width: 80%;
  z-index: 11;
  background: linear-gradient(119deg, #000000, #101010, #222222);
  padding-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu li {
  padding: 15px 0;
  border-bottom: 1px solid #1e1e1e;
  width: 100%;
  margin-left: 30px;
}

.btn-sec {
  display:inline-block;
}

.mobile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26px 14px;
  font-size: 16px;
}
.contact-btn, .mob-lang{
    display:flex;
    justify-content:center;
    margin-left:0 !important;
}
.contact-btn a{
  background-color: #83b75b;
  padding: 16px 24px;
  font-size: 13px;
  color: #fff;
  font-weight:700;
  text-transform: uppercase;
  transition: 0.3s background-color;   
}
.mobile-item a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.mobile-item a:hover {
  color: #838a9d;
  text-decoration: none;
}

.mob-lang a {
  margin-left: 10px;
  color:#fff;
}
.mob-social{
        width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #292929;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    align-items:center;
}
.mob-lang a img {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}

.burger {
  z-index: 111;
  position: relative;
  width: 50px;
  height: 46px;
  background-color: transparent;
  border: none;
}

.burger div {
  width: 26px;
  height: 3px;
  background: #fff;
  -webkit-transform: translate3d(-13px, 0, 0);
          transform: translate3d(-13px, 0, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 8px;
     position: absolute;
}
.burger .line1{
      top:0;
          right:0;
}
.burger .line2{
    top:10px;
    right:0;
}
.burger .line3{
    top:20px;
    right:0;
}
.change .line1 {
  -webkit-transform: rotate(-45deg) translate(-10px, 7px);
          transform: rotate(-45deg) translate(-10px, 7px);
        
}

.change .line2 {
  opacity: 0;
  
}

.change .line3 {
  -webkit-transform: rotate(40deg) translate(-5px, -6px);
          transform: rotate(40deg) translate(-5px, -6px);
}

.translate {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.mobile-fixed {
  background-color: #fff;
  top: 0;
  box-shadow: 0 1px 5px rgb(0 0 0 / 14%);
}

.mobile-fixed .burger .line1,
.mobile-fixed .burger .line2,
.mobile-fixed .burger .line3 {
  background-color: #37373f;
}

.mobile-fixed .btn-sec {
  color: #fff;
}

.mobile-fixed .btn-sec img {
  -webkit-filter: unset;
          filter: unset;
}

.mobile-fixed .btn-sec span {
  color: #000;
}
.modal .close{
    background:none;
    border:none;
}
.full-services-img{
    text-align:center;
}
.full-services-img img{
    border-radius:10px;
    width:100%;
    object-fit:cover;
}
.modal-header{
    padding:0;
}
.modal-body{
    padding:1rem 3rem;
}
  .highslide-controls {
    width: 195px;
    height: 40px;
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) 0 -90px no-repeat;
    margin-right: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.highslide-controls ul {
	position: relative;
	left: 15px;
    height: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif) right -90px no-repeat;
}

.highslide-controls li {
    float: left;
    padding: 5px 0;
}

.highslide-controls a {
    background: url(../../../engine/classes/highslide/graphics/controlbar-black-border.gif);
    display: block;
    float: left;
    height: 30px;
    width: 30px;
    outline: none;
}

.highslide-controls a.disabled {
    cursor: default;
}

.highslide-controls a span {
    /* hide the text for these graphic buttons */
    display: none;
}
 
/* The CSS sprites for the controlbar */
.highslide-controls .highslide-previous a {
    background-position: 0 0;
}

.highslide-controls .highslide-previous a:hover {
    background-position: 0 -30px;
}

.highslide-controls .highslide-previous a.disabled {
    background-position: 0 -60px !important;
}

.highslide-controls .highslide-play a {
    background-position: -30px 0;
}

.highslide-controls .highslide-play a:hover {
    background-position: -30px -30px;
}

.highslide-controls .highslide-play a.disabled {
	background-position: -30px -60px !important;
}

.highslide-controls .highslide-pause a {
    background-position: -60px 0;
}

.highslide-controls .highslide-pause a:hover {
    background-position: -60px -30px;
}

.highslide-controls .highslide-next a {
    background-position: -90px 0;
}

.highslide-controls .highslide-next a:hover {
    background-position: -90px -30px;
}

.highslide-controls .highslide-next a.disabled {
    background-position: -90px -60px !important;
}

.highslide-controls .highslide-move a {
    background-position: -120px 0;
}

.highslide-controls .highslide-move a:hover {
    background-position: -120px -30px;
}

.highslide-controls .highslide-full-expand a {
    background-position: -150px 0;
}

.highslide-controls .highslide-full-expand a:hover {
    background-position: -150px -30px;
}

.highslide-controls .highslide-full-expand a.disabled {
    background-position: -150px -60px !important;
}

.highslide-controls .highslide-close a {
    background-position: -180px 0;
}

.highslide-controls .highslide-close a:hover {
    background-position: -180px -30px;
}
.static-main{
    text-align:center;
}
/*# sourceMappingURL=style.css.map */
