@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

/* global css */

:root {
  --main-color: #1c0404;
  --primary-color: #f19023;
  --secondary-color: #49070b;
  --yellow-color: #fafe28;
  --white-color: #fff;
  --main-fontsize: 36px;
  --secondary-fontsize: 16px;
  --color-dark: #000000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #454242;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
/* font-family: 'Poppins',
sans-serif; */

a {
  color: #1c0404;
}
a:hover {
  text-decoration: none;
  color: #1c0404;
}

img {
  max-width: 100%;
  display: block;
}
.py {
  margin: 15px 0;
}
.title-main {
  color: var(--main-color);
  font-size: var(--main-fontsize);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.btn-main {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 0.8em 7em;
  font-size: 1.6rem;
  border: 1px solid #f19023;
  transition: all 300ms;
}
.btn-main:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn-regular {
  background: #fff;
  border: 2px solid #f19023;
  padding: 0.8em 2em;
  transition: all 300ms;
}

.btn-regular:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}

.btn-regular a {
  transition: all 300ms;
}
.btn-regular:hover a {
  color: #fff;
}
.btn-yellow {
  background-color: var(--yellow-color);
  padding: 1em 2em;
  border: none;
  font-weight: 500;
  transition: all 300ms;
}
.btn-yellow:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
@media only screen and (max-width: 576px) {
  .btn-yellow {
    padding: 0.7em 1.5em;
  }
}

.container-custom {
  max-width: 1170px;
  margin: 0 auto;
}

/* banner css start */
.nav-banner-container {
  background-color: #fffcf8;
  min-height: 500px;
}
@media only screen and (max-width: 992px) {
  .nav-banner-container {
    padding-bottom: 5em;
  }
}
/* nav css */
.navigation-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #fffaf5;
}
.site-logo {
  width: 250px;
}
.nav-btn-phn {
  display: none;
}
.navigation-nav ul {
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.navigation-nav li {
  margin: 0 10px;
}
#mobile-btn {
  color: var(--primary-color);
  font-size: 2.5rem;
  background: none;
  border: none;
  display: none;
}

@media only screen and (max-width: 1118px) {
  .nav-btn-desktop {
    display: none;
  }
  .nav-btn-phn {
    display: inline-block;
    padding: 5px 15px;
  }
}
@media only screen and (max-width: 992px) {
  #mobile-btn {
    display: block;
  }
  .navigation-nav ul {
    position: fixed;
    top: 0;
    left: -150%;
    width: 260px;
    height: 100vh;
    background: #2b0406ef;
    z-index: 10;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 300ms;
    padding: 1em;
  }
  .navigation-nav li {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1.5em auto;
    text-align: center;
  }
  .navigation-nav ul.show {
    left: 0;
    display: inherit !important;
  }

  .navigation-nav ul li a {
    color: #fff;
  }
}

/* nav css end */

.banner {
  display: flex;
  align-items: center;
  height: 500px;
  padding: 0 2em;
}
.banner-content {
  width: 110%;
}
.banner-title {
  font-family: "Poppins", sans-serif;
  color: #1c0404;
  line-height: 1.3;
}
.banner-text {
  margin: 1.5em 0;
  color: #454242;
}

@media only screen and (max-width: 992px) {
  .banner-image {
    height: 220px;
  }
  .banner-text h1 {
    font-size: 2.2rem;
  }
}

/* search banner  */
.search-component {
  background-color: #fff;
  box-shadow: 0px 20px 40px 8px rgba(73, 7, 11, 0.05);
  padding: 2em;
  margin-top: -4em;
}
.search-component p {
  color: #777777;
}

.search-input-container {
  position: relative;
  width: 100%;
}
.search-input-icon {
  position: absolute;
  top: 28%;
  left: 2%;
  font-size: 2rem;
  color: #b4b4b4;
}
.search-input-field {
  padding: 0.8em 3em;
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #a09898;
}
.search-input-field:focus {
  outline: none;
}

.course-input-title {
  margin-left: 25px;
}
.search-select-field {
  display: block;
  margin: 0 auto;
  padding: 0.8em 0em;
  width: 70%;
  border: 0px;
  border-bottom: 2px solid #a09898;
}

@media only screen and (max-width: 992px) {
  .search-component {
    margin: 2em auto;
  }
  .course-input-title {
    margin: 2em 0px 0px 0px;
  }
  .search-select-field {
    margin: 0px 0px 2em 0px;
    width: 100%;
  }
}

