@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;900&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
}
header {
  background-color: #faf8f2;
  padding-top: 0.5rem;
}
nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  align-items: center;
}
header nav ul {
  display: none;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 2rem 0 1.5rem 0;
}
button {
  width: 100%;
  border: none;
  margin-bottom: 1.5rem;
}
button a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 15px 0;
  background-color: #1da2f1;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}
button a:hover {
  background-color: #1da3f1c4;
}
button span {
  padding-left: 10px;
}
br {
  display: none;
}
.logo {
  font-size: 18px;
  font-weight: 700;
}
.logo a {
  text-decoration: none;
  color: #3080f5;
  font-family: inherit;
  font-style: italic;
}
.hero_container {
  display: flex;
  flex-direction: column;
  background-color: #faf8f2;
  padding: 1rem 1rem 0 1rem;
}
.hero_img img {
  width: 100%;
}
.hero_container h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 1rem 0;
}
.hero_container p {
  color: rgb(98, 96, 96);
  line-height: 1.7rem;
  font-size: 17px;
  font-weight: 300;
  padding-bottom: 1rem;
}

.hero_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.learn_more a {
  text-decoration: none;
  color: #5592a9;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 1rem;
  display: block;
}
.hero_images {
  display: flex;
  position: relative;
  margin: 1rem 0;
}
.hero_images img {
  margin-left: -1.3rem;
}
.hero_images img:first-child {
  margin-left: 0;
}
#detail_text span {
  color: #5592a9;
  font-weight: 600;
}
.features_container {
  margin: 1rem;
}
.features_container h5 {
  font-weight: 700;
  padding: 0.5rem 0 1rem 0;
}
.features_item {
  border: 1px solid #c4c4c4;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 1.3rem;
}
.features_item p {
  color: rgb(98, 96, 96);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3rem;
}
.features_item span {
  font-size: 25px;
}
.review_container {
  padding: 1rem;
  margin-top: 4rem;
  background-color: #d9f5f5;
}
.review_item {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 1rem;
}
.tweet_details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tweet_details-col1 {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.tweet_details-col1 img {
  width: 3.7rem;
}
.tweet_details-col1 span {
  font-weight: 300;
  font-size: 13px;
  cursor: pointer;
}
.tweet_details-col1 span:hover {
  color: rgb(153, 148, 148);
}

.tweet_details-col1 div {
  padding-left: 5px;
}
.tweet_details-col1 p {
  font-weight: 600;
  line-height: 1rem;
}
.tweet_content {
  font-weight: 300;
  line-height: 1.7rem;
  color: rgb(98, 96, 96);
  margin-bottom: 1rem;
}
.tweet_sub-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 300;
  color: rgb(98, 96, 96);
}
.like_container {
  display: flex;
  align-items: center;
}
.like_container svg {
  cursor: pointer;
}
.like_container span {
  padding-left: 5px;
}
.pricing_container {
  margin: 1rem;
}
.pricing_details {
  text-align: center;
}
.pricing_details h2 {
  padding-top: 4rem;
  padding-bottom: 0.3rem;
}
.pricing_details p {
  font-weight: 300;
  line-height: 1.5rem;
  color: rgb(98, 96, 96);
  padding-bottom: 2rem;
}
.pricing_item {
  border: 1px solid #ffad23;
  background-color: #faf8f2;
  padding: 20px;
  border-radius: 10px;
}
.pricing_item-price {
  border-bottom: 1px solid rgb(153, 148, 148);
  padding-bottom: 10px;
}
.pricing_item-price p {
  font-size: 23px;
  font-weight: 300;
  color: rgb(98, 96, 96);
  padding-bottom: 10px;
}
.pricing_item-price span {
  font-size: 50px;
  font-weight: 700;
  color: black;
  line-height: 2.6rem;
}
.pricing_info {
  border-bottom: 1px solid rgb(153, 148, 148);
  padding: 10px 0;
}
.pricing_info-item {
  display: flex;
  padding: 10px 0;
}
.pricing_info-item p {
  padding-left: 10px;
  font-weight: 300;
  color: rgb(98, 96, 96);
}
.pricing_item button {
  margin-top: 1.5rem;
}

