 * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}



/* nav start */
  header {
  width: 100%;
  background-color: white;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0px;
  z-index: 999;
}
@media screen and (min-width:320px) and (max-width:768px){
  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);
  }
  .hamber-btn {
    padding-right: 0 !important;
  }
  .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;
  }
}
.mobile-nav{
  display: none;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
  

.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 */



/* child start */
.child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  /* padding: 40px; */
  width: 100%;
}

.curve {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d6efd;
  width: 100%;
  padding: 80px;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;

}
.heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
}
.head {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  color: white;
}
.date {
  margin-bottom: 0;
  color: white;
  font-weight: 600;
}

.sub-child {
  display: flex;
  flex-direction: column;
  width: 80%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 25px;
  border-radius: 15px;
  margin-top: 55px;
  margin-bottom: 55px;
  overflow-y: auto;
  height: 70vh;
}

.starting {
  color: #303030;
  font-size: 16px;
}
.first {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.first p {
  margin-bottom: 0;
}
.one {
  font-size: 20px;
  font-weight: 600;
}
.two {
  color: #303030;
  padding-left: 22px;
  padding-top: 6px;
}

.condac {
  font-weight: 500;
  font-size: 14px;
}
ul {
  margin-top: 15px !important;
}
li {
  list-style: none;
}


.main-page {
  color: black !important;
  font-weight: 700;
}
/* child 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) 
{

  .child {
    padding: 0px;
    margin-top: 65px;
  }
  .curve {
    padding: 38px;
  }
  .heading {
    width:100%;
    padding: 10px;
  }
  .head {
    font-size: 24px;
    text-align: center;
  }
  .date {
    font-size: 12px;
    text-align: center;
  }

  .starting {
    font-size: 15px;
  }
  .sub-child {
    padding: 20px;
    width: 95%;
    height: unset;
    overflow-y: unset;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .first {
    margin-top: 20px;
  }
  .one {
    font-size: 18px;
  }
  .two {
    font-size: 14px;
  }
  ul {
    padding-left: 20px !important;
    margin-bottom: 0 !important;
  }
  .condac {
    font-size: 14px !important;
  }

    

  /* footer */
  .copy-right {
      flex-direction: column;
  }
  .sub-copy {
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-top: 20px;
      gap: 30px;
  }

}