:root {
  --main-color: #063464;
  --second-color: #fd661f;
  --third-color: #ecf5ff;
  --main-radius: 20px;
  --main-transition: 0.3s;
  --fs-size: 18px;
  --light-mode-Color: #e4e5f1;
  --dark-mode-color: #18191a;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  direction: rtl;
  font-family: "Tajawal", sans-serif;
  background-color: #f7f7f7;
}
a {
  text-decoration: none;
}
h2 {
  color: #ffb14b;
  font-weight: bold;
  font-size: 48px;
}
p {
  margin: 0;
}
/* Start Scrolling */
.arrow {
  cursor: pointer;
  position: fixed;
  bottom: -100%;
  right: 25px;
  transition: 0.5s;
  z-index: 1100;
}
.arrow i {
  font-size: 1.5rem;
  background-color: var(--main-color);
  color: white;
  padding: 0.5rem;
  /* border-radius: 10px; */
}
.appear {
  bottom: 10px;
}
/* End Scrolling */
.whatsapp {
  position: fixed;
  bottom: 2%;
  left: 2%;
  z-index: 999;
  background-color: rgb(77, 194, 71) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.whatsapp i {
  color: white;
  font-size: 2rem;
}
/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
  height: 600px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: inherit;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  background-color: #8daef7;
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-prev {
  top: 95%;
  left: 76%;
}
.swiper-button-next {
  top: 95%;
  left: 85%;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  background-color: #fff !important;
  color: black;
  opacity: 1;
}
/* Start Navbar */
.navbar {
  border-bottom: 1px solid #676767;
  height: 72px;
}
.navbar-nav {
  gap: 2rem;
}
@media (max-width: 768px) {
  .navbar {
    height: unset;
  }
}
@media (max-width: 992px) {
  .dark-btn {
    margin-top: 1rem;
  }
  .navbar .buttons {
    margin-right: 2rem;
  }
  .navbar-nav {
    gap: unset;
  }
}
.navbar-nav li {
  width: fit-content;
}
.navbar-nav li.active {
  border-bottom: 1px solid var(--main-color);
}
.navbar-nav li a {
  /* transition: 0.3s; */
  color: var(--main-color);
  font-size: var(--fs-size);
}
.navbar-nav li a:hover {
  color: var(--first-color);
  border-bottom: 1px solid var(--main-color);
}
.navbar .buttons a:first-child {
  background-color: var(--main-color);
  color: white;
}
.navbar .buttons a:first-child:hover {
  border: 1px solid var(--main-color);
  background-color: unset;
  color: #000;
}
.navbar .buttons a:last-child {
  border: 1px solid var(--main-color);
}
.navbar .buttons a:last-child:hover {
  background-color: var(--main-color);
  color: white;
  border: 1px solid var(--main-color);
}
.dark-btn {
  /* position: absolute; */
  z-index: 100;
  background-color: #fff;
  width: 4rem;
  height: 2rem;
  top: 10%;
  left: 5%;
  border-radius: 5rem;
  box-shadow: inset 0 8px 60px rgba(0, 0, 0, 0.1),
    inset 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dark-btn .btn-indecator {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.dark-btn .btn-indecator .btn-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-btn .btn-indecator .btn-container .btn-icon {
  font-size: 0.9rem;
  color: #ffcc00;
}

.dark-btn .btn-indecator .btn-container .btn-icon.spin {
  animation: spin 0.5s;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* End Navbar */
/* Start Landing */
.landing {
  background-color: var(--third-color);
  height: calc(100vh - 72px);
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
}
.landing .btn {
  transition: var(--main-transition);
}
.landing .btn:hover {
  background-color: var(--main-color);
}
@media (max-width: 992px) {
  .landing {
    height: auto;
  }
  .landing .content {
    margin-top: 2rem;
  }
  .landing .order {
    order: -1;
  }
  .landing .learn {
    align-self: center !important;
  }
  .landing .rate {
    align-self: center !important;
  }
  .landing h1 {
    font-size: 4.5rem !important;
  }
  .landing .pic img {
    height: calc(55vh - 72px) !important;
  }
}
@media (max-width: 768px) {
  .landing h1 {
    font-size: 2.5rem !important;
  }
  .landing .pic img {
    height: calc(65vh - 72px) !important;
  }
}
.landing .pic img {
  height: calc(100vh - 72px);
  object-fit: cover;
}
.landing .icon-one {
  top: 35%;
  right: 20%;
  position: absolute;
  background-color: #ffb14b;
}
.landing .icon-one i {
  background-color: #fff;
  color: #ffb14b;
  font-size: 18px;
}
.landing .cal {
  position: absolute;
  top: 50%;
  left: 10%;
  background-color: rgb(255 255 255 / 80%);
}
.landing .cal i {
  background-color: #23bdee;
  color: white;
  font-size: 18px;
}
.landing .learn {
  color: #252641;
  background-color: #fff;
  font-size: var(--fs-size);
  font-weight: 500;
  width: fit-content;
}
.landing h1 {
  font-size: 4rem;
  color: var(--main-color);
}
.landing .stars i {
  color: var(--main-color);
}
.landing .btn {
  background-color: #ffb14b;
  color: white;
}
.landing .imgs img:not(:last-child) {
  margin-left: -15px;
}
/* End Landing */
/* Start Number */
.numbers {
  box-shadow: 0 0 20px rgb(0 0 0 / 25%);
}
@media (min-width: 992px) {
  .numbers .box {
    justify-content: center !important;
  }
}
@media (max-width: 992px) {
  .numbers .number {
    flex: 0.5;
  }
}

.numbers .icon {
  width: fit-content;
  width: 84px;
  height: 84px;
}
.numbers .cyan {
  background: rgb(146, 218, 240);
  background: linear-gradient(
    180deg,
    rgba(146, 218, 240, 1) 0%,
    rgba(33, 201, 255, 1) 70%
  );
}
.numbers .red {
  background: rgb(255, 164, 175);
  background: linear-gradient(
    180deg,
    rgba(255, 164, 175, 1) 0%,
    rgba(238, 69, 90, 1) 70%
  );
}
.numbers .purple {
  background: rgb(169, 136, 249);
  background: linear-gradient(
    180deg,
    rgba(169, 136, 249, 1) 0%,
    rgba(109, 58, 233, 1) 70%
  );
}
.numbers .green {
  background: rgb(42, 249, 177);
  background: linear-gradient(
    180deg,
    rgba(42, 249, 177, 1) 0%,
    rgba(32, 180, 134, 1) 70%
  );
}
.numbers .icon svg {
  width: 44px;
  height: 44px;
}
.numbers .icon svg polygon,
.numbers .icon svg polyline,
.numbers .icon svg path {
  stroke: #fff;
}
.numbers span:first-child {
  font-size: 2rem;
  font-weight: 500;
}
.numbers span {
  font-size: var(--fs-size);
}
/* End Number */
/* Start Courses */
.courses {
  direction: ltr;
}
.courses .btn {
  transition: var(--main-transition);
}
.courses .btn:hover {
  background-color: var(--second-color) !important;
}
.courses li .nav-link {
  font-size: var(--fs-size);
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  color: #818c96;
}
.courses .box {
  position: relative;
}
.courses .pic {
  overflow: hidden;
  position: static !important;
}
.courses .box .pic img {
  transition: var(--main-transition);
}
.courses .box:hover .pic > img {
  transform: rotate(3deg) scale(1.1);
}
.nav-tabs .nav-link.active {
  background-color: var(--main-color);
  color: white;
}
.nav-tabs .nav-link:hover {
  background-color: var(--main-color);
  color: white;
}
.courses .pic .cont {
  width: 80%;
  top: 37%;
  height: fit-content;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fafafa;
}
@media (max-width: 992px) {
  .courses .pic .cont {
    top: 42%;
  }
}
@media (max-width: 768px) {
  .courses .pic .cont {
    top: 46%;
  }
}
.courses .pic .imgs img {
  margin-left: -15px;
  width: 30px;
  height: 30px;
}
.courses .box {
  background-color: #ffffff;
  box-shadow: 00 10px 60px rgb(38 45 118 / 8%);
}
.courses .box h5 {
  color: var(--main-color);
}
.courses .box .price span:first-child {
  font-size: 20px;
  color: #ffb14b;
}
.courses .box .price span:last-child {
  text-decoration: line-through;
}
.courses .box .btn {
  background-color: var(--main-color);
  color: white;
}
.offline {
  background-color: #f7f9ff;
}
/* End Courses */
/* Start Information */
.information h2,
.videos h2,
.teachers h2,
.say h2 {
  color: var(--main-color) !important;
}
.information p {
  color: #696984;
  font-size: 18px;
}
.information .box {
  transition: 0.3s;
}
.information .box:hover {
  background-color: #fff;
  scale: 1.1;
}
@media (max-width: 768px) {
  .information .box:hover {
    background-color: #fff;
    scale: 0.9;
  }
  .information h2 {
    font-size: 28px;
  }
  .information p {
    width: 100% !important;
  }
}
.information .box:hover .btn {
  background-color: #ffcc00;
  color: white;
}
.information .btn {
  background-color: #fff;
}
.information svg {
  width: 50px;
  height: 50px;
}
/* End Information */
/* Start Videos */
.videos .vid {
  background-color: #fff5cd;
}
.videos h2 {
  margin-bottom: 8rem;
}
@media (max-width: 992px) {
  .videos h2 {
    margin-bottom: 2rem;
  }
  .videos .box {
    background-color: #fff;
    margin-top: 0 !important;
  }
}
.videos .box {
  background-color: #fff;
  margin-top: -25%;
}
.videos .box p {
  font-size: 18px;
}
/* End Videos */
/* Start Teachers */
.teachers {
  background-color: #f7f7f7;
}
.teachers a {
  color: black;
}
/* End Teachers */
/* Start Say */
.say {
  background-color: white;
  color: var(--main-color);
}
.say .swiper {
  height: 400px;
}
.say .swiper-button-prev,
.say .swiper-button-next {
  display: none;
}
.say .box {
  border: 1px solid var(--main-color);
}
.say .swiper-pagination-bullet-active {
  background-color: #23bdee;
}
.say .pic {
  width: 56px;
  height: 56px;
}
/* End Say */
/* Start Login */
.login {
  background-color: white;
}
.login .pic img {
  object-fit: cover;
}
.login .pic-sign {
  height: 100% !important;
}
@media (max-width: 992px) {
  .login {
    height: 100vh;
  }
  .login .pic {
    display: none !important;
  }
}

.login .sm-pic {
  width: 150px;
  padding: 10px;
  border-radius: 10px;
}
.form-container {
  width: 70%;
  margin: auto;
}
@media (max-width: 768px) {
  .form-container {
    width: 90%;
  }
}
.form-container form input:not(:last-child) {
  height: 58px;
  color: #000;
  font-size: 18px;
  border-radius: 20px !important;
  outline: none !important;
  font-size: 15px;
  box-shadow: -1px 1px 2px 0px rgb(0 0 0 / 8%);
  -webkit-box-shadow: -1px 1px 2px 0px rgb(0 0 0 / 8%);
}
.form-container .google {
  border-radius: 20px !important;
}
.form-container .radio-ch {
  height: 16px !important;
}
.form-container form textarea {
  background: #fff !important;
  color: #000 !important;
  font-size: 18px;
  border-radius: 0px;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  font-size: 15px;
}
.form-container form input:focus,
.form-container form textarea:focus {
  border-color: black;
  outline: none;
  box-shadow: 0 1px 0 -1px var(--first-color);
}
.form-container .pic img {
  height: 588px;
  object-fit: cover;
}
.form-container #contactButton,
.form-container #contactButton:hover {
  background-color: #ff9a15 !important;
  color: white !important;
}
@media (max-width: 992px) {
  .form-container .pic img {
    display: none;
  }
}
.form-container .facebook:focus,
.form-container .facebook:focus-visible,
.form-container .facebook:active {
  color: white;
}
.form-container .new {
  text-decoration: none;
  color: #ff9a15;
}
.form-container .new:hover {
  text-decoration: underline;
}
.form-container .contact-info .more {
  top: -10%;
  left: 5%;
  background-color: white;
  font-size: 14px;
}
.form-container .contact-info i {
  font-size: 20px;
  width: 40px;
  height: 40px;
}
/* End Login */
/* Start Lesson */
.lesson {
  background-color: var(--third-color);
}
@media (max-width: 992px) {
  .container-one,
  .course-two {
    padding: 1rem !important;
  }
}
.lesson .swiper {
  height: 500px;
}
.lesson .box {
  background-color: #fff;
}
.lesson .progress {
  height: 3px;
}
.lesson .progress-bar {
  background-color: #49bbbd;
}
/* End Lesson */
/* Start Land */
.land {
  color: white;
}
.land h3 {
  font-size: 3rem;
  color: white;
}
.land .stars i {
  color: #faa307;
}
.land .content {
  position: absolute;
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 41%;
}
@media (max-width: 992px) {
  .land .content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    text-align: center;
    align-items: center;
  }
  .land .pic img {
    object-fit: cover;
    height: calc(55vh - 72px) !important;
  }
}
@media (max-width: 768px) {
  .land h3 {
    font-size: 2rem;
  }
  .land .content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    text-align: center;
    align-items: center;
  }
  .land .pic img {
    object-fit: cover;
    height: calc(100vh - 72px) !important;
  }
}
.land .name-info .pics img {
  width: 50px;
  height: 50px;
}
.land .pic img {
  object-fit: cover;
  height: calc(100vh - 72px);
}
.land .buttons a:first-child {
  background-color: #faa307;
  color: white;
}
.land .buttons a:first-child:hover {
  background-color: #fff;
  color: var(--main-color);
}
.land .buttons a:last-child {
  background-color: #fff;
  color: var(--main-color);
}
.land .buttons a:last-child:hover {
  background-color: #faa307;
  color: white;
}
/* End Land */
/* Start Diploma */

.diploma h3,
.diploma p {
  color: var(--main-color);
}
.diploma .accordion-button {
  gap: 1rem;
}
.diploma .accordion-button:not(.collapsed) {
  background-color: #fff5f9;
}
.diploma .accordion ul li i {
  color: #4586d6;
}
.diploma .accordion .button {
  gap: 5rem;
}
.diploma .stars i {
  color: #faa307;
}
.diploma .bullet i {
  color: #4586d6;
  font-size: 1.5rem;
}
.diploma .progress {
  height: 5px;
}
.diploma .progress .progress-bar {
  background-color: #faa307;
}

.diploma .checks span {
  font-weight: bold;
}
.diploma .checks i {
  color: #4586d6;
  font-size: 1.5rem;
}
.diploma .buttons a:first-child {
  background-color: #faa307;
  color: white;
}
.diploma .buttons a:last-child {
  border: 1px solid #faa307;
  color: #faa307;
}
/* End Diploma */
/* Start Footer */

.footer {
  background-color: #ecf5ff;
  direction: ltr;
  color: var(--main-color);
}
.footer .pic {
  width: 150px;
}
.footer h2 {
  position: relative;
  font-size: 18px;
}
@media (max-width: 992px) {
  .footer .ftco-footer {
    align-items: unset !important;
  }
}
.footer .social-icon {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
  color: var(--main-color);
  font-size: 26px;
}
.footer a:hover {
  color: var(--main-color);
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul .site-link {
  color: var(--main-color);
}
.footer ul .site-link:hover {
  background-color: unset;
  color: var(--main-color);
}
@media (max-width: 992px) {
  .footer .copyright {
    padding-top: 2rem;
  }
}
.footer i,
.footer a,
.footer h2 {
  color: var(--main-color);
}
.footer .email input:last-child {
  background-color: var(--main-color);
  color: white;
}
/* End Footer */
