/* import fonts here */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&family=Roboto:wght@300;400;700&family=Noto+Sans:wght@400;700&family=Open+Sans:wght@300;400;700&family=Poppins:wght@300;400;700&display=swap");

/* reset default design */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  border: none;
  line-height: 1;
  border-radius: 05;
  outline: none;
  text-decoration: none;
  /*background-color: #ffffff; */ /*removing background*/
  color: #000000;
}

button,
a,
input.btn {
  cursor: pointer;
}

/* fix of section cut off's */
html,
body {
  overflow: hidden;
  height: 100%;
}
body {
  padding-top: 85px;
}
#main_wrap {
  overflow: auto;
  height: 100%;
}
/* fix of section cut off's */

/* main(nav) section start */
section#main {
  width: 100%;
}

/* nav section start */
section#main .top-navigation {
  height: 85px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  filter: drop-shadow(0px 3px 5px #00000029);
  z-index: 1;
  /* border-bottom: 1px solid #ebebeb; */
  box-shadow: 0px 4px 4px rgb(159 159 159 / 25%);
}

section#main .top-navigation .brand {
  float: left;
  margin-left: 16px;
  margin-top: 21.33px;
  cursor: pointer;
}

section#main .top-navigation .brand-icon {
  display: inline-block;
  height: 46px;
  width: 46px;
}

section#main .top-navigation .brand-text {
  display: inline-block;
  height: 45px;
  width: 98px;
}

section#main .top-navigation .navbar {
  display: none;
}

/* menu handbar start */
section#main .top-navigation .menu {
  margin: 32px 32px 21px 0;
  height: 30px;
  width: 40px;
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 5px;
}

section#main .top-navigation .menu span {
  border: 2px solid black;
  border-radius: 5px;
}
/* menu handbar end  */
/* nav section end */

/* popup menu section start */
section#popup-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  height: 100%;
  width: 100%;
  z-index: 3;
  transition: left 0.15s ease-in;
  background-color: #fff;
}

section#popup-menu .header {
  width: 100%;
  height: 86px;
  filter: drop-shadow(0px 3px 5px #00000029);
  border-bottom: 1px solid #ebebeb;
}

section#popup-menu .header h1 {
  font-size: 24px;
  margin: 30px 0 0 32px;
  float: left;
}

section#popup-menu .header div {
  margin: 32px 32px 0 0;
  float: right;
}

/* close handle bar start */
.close {
  position: relative;
  display: inline-block;
  height: 29px;
  width: 33px;
  overflow: hidden;
  cursor: pointer;
  padding: 5px;
}

.close::before,
.close::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #000;
  border-radius: 5px;
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}
/* close handle bar end */

section#popup-menu .body {
  display: flex;
  flex-direction: column;
}

section#popup-menu .body .btns {
  width: 100%;
  margin: 60px 40px 40px;
  display: flex;
  flex-direction: column;
}

section#popup-menu .body .btns .btn {
  padding: 20px 24px;
  width: fit-content;
  text-align: center;
  border: none;
  font-size: 16px;
  line-height: 25px;
  font-weight: bold;
  background-color: #e53f00;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  margin:5px;
}

section#popup-menu .body > nav {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0 60px;
}

section#popup-menu .body > nav > li {
  list-style-type: none;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

section#popup-menu .body > nav > li:hover a {
  border-bottom: 3px solid #000000;
}

section#popup-menu .body .popup-callback {
  margin: 30px 78px 33px;
}

section#popup-menu .body .popup-callback a {
  color: #e53f00;
  font-size: 18px;
  line-height: 25px;
}

section#popup-menu .body .popup-callback img {
  height: 16px;
  width: 16px;
  margin-right: 16px;
}
/* popup menu section end */

/* popup confirm section start */
section#popup-confirm {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 90%;
  text-align: center;
  box-shadow: 3px 3px 15px #00000029, -3px -3px 15px #00000029;
  transition: opacity 0.1s ease-in, top 0.15s ease-in;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
}

