.header {
  position: relative;
  display: block;

  overflow: hidden;

  width: 100%;
  height: 800px;
}
.header::before {
  content: '';
  position: absolute;
  display: block;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  background-image: url('../img/pictures/bg-slider4.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header > .header-points-background {
  position: absolute;
  display: block;
  z-index: 13;

  pointer-events: auto;

  left: -422px;
  top: -35px;

  min-height: 870px;
  min-width: 872px;

  filter: blur(0px) grayscale(0%) brightness(100%);

  transform: rotateZ(0deg);
  transform-origin: 50% 50% 0px;

  visibility: visible;
  opacity: 1;

  background-image: url('../img/objects/dot-slider4.png');

  -webkit-animation-name: header_points_background_rotation;
  -webkit-animation-duration: 60s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: linear;
  animation-name: header_points_background_rotation;
  animation-duration: 60s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
@-webkit-keyframes header_points_background_rotation {
  from {transform: rotateZ(0deg);}
  to {transform: rotateZ(360deg);}
}
@keyframes header_points_background_rotation {
  from {transform: rotateZ(0deg);}
  to {transform: rotateZ(360deg);}
}

.header > .header-container {
  position: relative;
  display: flex;
  z-index: 50;

  align-items: center;
  justify-content: flex-end;

  margin: 0 auto;
  padding-top: 100px;

  width: 100%;
  max-width: 1200px;

  height: 100%;

  padding-left: 15px;
  padding-right: 15px;
}

.header > .header-container > .header-container-inner {
  display: flex;
  flex-direction: column;
}

.header .header-button {
  position: relative;
  display: block;

  padding: 0px 34px;

  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 4px;

  line-height: 62px;
  letter-spacing: 0px;

  text-align: center;

  font-weight: 600;
  font-size: 16px;

  color: #ffffff;
  background-color: rgba(0, 100, 235, 1);

  -webkit-box-shadow: 0 8px 16px rgba(0,0,0,.1);
  -khtml-box-shadow: 0 8px 16px rgba(0,0,0,.1);
  -moz-box-shadow: 0 8px 16px rgba(0,0,0,.1);
  -ms-box-shadow: 0 8px 16px rgba(0,0,0,.1);
  -o-box-shadow: 0 8px 16px rgba(0,0,0,.1);
  box-shadow: 0 8px 16px rgba(0,0,0,.1);

  transition: all .2s ease-out;
}
.header .header-button.no-background {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0px 49px;
}

.header .header-button i.fa {
  position: relative;

  margin-left: 15px;

  vertical-align: middle;

  line-height: 1;

  font-size: 14px;
}

.header .header-button:hover {
  background-color: #ffffff;
  color: #222;
}

.header .header-buttons-container {
  display: flex;
}

.header .header-buttons-container > .header-button:not(:first-child) {
  margin-left: 30px;
}

.header .header-title {
  position: relative;
  display: block;

  margin-bottom: 50px;

  max-width: 520px;

  text-align: left;

  line-height: 80px;
  letter-spacing: 0px;

  font-size: 70px;
  font-weight: 800;

  color: white;
}

.header .header-subtitle {
  position: relative;
  display: block;

  margin-bottom: 50px;

  text-align: left;

  line-height: 32px;
  letter-spacing: 0px;

  font-size: 20px;
  font-weight: 500;

  color: white;
}

.header.header-normal {
  height: auto;
}

.header .pagetitle {
  position: relative;
  display: block;

  padding: 210px 0 127px;

  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #222;
}
.header .pagetitle::before {
  content: '';
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(34,34,34,.45);
}

.header .pagetitle .pagetitle-inner {
  position: relative;
  display: flex;

  flex-direction: column;

  margin: 0 auto;

  width: 100%;
  max-width: 1200px;

  padding: 0 15px;
}

.header .pagetitle .pagetitle-title {
  margin: 0;
  margin-bottom: 0;

  font-size: 50px;
  font-weight: 800;

  color: #fff;
}

.header .pagetitle ul.pagetitle-breadcrumb {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.header .pagetitle ul.pagetitle-breadcrumb > li {
  display: inline-block;

  margin-right: 6px;

  font-size: 19px;
  font-weight: 700;

  color: #0064eb;
}

.header .pagetitle ul.pagetitle-breadcrumb > li:first-child::before {
  content: none;
}

.header .pagetitle ul.pagetitle-breadcrumb > li::before {
    content: ":";
    margin-right: 6px;
    color: #fff;
}

.header .pagetitle ul.pagetitle-breadcrumb > li > a {
  color: #fff;

  -webkit-transition: all .3s linear 0ms;
  -khtml-transition: all .3s linear 0ms;
  -moz-transition: all .3s linear 0ms;
  -ms-transition: all .3s linear 0ms;
  -o-transition: all .3s linear 0ms;
  transition: all .3s linear 0ms;
}

.header .pagetitle ul.pagetitle-breadcrumb > li > a:hover {
  color: #0064eb;
}





/* RESPONSIVE */

@media (max-width: 1199px) {
  .header .pagetitle {
    margin-top: 100px;
  }
}


@media (max-width: 991px) {
  .header .pagetitle {
    padding: 130px 0;
    background-attachment: inherit;
  }
}



@media (max-width: 767px) {
  .header .pagetitle {
    padding: 90px 0;
  }

  .header .header-title {
    margin-top: 30px;
    line-height: 40px;
    font-size: 35px;
  }

  .header .header-buttons-container {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .header .header-button {
    width: fit-content;
  }
  .header .header-buttons-container > .header-button:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}
