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



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  width: 100%;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
/* hero-section */
.hero-banner {
  position: relative;
  height: auto;
  background-image: url("../media/writing-banner.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 40px;
  z-index: 999;
}
.hero-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(16 16 16 / 50%);
  z-index: -1;
  opacity: 3.8;
}
.banner-content {
  padding-top: 60px;
}
.banner-content h2 {
  font-size: 37px;
  font-weight: 900;
  line-height: 49px;
  color: #ffffff;
}
.banner-content p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  width: 80%;
}
.heading-text {
  color: #fec200;
}
.banner-button {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding: 10px 29px 10px 29px;
  font-size: 16px;
  font-weight: 500;
}
.banner-button:hover {
  background: #fec200;
  color: #214a6e;
}
.chat {
  margin-left: 28px;
}
#but-now {
  margin-left: 28px;
}
/* hero-banner-end */
.student-section {
  padding-top: 100px;
}
.student-section h1 {
  color: #214a6e;
  font-size: 32px;
  font-weight: 700;
}
/* std-girl */
.std-capgirl {
  background: #f2f3f7;
  padding: 55px 0px 0px 0px;
  margin-top: 90px;
}
.girl {
  width: 127%;
  margin-top: -128px;
}
.consultant {
  border-radius: 15px;
  border: 1px solid #214a6e;
  padding: 18px 20px;
}
.consultant a {
  font-size: 16px;
  font-weight: 600;
  color: #1f3e7e;
  text-transform: uppercase;
  padding-left: 10px;
}
.consultant:hover {
  background: #fec200;
}

/* std-girl-end */

/* provider */
.provider {
  background: url("../media/provider.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
}
.uk {
  margin-left: 100px;
}
.uk p {
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  padding-top: 0;
}

.uk h3 {
  color: white;
  text-align: center;
}

.uk h2 {
  color: #fec200;
  font-weight: 600;
  text-align: center;
}

.uk .best {
  font-size: 40px;
  font-weight: 700;
  color: #fec201;
  text-align: center;
}
.std1 {
  text-align: center;
  padding-top: 34px;
}
.now {
  border: 1px solid #fff;
  padding: 11px 29px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.now:hover {
  color: #fff;
  background: #fec200;
  border: 1px solid #fec200;
}
.now2 {
  border: 1px solid #fec200;
  padding: 11px 29px;
  color: #214a6e;
  font-size: 16px;
  font-weight: 600;
  background: #fec200;
}
.now2:hover {
  background: #214a6e;
  color: #fff;
  border: 1px solid #fff;
}
/* provider-end */

/* unique */
.unique {
  padding: 50px 0px;
}
.unique h2 {
  color: #1f3e7e;
  font-size: 32px;
  font-weight: 700;
}
.unique p {
  color: #4b4b4b;
  font-size: 16px;
  padding-top: 20px;
}
.big-box {
  background: #f2f3f7;
  border-radius: 15px;
  margin-top: 18px;
}
.big-box h2 {
  color: #0f1f55;
  font-size: 18px;
  font-weight: 600;
}
.big-box p {
  color: #4b4b4b;
  font-size: 16px;
  padding-top: 20px;
}
/* unique-end */

/* media-query */
@media (min-width: 992px) and (max-width: 1199px) {
  .student-section img {
    width: 100%;
  }
  .std-capgirl {
    padding: 55px 0px 50px 0px;
  }
  .big-box img {
    width: 85%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .student-section img {
    width: 100%;
  }
  .std-btn {
    padding: 12px 31px;
  }
  .girl {
    width: 40%;
    display: flex;
    margin: auto;
  }
  .big-box {
    padding: 20px 10px;
  }
  .big-box img {
    width: 80%;
  }
  .big-box p {
    font-size: 13px;
  }
}
@media (max-width: 767px) {

  .hero-banner {
    position: relative;
    height: auto;
    background:#000;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 40px;
    z-index: 999;
  }
  .hero-banner:before {
    display: none;
  }
  .banner-content p {
    width: 100%;
  }
  .girl {
    width: 50%;
    display: flex;
    margin: auto;
  }
  .consultant {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .uk {
    margin-left: 0;
  }
  .unique {
    margin: 10px;
  }
  .big-box {
    flex-direction: column;
  }
  .big-box h4 {
    text-align: center;
  }
  .big-box p {
    text-align: center;
  }
}
/* media-query-end */