.search-select-field:focus {
  outline: none;
}
.search-categories-field {
  display: block;
  margin: 0 auto;
  padding: 0.8em 0em;
  width: 100%;
  border: 0px;
  border-bottom: 2px solid #a09898;
}
.search-categories-field:focus {
  outline: none;
}

.search-btn button {
  width: 60%;
  background-color: #fff;
  border: 3px solid #f19023;
  padding: 0.7em 1em;
  display: block;
  margin: 0 auto;
  margin-top: 29px;
}

.search-btn button:hover {
  background-color: #49070b;
  color: #fff;
  border: 2px solid #49070b;
}

/* banner css end */

/* quality css start  */
.quality-standards {
  margin-top: 100px;
}
.quality-content h3 {
  border-left: 5px solid var(--primary-color);
  padding-left: 22px;
  margin-bottom: 39px;
}
.quality-content p {
  font-size: var(--secondary-fontsize);
  font-weight: 400;
  font-family: "Inter";
  list-style: 24px;
  margin-bottom: 24px;
}

.ouc-points {
  display: flex;
  align-items: flex-start;
}
.ouc-points > i {
  margin: 4px 8px 0px 0px;
}
.ouc-points > p {
  font-size: 14px;
}

.quality-right {
  display: flex;
}
.quality-right p {
  font-size: 14px;
  color: #664a4c;
}
.quality-right-content div {
  display: flex;
}
.quality-right-content div i {
  padding-top: 5px;
  margin-right: 10px;
}

.quality-btns i {
  margin-left: 7px;
}
.quality-btns a {
  color: var(--secondary-color);
  margin-left: 40px;
}
.quality-btns a:hover {
  text-decoration: none;
}
.quality-content-img {
  padding-top: 60px;
  position: relative;
}
.quality-content-img .quality-content-img-2 {
  position: absolute;
  top: -55px;
  right: -107px;
}
@media only screen and (max-width: 1100px) {
  .quality-content-img .quality-content-img-2 {
    right: 0px;
    z-index: -1;
  }
}
@media only screen and (max-width: 665px) {
  .quality-content-img .quality-content-img-2 {
    right: 15px;
    z-index: -1;
  }
  .quality-standards {
    margin-top: 44px;
  }
  .quality-content-img {
    margin-top: 55px;
  }
}
/* quality end start  */
/* certified partnerd start */
.certified-partners {
  margin-top: 130px;
}
.certified-content {
  text-align: center;
}
.certified-content p {
  margin-top: 20px;
}
.certified-content-img {
  margin: 2em 0;
}

.certified-content .btn-regular {
  display: inline-block;
}

.partner-logo {
  display: inline-block;
  margin: 0.2em 0.5em;
  cursor: pointer;
  padding: 0em 1em;
  transition: all 300ms;
}
.partner-logo:hover {
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.082);
}

/* certified partnerd end */

/* the principles  section start here */

.the-principles {
  position: relative;
  background: #fffcf8;
  margin: 90px 0;
}
.the-principles-img-2 {
  position: absolute;
  right: 0;
  z-index: 1;
  opacity: 0.5;
  top: -184px;
}
.principles-img-container {
  padding: 0;
}
.the-principles-img {
  background: #fffcf8;
  max-height: 595px;
}

.principles-content {
  background: #fffcf8;
  padding: 146px 40px;
}
.principles-content h3 {
  color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 22px;
}
.principles-content p {
  margin: 28px 0;
}
@media only screen and (max-width: 992px) {
  .the-principles {
    margin-bottom: 40px;
  }
  .the-principles-img-2 {
    z-index: -1;
  }
  .principles-content {
    padding: 100px 0px;
  }
}
/* the principles  section end here */
/* become partnerd secton start here */
/* .become-partnered {
  margin: 90px 0;
} */
.partnerd-content {
  padding: 146px 0px;
}
.partnerd-content .title-main {
  color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 22px;
}
.partnerd-content .btn-regular {
  margin-top: 25px;
}
@media only screen and (max-width: 992px) {
  .partnerd-content {
    padding: 46px 0px;
  }
}
/* become partnerd secton end here */
/* <!-- course workshop secton start here --> */
.course-workshop {
  background: #f6f6f6;
}
.courses-title {
  margin-top: 70px;
}
.courses-title h3 {
  color: var(--secondary-color);
  text-align: center;
}
.course-content {
  background: #ffffff;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 4px 4px 10px rgba(27, 3, 3, 0.05);
}
.course-content .course-type {
  padding: 3px 10px;
  background: #fff3e7;
  color: var(--primary-color);
  border-radius: 6px;
}
.course-content .course-type-2 {
  background: #e5fbe0;
  color: #37cd11;
}
.course-content h4 {
  color: var(--secondary-color);
  font-size: 22px;
  font-family: "Poppins";
  font-weight: 600;
  line-height: 29px;
  margin: 20px 0;
}
.course-content .skill-up {
  color: #949494;
  font-weight: 500;
  font-size: 14px;

  line-height: 17px;
}
.course-content .skill-up:hover {
  text-decoration: none;
}
.course-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: #454242;
  margin: 20px 0;
}
.course-content .learning-type {
  color: #949494;
  font-style: italic;
  margin-bottom: 30px;
}
.course-content .learning-type span {
  color: #1c0404;
}
.course-btn {
  display: flex;
  justify-content: space-between;
}
.course-btn a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  color: #000000;
  text-decoration: underline;
}
.course-btn a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.course-btn .btn-regular {
  cursor: pointer;
}
.course-content-btn {
  text-align: center;
  margin: 86px 0;
}
/* <!-- course workshop secton end here --> */

