* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #000 #d8c7b3;
}

section {
  position: relative;
}
iframe {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #000 #d8c7b3;
}
/* header css--------------------------------------- */
header {
  /* height: 100vh; */
  background: #d8c7b3;
  box-shadow: 0px 1px 4px #000;
  z-index: 10;
  position: relative;
  & > nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    & > a {
      color: #000;
      text-decoration: none;
      font-size: 1rem;
      margin: 10px;
      transition: transform 300ms;
      &:hover {
        transform: scale(1.1);
      }
    }
    & > a:nth-child(n + 3) {
      padding: 5px 10px;
      font-weight: 700;
      border-width: 0 0 0px 0;
      border-style: solid;
      border-color: #000;
      &:hover {
        border-width: 0 0 2px 0;
      }
    }
    & > a:nth-child(1) {
      width: 5%;
      & > img {
        width: 80%;
        text-align: center;
      }
    }
    & > a:nth-child(2) {
      width: 5%;
      & > img {
        width: 80%;
        text-align: center;
      }
    }
  }
  & > .main-header-div {
    display: flex;
    align-items: center;
    width: 70%;
    margin: auto;
    & > div:nth-child(1) {
      flex: 40%;
      background: #d8c7b3 url(assets/header-bg.webp);
      background-repeat: no-repeat;
      background-size: cover;
      & > .name-and-tagline {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;

        & > img.sign-logo {
          width: 100%;
          animation-name: slidefromleft;
          animation-duration: 2s;
          padding: 20px;
        }
        & > h2 {
          padding: 30px 0 50px;
          font-size: 3rem;
          animation-name: slidefromleft;
          animation-duration: 2s;
        }
        & > a > button {
          padding: 10px 20px;
          font-size: 1.5rem;
          animation-name: slidefromleft;
          animation-duration: 2s;
          background: #fff;
          border: none;
          border-radius: 10px;
          box-shadow: 1px 1px 5px #000;
          cursor: pointer;
          transition: transform 300ms;
          &:hover {
            transform: scale(1.1);
          }
        }
      }
    }

    & > .portfolio-image {
      flex: 60%;
      display: flex;
      justify-content: center;
      animation-name: slidefromright;
      animation-duration: 2s;
      & > .my-image {
        padding: 100px 20px 20px;
        width: 70%;
      }
    }
  }
}
/* header css--------------------------------------- */

/* about me section css ---------------------------- */
section.about-me {
  background: #97bad6;
  padding: 150px 0 100px;
  box-shadow: 0px 1px 4px #000;
  z-index: 9;
  display: flex;
  flex-direction: column;
  & > .about {
    display: flex;
    padding-bottom: 100px;
    width: 80%;
    margin: auto;
    flex-direction: column;
    & > div {
      display: flex;
      flex: 50%;
      & > img {
        width: 15%;
        object-fit: contain;
        margin: 0 0 30px 0;
      }
    }
    & > div:nth-child(1) {
      display: flex;
      justify-content: center;
    }
    & > div:nth-child(2) {
      display: flex;
      justify-content: space-between;
      font-size: 1.5rem;
      & > div:nth-child(1) {
        width: 60%;
        padding: 0 0 0 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        & > div {
          text-align: center;
          display: flex;
          justify-content: space-around;
          & > a {
            font-size: 5rem;
            margin: 20px 0;
            color: #0a66c2;
            display: flex;
            align-items: center;
            justify-content: center;
            & > img.review-img {
              width: 30%;
              transition: transform 300ms;
              &:hover {
                transform: scale(1.1);
              }
            }
          }
          & > a:nth-child(2) {
            font-size: 1rem;
            text-decoration: none;
            color: #000;
            & > span {
              padding: 18px;
              margin: 50px 0;
              display: block;
              width: max-content;
              font-weight: 700;
              border: none;
              cursor: pointer;
              border-radius: 10px;
              background: #97bad6;
              box-shadow: 5px 5px 7px #7f9cb4, -5px -5px 7px #afd8f8;
              transition: transform 300ms;
              &:hover {
                transform: scale(1.1);
                box-shadow: 2px 2px 10px #000;
              }
            }
          }
        }
      }
      & > div:nth-child(2) {
        width: 40%;
        display: flex;
        justify-content: center;
        & > img {
          width: 60%;
          padding: 20px;
          border: 2px solid #000;
          box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3),
            -1px -1px 5px rgba(0, 0, 0, 0.3);
          object-fit: contain;
        }
      }
    }
  }

  & > .testimonial {
    & > div {
      display: flex;
      padding-bottom: 100px;
      width: 80%;
      margin: auto;
      flex-direction: column;
      & > .tes-anchor {
        display: flex;
        margin: auto;
        & > img {
          width: 30%;
          object-fit: contain;
          margin: 0 auto 30px;
          cursor: pointer;
          transition: transform 300ms;
          &:hover {
            transform: scale(1.1);
          }
        }
      }
    }
  }
}

