*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}



/* nav start */
.mobile-nav{
  display: none;
}
header {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0px;
  z-index: 999;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.hamber-btn {
    padding-right: 0 !important;
  }



.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 65px;
}
.logo p {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}



.five-point {
  display: flex;
  gap: 25px;
}
.five-point a {
  margin-bottom: 0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  color: gray;
}
.main-page {
  color: #07ABBE !important;
}



.header-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-buttons .signup-btn {
  padding: 6px 16px 6px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
  background-color: #007ab3;
  color: white;
  border: 1px solid #007bff;
}
.header-buttons .login-btn {
  padding: 6px 16px 6px;
  border-radius: 24px;
  font-size: 14px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #007bff;
}



.header-mob-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.header-mob-buttons .login-btn {
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #007bff;
  text-align: center;
  width: 50%;
}
.header-mob-buttons .signup-btn {
  padding: 8px 10px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  background-color: #007ab3;
  color: white;
  border: 1px solid #007bff;
  text-align: center;
  width: 50%;
}


.reccomended-you {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recommended-head {
  margin-bottom: 0;
}
.recommended {
  text-decoration: none;
  color: black;
  padding-left: 12px;
}
/* nav end */



.parent {
  display: flex;
  flex-direction: column;
}



/* child 4 start */
.child-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}
.child-4 img {
  width: 6%;
}
.child-4 p {
  margin-bottom: 0;
  margin-top: 10px;
  font-size: 28px;
  font-weight: 700;
  color: black;
}
/* child 4 end */



/* chil 1 start */
.child-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}
.child-1-text-1 {
    font-size: 28px;
    margin-bottom: 0 !important;
    font-weight: 700;
}
/* child 1 end */



/* child 2 start */
.child-2 {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto auto;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  gap: 15px;
  overflow: hidden;

}
.child-2 .sub-child-images {
    position: relative;
}
.child-2 .sub-child-images img {
    border-radius: 20px;
    background-color: #4a7ebb;
    width: 100%;
}
.child-2 .sub-child-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 4%;
}
.child-2 .sub-child-text p {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 0;  
}
/* child 2 end */



/* chil 3 start */
.child-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 20px;
  overflow: hidden;

}
.sub-child-3 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.child-3 .sub-child-images img {
  border-radius: 20px;
  background-color: transparent !important;
  width: 100%;
}
/* child 3 end */



/* footer start */
footer {
    background-color:#f8f8f8;
    color: black;
    padding: 20px 20px;
    width: 100%;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}
.footer-section {
    flex: 1 1 200px;
    margin: 15px;
}
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 8px 0;
    font-size: 14px;
}
.footer-section ul li a {
    text-decoration: none;
    color: gray !important;
}
.footer-section ul li a span {
    font-weight: 600;
}
.form-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-section input {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    padding: 6px;
}
.footer-section button {
    padding: 4px;
    outline: none;
    border: none;
    background-color: #f39c12;
    color: white;
    font-weight: 600;
    border-radius: 18px;
}
.main-link {
    color: black !important;
}



.copy-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}
.copy-right p {
    font-weight: 600;
    color: gray;
    margin-bottom: 0;
}
.sub-copy {
    display: flex;
    gap: 20px;
}
.sub-copy a {
    text-decoration: none;
    color: gray;
    font-size: 14px;
}
/* footer end */



@media screen and (min-width : 320px) and (max-width: 1099px) 
{
  /* navigation start */
  header{
    display: none !important;
  }
  .mobile-nav{
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: white;
    z-index: 9;
    border-bottom:  1px solid rgb(228, 228, 228);
  }
  .mob-section{
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
    width: 100%;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .offcanvas-body .five-point {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .offcanvas-body .five-point a {
    font-size: 16px;
    font-weight: 600;
  }
  .offcanvas-body .main-page {
    color: #07ABBE !important;
  }
  /* navigation end */



  .parent {
    gap: 0;
  }



  /* child 1 start */
  .child-1-text-1 {
    font-size: 20px;
  }
  /* child 1 end */



  /* child 2 start */
  .child-2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
   .sub-child-2 {
    display: flex;
  }
  .child-2 .sub-child-images img {
    width: 100%;
  }
  /* child 2 end */
  


  /* child 3 start */
  .child-3 {
    gap: 10px;
    padding: 10px;
  }
  .sub-child-3 {
    flex-direction: column;
    gap: 10px;
  }
  /* child 3 end */



  /* child 4 start */
  .child-4 {
    flex-direction: column;
    gap: 10px;
    margin-top: 75px;
  }
  .child-4 img {
    width: 20%;
  }
  .child-4 p {
    font-size: 22px;
    margin-top: 0;
    text-align: center;
  }
  /* child 4 end */

  

  /* footer start */
  .copy-right {
      flex-direction: column;
  }
  .sub-copy {
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      gap: 30px;
  }
  /* footer end */
}