:root {
  --red: #e63b2e;
  --darkblue: #0f1719;
  --lightblue: #0281e4;
  --lightgrey: #f6f6f6;
  --grey: #ededed;
  --darkgrey: #c4c4c4;
  --textgrey: #b5b5b5;
  --labelgrey: #acacac;
  --hrgrey: #d4d4d4;
}

html,
body,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

header {
  min-height: 82vh;
  width: 100%;
  background-color: darkblue;
}

.main {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}

button i{
  margin-right: .5rem;
}

button.load i::before{
  animation: fa-spin 2s infinite linear;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f110";
}

.form__message{
  text-align: center;
  margin-top: 1.5rem;
}

.form__message.success{
  color: green;
}

.form__message.error{
  color: red;
}

.captcha-gdpr{
  text-align: center;
  margin-top: 1rem;
  font-size: .7rem;
  color: var(--textgrey);
}
.article__image{
  position: relative;
}

.article__image .badge{
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #0281e4;
  padding: 5px 8px;
  background-color: #fff;
  border-radius: 5px;
}

.solution{
  background: #e9f9ff;
  padding: 2rem !important;
  margin-bottom: 4rem;
  border-radius: 5px;
}

.contact__description{
  text-align: center;
  color:#b5b5b5;
  font-size: .9rem;
  padding: 1rem;
}

.center span{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.prolog .left span{
  font-size: 2rem;
  margin-bottom: 1rem;
}

.prolog .left{
  font-size: 1.35rem;
}

.prolog .left{
  width: 45%;
}

.prolog .right{
  width: 40%;
}

.prolog .right img{
  width: 100%;
}

.prolog .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.prolog .small{
  width: 100%;
  margin-top: 2rem;
}

.prolog .small p{
  display: block;
  margin: auto;
  max-width: 800px;
  margin-bottom: .5rem;
}

.prolog.nmw .small{
  margin-top: 1rem;
}

.prolog.nmw .small p{
  max-width: 1200px;
  width: 95%;
}

@media(max-width: 700px){
  .prolog .left,
  .prolog .right{
    margin-top: 1rem;
    width: 100%;
  }

  .clrrow .row img {
    transform: none !important;
  }  

  .articles__title span[text]{
    padding-right: 20px !important;
    font-size: 2rem !important;
    flex-shrink: 1 !important;
  }

  .center span, .left span{
    font-size: 1.5rem !important;
    text-align: justify;
  }

  .clrrow{
    margin-top: 1rem !important;
  }
}

@media (max-width: 360px){
  header .hero__title .title__text{
    font-size: 2rem !important;
  }
}