.bf {
  /* border: 5px solid red; */
  background: #000 url('bg-main.jpg') no-repeat;
  min-height: 100vh;
  line-height: normal;
}
  .bf * {
    color: #fff;
  }
  .bf .container {
    max-width: 1170px;
  }
.color-brown1 {
  color: #b2997e;
}

h2 {
  font-family: 'MontserratBold';
  font-size: 30px;
}
@media (min-width: 992px) {
  h2 {
    font-size: 40px;
  }
}

.fs-14 {font-size: 14px}
.fs-20 {font-size: 20px}
.fs-24 {font-size: 24px}
.fs-30 {font-size: 30px}
.fs-40 {font-size: 40px}
.fs-55 {font-size: 55px}

.color-blue {color: #0C5EFF}

.kviz {
  /* border: 5px solid red; */
  /* padding: 30px; */
  display: none;
}
  .kviz--show {
    display: block;
  }
  .kviz-content {
    padding: 30px;
  }
  .kviz--begin {
    background: #8604D7 url('kviz-bg-begin.jpg') no-repeat;
  }
  .kviz--steps {
    background: #1b2354 url('kviz-bg-steps.jpg') top left/cover no-repeat;
  }
    .kviz--steps .row {
      min-height: 390px;
    }
    .kviz-lines {
      height: 8px;
      display: flex;
      justify-content: space-between;
    }
      .kviz-line {
        /* box-shadow: 0px 0px 0px 1px red; */
        background-color: #4861A3;
        flex: 1 1 auto;
      }
        .kviz-line:not(:last-child) {
          margin-right: 5px;
        }
        .kviz-line--active {
          background-color: #fff;
        }
    .kviz-btn-next {
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      opacity: 0.3;
      cursor: default;
      border-radius: 30px;
      text-transform: uppercase;
      font-family: 'MontserratBold';
      padding: 15px 50px;
      border: 1px solid #fff;
      background: transparent;
      font-size: 14px;
    }    
      .kviz-btn-next.kviz-btn-next--ready {
        opacity: 1;
        cursor: pointer;
      }


  .kviz-step {
    display: none;
  }
    .kviz-step-show {
      display: block;
    }
  .kviz-ans {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 2px 0 2px 26px;
    background: url('checkbox-empty.svg') left center no-repeat;
  }  
  .kviz-ans:not(.kviz-ans--selected):hover {
    opacity: 0.8;
  }
  .kviz-ans--selected {
    background-image: url('checkbox-checked.svg');
  }
  .kviz-result {
    /* border: 3px solid red; */
    /* padding: 45px 400px 30px 60px; */
    margin-top: 20px;
    min-height: 430px;
    background: url('rc-1.jpg') left bottom/cover no-repeat;
    /* box-shadow: 0px 0px 0px 1px red; */
    font-size: 14px;
    padding: 20px;
  }

  .kviz-share-btn {
    display: inline-block;
    border: 1px solid #FFFFFF;
    border-radius: 30px;
    padding: 10px 30px;
    font-family: 'MontserratBold';
    font-size: 16px;
    cursor: pointer;
  }
    .kviz-share-btn:hover {
      color: #fff;
      text-decoration: none;
      opacity: 0.8;
    }
  .kviz-share-list i {
    font-size: 30px;
  }  

.kviz-loading {
  position: relative;
}
.kviz-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -13px;
  left: 50%;
  margin-left: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0.3rem solid #fff;
  border-top-color: #0091d3;
  animation: 0.4s spin infinite linear;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


@media (min-width: 992px) {
  .kviz {
    /* padding: 50px 50px 50px 70px; */
  }
    .kviz-content {
      padding: 50px 50px 50px 70px;
    }
  .kviz-result {
    margin-top: 100px;
    padding: 45px 400px 30px 60px;
    font-size: 16px;
    background: url('rc-1.jpg') right bottom no-repeat;
  }  
}  

.cases {
  background: #171717 url('bg-cases.jpg') top left no-repeat;
  padding: 50px 0;
}
  .button-borderblue {
    border: 2px solid #E28800;
    border-radius: 30px;
    padding: 0 40px;
  }
  .button-borderblue:hover {
    background-color: #E28800;
  }
@media (min-width: 992px) {
  .cases {
    padding: 100px 0 150px 0;
  }
}


.cr-whymg {
  background-color: #3C0146;
}
  .cr-whymg .ff-meb {
    font-family: 'MontserratBold';
  }

.cr-sert {
  background: url('bg-sert.jpg') top center no-repeat;
}

.cr-form {
  padding: 35px 0;
}
  .cr-form--1 {
    background: url('bg-form-1.jpg') top center no-repeat;
  }
  .cr-form--2 {
    background: url('bg-form-2.png') top center no-repeat;
  }
  .cr-form-field {
    color: #000;
  }
  .cr-form-button {
    background-color: #E28800;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'MontserratBold';
    font-size: 16px;
  }
  .cr-form-button:hover {
    background-color: #b17213;
  }

.examples {
  position: relative;
  padding: 0 55px;
}   
  .examples::after {
    content: "";
    position: absolute;
    /* bottom: 0; */
    top: 280px;
    left: 0;
    right: 0;
    /* top: 200px; */
    /* height: 400px; */
    height: 480px;
    background-color: #811E30;
    border-radius: 15px;
  }
  .examples img {
    width: auto !important;
  }
  .examples .owl-dots {
    margin-top: 60px !important;
  }
  .examples .owl-dot span {
    width: 30px !important;
    height: 3px !important;
    border-radius: 0 !important;
    margin: 0 3px !important;
  }
  .examples-person {
    /* box-shadow: 0px 0px 0px 1px green; */
    flex: 0 1 200px;
    margin: 0 5px;
  }

  .examples .owl-nav {
    display: none;
  }
  .examples .owl-prev,
  .examples .owl-next {
    position: absolute;
    /* border: 1px solid green; */
    /* background: #2D3237 !important; */
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    top: 400px;
    margin: 0 !important;
  }
  .examples .owl-prev {
    left: -75px;
    background: #2D3237 url('/wp-content/themes/mediaguru/custom/resources/images/context_reklama/arrow-white-left.png') center no-repeat !important;
  }
  .examples .owl-next {
    right: -75px;
    background: #2D3237 url('/wp-content/themes/mediaguru/custom/resources/images/context_reklama/arrow-white-right.png') center no-repeat !important;
  }
  .examples .owl-nav span {
    display: none;
  }
@media (min-width: 992px) {
  .examples .owl-nav {
    display: block;
  }
}
 

.preim {
  /* box-shadow: 0px 0px 0px 1px red; */
}
  .preim-dots {
    padding: 8px 7px 0 7px;
    border-radius: 20px;
    background-color: #2d2d2d;
  }
    .preim-dot {
      cursor: pointer;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #514a43;
      margin-bottom: 10px;
      transition: all 0.5s;
    }
      .preim-dot--active {
        background-color: #a48e75;
      }
  .preim-slides {
    position: relative;
    min-height: 200px;
    flex: 1;
    display: flex;
    align-items: center; 
  }
    .preim-slide {
      position: absolute;
      opacity: 0;
      transition: all 0.5s;
      /* box-shadow: 0px 0px 0px 1px green; */
      font-size: 30px;
      color: #b2997e;
    }
      .preim-slide--active {
        opacity: 1;
      }
@media (min-width: 992px) {
  .preim-slide {
    font-size: 38px;
  }
}