* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
  
}

body {
    background-color: white;
    padding-bottom: 200px;  /* JUST TO GIVE MORE SCROLLING SPACE */
}

button {
  border: none;
  cursor: pointer;
  font-family: Tahoma;
}

.topDiv {
    background-color: rgb(208, 236, 224);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 900px;
    background-color: rgb(33, 57, 67);
    margin-top: 1rem;
    border-radius: 2rem;
}
.logoNameDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logoDiv {
    width: 40px;
    max-width: 200px;
    margin: .5rem 0 .5rem 1.4rem;
}

.logoDiv img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.logoNameDiv .name {
    color: white;
    font-size: .9rem;
    font-family: Tahoma, sans-serif;
}

.menuDiv .open-sidebar-btn {
    margin-right: 2rem;
    color: white;
}

/* Codes for nav bar */

#sidebar-active {
    display: none;
  }

  
#sidebar-active:checked ~ .links-container {
    right: 0;
  }

  
#sidebar-active:checked ~ #overlay {
    backgrund-color: red;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }

   
  .links-container {
   display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 200px;
    background-color: rgb(208, 236, 224);
   box-shadow: -2px 1px 5px rgba(0,0,0,0.26);
   transition: .65s ease-out;
   height: 75%;
 }

 
.close-sidebar-btn {
    position: absolute;
    left: 15px;
    top: 15px;
    color: rgb(33, 57, 67);
  }

  
nav a {
    height: 50px;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-decoration: none;
    color: rgb(33, 57, 67);
    transition: .5s ease-out;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  nav a:hover {
  background-color: rgb(33, 57, 67);
  color: rgb(208, 236, 224);
  }
  
  nav a:target {
    text-decoration: red;
  }
  
  nav a:active {
    font-size: 1.2rem;
  }
  
  
  nav .home-link {
    margin-top: 50px;
  }
  
svg {
    cursor: pointer;
}

/* CODES FOR WELCOME CARD */
.welcomeCard {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
  width: 90%; /* used this to get that aligning space at all edge */
}


 .quote {
  background-color:  rgb(33, 57, 67);
  color: rgb(208, 236, 224);
  width: 130px;
  height: 25px;
  border-radius: 1rem;
  font-size: .5rem;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-bottom: 1rem;
  cursor: pointer;
}
/* 
 .quote p {

} */

.shortIntro {
  margin: 1rem 0;
  font-size: .8rem;
  max-width: 400px;
  font-weight: 100;
  font-family: sans-serif;
}

.bookASessionBtn, .aboutUsBtn {
  padding: .4rem .8rem;
  border-radius: 1rem;
}

.bookASessionBtn {
  background-color:  rgb(33, 57, 67);
  color: rgb(208, 236, 224);
  margin-right: 1rem;
}

.aboutUsBtn {
  background-color: transparent;
  border: 1px solid rgb(33, 57, 67);
}

.welcomeImgDiv {
  width: 300px;
  height: 300px;
  text-align: center;
  position: relative;
}

.welcomeImgDiv, .welcomeImgDiv img {
  border-top-right-radius: 150px;
  border-top-left-radius: 150px;
}

.welcomeImgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.therapistCard, .clientCard {
  position: absolute;
  background-color: white;
  color: rgb(33, 57, 67);
  font-size: .6rem;
  padding: .4rem;
  border-radius: .4rem;
}

.therapistCard {
  top: 14px;
left: -5px;
}

.clientCard {
  bottom: 15px;
right: -15px;
}

.clientCard .num, .therapistCard .num {
  font-weight: bold;
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.social-links {
  position: absolute;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transition: all .5s ease-out;
  color: rgb(33, 57, 67);
  font-size: 1.2rem;
}

.social-links i:hover {
color: black;
font-size: 1.3rem;
transition: all .1s ease-out;
}

/* Middle Div CSS */

.middleOneDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  margin: 2.5rem 2rem;
  /* background-color: pink; */
}

.therapyTypes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* background-color: yellow; */
  gap: 1rem;
  justify-content: space-around;
}

.therapyTypes .pic {
  /* background-color: red; */
  max-width: 450px;
  height: 200px;
  border-radius: 1rem;
  position: relative;
}

.therapyTypes .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  
}

.therapyTypes p {
  background-color:  rgb(33, 57, 67);
  color: rgb(208, 236, 224);
  width: 90px;
  height: 20px;
  border-radius: 1rem;
  font-size: .5rem;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  bottom: 30px;
  left: 12px;
}

.therapyTypes h3 {
position: absolute;
  bottom: 10px;
  left: 8px;
  color: white;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}

.aboutUs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* background-color: blue; */
  gap: 2rem;
}

.crew {
  max-width: 545px;
  /* background-color: red; */
  border-radius: 1rem;
  position: relative;
  height: 100%;
}

.crew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.timeDiv {
  position: absolute;
  background-color: white;
  color: black;
  bottom: 26px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-family: Arial, Helvetica, sans-serif;
  padding: .8rem .5rem;
  border-radius: 1rem;
}

.timeDiv i {
  font-size: 1.3rem;
}

.timeDiv .timeText {
font-weight: bold;
display: flex;
flex-direction: column;
gap: .2rem;
  font-size: .87rem;
}

.timeDiv .timeText .days {
  font-weight: 300;
  font-size: .6rem;
}

.aboutUsText {
  max-width: 545px;
  /* background-color: yellow; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutUsText h2 {
  margin-bottom: 1.1rem;
}

.aboutUsText .shortIntro2 {
  margin: 1rem 0;
  font-size: .8rem;
  font-weight: 100;
  font-family: sans-serif;
}

.reviewAndTherapists {
  margin-top: 1rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.reviewAndTherapists .reviewAndBtn {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: .5rem;
}

.reviewAndBtn p {
  font-size: .8rem;
  display: flex;
  align-items: top;
  justify-content: center;
  gap: .3rem;
}

.reviewAndBtn p span {
  font-size: 2rem;
  /* font-weight: bold; */
  font-family: 'Times New Roman', Times, serif;
}

.reviewAndBtn button {
  margin-top: 1rem;
}
/* 
.experiencedTherapist {
  
} */

.experiencedTherapist p {
  font-size: .8rem;
}

/* // Write codes that will suit larger phones. */

@media screen and (min-width: 700px) {
    /* body {
        display: none;
    } */

    /* Nav For Big Screen */
  .links-container {
    width: 400px;
    height: 80%;
 }

 
nav a {
    height: 50px;
    padding: 0 20px;
    margin: .5rem 0;
    font-size: 1.4rem;
    font-weight: 100;
  }

    .welcomeCard {
  
  flex-direction: row;
}

/* Middle Div CSS */

.therapyTypes {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 90%;
}

.aboutUs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}


} 