section#popup-confirm.active {
  opacity: 1;
  top: 55%;
}

section#popup-confirm .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

section#popup-confirm .content h2 {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.32px;
}

section#popup-confirm .content img {
  padding-top: 20px;
  width: 50px;
  height: 50px;
}

section#popup-confirm .content button {
  font-size: 12px;
  background: #23d25d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

@media only screen and (min-width: 992px) {
}
/* popup confirm section end */
/* main(nav) section end */

/* home section start */
section#home {
  /*height: auto; */
  width: 100%;
  /*background-image: url("/public/svg/home_desktop.svg");
  background-position: absolute;*/
}

section#home div.home {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: bold;
  padding-top: 32px;
  margin: 0 9% 56px 32px;
}

section#home div.home * {
  background-color: transparent;
}

section#home div.home .heading {
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0.64px;
  margin-bottom: 32px;
}

/* section#home div.home .heading .underlined {
  border-bottom: 4px solid #ea6533;
} */

section#home div.home .subLottie .link {
    font-size: 15px !important;
    line-height: 20px !important;
    text-align: center;
}

section#home div.home .classes {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 60px;
}

section#home div.home .classes .link {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: -0.19px;
  padding: 8px 16px;
  margin-right: 16px;
  margin-top: 15px;
  font-weight: bold;
  background-color: #f2f2f2;
  color: #ea6533;
  border-radius: 23px;
}

section#home div.home .classes .link:last-child {
  margin-right: 0;
}

section#home div.home a.schedule-free {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 8px;
  font-weight: bold;
  color: #fff;
  padding: 20px 40px;
  background-color: #e53f00;
  border-radius: 4px;
  width: 270px;
}

section#home div.home a.schedule-free .icon {
  position: absolute;
  top: 16px;
  left: 220px;
  display: inline;
}
/* home section end */

/* focus section start */
section#focus {
  display: flex;
  justify-content: center;
  align-items: center;
}

section#focus .focus {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 48px 48px 28px;
  align-items: center !important;
}

section#focus .focus > h1 {
  position: relative;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin: 0 0 60px 38px;
}

section#focus .focus > h1::before {
  position: absolute;
  top: 0;
  left: -38px;
  content: " ";
  display: inline-block;
  background-color: #000000;
  height: 37px;
  width: 24px;
}
/* 
section#focus .focus .focus-groups {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}

section#focus .focus .focus-groups .focus-group {
  flex: 1 1 180px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}

section#focus .focus .focus-groups .focus-group > img {
  margin-bottom: 16px;
}

section#focus .focus .focus-groups .focus-group h2 {
  font-size: 24px;
  line-height: 35px;
  font-weight: bold;
  margin-bottom: 16px;
}

section#focus .focus .focus-groups .focus-group li {
  list-style-type: square;
  margin: 0 0 6px 20px;
  font-size: 16px;
  line-height: 25px;
} */
@media (max-width: 480px)
.blocksDiv {
    position: initial !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 0 0 0 !important;
}

.blocksDiv ul li {
    margin: 10px 0 0 0;
}

.points-box {
    width: 45%;
    margin: 70px 0 0 20px;
}

.points-box {
    border-radius: 6px;
    width: 349px;
    height: 159px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px 0 0;
    color: #272727;
    
}


section#focus .blocksDiv > div > img 
 {
    position: absolute;
    top: -25px;
    left: -10px;
    width: 60px;
    z-index: 1;
}

.problemSolving {
    background: #96b4e6;
}

.decisiveness {
    background: #f7b1b7;
}

.creativity {
    background: #ffee9f;
}

 .blocksDiv ul li::marker {
    content: "• ";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}





/* focus section end */

/* why us section start */
section#why {
  display: flex;
  justify-content: center;
  align-items: center;
}

section#why .why {
  margin: 32px 32px 28px;
  display: flex;
  flex-direction: column;
}

