/* common css ******************************************************************************/

/* font-family ---------------------- */

@font-face {
  font-family: "Rubik-Bold";
  src: url("../fonts/Rubik/Rubik-Bold.ttf");
}
@font-face {
  font-family: "Rubik-Medium";
  src: url("../fonts/Rubik/Rubik-Medium.ttf");
}
@font-face {
  font-family: "Rubik-Regular";
  src: url("../fonts/Rubik/Rubik-Regular.ttf");
}
@font-face {
  font-family: "Rubik-SemiBold";
  src: url("../fonts/Rubik/Rubik-SemiBold.ttf");
}
@font-face {
  font-family: "Manrope-Bold";
  src: url("../fonts/Manrope/Manrope-Bold.ttf");
}

:root {
  --white: #fff;
  --black: #000;
  --light-green: #d2e6e4;
  --light-green-E6F4F3: #e6f4f3;
  --green: #0b7077;
  --dark-green: #023033;
  --orange: #fd661f;
  --gray: #656565;
  --gray-4D4D4D: #4d4d4d;
  --dark-blue: #252641;
  --black-010205: #010205;
}
.white {
  color: var(--white);
}
.black {
  color: var(--black);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
body {
  background: #fff;
  font-family: "Rubik-Regular";
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-family: "Rubik-Bold";
  color: var(--green);
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 52px;
}
h2 {
  font-size: 40px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--gray);
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading p {
  max-width: 900px;
  margin: 0 auto;
}
.btn-common {
  font-size: 18px;
  padding: 12px 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik-Medium";
}
.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding-bottom: 80px;
  overflow: hidden;
}
.bg {
  padding: 80px 0;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.owl-nav {
  margin-top: 0;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 30px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}
#header {
  background: transparent;
  padding: 15px 0;
  transition: 0.5s all;
  position: relative;
  z-index: 9;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 90px;
  width: 100%;
  filter: drop-shadow(2px 4px 6px black);
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--dark-blue);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 50px;
}
#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 18px;
  font-family: "Rubik-Medium";
  color: var(--dark-blue);
}
#header .main-nav nav ul li a.active {
  color: var(--orange);
}
#header .btn-common {
  background: var(--green);
  font-family: "Rubik-SemiBold";
  text-transform: uppercase;
}

/* homeBanner css ******************************************************************************/
#homeBanner {
  padding-bottom: 120px;
  margin-top: -120px;
}
#homeBanner .homeBanner-part {
  background-color: var(--light-green);
  position: relative;
  padding-bottom: 0;
  border-radius: 0 0 25px 25px;
}

#homeBanner .bottom-part {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
}

#homeBanner .ratings img {
  max-width: 60%;
}
#homeBanner .button-box {
  padding-top: 0px;
}

#homeBanner .circle-container {
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 0%;
  z-index: 99;
  transform: translate(-50%, 50%);
  left: 50%;
  background-color: var(--light-green);
  border-radius: 100%;
}

#homeBanner .circle-text {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 90%;
  height: 90%;
  animation: rotate 10s linear infinite;
  transform-origin: center;
  background-color: var(--green);
  border-radius: 50%;
  padding: 5px;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

#homeBanner .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.play-button::before {
  font-family: "Font Awesome 5 Free";
  content: "\f04b";
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
}

/* shaping css ******************************************************************************/

.shaping-box-cmn .box {
  box-shadow: 0px 0px 20px 0px #0000001c;
  border-radius: 20px;
  padding: 20px 15px;
  height: 100%;
  display: grid;
}

.shaping-box-cmn .box .img-box {
  margin-bottom: 25px;
}

.shaping-box-cmn .box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto;
  display: flex;
}
.shaping-box-cmn .box h5 {
  text-align: center;
  font-family: "Rubik-Medium";
  color: var(--dark-green);
  margin-bottom: 10px;
}

.shaping-box-cmn .box p {
  font-family: "Rubik-Medium";
  text-align: center;
  font-size: 16px;
}
.shaping-box-cmn .box .button-box {
  display: flex;
  justify-content: center;
}

