* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}



.parent {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    justify-content: space-between;
}

.footer-section ul li {
    margin: 0 0;
    font-size: 14px;
  }


/* child 1 start */
.child-1 { 
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 80px;
    align-items: start;
    margin-bottom: 20px;
}
.child-1 p {
    margin-bottom: 0;
}


.child-text {
    font-size: 38px;
    font-weight: 600;
}

/* child 1 end */



/* child 2 start */
.child-2 {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-around;
    gap: 10px;
    width: 100%;
}
.child-2 p {
    margin-bottom: 0;
}

.sub-child-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 500px;
    border: 1PX solid rgba(225,225, 225, 1);
    border-radius: 8px;
    padding: 10px;
}
.sub-child-2 img {
    width: 75px;
    height: 75px;
}
.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.heading {
    font-size: 18px;
    font-weight: 600;
}
.sub-heading {
    font-size: 14px;
    color: gray;
}
.button-time {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
    /* margin-top: 10px; */
}
.start-now {
    border: none;
    outline: none;
    background-color: #f39c12;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    padding: 6px;
}
.time {
    font-size: 14px;
    color: gray;
}
/* child 2 end */



@media screen and (min-width : 320px) and (max-width : 768px) 
{

  .parent {
    padding-left: 28px;
    padding-right: 28px;
  }
    .child-1 {
        padding-left: 0;
        margin-bottom: 10px;
        align-items: center;
    }
    .child-text {
        font-size: 24px;
    }

    .child-2 {
        grid-template-columns: auto;
        justify-content: unset;
    }
    .sub-child-2 {
        /* flex-direction: column; */
        align-items: center;
        width: 100%;
    }
    .sub-child-2 img {
        width: 75px;
        height: 75px;
    }
    .heading {
        font-size: 16px;
    }
    .sub-heading {
        font-size: 14px;
    }
    .button-time {
      margin-top: 10px;
      align-items: start;
    }
}