section#why .why > h1 {
  position: relative;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin: 0 0 60px 52px;
}

section#why .why > h1::before {
  position: absolute;
  top: 0;
  left: -38px;
  content: " ";
  display: inline-block;
  background-color: #000000;
  height: 37px;
  width: 24px;
}

section#why .why .why-groups {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

section#why .why .why-groups img {
  width: 296px;
  height: 296px;
}

section#why .why .why-groups div {
  margin-left: 16px;
}

section#why .why .why-groups > div > h2 {
  font-size: 32px;
  letter-spacing: 0.64px;
  line-height: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}

section#why .why .why-groups > div > h2 > img {
  display: none;
}

section#why .why .why-groups > div > p {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.4px;
}
/* why us section end */

/* book section start */
section#book {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #134f70;
}

section#book .book {
  margin: 48px 48px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section#book .book h2 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 16px;
  color: #fff;
}

section#book .book p {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.4px;
  margin-bottom: 50px;
  color: #ccc;
}

section#book .book a {
  line-height: 8px;
  letter-spacing: 0.32px;
  padding: 20px 24px;
  background-color: #e53f00;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 40px;
}
/* book section end */

/* course section start */
section#course {
  width: 100%;
  display: flex;
  flex-direction: column;
}

section#course .class-details {
  display: flex;
  flex-direction: column;
  margin: 52px 0 32px 32px;
}

section#course .class-details .heading {
  text-align: left;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 32px;
}

section#course .class-details .classes {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

section#course .class-details .classes .class {
  font-size: 23px;
  line-height: 34px;
  font-weight: bolder;
  letter-spacing: -0.37px;
  color: #3f3d56;
  cursor: pointer;
}

section#course .class-details .classes .class.active {
  color: #e53f00;
}

section#course .cards {
  align-self: center;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background-color: transparent;
  width: 100%;
  padding: 0 32px;
  margin-bottom: 22px;
}

section#course .cards .card {
  flex: 0 0 320px;
  border-radius: 8px;
  box-shadow: 0 3px 8px #00000029, -0 -3px 8px #00000029;
  padding: 30px;
  margin: 10px 30px 30px 0;
  overflow: hidden;
}

section#course .cards .card .content {
  display: flex;
  flex-direction: column;
}

section#course .cards .card .content .header {
  width: 216px;
  height: 75px;
  margin-bottom: 16px;
}

section#course .cards .card .content .class-img {
  float: left;
  width: 44px;
  height: 44px;
  margin-right: 14px;
}

section#course .cards .card:nth-child(2) .content .class-img {
  width: 48px;
  height: 72px;
}

section#course .cards .card .content .class-heading {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.7px;
}

section#course .cards .card .content .class-number {
  font-size: 18px;
  line-height: 38px;
  letter-spacing: 0.36px;
}

section#course .cards .card .content .course-list {
  flex: 1 1 193px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}

section#course .cards .card .content .course-list > h4 {
  line-height: 25px;
  letter-spacing: 0.32px;
  margin-bottom: 24px;
}

section#course .cards .card .content .course-list > div {
  line-height: 40px;
  letter-spacing: 0.32px;
}

section#course .cards .card .content .course-list img {
  height: 18px;
  width: 18px;
  margin-right: 17px;
}

section#course .cards .card .content .discount {
    display: inline;
    padding: 3px 4px 2px;
    background: #d1345b;
    border-radius: 2px;
    color: #fff;
    font-family: "Nunito";
    font-size: 13px;
}

section#course .cards .card .content .price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

section#course .cards .card .content .old-price {
  font-size: 14px;
  line-height: 17px;
  text-decoration: line-through;
  color: #eb4d4d;
  margin-bottom: 10px;
}

section#course .cards .card .content .current-price {
  font-size: 36px;
  line-height: 20px;
  font-weight: bold;
  margin-left: 10px;
}

section#course .cards .card .content .btn {
  width: 100%;
  padding: 18px 0;
  text-align: center;
  color: #fff;
  background-color: #e53f00;
  border-radius: 4px;
  margin-bottom: 30px;
}