.fa-linkedin {
  color: #007ebb;
  font-size: 2rem;
}
/* about me section css ---------------------------- */

/* transformative free resources section css-------- */
section.transformative-free-resources {
  background: #d8c7b3;
  padding: 150px 0 100px;
  box-shadow: 0px 1px 4px #000;
  z-index: 8;
  text-align: center;
  & > .free-resources {
    width: 80%;
    margin: 100px auto;
    display: flex;
  }
  & > .free-resources > div:nth-child(2) {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    & > img {
      width: 70%;
      object-fit: contain;
    }
  }

  & > .free-resources > div > .options {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    width: 80%;
    border-radius: 10px;
    & > a {
      text-decoration: none;
      color: #000;
      display: flex;
    }
    & > div {
      padding: 20px 30px;
      margin: 20px auto;
      border: 2px solid #000;
      border-radius: 5px;
      transition: transform 0.5s;
      font-weight: 500;
      display: flex;
      width: 90%;
      align-items: center;
      border-radius: 49px;
      background: #d8c7b3;
      box-shadow: 6px 6px 12px #afa191, -6px -6px 12px #ffedd5;
      border: none;
      &:hover {
        transform: scale(1.1);
        box-shadow: 2px 2px 10px #000;
      }
      & > .lnd-img {
        display: none;
        width: 20%;
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 10px;
      }
      & > p {
        margin: 10px;
        padding: 10px;
        font-size: 1.5rem;
        width: 100%;
      }
    }
  }

  & > .transformative-coaching {
    width: 80%;
    margin: auto;
    display: flex;
  }
  & > .transformative-coaching > div:nth-child(1) {
    flex: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    & > img {
      width: 50%;
      object-fit: contain;
    }
  }

  & > .transformative-coaching > div > .options {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    border-radius: 10px;
    & > a {
      text-decoration: none;
      color: #000;
      display: flex;
    }
    & > a > div {
      padding: 20px 30px;
      margin: 20px auto;
      border: 2px solid #000;
      border-radius: 5px;
      transition: transform 0.5s;
      font-weight: 500;
      display: flex;
      width: 90%;
      align-items: center;
      border-radius: 49px;
      background: #d8c7b3;
      box-shadow: 6px 6px 12px #afa191, -6px -6px 12px #ffedd5;
      border: none;
      &:hover {
        transform: scale(1.1);
        box-shadow: 2px 2px 10px #000;
      }
      & > .lnd-img {
        width: 20%;
        aspect-ratio: 3 / 2;
        object-fit: cover;
        border-radius: 10px;
      }
      & > p {
        margin: 10px;
        padding: 10px;
        font-size: 1.5rem;
        width: 100%;
      }
    }
  }
}
.fa-whatsapp {
  color: GREEN;
  margin: 0 5px 0 10px;
}
/* transformative free resources section css-------- */

