/* ============================================== */
/* PRELOADER */
/* ============================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:white;
  z-index: 9999999999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

.logo-icon{
  width: 100px;
  height: 100px;
  margin:-50px 0 0 -50px;
  top: 45%;
  left: 50%;
  position: absolute;
  background: url("./../../images/logo/logo_icon.svg") no-repeat 50% 50%;
}

/* ============================================== */
/* CONTENTS */
/* ============================================== */

.content,
.content-center,
.content-block{
  margin:0 auto;
  width:100%;
  position: relative;
  padding: 0;
}

.content:after,
.content-center:after,
.content-block:after{
  content: "";
  clear: both;
  display: block;
}

.content{max-width:1440px;}
.content-center{max-width:960px;}

@media screen and (max-width: 1440px){
  .content{
    max-width:1080px;
  }
}

@media screen and (max-width: 1024px){
  .content-block{max-width:768px;}
  .content{width:100%;}
}

/* ============================================== */
/* BLOCKS */
/* ============================================== */

.block{
  width: 100%;
  float: left;
  display: block;
  padding:80px 0;
}

.block:after{
  content: " " !important;
  display: table !important;
  clear: both !important;
}

@media screen and (max-width: 768px){
  .block{padding:40px 0;}
}

/* ============================================== */
/* BLOCKS-CONTENT */
/* ============================================== */

.block-content{
  max-width:1440px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding:80px 30px;
}

.block-content.central{
  padding:180px 30px;
}

.block-content:after{
  content: " " !important;
  display: table !important;
  clear: both !important;
}

@media screen and (max-width: 1440px){
  .block-content{
    max-width:1080px;
  }
}

@media screen and (max-width: 768px){
  .block-content,
  .block-content.central{padding:40px 30px;}
}

/* ============================================== */
/* FLEX-CENTER */
/* ============================================== */

.flex-center{
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ============================================== */
/* CLEAR */
/* ============================================== */

.clear{clear: both;}

/* ============================================== */
/* FOOTER */
/* ============================================== */

.footer{
  width: 100%;
  display: flex;
  padding: 0 30px;
  justify-content: center;
  background: var(--color-black);
  overflow: hidden;
  text-align: center;
}

.footer p{
  font-size: 12px;
  color: white;
}

@media screen and (max-width: 768px){
  .footer{
    display: block;
    justify-content: none;
    padding: 10px 30px;
  }

  .footer p{
    margin: 0;
  }
}

/* ============================================== */
/* BLOCK-BOX-HERO */
/* ============================================== */

.block-box-hero{
  height: 100vh;
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--color-dark);
}

.block-box-hero .wrapper{
  width: 80%;
  max-width: 1440px;
  padding: 0;
  position: absolute;
  display: flex;
  top: 52%;
  left: 50%;
  z-index: 3;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-box-hero .wrapper :is(h1,p){
  color:var(--color-white);
}

.block-box-hero.left .wrapper .text,
.block-box-hero.right .wrapper .text{
  text-align: left;
  width: 50%;
}

.block-box-hero.center .wrapper .text{
  text-align: center;
  width: 100%;
}

.block-box-hero.center .buttons,
.block-box-hero.left .buttons,
.block-box-hero.right .buttons{
  display: flex;
  width: 100%;
}

.block-box-hero.right .buttons{
  justify-content: flex-start;
}

.block-box-hero.left .buttons{
  justify-content: flex-start;
}

.block-box-hero.center .buttons{
  justify-content: center;
}

.block-box-hero.left .wrapper{justify-content: flex-start;}
.block-box-hero.right .wrapper{justify-content: flex-end;}

.block-box-hero img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px){

  .block-box-hero.left .wrapper,
  .block-box-hero.right .wrapper{justify-content: flex-start;}
  .block-box-hero.left .wrapper .text,
  .block-box-hero.right .wrapper .text{
    text-align: center;
    width: 100%;
  }
  .block-box-hero.left .buttons,
  .block-box-hero.right .buttons{
    justify-content: center;
  }

  .block-box-hero .buttons{
    margin-top: 20px;
    float: left;
    width: 100%;
  }

  .block-box-hero .wrapper{
    left: 50%;
  }

}

@media screen and (max-width: 480px){
  .block-box-hero .buttons{
    flex-wrap: wrap;
  }
  .block-box-hero .buttons a{
    margin: 5px;
    width: 100%;
    text-align: center;
  }
}

/* ============================================== */
/* BUTTONS */
/* ============================================== */

.btn-neutral,
.btn-secondary{

  display: block;
  position: relative;
  margin: 25px 5px 15px;
  text-align: center;
  color: white;
  width: auto;
  float: left;
  text-decoration: none;
  cursor: pointer;
  padding:10px 35px;
  font-size: 14px;

  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

}

/* ------- */

.btn-neutral{
  background: var(--color-neutral);
  padding:10px 30px 10px 50px;
  text-align: left;
}

.btn-neutral:hover{
  background: var(--color-neutral-hover);
}

.btn-neutral:after{
  width: 20px;
  height: 20px;
  left: 20px;
  top:13px;
  display: block;
  position: absolute;
  content: url("./../../images/icons/body/icon_phone.svg");
}

/* ------- */

.btn-secondary{
  background: var(--color-secondary);
  padding:10px 30px 10px 50px;
  text-align: left;
}

.btn-secondary:hover{
  background: var(--color-secondary-hover);
}

.btn-secondary:after{
  width: 20px;
  height: 20px;
  left: 20px;
  top:13px;
  display: block;
  position: absolute;
  content: url("./../../images/icons/body/icon_email.svg");
}

@media screen and (max-width: 480px){

  .btn-neutral:after,
  .btn-secondary:after{
    top:11px;
  }
}

