.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

html {
  font-size: 10px;
}

h1 {
  font-size: 9rem;
  font-weight: 400;
  line-height: 9rem;
  font-family: "Blinker", sans-serif;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

h2 {
  font-size: 6rem;
  font-weight: 600;
  line-height: 6rem;
  font-family: "Blinker", sans-serif;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 4rem;
    line-height: 4rem;
  }
}

h3 {
  font-size: 3.2rem;
  font-weight: 400;
  font-family: "Blinker", sans-serif;
}

@media (max-width: 1024px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 4rem;
  font-weight: 600;
  font-family: "Blinker", sans-serif;
}

@media (max-width: 1024px) {
  h4 {
    font-size: 4rem;
  }
}

p,
span {
  font-family: "Blinker", sans-serif;
  font-weight: 300;
  font-size: 1.8rem;
}

a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Fjalla One", sans-seri;
}

body, html {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  scroll-behavior: smooth;
  background-color: #000;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-primary,
.btn-secondary {
  width: 194px;
  height: 41px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.btn-primary .button-value,
.btn-secondary .button-value {
  position: relative;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #000;
  font-family: "Fjalla One", sans-seri;
}

.btn-primary:hover,
.btn-secondary:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.btn-primary:active,
.btn-secondary:active {
  -webkit-transform: translateY(2px) scale(0.95);
          transform: translateY(2px) scale(0.95);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.8);
}

.btn-secondary .button-value {
  color: #fff;
}

@media (max-width: 1024px) {
  .btn-secondary,
  .btn-primary {
    width: 160px;
    height: 30px;
  }
  .btn-secondary .button-value,
  .btn-primary .button-value {
    font-size: 1.6rem;
  }
}

.navigation-component {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.navigation-component .navigation-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.navigation-component .navigation-content-container__logo-list-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation-component .navigation-content-container__logo-list-holder--logo {
  margin-right: 6rem;
}

.navigation-component .navigation-content-container__logo-list-holder--logo a {
  font-size: 5rem;
  color: #fff;
}

.navigation-component .navigation-content-container__logo-list-holder--logo a img {
  width: 150px;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu {
  z-index: 10;
  position: relative;
  margin-right: 16px;
  display: none;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  border: none;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu span {
  display: block;
  width: 80%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu span::before, .navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu span::after {
  width: 100%;
  border-radius: 5px;
  height: 3px;
  content: '';
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: .2s;
  transition: .2s;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu span::after {
  bottom: -8px;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu span::before {
  top: -8px;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger--active span {
  background-color: transparent;
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger--active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navigation-component .navigation-content-container__logo-list-holder--list .hamburger--active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navigation-component .navigation-content-container__logo-list-holder--list .list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list--item {
  margin-right: 40px;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list--item:last-child {
  margin-right: 0;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list--item a {
  color: #fff;
  font-family: "Spartan", sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  display: block;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list--item a::before {
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: '';
  left: -105%;
  position: absolute;
  -webkit-transition: .2s;
  transition: .2s;
  bottom: 0;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list--item a:hover::before {
  left: 0;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-nav {
  display: none;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social {
  width: 100%;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  bottom: 20%;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social--item {
  font-size: 24px;
  color: #fff;
  margin-right: 30px;
}

.navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social--item i {
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
}

.navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social--item:last-child {
  margin-right: 0;
}

.navigation-component .navigation-content-container__social-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation-component .navigation-content-container__social-holder a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  margin-right: 15px;
}

.navigation-component .navigation-content-container__social-holder a:last-child {
  margin-right: 0;
}

.navigation-component .navigation-content-container__social-holder a i {
  color: #fff;
  font-size: 24px;
}

@media (max-width: 982px) {
  .navigation-component .container {
    padding: 0;
  }
  .navigation-component .navigation-content-container__logo-list-holder {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .navigation-component .navigation-content-container__logo-list-holder--logo {
    margin-left: 16px;
    position: relative;
    z-index: 10;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10.5px);
    -webkit-backdrop-filter: blur(10.5px);
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 16px;
    -webkit-transform: translateX(-105%);
            transform: translateX(-105%);
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item {
    margin-bottom: 10px;
    overflow: hidden;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item a {
    display: block;
    -webkit-transform: translateX(-130%);
            transform: translateX(-130%);
    -webkit-transition: .2s;
    transition: .2s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:last-child {
    margin-bottom: 0;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:nth-child(1) a {
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:nth-child(2) a {
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:nth-child(3) a {
    -webkit-transition-delay: .4s;
            transition-delay: .4s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:nth-child(4) a {
    -webkit-transition-delay: .5s;
            transition-delay: .5s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--item:nth-child(5) a {
    -webkit-transition-delay: .6s;
            transition-delay: .6s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-nav {
    display: block;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list .mobile-social--item {
    display: block;
    overflow: hidden;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-delay: .0s;
            transition-delay: .0s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active .list--item a {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active .mobile-social--item i {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active .mobile-social--item:nth-child(1) i {
    -webkit-transition-delay: .2s;
            transition-delay: .2s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active .mobile-social--item:nth-child(2) i {
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
  }
  .navigation-component .navigation-content-container__logo-list-holder--list .list--active .mobile-social--item:nth-child(3) i {
    -webkit-transition-delay: .4s;
            transition-delay: .4s;
  }
  .navigation-component .navigation-content-container__social-holder {
    display: none;
  }
}

.dashboard-component {
  width: 100%;
  height: 100vh;
  position: relative;
  min-height: 620px;
}

.dashboard-component .dashboard-content-container {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 80px;
  min-height: 620px;
}

.dashboard-component .dashboard-content-container__heading {
  margin-bottom: 30px;
  z-index: 1;
}

.dashboard-component .dashboard-content-container__subheading {
  z-index: 1;
}

.dashboard-component .dashboard-content-container__subheading span {
  font-weight: 700;
  max-width: 336px;
  display: block;
}

.dashboard-component .dashboard-content-container__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.dashboard-component .dashboard-content-container__buttons a {
  margin-right: 30px;
}

.dashboard-component .dashboard-content-container__buttons a:last-child {
  margin-right: 0;
}

.dashboard-component .button-next {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dashboard-component .button-next span {
  font-family: "Fjalla One", sans-seri;
  font-size: 2rem;
  color: #fff;
}

.dashboard-component .button-next .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  margin-top: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.dashboard-component .button-next .arrow--body {
  height: 60px;
  width: 2px;
  background-color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

.dashboard-component .button-next .arrow--head {
  width: 12px;
  height: 14px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.dashboard-component .button-next:hover .arrow {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  margin-top: 0;
}

.dashboard-component .button-next:hover .arrow .arrow--body {
  height: 70px;
}

.dashboard-component .dashboard-background-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../../assets/home/home-1.jpg");
}

.dashboard-component .dashboard-background-img::before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: '';
  left: 0;
  top: 0;
  position: absolute;
}

.dashboard-component .dashboard-background-img::after {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(1, 0, 30, 0)));
  background: linear-gradient(360deg, #000000 0%, rgba(1, 0, 30, 0) 100%);
}

@media (max-width: 982px) {
  .dashboard-component .dashboard-content-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0px;
  }
  .dashboard-component .dashboard-content-container__heading h1 {
    line-height: 50px;
    text-align: center;
  }
  .dashboard-component .dashboard-content-container__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dashboard-component .dashboard-content-container__buttons a {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .dashboard-component .dashboard-content-container__buttons a:last-child {
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .dashboard-component .dashboard-content-container::before {
    width: 80%;
    border: 6px solid rgba(117, 117, 117, 0.6);
  }
}

.information-component {
  width: 100%;
  margin-top: 120px;
}

.information-component .information-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.information-component .information-content-container__image-container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.information-component .information-content-container__image-container--image {
  width: 420px;
  height: 100%;
  min-height: 530px;
  position: relative;
  display: block;
  background-position-x: center;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../../assets/galery/personal.jpg");
  z-index: 1;
}

.information-component .information-content-container__image-container .decoration {
  position: absolute;
  right: 30px;
  top: -30px;
  width: 420px;
  height: 100%;
  min-height: 530px;
  border: 10px solid #383838;
}

.information-component .information-content-container__content-container {
  width: 50%;
  padding: 80px 0 25px 20px;
  color: #fff;
}

.information-component .information-content-container__content-container--heading {
  z-index: 1;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}

.information-component .information-content-container__content-container--text {
  display: block;
  margin-bottom: 20px;
}

.information-component .information-content-container__content-container--text:last-child {
  margin-bottom: 0px;
}

.information-component .information-content-container__content-container--button {
  margin-top: 40px;
}

.information-component .information-additional-content-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.information-component .information-additional-content-container__content-container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  padding: 40px 0;
}

.information-component .information-additional-content-container__content-container--text {
  margin-top: 20px;
}

.information-component .information-additional-content-container__image-container {
  width: 50%;
  padding-left: 20px;
}

.information-component .information-additional-content-container__image-container--image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../../../assets/galery/personal-2.jpg");
}

.information-component .information-additional-content-container-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.information-component .information-additional-content-container-reverse .information-additional-content-container__image-container {
  padding-left: 0;
}

.information-component .information-additional-content-container-reverse .information-additional-content-container__image-container--image {
  background-image: url("../../../assets/galery/item-4.jpg");
}

.information-component .information-additional-content-container-reverse .information-additional-content-container__content-container {
  padding-left: 20px;
}

@media (max-width: 1024px) {
  .information-component {
    margin-top: 80px;
  }
  .information-component .information-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .information-component .information-content-container__image-container {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .information-component .information-content-container__image-container--image {
    width: 100%;
  }
  .information-component .information-content-container__image-container .decoration {
    width: 90%;
    height: 110%;
    top: -5%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .information-component .information-content-container__content-container {
    width: 100%;
    padding: 60px 0 30px 0;
  }
  .information-component .information-content-container__content-container--heading {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    margin-bottom: 10px;
  }
  .information-component .information-content-container__content-container--text {
    max-width: 100%;
  }
  .information-component .information-content-container__content-container--button {
    margin-top: 30px;
  }
  .information-component .information-content-container__content-container--button a {
    width: 100%;
  }
  .information-component .information-additional-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .information-component .information-additional-content-container__content-container {
    width: 100%;
    padding: 0 0 20px 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .information-component .information-additional-content-container__content-container--text {
    width: 100%;
  }
  .information-component .information-additional-content-container__image-container {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
  .information-component .information-additional-content-container__image-container--image {
    width: 100%;
    height: 200px;
  }
  .information-component .information-additional-content-container-reverse .information-additional-content-container__content-container {
    padding-left: 0px;
  }
}

.baners-component {
  width: 100%;
  margin-top: 140px;
}

.baners-component .baners-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.baners-component .baners-content-container__heading-container {
  color: #fff;
  position: absolute;
  z-index: 1;
  left: 10%;
  top: 60px;
  line-height: 5rem;
}

.baners-component .baners-content-container__baners-container {
  width: 92%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  .baners-component .baners-content-container__baners-container {
    width: 100%;
  }
}

.baners-component .baners-content-container__baners-container--baner {
  width: 100%;
  margin-right: 15px;
  height: 540px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.baners-component .baners-content-container__baners-container--baner::before {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  content: '';
  left: 0;
  position: absolute;
  top: 0;
}

.baners-component .baners-content-container__baners-container--baner:last-child {
  margin-right: 0;
}

.baners-component .baners-content-container__baners-container--baner:nth-child(1) {
  background-image: url("../../../assets/galery/img1.jpg");
}

.baners-component .baners-content-container__baners-container--baner:nth-child(2) {
  background-image: url("../../../assets/galery/img2.jpg");
}

.baners-component .baners-content-container__baners-container--baner:nth-child(3) {
  background-image: url("../../../assets/galery/img3.jpg");
}

.baners-component .baners-content-container::before {
  left: 0;
  content: '';
  width: 80px;
  background-color: #757575;
  height: 120%;
  top: -10%;
  position: absolute;
}

@media (max-width: 1024px) {
  .baners-component .baners-content-container::before {
    display: none;
  }
}

.baners-component .baners-content-container::after {
  bottom: -34px;
  width: 92%;
  right: 0;
  background-color: #fff;
  height: 22px;
  content: '';
  position: absolute;
}

@media (max-width: 1024px) {
  .baners-component .baners-content-container::after {
    display: none;
  }
}

@media (max-width: 982px) {
  .baners-component {
    margin-top: 30px;
  }
  .baners-component .baners-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .baners-component .baners-content-container__heading-container {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 30px;
    line-height: 4rem;
  }
  .baners-component .baners-content-container__baners-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .baners-component .baners-content-container__baners-container--baner {
    margin-right: 0px;
    margin-bottom: 10px;
    height: 400px;
  }
  .baners-component .baners-content-container__baners-container--baner:last-child {
    margin-bottom: 0;
  }
}

.music-component {
  width: 100%;
  margin-top: 140px;
}

.music-component .music-content-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}

.music-component .music-content-container__playlist-container {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.music-component .music-content-container__playlist-container .holder {
  width: 100%;
  height: 100%;
  background-color: #383838;
  padding: 16px;
}

.music-component .music-content-container__playlist-container--playlist {
  width: 100%;
  height: 100%;
}

.music-component .music-content-container__content-container {
  width: 50%;
  padding: 20px 0 80px 20px;
}

.music-component .music-content-container__content-container--heading {
  line-height: 5rem;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  position: relative;
}

.music-component .music-content-container__content-container--text {
  margin: 20px 0 40px 0;
}

.music-component .music-content-container__content-container--text:nth-child(1) {
  margin: 20px 0 20px 0;
}

@media (max-width: 982px) {
  .music-component {
    margin-top: 30px;
  }
  .music-component .music-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .music-component .music-content-container__playlist-container {
    width: 100%;
  }
  .music-component .music-content-container__playlist-container .holder {
    width: 100%;
    height: 500px;
  }
  .music-component .music-content-container__content-container {
    width: 100%;
    padding: 30px 0 50px 0px;
  }
  .music-component .music-content-container__content-container--heading {
    line-height: 3.6rem;
  }
  .music-component .music-content-container__content-container--heading::before {
    top: -30px;
  }
  .music-component .music-content-container__content-container--text {
    max-width: 100%;
    margin: 20px 0 30px 0;
  }
  .music-component .music-content-container__content-container--button {
    width: 100%;
  }
  .music-component .music-content-container__content-container--button a {
    width: 100%;
  }
}

.instagram-compontent {
  width: 100%;
  margin-top: 100px;
}

.instagram-compontent .instagram-content-container {
  position: relative;
}

.instagram-compontent .instagram-content-container__image-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.instagram-compontent .instagram-content-container__image-container .floor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.instagram-compontent .instagram-content-container__image-container--item, .instagram-compontent .instagram-content-container__image-container--item2 {
  width: 25%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.instagram-compontent .instagram-content-container__image-container--item:nth-child(1), .instagram-compontent .instagram-content-container__image-container--item2:nth-child(1) {
  background-image: url("../../../assets/galery/img3.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item:nth-child(2), .instagram-compontent .instagram-content-container__image-container--item2:nth-child(2) {
  background-image: url("../../../assets/galery/item-2.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item:nth-child(3), .instagram-compontent .instagram-content-container__image-container--item2:nth-child(3) {
  background-image: url("../../../assets/galery/item-3.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item:nth-child(4), .instagram-compontent .instagram-content-container__image-container--item2:nth-child(4) {
  background-image: url("../../../assets/galery/item-4.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item2:nth-child(1) {
  background-image: url("../../../assets/galery/item-5.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item2:nth-child(2) {
  background-image: url("../../../assets/galery/item-6.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item2:nth-child(3) {
  background-image: url("../../../assets/galery/img1.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item2:nth-child(4) {
  background-image: url("../../../assets/galery/item-8.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item3 {
  width: 25%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.instagram-compontent .instagram-content-container__image-container--item3:nth-child(1) {
  background-image: url("../../../assets/galery/item-9.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item3:nth-child(2) {
  background-image: url("../../../assets/galery/item-10.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item3:nth-child(3) {
  background-image: url("../../../assets/galery/item-11.jpg");
}

.instagram-compontent .instagram-content-container__image-container--item3:nth-child(4) {
  background-image: url("../../../assets/galery/item-12.jpg");
}

.instagram-compontent .instagram-content-container__link-container {
  padding: 0px 0 0px 40px;
  width: 562px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 130px;
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: .2s;
  transition: .2s;
}

.instagram-compontent .instagram-content-container__link-container--heading {
  line-height: 3rem;
  margin-bottom: 30px;
}

.instagram-compontent .instagram-content-container:hover .instagram-content-container__link-container {
  max-height: 100%;
  padding: 40px 0 40px 40px;
}

@media (max-width: 1024px) {
  .instagram-compontent {
    margin-top: 40px;
  }
  .instagram-compontent .instagram-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .instagram-compontent .instagram-content-container__image-container .floor {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .instagram-compontent .instagram-content-container__image-container--item, .instagram-compontent .instagram-content-container__image-container--item2, .instagram-compontent .instagram-content-container__image-container--item3 {
    width: 100%;
    height: 400px;
  }
  .instagram-compontent .instagram-content-container__link-container {
    position: relative;
    left: 0;
    top: 0;
    max-height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding: 15px;
    width: 100%;
  }
  .instagram-compontent .instagram-content-container:hover .instagram-content-container__link-container {
    max-height: 100%;
    padding: 15px;
  }
}

.contact-coponent {
  width: 100%;
  margin-top: 100px;
}

.contact-coponent .contact-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-coponent .contact-content-container__content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
  width: 50%;
}

.contact-coponent .contact-content-container__content-container--heading {
  line-height: 6rem;
}

.contact-coponent .contact-content-container__content-container--subheading {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
}

.contact-coponent .contact-content-container__content-container--tittle {
  margin-top: 30px;
}

.contact-coponent .contact-content-container__content-container ul {
  list-style: none;
  padding-left: 2rem;
  margin-top: 20px;
}

.contact-coponent .contact-content-container__content-container ul li {
  margin-bottom: 7px;
}

.contact-coponent .contact-content-container__content-container ul li:last-child {
  margin-bottom: 0;
}

.contact-coponent .contact-content-container__content-container ul li span {
  font-size: 2.2rem;
  font-family: "Blinker", sans-serif;
  font-weight: 300;
}

.contact-coponent .contact-content-container__content-container ul li span a {
  color: #fff;
  font-weight: 300;
  font-size: 2.2rem;
  font-family: "Blinker", sans-serif;
}

.contact-coponent .contact-content-container__content-container--social {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2rem;
}

.contact-coponent .contact-content-container__content-container--social .social-item {
  margin-right: 15px;
}

.contact-coponent .contact-content-container__content-container--social .social-item i {
  font-size: 3rem;
  color: #fff;
}

.contact-coponent .contact-content-container__content-container--social .social-item:last-child {
  margin-right: 0;
}

.contact-coponent .contact-content-container__form-container {
  width: 50%;
  padding-left: 20px;
}

.contact-coponent .contact-content-container__form-container form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #515151;
  color: #fff;
  padding: 20px;
}

.contact-coponent .contact-content-container__form-container form input,
.contact-coponent .contact-content-container__form-container form textarea {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border: none;
  border-bottom: 3px solid #fff;
  font-size: 2.2rem;
  font-family: "Blinker", sans-serif;
  color: #fff;
  margin-bottom: 25px;
}

.contact-coponent .contact-content-container__form-container form .form-heading {
  margin-bottom: 25px;
  line-height: 3rem;
}

.contact-coponent .contact-content-container__form-container form textarea {
  max-width: 100%;
  min-width: 100%;
  height: 240px;
}

.contact-coponent .contact-content-container__form-container form button {
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .contact-coponent {
    margin-top: 50px;
  }
  .contact-coponent .contact-content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact-coponent .contact-content-container__content-container {
    width: 100%;
  }
  .contact-coponent .contact-content-container__content-container ul {
    padding-left: 0;
  }
  .contact-coponent .contact-content-container__content-container--social {
    padding-left: 0;
  }
  .contact-coponent .contact-content-container__content-container--heading {
    line-height: 4rem;
  }
  .contact-coponent .contact-content-container__form-container {
    width: 100%;
    margin-top: 25px;
    padding-left: 0;
  }
  .contact-coponent .contact-content-container__form-container form {
    padding: 20px 10px;
  }
  .contact-coponent .contact-content-container__form-container form button {
    width: 100%;
  }
}

.footer-compontent {
  width: 100%;
  background-color: #757575;
  margin-top: 40px;
  padding: 15px 0;
}

.footer-compontent .footer-content-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #fff;
}

.footer-compontent .footer-content-container__logo-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-compontent .footer-content-container__logo-container--logo {
  font-size: 5rem;
  color: #fff;
}

.footer-compontent .footer-content-container__logo-container--logo img {
  width: 240px;
}

.footer-compontent .footer-content-container__copyright-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.footer-compontent .footer-content-container__copyright-container--copy {
  text-align: center;
}

.footer-compontent .footer-content-container__copyright-container--copy a {
  font-size: 1.8rem;
  color: #000;
  font-family: "Blinker", sans-serif;
}
/*# sourceMappingURL=style.css.map */