/* footer css -------------------------------------- */
footer {
  padding: 20px 0;
  background: #3d3d3d;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  & > .logo {
    flex: 50%;
    text-align: center;
    & > img {
      width: 60%;
      padding: 50px;
    }
  }
  & > .contact-info {
    flex: 30%;
    display: flex;
    flex-direction: column;
    & > div {
      display: flex;
      font-size: 1rem;
      margin: 10px 0;
      align-items: center;
      & > span {
        padding: 10px;
        margin: 0 15px 0 0;
        border: 1px solid #fff;
        color: #fff;
        border-radius: 5px;
        & > i {
          width: 20px;
        }
      }
      & > p {
        color: #fff;
        & > a {
          text-decoration: none;
          color: #fff;
        }
      }
      & > a {
        text-decoration: none;
        & > span {
          padding: 5px 10px;
          color: #000;
          background: #fff;
          border-radius: 10px;
        }
      }
    }
  }
  & > .social-icons {
    flex: 20%;
    & > a {
      margin: 10px;
      & > .fa-linkedin,
      & > .fa-whatsapp {
        font-size: 3rem;
        color: #fff;
      }
    }
  }
}
/* footer css -------------------------------------- */

/* popup css --------------------------------------- */

.about-btn {
  width: 30%;
  padding: 10px;
  margin: 50px 0;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  background: #97bad6;
  box-shadow: 5px 5px 7px #7f9cb4, -5px -5px 7px #afd8f8;
  transition: transform 300ms;
  &:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #000;
  }
}
.popup-show {
  cursor: pointer;
}

.popup-bg {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
  & > .popup-box {
    width: 80%;
    height: 80%;
    background: #d8c7b3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: relative;
    border-radius: 20px;
    & > .close-popup {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      cursor: pointer;
      color: #000;
    }
    & > .popup-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 90%;
      height: 90%;
      margin: auto;
      padding: 40px 0 0;
      overflow-y: scroll;
      scrollbar-color: #d7d7d7 #d8c7b3;
      scrollbar-width: thin;
      & > .h-devider {
        height: 2px;
        background: #000;
        width: 50%;
        margin: auto;
        margin: 20px 0;
      }
      & > h2 {
        margin: 20px 0 0;
      }
      & > p {
        padding: 20px 0;
        font-size: 1.2rem;
        text-align: center;
      }
      & > ol > li {
        margin: 20px;
      }
    }
  }
}

.contactBtn {
  padding: 10px 20px;
  transition: transform 0.5s;
  font-weight: 500;
  display: flex;
  justify-content: center;
  width: 30%;
  align-items: center;
  border-radius: 49px;
  background: #d8c7b3;
  box-shadow: 6px 6px 12px #afa191, -6px -6px 12px #ffedd5;
  border: none;
  text-align: center;
  cursor: pointer;
  &:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #000;
  }
}
.thanks-msg > a {
  display: none;
}
/* popup css --------------------------------------- */

/* animation css------------------------------------ */
@keyframes slidefromright {
  0% {
    transform: translatex(120%);
  }
  100% {
    transform: translatex(0%);
  }
}

@keyframes slidefromleft {
  0% {
    transform: translatex(-120%);
  }
  100% {
    transform: translatex(0%);
  }
}
/* animation css------------------------------------ */

/* mobile css--------------------------------------- */