/* testimonials section start */
.testimonials {
  margin: 4em 0;
  padding: 2em 0;
}
.testimonials-title {
  text-align: center;
}
.testimonials-subtitle {
  text-align: center;
  color: #454242;
  margin: 1.5em 0;
}

/* ----------------------------------------------------
slider styles
----------------------------------------------------- */
.slider {
  margin-bottom: 30px;
  position: relative;
}

.slider .owl-item.active.center .slider-card {
  transform: scale(1.15);
  opacity: 1;
  background: #fffcf8;
  color: #000;
  margin: 40px;
}

.slider-card {
  margin: 50px 15px 120px 15px;
  box-shadow: 4px 4px 12px rgb(218, 216, 216);
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.3s;
  padding: 4em 2em;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.fa-quote-right {
  position: absolute;
  top: -58px;
  right: 0;
  font-size: 15rem;
  color: #f3efeb;
}

.reviewer-details-container {
  width: 30%;
}
.testimonial-text {
  width: 65%;
  font-size: 1.8rem;
  color: #454242 !important;
  align-self: flex-end;
}
.reviwer-info {
  margin-top: 8em;
  position: relative;
}
.ellipse {
  position: absolute;
  top: -40px;
  left: -10px;
}
.reviwer-name {
  font-weight: bold;
  margin: 0;
}
.reviwer-link {
  color: #1da1f2;
  margin-left: 3px;
}
.reviwer-org {
  font-size: 1.2rem;
  color: #49070b;
}

.owl-nav .owl-prev {
  position: absolute;
  bottom: 0%;
  left: 44%;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-nav .owl-next {
  position: absolute;
  bottom: 0%;
  right: 44%;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-dots {
  text-align: center;
  display: none;
}

.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ccc !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}

.owl-dots .owl-dot.active {
  background: #f44336 !important;
}

@media only screen and (max-width: 1000px) {
  .slider-card {
    width: 80vw;
    margin: 4em auto 10em auto !important;
  }
}
@media only screen and (max-width: 992px) {
  .slider-card {
    margin: 50px 15px 140px 15px;
  }
  .owl-nav .owl-prev {
    left: 30%;
  }
  .owl-nav .owl-next {
    right: 30%;
  }
  .slider-card {
    flex-direction: column;
  }
  .reviewer-details-container {
    width: 100%;
  }
  .testimonial-text {
    width: 100%;
    font-size: 1.8rem;
    color: #454242 !important;
    align-self: flex-end;
  }
  .reviwer-info {
    margin-top: 1em;
  }
}
/* ----------------------------------------------------
----------------------------------------------------- */

/* testimonials section end here */
/* <!-- faq secton start here --> */
.faq {
  overflow: hidden;
}
.faq-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faq img {
  max-height: 100%;
}
.faq-accordion {
  padding-left: 60px;
}
.faq-title h3 {
  color: var(--secondary-color);
  border-left: 5px solid var(--primary-color);
  padding-left: 30px;
  margin: 20px 0 70px 0;
}
.accordion {
  max-width: 750px;
}
.contentBx {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--primary-color);
  margin-bottom: 20px;
  margin-right: 10px;
}
.contentBx .accordion-label {
  position: relative;
  color: var(--secondary-color);
  font-size: 18px;
  font-family: 500;
  line-height: 24px;
  padding: 26px 30px;
}
.contentBx .accordion-label::before {
  content: "+";
  font-size: 30px;
  position: absolute;
  top: 35%;
  right: 28px;
  transition: 0.5s;
}
.contentBx.active .accordion-label::before {
  transform: rotate(45deg);
  transition: 0.5s;
}
.contentBx .content {
  height: 0;
  margin: 0px 50px;
  transition: 0.3s;
  overflow: hidden;
}
.contentBx.active .content {
  height: 100px;
  padding-top: 10px;
  border-top: 1px solid rgba(241, 144, 35, 0.26);
  transition: all 0.5;
}
.contentBx .content p {
  font-size: 14px;
  font-weight: 400;
  color: #454242;
}

@media only screen and (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-title h3 {
    margin: 50px 0;
  }
  .faq-left-img img {
    margin: 0 auto;
    max-width: 100%;
  }
  .contentBx {
    margin-right: 0px;
  }
  .contentBx.active .content {
    height: 150px;
  }

  .accordion {
    margin: 0 auto;
  }
  .faq-accordion {
    padding: 0px 30px;
  }
}

/*  */
/* <!-- faq secton end here --> */

/* Subscribe section start here */
.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscribe-form > * {
  margin: 1em 10px;
}
.subscribe {
  background-color: #fffcf8;
  margin: 4em 0;
  padding: 4em 0;
  color: #9c9c9c;
}
.subscribe-title,
.subscribe-sub-title {
  text-align: center;
}
.subscribe-sub-title {
  color: #454242;
}
.subscribe-sub-title {
  margin-bottom: 2em;
}
.subs-name-input-container {
  position: relative;
}
.name-input-field {
  border: 1px solid rgba(73, 7, 11, 0.6);
  padding: 0.8em 2.5em;
}
.name-input-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.subs-mail-input-container {
  position: relative;
}
.mail-input-field {
  border: 1px solid rgba(73, 7, 11, 0.6);
  padding: 0.8em 2.5em;
}
.mail-input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.subscribe-btn {
  border: 1px solid #49070b;
  padding: 0.8em 2.5em;
  background: none;
  color: #1e1b1b;
  transition: all 300ms;
}
.subscribe-btn:hover {
  color: #fff;
  background: #49070b;
}
.subs-privacy-policy {
  text-align: center;
  margin: 2em 10px;
}
@media only screen and (max-width: 992px) {
  .subscribe-form {
    flex-direction: column;
  }
  .subscribe-title {
    font-size: 2em;
  }
}

/* Subscribe section end here */

/* Blog section start here */
.blog {
  margin: 6em auto;
}
.blog-title {
  text-align: center;
  margin: 1em 0;
}

.blog-card-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.blog-card {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  max-width: 345px;
  margin: 10px;
}
.blog-card-content {
  padding: 1em;
}
.blog-card-title {
  font-size: 1.5rem;
}
.blog-card-text {
  color: #454242;
}
.card-nav {
  display: flex;
  justify-content: space-between;
}
.card-btn {
  color: #49070b;
  border: none;
  background: none;
  font-weight: bold;
}
.card-date {
  color: #7b7b7b;
}

.blog-btn {
  text-align: center;
  margin: 3em;
}
@media only screen and (max-width: 1100px) {
  .blog-card-container {
    justify-content: center;
  }
  .blog-card {
    margin: 1em 10px;
  }
}

/* Blog Section end here */

/* footer start here */
.footer-home {
  background-color: #fffcf9;
}
.footer-top-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 4em 0em;
}
.footer-col-logo {
  width: 25%;
  margin-right: auto;
}
.footer-col-links {
  width: 15%;
}
.footer-col-newsletter {
  width: 28%;
  margin-left: auto;
}
.footer-logo {
  width: 247px;
}

.footer-logo-text {
  margin-top: 2em;
}
.footer-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-input {
  background: #fff;
  border: 1px solid rgba(73, 7, 11, 0.6);
  padding: 0.8em 6px;
  margin: 4px 0px;
}
.footer-btn {
  margin: 4px 0px;
}
@media only screen and (max-width: 992px) {
  .footer-content {
    flex-direction: column;
  }
  .footer-content > * {
    margin: 0 auto;
    width: 95%;
    margin: 10px auto;
  }
  .footer-form {
    justify-content: flex-start;
  }
  .footer-input {
    margin-right: 5px;
  }
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  text-align: right;
  margin-right: auto;
  padding: 1.2em 0;
  border-top: 1px solid #c8c6c6;
}
.footer-copyright p {
  width: 50%;
  color: #454242;
  margin-bottom: 0;
}
.footer-copy-text {
  margin-right: auto;
  width: 50%;
  text-align: left;
  margin: 0 10px;
}
.footer-copyright i {
  margin: 0 10px;
  font-size: 16px;
}
/* footer end here */