/* ============================================== */
/* BG-COLORS */
/* ============================================== */

.bg-primary,
.bg-secondary,
.bg-black,
.bg-light,
.bg-silver{
  display: block;
  width: 100%;
}

.bg-primary:after,
.bg-secondary:after,
.bg-black:after,
.bg-light:after,
.bg-silver:after{
  content: "";
  clear: both;
  display: block;
}

.bg-primary{background: var(--color-primary);}
.bg-secondary{background: var(--color-secondary);}
.bg-black{background:var(--color-black);}
.bg-light{background: var(--color-light);}
.bg-silver{background: var(--color-silver);}

/* ============================================== */
/* SERVICES */
/* ============================================== */

.services{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.services > div{
  display: block;
  width: 50%;
  float: left;
}

.teaser-wrapper{
  max-width: 720px;
  width: 100%;
  display: block;
  float: left;
  position: relative;
  padding: 80px 80px 80px 150px;
}

.teaser-wrapper img{
  width: 100px;
  position: absolute;
  top:80px;
  left: 20px;
}

.services > div:first-child .teaser-wrapper{
  float: right;
}

@media screen and (max-width: 1024px){
  .services > div,
  .teaser-wrapper{
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 768px){
  .teaser-wrapper img{
    width: 40px;
    top:40px;
  }
  .teaser-wrapper{
    padding: 40px 30px 40px 70px;
  }
}

/* ============================================== */
/* BG-OVERLAY */
/* ============================================== */

.bg-overlay{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  z-index:2;
}

.bg-overlay.hard{background-color: rgba(0, 0, 0, 0.9);}
.bg-overlay.soft{background-color: rgba(0, 0, 0, 0.5);}


/* ============================================== */
/* MENU-LIST */
/* ============================================== */

.menu{
  width: 100%;
  margin: 10px 0;
  display: block;
  float: left;
}

.menu ul {
  margin: 0;
  padding: 0;
  width: 100%;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu ul li{
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  float: left;
  width: 100%;
}

.menu.list.item li{
  position: relative;
  padding: 5px 10px 5px 30px;
}

.menu.list.item li:before{
  width: 20px;
  height: 20px;
  left: 0px;
  top:8px;
  display: block;
  position: absolute;
  content: url("./../../images/icons/body/icon_check.svg");
}

@media screen and (max-width: 768px){
  .menu ul {
    display: block;
    flex-wrap: none;
    justify-content: none;
  }
}

/* ============================================== */
/* BLOCK-BOX-BG */
/* ============================================== */

.block-box-bg{
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
}

.block-box-bg.center,
.block-box-bg.center .text,
.block-box-bg.left,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  width: 100%;
}

.block-box-bg.center .text,
.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper{
  left: 50%;
}

.block-box-bg.center  .text,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  position: absolute;
  top: 50%;
}

.block-box-bg.center .text,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  z-index: 3;
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text{
  max-width: 40%;
}

.block-box-bg.left .wrapper .text{
  left: 30px;
}

.block-box-bg.right .wrapper .text{
  right:30px;
}

.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper{
  max-width: 1440px;
}

.block-box-bg.center .text,
.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper{
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text{
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-box-bg.center .text{
  max-width: 1080px;
  padding: 20px 30px;
}

.block-box-bg .wrapper .text :is(h2,h4,p){
  color:var(--color-white);
}

.block-box-bg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-box-bg.center .text{
  text-align: center;
}

.block-box-bg,
.block-box-bg .wrapper{
  height: 60vh;
}

@media screen and (max-width: 1440px){
  .block-box-bg.left .wrapper .text{left:80px;}
  .block-box-bg.right .wrapper .text{right:80px;}
}

@media screen and (max-width: 768px){

  .block-box-bg.center,
  .block-box-bg.center .wrapper,
  .block-box-bg.left,
  .block-box-bg.left .wrapper,
  .block-box-bg.right,
  .block-box-bg.right .wrapper{
    height: auto;
  }

  .block-box-bg.right .wrapper .text{
    right:none;
  }

  .block-box-bg.center .wrapper .text,
  .block-box-bg.center .wrapper,
  .block-box-bg.center img,
  .block-box-bg.left .wrapper .text,
  .block-box-bg.left .wrapper,
  .block-box-bg.left img,
  .block-box-bg.right .wrapper .text,
  .block-box-bg.right .wrapper,
  .block-box-bg.right img{
    max-width: 100%;
    width: 100%;
    position: relative;
    left: 0;
    float: left;
    display: block;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box-bg.center .wrapper .text,
  .block-box-bg.left .wrapper .text,
  .block-box-bg.right .wrapper .text{
    padding: 20px 30px;
  }

  .block-box-bg.center img,
  .block-box-bg.left img,
  .block-box-bg.right img{
    padding:0;
  }

  .block-box-bg.center .bg-overlay,
  .block-box-bg.left .bg-overlay,
  .block-box-bg.right .bg-overlay{
    display: none;
  }

  /*-- color font --*/

  .block-box-bg .wrapper .text h2{
    color:var(--color-secondary);
  }

  .block-box-bg .wrapper .text :is(h4,p){
    color:var(--color-grey);
  }

}

/* ============================================== */
/* MENU-FOOTER */
/* ============================================== */

.menu-footer{
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-footer div{
  width: 33%;
  display: block;
  float: left;
  padding: 30px;
}

.menu-footer div :is(h4,p){
  margin: 0;
  color:white;
}
.menu-footer div p{
  color:#90A2BC;
  font-size: 14px;
  line-height: 20px;
  margin: 5px 0;
}

@media screen and (max-width: 768px){
  .menu-footer div{
    width: 100%;
    padding: 10px;
  }
}

