section#course .line {
  border-top: 2px solid #707070;
}

section#course .cards .card a {
  margin-top: 30px;
  color: #e53f00;
  font-weight: bold;
  line-height: 8px;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  border: 2px solid #e53f00;
  border-radius: 4px;
}

section#course .cards .card a img {
  width: 18px;
  height: 12.5px;
  margin-left: 16px;
}
/* course section end */

  /*explore subject start*/
  .exploreSubject {
    margin: 40px 163px;
  }

  .exploreText {
    margin: 48px 48px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .exploreText .subhead {
    font-size: 46px;
    line-height: 50px;
    font-style: normal;
    font-weight: 700;
    padding-top: 3rem!important;
    padding-bottom: 3rem!important;
}

  .exploreText  .exploreDetail {
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  padding-bottom: 3rem!important;
  /* margin: 0px 180px; */
}

  .downloadsyllabus {
    display: flex;
    flex-direction: column;
    background: #dfefe7;
    box-shadow: 0 6px 30px rgb(86 124 173 / 20%);
    border-radius: 20px;
    align-items: center;
    padding: 30px;
    margin-bottom: 40px;
    /*width: 90%;*/
}

.downloadsyllabus .downloadText {
  padding-bottom: 30px;
  font-family: verdana;
  font-weight: 500;
  font-size: 20px;
}

.downloadlink {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

.nav-link {
    display: block;
    position: relative;
    padding: .5rem 1rem;
    background-color: #e53f00;
    border-radius: 30px;
    width: 200px;
    margin-right: 50px;
    margin-bottom: 20px;
    text-align: center;
}

.downloadlink .btn-nav2 {
    /*min-width: 200px;*/
    background: transparent;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.syllabusClass{
  margin: 0px 40px 0px 40px;
}

.colorRed {
    color: #e53f00;
}

/*explore subject end*/


/* about us section start */
section#about {
  display: flex;
  justify-content: center;
}

section#about .about {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 16px 32px 20px;
}

section#about .about .we {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

section#about .about .we h1 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 60px;
}

section#about .about .we h2 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin-bottom: 32px;
}

section#about .about .we p {
  /*line-height: 20px;*/
  line-height: 35px;
  letter-spacing: 0.4px;
}

section#about .about .teachers {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

section#about .about .teachers h1 {
  font-size: 32px;
  letter-spacing: 0.64px;
  line-height: 40px;
  margin-bottom: 51px;
}

section#about .about .teachers p {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.4px;
  background-image: url("/public/svg/quote-start.svg"),
    url("/public/svg/quote-end.svg");
  background-repeat: no-repeat;
  background-position: 0 1%, 95% 99%;
  background-size: 40px 32px, 40px 32px;
  padding: 10px 0;
}

section#about .about .content {
  display: flex;
  flex-direction: column;
  border-bottom: 16px;
}

section#about .about .content img {
  width: 264px;
  height: 264px;
  margin: auto;
  margin-bottom: 20px;
}

section#about .about .content p {
  text-align: start;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.4px;
}

section#about .about .content p .big-letter {
  font-weight: bolder;
  font-size: 32px;
}
/* about us section end */

/*Review Section Start */
.reviewBody {
  width: 150vw;
  height: 65vh;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  max-width: 100%;
  margin: 10px 30px 30px 0;
  background: #d8eef2;
  border-radius: 18px;
  /*background: #f5f7fa;*/
}


.reviewCard {
  display: grid;
  grid-template-columns: 250px;
  grid-template-rows: 210px 250px ;
  grid-template-areas: "image" "text" ;
  border-radius: 18px;
  background: white;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
  font-family: roboto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}


.card-text {
  grid-area: text;
}

.card-text {
  grid-area: text;
  margin: 25px;
}

