/* ****************************** */
/* FOR ALL BODY */
/* ****************************** */
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

.main-container {
  width: 100%;
  min-height: 100vh;
  font-size: 16px;
  background: black;
  color: whitesmoke;
  overflow: hidden;
  position: relative;
}
/* ****************************** */
/* HEADER AND NAVIGATION BAR */
/* ****************************** */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed;
  z-index: 999; */
  padding: 20px 200px;
  width: 100%;
}

.left-header i {
  font-size: 1.9em;
  color: whitesmoke;
  /* transform: scale(1.2); */
}
.right-header a {
  margin-right: 20px;
  text-decoration: none;
  color: whitesmoke;
}
.right-header a:hover,
.left-header i:hover {
  color: gray;
}

/* ****************************** */
/*SECTION STYLING*/
/* ****************************** */

section {
  padding: 80px 180px;
  position: relative;
}
.header-talk h2 {
  letter-spacing: 1px;
  font-weight: 600;
}

.style-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.btn {
  transition: 0.7s ease;
  border-radius: 20px;
}
.btn:hover {
  transform: scale(1.1);
}

.image-style img {
  width: 180px;
}

/* ****************************** */
/*BOTTOM IPHONES*/
/* ****************************** */

.icons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.icons img {
  width: 45px;
  margin-right: 2px;
  transition: 0.6s ease;
}
.icons img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
/* ****************************** */
/*RESPONSIVE DESIGNS*/
/* ****************************** */

@media (max-width: 992px) {
  header {
    padding: 20px 100px;
  }
  section {
    padding: 80px 100px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 20px 0px;
    font-size: 1em;
    width: 80%;
    margin: auto;
  }
  .right-header {
    margin-left: 30px;
  }
  nav {
    margin-left: 20px;
  }
  section {
    padding: 60px 90px;
  }
}
@media (max-width: 576px) {
  header {
    padding: 20px 0px;
    font-size: 0.9em;
  }
  section {
    padding: 60px 60px;
  }
  .right-header a {
    margin-right: 5px;
  }
  .style-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .btn {
    margin-left: 30%;
    margin-bottom: 20px;
  }
  .icons img {
    width: 30px;
  }
}
@media (max-width: 388px) {
  header {
    font-size: 0.8em;
  }
  .right-header a {
    margin-right: 3px;
  }
  .icons img {
    width: 25px;
  }
  .icons {
    margin-top: 20px;
  }
}