@media only screen and (max-width: 768px) {
  /* header css--------------------------------------- */
  .main-header-div {
    flex-direction: column-reverse;
    width: 100% !important;
    background: #d8c7b3 url(assets/header-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    & > div:nth-child(1) {
      background: none !important;
    }
  }
  .name-and-tagline {
    width: 80%;
    margin: auto;
    margin: 50px auto;
    & > a > button {
      margin-top: 30px !important;
    }
  }
  nav {
    width: 100% !important;
    /* top: 35px !important; */
    /* width: 90% !important; */
    margin: auto !important;
    justify-content: space-evenly !important;
    & > a {
      flex: none;
      font-size: 0.8rem;
      padding: 2px 5px !important;
      font-weight: 300 !important;
      border-width: 0 0 0px 0 !important;
      border-style: solid;
      margin: 10px 4px !important;
      display: flex;
      justify-content: center;
      width: auto !important;
      &:hover {
        transform: scale(1) !important;
      }
    }
  }
  .mbl-links-nav {
    display: flex;
    justify-content: center;
    margin: auto;
    padding-top: 10px;
    width: 80%;

    & > a {
      width: 30%;
      display: flex;
      justify-content: center;
      & > img {
        width: 50%;
      }
    }
  }
  .my-image {
    width: 85% !important;
  }
  .portfolio-image {
    flex: 60%;
    display: flex;
    justify-content: center;
    animation-name: slidefromright;
    animation-duration: 2s;
    flex-direction: column;
    align-items: center;
  }
  /* header css--------------------------------------- */
  /* about me section css ---------------------------- */
  section.about-me {
    padding: 100px 0 100px;
    & > .about {
      & > div {
        & > img {
          width: 40%;
        }
      }
      & > div:nth-child(2) {
        flex-direction: column;
        & > div:nth-child(1) {
          width: 100%;
          padding: 0;
          align-items: center;
          font-size: 1rem;
          & > div {
            margin: 15px auto;
          }
        }
        & > div:nth-child(2) {
          width: 100%;
          & > img {
            width: 80%;
          }
        }
      }
    }
    & > .testimonial {
      & > div:nth-child(1) {
        padding: 0;
        & > a > img {
          width: 50%;
        }
      }

      & > div:nth-child(2) {
        display: flex;
        flex-direction: column;
        width: 100%;
        & > a {
          width: 100%;
          & > div {
            font-size: 1rem;
          }
        }
      }
    }
  }
  .about-btn {
    width: 40%;
    font-size: 1rem !important;
    margin: 20px;
  }
  .review-img {
    width: 50% !important;
  }
  /* about me section css ---------------------------- */

  /* transformative free resources section css-------- */
  section.transformative-free-resources {
    padding: 100px 0 100px;
    & > .transformative-coaching {
      width: 100%;
      flex-direction: column;
      & > div:nth-child(1) {
        margin-bottom: 30px;
      }
      & > div > .options {
        & > a > div {
          & > p {
            font-size: 1rem;
          }
        }
      }
    }
    & > .free-resources {
      width: 100%;
      flex-direction: column-reverse;
      margin: 100px auto 0;
      > div:nth-child(2) {
        & > img {
          width: 50%;
          margin-bottom: 30px;
        }
      }
      & > div:nth-child(1) {
        margin-bottom: 30px;
      }
      & > div > .options {
        width: 100%;
        & > div {
          & > p {
            font-size: 1rem !important;
          }
        }
      }
    }
  }
  .lnd-img {
    display: none;
  }
  /* transformative free resources section css-------- */

  /* footer css -------------------------------------- */
  footer {
    flex-direction: column;
    & > .logo {
      display: flex;
      justify-content: center;
    }
    & > .social-icons {
      margin-top: 20px;
      text-align: center;
      & > a {
        width: 50%;
        & > img {
          width: 10%;
        }
      }
    }
  }
  /* footer css -------------------------------------- */

  /* popup css --------------------------------------- */
  .popup-bg {
    & > .popup-box {
      width: 95%;
      & > .popup-content {
        padding: 40px 15px 0;
        & > h2 {
          margin: 20px 0 0;
          text-align: center;
        }
        & > p {
          font-size: 1rem;
        }
      }
      & > .close-popup {
        background: #d8c7b3;
      }
    }
  }
  .contactBtn {
    width: auto;
    margin-bottom: 50px;
  }
  /* popup css --------------------------------------- */
}
/* mobile css--------------------------------------- */