.card-text p {
  color: Grey;
  font-size:15px;
  font-weight: 300;
  line-height: 1.2;
}
.card-text h3 {
  margin-top:5px;
  font-size:20px;
}

/*.reviewCard:hover {
  transform: scale(1.15);
  box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
} */ /*Removed hover in review card in mobile view*/
.reviewCard {

...
  transition: 0.5s ease;
  cursor: pointer;
  margin:30px;
}


.card-image1 {
  grid-area: image;
  background: url("/public/image/swati.webp");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
  
}

.card-image1 {
  grid-area: image;
}

.card-image2 {
  grid-area: image;
  background: url("/public/image/aarati.webp");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-image2 {
  grid-area: image;
}

.card-image3 {
  grid-area: image;
  background: url("/public/image/varsha.webp");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-image3 {
  grid-area: image;
}

.card-image4 {
  grid-area: image;
  background: url("/public/image/aman.webp");
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}

.card-image4 {
  grid-area: image;
}

.reviewButton a {
  line-height: 8px;
  letter-spacing: 0.32px;
  padding: 20px 24px;
  background-color: #e53f00;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 40px;
}

  /*Review Section End*/

/* faqs section start */
section#faqs {
  display: flex;
  justify-content: center;
}

section#faqs > .faq {
  display: flex;
  flex-direction: column;
  margin: 60px 32px 50px;
}

section#faqs > .faq > h1 {
  position: relative;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin: 0 0 40px 38px;
}

section#faqs > .faq > h1::before {
  position: absolute;
  top: 0;
  left: -38px;
  content: " ";
  display: inline-block;
  background-color: #000000;
  height: 37px;
  width: 24px;
}

section#faqs > .faq .faqs {
  display: flex;
  flex-direction: column;
}

section#faqs > .faq .faqs .faq {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 30px;
  font-weight: medium;
}

section#faqs > .faq .faqs .faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 30px;
}

section#faqs > .faq .faqs .faq .faq-question div {
  width: 80%;
}

section#faqs > .faq .faqs .faq .faq-question .collapse-icon {
  height: 21px;
  width: 21px;
  margin-right: 10px;
}

section#faqs > .faq .faqs .faq .faq-answer {
  width: 100%;
  height: 0;
  overflow: hidden;
  border: 1px solid #000000;
  border-radius: 8px;
  transition-property: padding, height;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  margin-bottom: 30px;
}

section#faqs > .faq .faqs .faq .faq-answer div {
  margin: 10px;
}

/* faqs section end */

/* contact us section start */
section#contact-us {
  display: flex;
  justify-content: center;
}

section#contact-us .contact-us {
  display: flex;
  flex-direction: column;
  margin: 40px 32px 30px;
}

section#contact-us .contact-us > h1 {
  position: relative;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin: 0 0 40px 38px;
}

section#contact-us .contact-us > h1::before {
  position: absolute;
  top: 0;
  left: -38px;
  content: " ";
  display: inline-block;
  background-color: #000000;
  height: 37px;
  width: 24px;
}

section#contact-us .contact-us .write {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

section#contact-us .contact-us .write > h2 {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4px;
  margin: 0 0 4px 0;
}

section#contact-us .contact-us .write > h2 > img {
  display: none;
}

section#contact-us .contact-us .write > div {
  display: flex;
}

section#contact-us .contact-us .write > div > img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

section#contact-us .contact-us .write > div > p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4px;
}

section#contact-us .contact-us .form-container {
  display: flex;
  flex-direction: column;
}

section#contact-us .contact-us .form-container .heading {
  font-size: 19px;
  letter-spacing: 0.38px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 4px;
}

section#contact-us .contact-us .form-container .heading img {
  display: none;
}

section#contact-us .contact-us .form-container .detail {
  font-size: 20px;
  letter-spacing: 0.64px;
  line-height: 30px;
  margin-bottom: 30px;
}

section#contact-us .contact-us .form-container .form .input {
  width: 100%;
  border: 1px solid #000000;
  border-radius: 4px;
  padding: 14px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}

