/* base classes */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-header {
  max-width: 1184px;
  width: 90%;
  margin: 0 auto;
  background-color: lightcoral;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-main-wraper {
  padding: 36.5px 0;
  background-color: lightblue;
}
.nav-ul {
  display: flex;
  column-gap: 64px;
}
.login {
  width: 105px;
  height: 49px;
}
.signup {
  width: 115px;
  height: 49px;
  background-color: blue;
  color: #fff;
  border-radius: 100px;
}
.right-block-header {
  display: flex;
}

/* icons */
.fa-facebook {
  color: blue;
  font-size: 35px;
  transition: all 2s;
}
.fa-youtube {
  color: red;
  font-size: 35px;
  margin-left: 25px;
}

.fa-facebook:hover {
  color: yellow;
}
/* .burger-bar {
  background-color: #5d50c6;
  color: #fff;
  border-radius: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
} */
.burger-bar2 {
  width: 40px;
  height: 40px;
  background-color: #5d50c6;
  border-radius: 14px;
  position: relative;
  display: none;
}
.line {
  width: 60%;
  height: 2px;
  border-radius: 15px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.line1 {
  top: 30%;
}
.line3 {
  top: 70%;
}

/* section #1 styles */
.wraper {
  max-width: 1184px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.started {
  width: 141px;
  height: 49px;
  background-color: blue;
  border-radius: 100px;
  color: #fff;
}
.demo {
  width: 181px;
  height: 56px;
  border-radius: 100px;
  border: 1px solid grey;
}
.small-wraper {
  display: flex;
}
.left-wraper {
  width: 412px;
}
.right-wraper {
  width: 772px;
}
.wraper-image {
  width: 100%;
}
.destination {
  color: #f85e9f;
}
.section-title {
  font-size: 69px;
  line-height: 120%;
}
.icon-div {
  width: 20px;
  height: 20px;
  background-color: blue;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
}

/* footer styles */
.footer-wraper {
  max-width: 1184px;
  width: 90%;
  margin: 0 auto;
  background-color: lightseagreen;
  display: flex;
}
.footer-other-blocks {
  display: flex;
  column-gap: 32px;
}
.first-footer {
  width: 560px;
  margin-right: 64px;
}
.footer-icons {
  display: flex;
  column-gap: 32px;
}
.icon-footer {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    background-color: blue;
}
/* responsive */
@media (max-width: 1024px) {
  .navigation {
    display: none;
  }
  .burger-bar2 {
    display: flex;
    order: 1;
  }
  .logo {
    order: 2;
  }
  .right-block-header {
    order: 3;
  }
  .wraper {
    flex-direction: column-reverse;
  }
  .left-wraper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .right-wraper {
    width: 100%;
  }
  /* .left-wraper {
    order: 2;
  }
  .right-wraper {
    order: 1;
  } */
  .footer-wraper {
    flex-direction: column;
  }
  .first-footer {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .right-block-header {
    display: none;
  }
  .logo {
    order: 1;
  }
  .burger-bar2 {
    order: 2;
  }
  .small-wraper {
    flex-direction: column;
  }
  .started,
  .demo,
  .small-wraper {
    width: 100%;
  }
  .section-title {
    font-size: 40px;
  }
  .footer-ul {
    display: none;
  }
  .footer-other-blocks {
    flex-direction: column;
    row-gap: 64px;
    margin-top: 64px;
  }
}
