
@font-face {
  font-family: "Ionicons";
  src: url("../fonts/ionicons.eot?v=2.0.0");
  src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* ============================================== */
/* EXAMPLE */
/* ============================================== */


.bg-construction {
  top:0;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(0, 0, 0, 0);
  background-blend-mode: multiply;
  -webkit-transition: all 0.75s ease;
  transition: all 0.75s ease;
}

.bg-construction-img {
  background-image: url("./../../images/bg.png");
}


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


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


.icon {
  width:60px;
  height:68px;
  position: absolute;
  left: 50%;
  top: 50%;
  /*background-image: url("./../../images/body/icon.svg");*/
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin: -34px 0 0 -30px;
}


.loader {
    border: 5px solid #ddd; /* Light grey */
    border-top: 5px solid #686ee4; /* Color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin:0 auto;
    animation: spin 0.80s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================================================ */
/* BLOCK-IMG */
/* ============================================================================ */


.block-box-center{
  left: 50%;
  text-align: center;

  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);

  max-width: 600px;
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 50%;
  z-index: 99;
}

.block-box-center h1,
.block-box-center h2{color:#0b2133;}

/* ============================================== */
/* SOCIAL-SHARE */
/* ============================================== */


.social-share{
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin:20px 0;
  text-align: center;
}

.social-share ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.social-share li{
  padding:10px 9px;
  display: block;
  float: left;
}

.social-share li span{
  color:white;
  font-weight: bold;
  padding:10px;
  font-size: 18px;
  display: block;
  float: left;
}

.social-share li:hover{
  opacity: 0.6;
  cursor: pointer;
}

.social-share li i:before{
  margin:0;
}

.social-share li.share-fb i,
.social-share li.share-twitter i{
  padding:13px 9px;
  color:white;
  font-size: 1.5em;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin:1px;
  display: block;
  float: left;
}


.social-share li.share-fb i{background-color: #2d609b;}
.social-share li.share-twitter i{background-color: #00c3f3;}


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

  .social-share li span{
    display: none;
  }

  .social-share li i{
    height: 40px;
    width: 40px;
    padding:4px 9px;
    margin:3px;
  }

  /*.social-share .flex-center{
    display: block;
    justify-content:none;
  }*/

}

/* ============================================== */
/* FLEXBOX */
/* ============================================== */


.flex-center,
.flex-left,
.flex-right{
  width: 100%;
  display: flex;
}

.flex-center{justify-content:center;}
.flex-right{justify-content:flex-end;}
.flex-left{justify-content:flex-start;}

@media screen and (max-width: 768px){
  .flex-right,
  .flex-left{justify-content:center;}
}


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


.btn{

  display: block;
  overflow: hidden;
  margin: 30px auto;
  text-align: center;
  color: white;
  width: 280px;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
  padding:10px;
  font-weight: bold;
  font-size:14px;
  text-transform: uppercase;
  background: #ef3c2d;

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

  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;

  -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  -o-box-shadow: 0 2px 15px rgba(0,0,0,0.3);
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);

}

/* ------- */

.btn:hover{
  cursor: pointer;
  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

  background: #d52f21;

}

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

  .btn{
    width: 200px;
    float: none;
    margin:15px auto;
  }

}