section#contact-us .contact-us .form-container .form span.error {
  display: inline-block;
  font-size: 12px;
  color: #eb4d4d;
  margin-bottom: 10px;
}

section#contact-us .contact-us .form-container .form .input.error {
  border-color: #eb4d4d;
}

section#contact-us .contact-us .form-container .form .btn {
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 8px;
  font-weight: bold;
  padding: 20px 24px;
  width: auto;
  background-color: #e53f00;
  border-radius: 4px;
  color: #fff;
  margin-bottom: 16px;
}

section#contact-us .contact-us .form-container .form .btn:disabled {
  background-color: #ff804d;
  border: 1px solid #ff804d;
}
/* contact us section end */

/* instructor section start */
section#instructor {
  display: flex;
  justify-content: center;
}

section#instructor .instructor * {
  background-color: transparent;
}

section#instructor .instructor {
  background-color: #ffede682;
}

section#instructor .instructor {
  display: flex;
  flex-direction: column;
  margin: 30px 16px 34px;
  border: 0.2px solid #e53f00;
  border-radius: 10px;
}

section#instructor .instructor img {
  width: 264px;
  height: 272px;
  align-self: center;
}

section#instructor .instructor .content {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-top: 40px;
}

section#instructor .instructor .content h2 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.64px;
  margin: 0 32px 16px;
}

section#instructor .instructor .content p {
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 30px;
  margin: 0 32px 32px;
}

section#instructor .instructor .content .btn {
  width: 80%;
  margin: 0 32px 32px;
  line-height: 8px;
  letter-spacing: 0.32px;
  font-weight: bold;
  background-color: #e53f00;
  border-radius: 4px;
  color: #fff;
  padding: 20px 0;
}
/* instructor section end */


/* Footer Skill start */
section.skill {
    padding: 29px 0;
    background: #333;
    margin-top: 30px;
}

section.skill p {
    font-size: 17px;
    line-height: 20px;
    color: #999;
    width: 95%;
}

.skill-wrap {
    margin: 0 auto;
    padding: 0 15px;
}

section.skill p.skillTitle {
    font-size: 30px;
    background-image: linear-gradient(to right, #ffbc03, #f56d00 20%, #f56d00 80%);
    color: transparent;
    -webkit-background-clip: text;
    text-transform: none;
    font-weight: 900;
    margin: 0 0 20px;
    line-height: 37px;
}
/* Footer skill End */


/* footer section start */
section#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section#footer .brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 81px 48px;
  color: #191919;
}

section#footer .brand div {
  display: flex;
  margin-bottom: 10px;
}

section#footer .brand img {
  width: 50px;
  height: 50px;
}

section#footer .brand .brand-text {
  width: 124px;
  height: 45px;
}

section#footer .course-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 63px 60px;
  height: auto;
}

section#footer .course-company .courses {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}

section#footer .course-company .company {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

section#footer .course-company h5 {
  font-size: 14px;
  line-height: 21px;
  padding: 2px 9px;
  background-color: #000000;
  color: #fff;
  margin-bottom: 8px;
}

section#footer .course-company h6 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 4px;
}

section#footer .course-company .courses .btn {
  margin-top: 8px;
  font-size: 16px;
  line-height: 15px;
  letter-spacing: 0.32px;
  padding: 20px;
  background-color: #e53f00;
  color: #fff;
  border-radius: 4px;
}

section#footer .social {
  width: 160px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 50px;
}

section#footer .social img {
  height: 30px;
  width: 30px;
}

section#footer .copyright {
  font-size: 12px;
  line-height: 13px;
  font-weight: bold;
  margin-bottom: 82px;
}

section#footer .copyright .policy {
  margin-bottom: 5px;
  letter-spacing: -0.26px;
}

section#footer .copyright .made {
  margin-bottom: 7px;
  letter-spacing: -0.26px;
}
/* footer section end */

/* desktop footer */
section#desktop-footer {
  display: none;
}