/******** Footer section ******/
footer {
  background-color: #d9f5f5;
  padding: 1rem;
}
.sub_footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 300;
}

/*######## media query section ########*/
@media only screen and (min-width: 768px) {
  /***** Navigation section ******/
  .menu {
    display: none;
  }
  nav {
    padding-left: 5%;
    padding-right: 5%;
  }
  header nav ul {
    display: block;
  }
  nav ul li {
    display: inline-block;
    margin-right: 20px;
    font-weight: 300;
    cursor: pointer;
  }
  nav button {
    width: 13rem;
    margin: 0;
  }
  nav ul li:hover {
    color: #c4c4c4;
  }

  /**** Hero section *******/
  .hero_container {
    padding-left: 5%;
    padding-right: 5%;
  }
  .hero_details h1 {
    margin-top: 2rem;
    font-size: 3rem;
    padding-right: 10rem;
    line-height: 3.5rem;
    font-weight: 600;
  }
  .hero_links {
    flex-direction: row;
    justify-content: left;
  }
  .hero_links button {
    width: 13rem;
    margin-right: 15px;
  }
  .hero_links .learn_more a {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: none;
  }
  .hero_images {
    margin: 0.5rem 0;
  }
  .hero_images img {
    width: 2.5rem;
  }
  #detail_text {
    padding-right: 14rem;
    padding-bottom: 2rem;
  }

  /*** Features section ******/
  .features_container {
    padding-right: 2rem;
    padding-left: 2rem;
  }

  /***** Review section ******/
  .review_container {
    padding-right: 5%;
    padding-left: 5%;
    padding-bottom: 5rem;
  }
  .review_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }
  .review_item {
    align-self: flex-start;
  }
  .review_item:last-child {
    display: none;
  }
  /***** Pricing section ******/
  .pricing_container {
    margin-bottom: 5rem;
  }
  .pricing_item {
    width: 30rem;
    margin: auto;
    padding: 2rem;
  }
  /***** Footer section ******/
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
  }
  .sub_footer {
    padding: 0;
    width: 16rem;
    align-items: center;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  /***** Navigation section ******/

  nav {
    padding-left: 10%;
    padding-right: 10%;
  }
  /**** Hero section *******/
  .hero_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 3rem;
  }
  .hero_img {
    grid-column: 2;
  }
  .hero_details {
    grid-column: 1;
    grid-row: 1;
  }
  .hero_details h1 {
    font-size: 2.4rem;
    padding-right: 0;
    line-height: 3rem;
  }
  .hero_details p {
    font-size: 0.9rem;
  }
  .hero_img {
    max-width: 23rem;
    justify-self: flex-end;
  }
  #detail_text {
    padding-right: 1rem;
  }
  /*** Features section ******/
  .features_container {
    padding-right: 10%;
    padding-left: 10%;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }
  .features_container h2 br {
    display: block;
  }
  /***** Review section ******/
  .review_container {
    padding-right: 10%;
    padding-left: 10%;
  }
  .review_item:last-child {
    display: block;
  }
  .review_items {
    grid-template-columns: repeat(3, 1fr);
  }
  footer {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media only screen and (min-width: 1440px) {
  br {
    display: block;
  }
  nav {
    padding-left: 15%;
    padding-right: 15%;
  }
  .hero_container {
    padding-left: 15%;
    padding-right: 15%;
  }
  .hero_img {
    max-width: 90%;
  }
  .features_container {
    padding-right: 15%;
    padding-left: 15%;
  }
  .review_container {
    padding-right: 15%;
    padding-left: 15%;
  }
  footer {
    padding-left: 15%;
    padding-right: 15%;
  }
}