/* verified css ******************************************************************************/
#verified .verified-part {
  background-color: var(--light-green);
  border-radius: 20px;
}
#verified .section-heading {
  text-align: left;
}
#verified .content {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  align-items: center;
}
#verified .content .img-box {
  background-color: var(--white);
  border-radius: 100%;
  padding: 12px;
}
#verified .content .img-box img {
  width: 25px;
  object-fit: contain;
  max-width: 30px;
}

#verified .content .text p {
  font-family: "Rubik-Medium";
}
#verified .content .text-box {
  padding-right: 120px;
}

/* course-cmn css ******************************************************************************/

.course-cmn .item {
  display: grid;
  border-radius: 20px;
  grid-template-columns: 45% 1fr;
  box-shadow: 0px 0px 20px 0px #0000001c;
  margin-block: 20px;
  overflow: hidden;
}
.course-cmn .owl-item.active.center .item {
  box-shadow: 0px 0px 20px 0px #0000005c;
}
.course-cmn .item .img-box img {
  height: 100%;
}
.course-cmn .item .text-box {
  padding: 30px 25px;
  /* width: 100%; */
}
.course-cmn .item .text-box p {
  font-size: 16px;
  margin-bottom: 10px;
}
.course-cmn .item .text-box h6 {
  color: var(--dark-green);
  font-family: "Rubik-SemiBold";
}
/* faq css start ******************** */
.faq-cmn .faq-part {
  background-color: var(--light-green-E6F4F3);
}
.faq-cmn .section-heading {
  text-align: left;
}
.faq-cmn .button-box a.question {
  color: var(--black-010205);
  border: 1px solid var(--black-010205);
  border-radius: 50px;
  font-family: "Manrope-Bold";
  padding: 15px 30px;
}
.faq-cmn .button-box a.contact {
  color: var(--black-010205);
  text-decoration: underline;
  font-family: "Manrope-Bold";
}
.faq-cmn .button-box {
  display: flex;
  align-items: center;
  gap: 25px;
}

.faq-cmn .accordion-button {
  color: var(--dark-green) !important;
  font-size: 18px;
  background-color: transparent !important;
  box-shadow: none !important;
}
.faq-cmn .accordion-item {
  background-color: transparent;
  border: none;
  border-block: 1px solid var(--black-010205);
  border-radius: 0 !important;
  padding: 10px 0;
}
.faq-cmn .accordion-body {
  font-family: "Rubik-Medium";
  color: var(--gray);
}

.faq-cmn .accordion-button::after {
  background-image: url("../images/plus.svg");
}

.faq-cmn .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg");
  transform: none;
}

/*id-card-cmn start ******************  */

.id-card-cmn .section-heading {
  text-align: left;
}
.id-card-cmn .img-box img {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
}
.id-card-cmn .text p {
  font-size: 20px;
  color: var(--dark-green);
}
.id-card-cmn .text ul {
  padding-left: 30px;
  color: var(--gray);
  font-family: "Rubik-Regular";
  list-style-type: disc;
}
.id-card-cmn .text ul li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* footer css ******************************************************************************/
#footer p {
  color: var(--green);
}

#footer .top-box li {
  color: var(--green);
}
#footer .top-box .logo-box img {
  max-width: 90px;
  margin-bottom: 30px;
  filter: drop-shadow(2px 4px 6px black);
}
#footer .top-box h5 {
  margin-bottom: 30px;
  font-family: "Rubik-SemiBold";
  font-size: 20px;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .top-box .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
}

#footer {
  background: url("../images/footer-bg.png");
  padding: 80px 0;
  background-size: 100% 100%;
}

#footer .box3 li img {
  max-width: 25px;
  margin-right: 12px;
}
#footer .box3 li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .box3 p {
  color: var(--green);
  margin-bottom: 5px;
}
#footer .end-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  border-top: 1px solid var(--gray);
  padding-top: 50px;
}

#footer .end-box ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

#footer .end-box ul i {
  font-size: 25px;
  color: var(--dark-green);
}
