* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  background-color: #08121b;
  height: 500px;
  position: relative;
  overflow: hidden;
}

header .header-wrapper {
  height: 100%;
  width: 100%;
}

header .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -70%);
  z-index: 2;
  max-width: 700px;
}

header .backgound {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -120px;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 880px) {
  header {
    height: 400px;
  }

  header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: unset;
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 640px) {
  header {
    height: 300px;
  }

  header .backgound {
    right: -80px;
  }
}

@media screen and (max-width: 450px) {
  header {
    height: 200px;
  }
}

main {
  background-color: #fafafa;
  overflow: hidden;
}

main .main-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  padding: 70px 0;
}

main .main-wrapper .cards-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main .main-wrapper .cards-wrapper .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  max-width: 210px;
  text-align: center;
}

main .main-wrapper .cards-wrapper .card .icon {
  width: 150px;
}

main .main-wrapper .cards-wrapper .card .title {
  font-weight: 600;
  font-size: 27px;
  margin: 10px 0 20px 0;
}

main .main-wrapper .cards-wrapper .card .info {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width: 660px) {
  main .main-wrapper {
    max-width: 220px;
    margin: 0 auto;
  }

  main .main-wrapper .cards-wrapper .card {
    max-width: 220px;
  }

  main .main-wrapper .cards-wrapper {
    align-items: flex-end;
  }

  main .main-wrapper .cards-wrapper .card .icon {
    transition: all .5s linear;
  }
  
  /* main .main-wrapper .cards-wrapper .card .info {
    transition: all .5s linear;
  } */

  main .main-wrapper .cards-wrapper .card {
    height: 320px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .icon {
    width: 110px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .title {
    font-size: 23px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .info {
    font-size: 12px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) {
    opacity: .5;
  }
}

@media screen and (max-width: 450px) {
  main .main-wrapper {
    max-width: 170px;
  }

  main .main-wrapper .cards-wrapper .card {
    max-width: 170px;
  }

  main .main-wrapper .cards-wrapper .card {
    height: 320px;
  }

  main .main-wrapper .cards-wrapper .card .icon {
    width: 150px;
  }

  main .main-wrapper .cards-wrapper .card .title {
    font-size: 20px;
  }

  main .main-wrapper .cards-wrapper .card .info {
    font-size: 12px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .icon {
    width: 100px
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .title {
    font-size: 15px;
  }

  main .main-wrapper .cards-wrapper .card:not(.swiper-slide-active) .info {
    font-size: 10px;
  }
}

footer {
  height: 530px;
  background-color: #0f161e;
  overflow: hidden;
}

footer .footer-wrapper-background {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
}

footer .footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  color: #c5cfd6;
  font-family: 'Open Sans', sans-serif;
}

footer .footer-wrapper .common-side {
  max-width: 450px;
  margin: 70px 20px 0 20px;
}

footer .footer-wrapper .common-side .info-wrapper{
  font-size: 18px;
}

footer .footer-wrapper .left-side .info-wrapper .info {
  line-height: 1.8;
}

footer .footer-wrapper .left-side .title {
  color: #fff5df;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

footer .footer-wrapper .right-side span {
  color: #fff5df;
}

footer .footer-wrapper .right-side .info-wrapper .info {
  margin-bottom: 20px;
}

@media screen and (max-width: 940px) {
  footer .footer-wrapper .common-side .info-wrapper{
    font-size: 16px;
  }

  footer .footer-wrapper .common-side {
    max-width: 450px;
    margin: 70px 10px 0 10px;
  }
}

@media screen and (max-width: 700px) {
  footer .footer-wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }

  footer .footer-wrapper .common-side {
    max-width: 450px;
    margin: 20px 50px 0 50px;
  }
}

@media screen and (max-width: 440px) {
  footer .footer-wrapper .common-side {
    max-width: 450px;
    margin: 40px 20px 0 20px;
  }
}

@media screen and (max-width: 375px) {
  footer .footer-wrapper .common-side .info-wrapper{
    font-size: 14px;
  }

  footer .footer-wrapper .common-side {
    max-width: 450px;
    margin: 40px 15px 0 15px;
  }
}