@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

* {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  box-sizing: border-box;
}

main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 90px;
}

header {
  width: 100%;
  height: auto;
  background: #3498DB;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}

a {
  text-decoration: none;
  outline: none;
}

nav {
  width: 1000px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

button {
  cursor: pointer;

}

label {
  font-weight: 600;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
}


.logo {
  background: #FFD076;
  padding: 10px;
  margin-right: 10px;
}

.con-logo {
  display: flex;
  align-items: baseline;
}



.img-logo {
  font-size: 20px;
  font-weight: bolder;
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 10px;
}

.ul-nav-links {
  display: flex;
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
}

.li-nav-links {
  margin-left: 25px;
  font-size: 20px;
}

.li-nav-links {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.li-hamburger-icon {
  color: white;
  cursor: pointer;
  display: none;
  line-height: 1 !important;
}

/* ARTICLES */
.article-con {
  width: 100%;
}

.article-blue {
  background: #3498DB;
}

.article-grey {
  background: #e9e8e8;
}

.article-yellow {
  background: #FFD076;
}

article>.article-link {
  position: relative;
}

.article-link {
  position: absolute;
  top: -90px;
}

/* SECTIONS */
.section-con {
  width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
}

/* HEADINGS */
.heading-con {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 50px !important;
}

.sub-heading {
  font-size: 20px;
}

/* Paragraphs */
.p-description {
  font-size: 16px;
}

/* POPUP MESSAGE */
.con-popup-message {
  width: auto;
  height: auto;
  padding: 15px;
  border-radius: 10px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  perspective: 1000px;
}

@keyframes shake-animation {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.con-popup-message>h3,
.con-popup-message>p,
.con-popup-message>p>i {
  color: white;
}

.con-popup-message>h3,
.con-popup-message>p {
  margin: 0;
}

.con-popup-message>p {
  font-size: 14px;
  margin-top: 15px;
}

/* HERO */
.article-hero {
  height: calc(100vh - 90px) !important;
  /* background: #2ecc71; */
}

.con-hero-img {
  display: flex;
  justify-content: center;
}

.setion-hero-con {
  display: flex;
  align-items: center;
  height: 100%;
  width: 1000px;
  margin: 0 auto;
  /* background: #FFD076; */
}

.con-hero-description {
  width: 50%;
}

.heading-main {
  font-size: 45px;
  font-weight: 900;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.3;
  color: #fff;
}

.p-hero-description {
  color: #fff;
  margin-top: 15px;
  font-size: 20px;
}

.btn-grp {
  border-radius: 0px !important;
}

.btn-hero-book-now {
  width: 180px;
  height: 55px;
  background: #FFD076;
  /* border-radius: 10px; */
  font-size: 20px;
  border: none;
  font-weight: 600;
  margin-top: 20px;
}

.btn-hero-book-now:hover {
  background: #ffd98e;
}

/* SERVICES */
.con-services-cards {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 255px);
  grid-gap: 15px;
}

.p-pricing {
  margin: 0;
  padding: 0;
}

.con-services-card-content {
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 5px 20px;
}

.img-card {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.con-card-heading {
  display: flex;
  align-items: center;
}

.p-services-description {
  margin-top: 0;
}

.p-pricing {
  margin-top: 30px;
  text-align: center;
  color: #747474;
}

/* PRICING */
.con-pricing-cards-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.con-pricing-card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: #fff;
  display: flex;
  border-radius: 3px;
  /* justify-content: center; */
  align-items: center;
  padding: 50px;
  cursor: pointer;
  flex-direction: column;
}

.con-pricing-card:nth-of-type(2) {
  background: #3498DB;
}

.con-pricing-card:nth-of-type(3) {
  background: #2ecc71;
}

.heading-con {
  margin-top: 0px;
  margin-bottom: 25px;
}

.p-price {
  font-size: 35px;
  font-weight: bold;
}

.p-session-length {
  text-align: center;
  font-size: 20px;
  color: #747474;
  font-style: italic;
}

.p-price-card-content {
  margin: 0;
  padding: 0;
}

.p-saved-money {
  font-size: 14px;
  margin-top: 5px;
  color: rgb(255, 255, 255);
}

.p-saved-money-black {
  color: #000;
}

.p-price-model-type {
  margin-bottom: 30px;
  font-size: 18px;
  /* color: #000; */
}

.paypal-button-container {
  margin-top: -40px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  max-width: 250px;
}

.p-second-card {
  color: white;
}

.select-plan-btn {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  background: #ffc85b;
  color: black;
  font-weight: 500;
  display: flex;
  border: none;
  margin-top: 35px;
  margin-bottom: -20px;
  letter-spacing: 1px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.selected-plan:hover {
  background: #505050 !important;
}

.selected-plan {
  background: #494949;
  color: #ffffff;
}

.select-plan-btn:hover {
  background: #ffd786;
}


/* ABOUT */
.con-img-profile {
  width: 100%;
  height: auto;
  display: flex;
  margin-bottom: 30px;
}

.img-profile {
  border-radius: 50%;
  margin: 0 auto;
}

.p-about-description {
  font-size: 16px;
}

.btn-blue {
  background: #3498DB;
  border: none;
  height: 45px;
  width: 155px;
  font-size: 16px;
  margin-top: 10px;
  margin-left: auto;
  font-weight: 600;
  display: flex;
  justify-content: center;
  color: white;
  align-items: center;
}

.btn-blue:hover {
  background: #9cd2f8;
}

.p-about-full-description {
  display: none;
}

.btn-read-less {
  display: none;
}

/* QUALIFICATIONS */
.con-qualifications-content {
  display: grid;
  align-items: center;
  grid-gap: auto;

  grid-template-columns: repeat(2, 1fr);
}

.con-qualifications-list {
  padding-left: 0;
}

.ul-list-qualifications {
  display: inline-block;
  text-align: left;
  margin-top: 0;
  padding-top: 0;
}

.ul-list-qualifications>li {
  padding-left: 0;
  margin-left: -15px;
}

/* BOOKINGS */
.con-heading-top-bookings {
  display: flex;
  padding: 0;
  align-items: center !important;
  justify-content: space-between;
}

.span-bold-label {
  font-weight: bold;
}

.p-fri-hours {
  margin-bottom: 0;
}

.p-sat-sun-hours {
  margin-top: 0;
}

/* CONTACT */
.con-contact-section {
  display: grid;
  margin-top: 25px;
}

.con-contacts-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  grid-template-rows: auto auto;
}

.heading-bookings {
  margin-bottom: 25px;
}

.con-contact {
  display: flex;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  align-items: center;
  padding: 10px;
  width: 100%;
}

.p-contacts-description {
  margin: 0;
}

.con-contact-description {
  width: 100%;
}

.contacts-text-description {
  margin-top: 0px;
  width: auto;
  word-break: break-all;
}

.contacts-text-location {
  word-break: keep-all;
}

.contacts-heading {
  margin-bottom: 0px;
}

.img-contact {
  width: 65px;
  height: 65px;
  margin-right: 10px;
}

/* CONTACTS - EMAIL */
.form-email-message {
  display: grid;
  margin-top: 25px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 90px) 180px 45px;
  grid-gap: 25px 10px;
}

.con-tutoring-type {
  grid-column: 1/3;
}

.paypal-button-text {
  display: none !important;
}


.con-inp {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.con-topics {
  grid-column: 1/3;
}

.con-inp>input,
.con-inp>select,
.con-inp>textarea {
  height: 100%;
  background: #fff !important;
  margin-top: 10px;
  border: none;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  border-radius: 5px;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-size: 16px;
}

.con-inp>textarea {
  padding: 15px;
}

.con-other-info {
  grid-column: 1/3;
}

.btn-submit {
  background: #3498DB;
  border: none;
  height: 45px;
  width: 155px;
  font-size: 16px;
  font-weight: 600;
  /* display: flex;
  justify-content: center; */
  color: white;
  /* align-items: center; */
  margin-left: 35px;
  text-align: center;
  display: block;
  margin-left: auto;
}

.btn-submit:hover {
  background: #9cd2f8;
}

.con-submit-form {
  grid-column: 1/3;
  display: block;
}

.thank-you-message {
  color: #2ecc71;
  font-weight: 800;
  text-align: center;
}

/* BOOKINGS FORM */
.con-form-bookings {
  margin-top: 50px;
}

.inp-bookings {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding-left: 15px;
  margin-top: 10px;
}

.optional-txt {
  font-weight: lighter;
}

.textarea-information {
  width: 100%;
  min-height: 130px;
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 15px;
  margin-top: 10px;
  resize: none;
}

.btn-bookings-book-now {
  margin-top: 30px;
}


/* FOOTER */
footer {
  width: 100%;
  height: 60px;
  background: #a3a3a3;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 250px) and (max-width: 700px) {
  nav {
    width: 90%;
    flex-direction: column;
    height: auto;
  }

  .nav-top-nar {
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .li-hamburger-icon {
    display: block !important;
    outline: none;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 40px !important;
  }

  .ul-nav-links {
    width: 100%;
    background: #FFD076;
    position: absolute;
    padding-left: 0px;
    top: 90px;
    outline: none;
    display: none;
    flex-direction: column;
  }



  .li-nav-links {
    padding: 15px;
    margin-left: 0 !important;
    cursor: pointer;
    width: 100%;
    outline: none;
    color: black;
  }

  .li-nav-links:hover {
    background: #ffc85b;
  }

  .li-hamburger-icon {
    font-size: 25px;
    width: unset;
    padding: 0;
  }

  .li-hamburger-icon:hover {
    background: none;
  }

  /* HEADINGS */
  .heading-main {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
  }

  .heading-con {
    font-size: 25px;
  }

  /* DESCRIPTIONS */
  .p-description {
    font-size: 16px;
  }

  /* EMAIL MESSAGE */
  .form-email-message {
    display: flex;
    flex-direction: column;
    margin-top: 55px;
  }

  .con-inp {
    height: 100px;
    margin-bottom: 5px;
  }

  .con-other-info {
    height: 150px;
  }

  /* .con-submit-form {
    margin-top: 10px;
    grid-column: unset;
    display: flex;
    align-items: center;
  } */

  /* SECTIONS */
  .section-con {
    width: 90% !important;
  }

  /* HERO */
  .setion-hero-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .con-hero-description {
    width: 100%;
  }



  .p-hero-description {
    color: #fff;
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
  }

  .btn-grp {
    border-radius: 0px !important;
  }

  .btn-hero-book-now {
    width: 180px;
    height: 55px;
    background: #FFD076;
    /* border-radius: 10px; */
    font-size: 20px;
    border: none;
    font-weight: 600;
    margin-top: 20px;
  }

  .btn-hero-book-now:hover {
    background: #ffd98e;
  }

  .img-hero {
    display: none;
    width: 60% !important;
    height: auto !important;
    object-fit: contain;
  }

  .img-qualifications {
    width: 100% !important;
    height: 180px !important;
    object-fit: contain;
  }

  .con-hero-description {
    width: 90% !important;
    order: 2;
  }

  /* ABOUT */
  .img-profile {
    width: 80%;
    border-radius: 50%;
    max-width: 180px;
  }

  /* SERVICES */
  .con-services-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  /* QUALIFICATIONS */
  .con-qualifications-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .con-qualifications-list {
    order: 2;
    margin-top: 45px;
  }

  .con-qualifications-img {
    display: flex;

    justify-content: center;
    margin-top: 30px;
  }

  /* PRICING */
  .con-pricing-cards-div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  /* BOOKINGS */
  .con-heading-top-bookings {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .con-inp-half {
    display: grid;
    grid-template-columns: 1fr;
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .p-footer-txt {
    font-size: 12px;
  }

  /* CONTACT */
  .con-contacts-list {
    grid-template-columns: 100%;
  }

  .paypal-button-container {
    margin-top: 00px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    max-width: 100%;
  }

}

@media screen and (min-width: 701px) and (max-width: 1025px) {
  nav {
    width: 90%;
    flex-direction: column;
    height: auto;
  }

  .nav-top-nar {
    display: flex;
    height: 90px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .li-hamburger-icon {
    display: block !important;
    outline: none;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 40px !important;
  }

  .ul-nav-links {
    width: 100%;
    background: #FFD076;
    position: absolute;
    padding-left: 0px;
    top: 90px;
    outline: none;
    display: none;
    flex-direction: column;
  }

  .li-nav-links {
    padding: 15px;
    margin-left: 0 !important;
    cursor: pointer;
    width: 100%;
    outline: none;
    text-decoration: none;
    color: #000;
    font-weight: bold;
  }

  .li-nav-links:hover {
    background: #ffc85b;
  }

  .li-hamburger-icon {
    font-size: 25px;
    width: unset;
    padding: 0;
  }

  .li-hamburger-icon:hover {
    background: none;
  }

  /* PRICING */
  .con-pricing-cards-div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .paypal-button-container {
    margin-top: 00px;
    margin-left: auto;
    display: flex;
    justify-content: center;
    max-width: 250px;
  }

  /* CONTACT */
  .con-contacts-list {
    grid-template-columns: 100%;
  }

  /* HEADINGS */
  .heading-main {
    font-size: 35px;
    margin-top: 25px;
  }


  .heading-con {
    font-size: 35px;
  }

  /* SECTIONS */
  .section-con {
    width: 90% !important;
  }

  /* HERO */
  .setion-hero-con {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .img-hero {
    width: 50% !important;
    margin-bottom: 20px;
  }

  .con-hero-description {
    width: 90% !important;
    order: 2;
  }

  /* SERVICES */
  .con-services-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }

  /* QUALIFICATIONS */
  .con-qualifications-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .con-qualifications-list {
    order: 2;
    margin-top: 45px;
  }

  .con-qualifications-img {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  /* BOOKINGS */
  .con-heading-top-bookings {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}

@media screen and (min-width: 1026px) and (max-width: 1370px) {
  nav {
    width: 800px;
  }

  nav ul li .underline {
    height: 5px;
    background-color: transparent;
    width: 0%;
    transition: width 0.2s, background-color 0.5s;
    margin: 21px auto -35px auto;
    /* border-radius: 20%; */
  }

  nav ul li.active-link .underline {
    width: 100%;
    background-color: #FFD076;
  }

  nav ul li:hover .underline {
    background-color: #FFD076;
    width: 100%;
  }

  nav ul li:active a {
    transition: none;
    color: rgba(255, 255, 255, 0.76);
  }

  nav ul li:active .underline {
    transition: none;
    background-color: rgba(255, 255, 255, 0.76);
  }

  .section-con {
    width: 800px !important;
  }

  .setion-hero-con {
    width: 800px !important;
  }

  .ul-nav-links {
    display: flex !important;
  }

  .li-nav-bar-links {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .heading-main {
    font-size: 35px !important;
    margin-top: 25px;
  }

  .p-description {
    font-size: 16px;
  }

  .img-hero {
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

  /* CONTACT */
  .contacts-text-description {
    width: 100%;
    overflow-wrap: break-word;
    max-width: 300px;
  }


  /* SERVICES */
  .con-services-cards {
    grid-template-rows: repeat(2, auto);
  }

  /* QUALIFICATIONS */
  .con-qualifications-content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .con-qualifications-list {
    order: 2;
    margin-top: 45px;
  }

  .con-qualifications-img {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
}

@media screen and (min-width: 1371px) {
  .ul-nav-links {
    display: flex !important;
  }

  nav ul li .underline {
    height: 5px;
    background-color: transparent;
    width: 0%;
    transition: width 0.2s, background-color 0.5s;
    margin: 26px auto -31px auto;
  }

  nav ul li.active-link .underline {
    width: 100%;
    background-color: #FFD076;
  }

  nav ul li:hover .underline {
    background-color: #FFD076;
    width: 100%;
  }

  nav ul li:active a {
    transition: none;
    color: rgba(255, 255, 255, 0.76);
  }

  nav ul li:active .underline {
    transition: none;
    background-color: rgba(255, 255, 255, 0.76);
  }
}