/*#region ----------------- General */
@import url(../css/fontface.css);
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

body {
  font-family: "Tanha" !important;
  font-weight: 300;
  direction: rtl;
  margin: 0;
  background-color: #faf7f7;
  text-align: right;
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-weight: 800;
  line-height: normal;
  font-family: "Sahel";
}

input,
textarea,
strong,
span,
p {
  font-family: "Tanha" !important;
}

h1 {
  font-size: 2.2rem;
  font-weight: 900 !important;
}

h2 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

h5 {
  font-size: 1.15rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 25px;
  font-size: 1rem;
  font-weight: 400;
}

b,
strong {
  font-weight: bolder;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav {
  display: block;
}

a {
  text-decoration: none !important;
}

img {
  vertical-align: middle;
  border-style: none;
  font-size: 13px;
  font-weight: 300;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

::-moz-selection {
  background-color: #e1cf1f;
  color: white;
}

::selection {
  background-color: #e1cf1f;
  color: white;
}

.fi {
  display: inline-block !important;
  line-height: 0 !important;
}

/*#endregion -------------- General */
/*#region ----------------- Animation */
@keyframes moveupdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotatebg {
  from {
    transform: translate(50%, -50%) rotate(0);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 207, 31, 0.1), 0 0 0 0 rgba(225, 207, 31, 0.1);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(225, 207, 31, 0), 0 0 0 0 rgba(225, 207, 31, 0.1);
  }
  80% {
    box-shadow: 0 0 0 10px rgba(225, 207, 31, 0), 0 0 0 10px rgba(225, 207, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(225, 207, 31, 0), 0 0 0 10px rgba(225, 207, 31, 0);
  }
}
/*#endregion -------------- Animation */
/*#region ----------------- Buttons */
.btn {
  font-size: 14px;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  border: none;
  min-width: 120px;
  box-shadow: none !important;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.btn:hover, .btn:focus {
  box-shadow: none !important;
}
.btn .fi {
  position: relative;
  top: 5px;
  font-size: 24px;
  line-height: 0;
}

.icon-right .fi {
  margin-left: 10px;
}

.icon-left .fi {
  margin-right: 10px;
}

.btn-primary {
  background: #f8a32c;
  color: white;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #f82235;
}

.btn-secondary {
  background: #2e4156;
  color: white;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #364fd9;
}

.btn-primary-outline {
  background: transparent;
  color: #2e4156;
  border: 2px solid #2e4156;
  padding: 0.62rem 1.2rem;
}
.btn-primary-outline:hover, .btn-primary-outline:focus {
  background-color: #2e4156;
  color: white;
}

/*#endregion -------------- Buttons */
/*#region ----------------- Page Title */
.page-title {
  text-align: right;
}
.page-title h2 {
  color: #2e4156;
  line-height: 48px;
}

@media (max-width: 992px) {
  .page-title h2 {
    font-size: 1.8rem;
    line-height: 36px;
  }
}
@media (max-width: 768px) {
  .page-title h2 {
    font-size: 1.5rem;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .page-title h2 {
    font-size: 1.3rem;
    line-height: 32px;
  }
}
/*#endregion ----------------- Page Title */
/*#region ----------------- Hero */
.hero-header-section {
  position: relative;
}

.hero-header-section .image-content {
  position: relative;
}
.hero-header-section .image-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, #2e4156, rgb(1, 50, 124)); */
  z-index: 1;
  opacity: 0.6;
}
.hero-header-section .image-content img {
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-header-section .image-content .text-overlay {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  text-align: center;
  z-index: 100;
}
.hero-header-section .image-content .text-overlay h1 {
  color: white;
}


@media (max-width: 1199px) {
  .hero-header-section .image-content::before {
    width: 120px;
    height: 120px;
    bottom: 30px;
  }
  .hero-header-section .image-content .text-overlay h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .hero-header-section::before {
    width: 150px;
    height: 150px;
  }
  .hero-header-section .image-content::before {
    width: 80px;
    height: 80px;
    bottom: 10px;
    left: 50px;
  }
  .hero-header-section .image-content .text-overlay h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 575px) {
  .hero-header-section::before {
    width: 110px;
    height: 110px;
  }
  .hero-header-section .image-content::before {
    width: 60px;
    height: 60px;
    bottom: 0;
  }
  .hero-header-section .image-content .text-overlay h1 {
    font-size: 1.4rem;
  }
}
/*#endregion -------------- Hero */
/*#region ----------------- Videos Content */
.video-play-contnet {
  background-color: white;
  padding: 50px 0 100px 0;
  position: relative;
}

.video-play-contnet.type-2::before {
  display: none;
}
.video-play-contnet.type-2 .section-inner {
  border: none;
}
.video-play-contnet.type-2 .video-inner {
  background-color: #ffe800;
  padding: 40px;
  border-radius: 40px;
  position: relative;
  background-image: url(../images/bg-pattern-3.png);
  background-repeat: repeat;
  background-size: 250px;
}
.video-play-contnet.type-2 .video-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -110px;
  width: 110px;
  height: 315px;
  background-image: url(../images/hand-shake-resized.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
.video-play-contnet.position-top {
  padding: 0;
  padding-bottom: 30px;
}
.video-play-contnet.position-top .section-inner {
  padding: 0;
}
.video-play-contnet .section-inner {
  background-color: #faf7f7;
  padding: 40px 0;
  border-radius: 50px;
  border: 3px solid #e7e6e7;
  overflow: hidden;
}
.video-play-contnet .video-inner video,
.video-play-contnet .video-inner iframe {
  width: 100%;
  border-radius: 30px;
  display: inline-block;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-play-contnet .text-content {
  padding-left: 10px;
}
.video-play-contnet .text-content p {
  color: #606163;
  text-align: justify;
}
.video-play-contnet .text-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .video-play-contnet .section-inner {
    padding: 40px 30px 30px 30px;
  }
  .video-play-contnet .text-content {
    padding: 0 0 2rem 0;
  }
  .video-play-contnet.type-2 .video-inner {
    padding: 30px;
  }
  .video-play-contnet.type-2 .video-inner::before {
    left: -60px;
    width: 60px;
    height: 170px;
  }
}
@media (max-width: 768px) {
  .video-play-contnet::before {
    width: 140px;
    height: 142px;
  }
  .video-play-contnet .section-inner {
    padding: 30px 20px 20px 20px;
    border-radius: 40px;
  }
  .video-play-contnet.type-2 .video-inner {
    padding: 20px;
  }
  .video-play-contnet.type-2 .video-inner::before {
    display: none;
  }
}
/*#endregion -------------- Videos Content */
/*#region ----------------- Description */
.description-section {
  position: relative;
}
.description-section.bg-primary {
  background-color: rgba(2, 102, 255, 0.1) !important;
}
.description-section.bg-primary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-pattern-2.png);
  background-repeat: repeat;
  background-size: 400px;
  opacity: 0.1;
  z-index: -1;
}
.description-section .section-inner {
  overflow: hidden;
  padding: 100px 0 120px 0;
}
.description-section .section-inner.more-padding {
  padding: 250px 0 150px;
}
.description-section .section-inner.more-bottom {
  padding-bottom: 180px;
}
.description-section .text-content p {
  text-align: justify;
}
.description-section .text-content ul {
  list-style: disc;
  padding-right: 20px;
}
.description-section .text-content ul li {
  text-align: justify;
  margin-bottom: 10px;
}
.description-section .image-content .img-inner {
  width: 450px;
  margin: 0 auto;
}
.description-section .image-content .img-inner img {
  width: 100%;
}
.description-section .alert-box {
  background-color: #f8a32c;
  padding: 20px;
  border-radius: 20px;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.description-section .alert-box p {
  font-size: 18px;
  margin-bottom: 0;
  color: white;
}
.description-section .mini-box-text {
  background-color: #f8a32c;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
  position: relative;
  top: -240px;
  z-index: 10;
  overflow: hidden;
}
.description-section .mini-box-text h5 {
  color: white;
  font-weight: 800;
}
.description-section .mini-box-text p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.description-section .curve-top {
  position: absolute;
  right: 0;
  left: 0;
  top: -2px;
  pointer-events: none;
  z-index: 1;
}
.description-section .curve-top img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.description-section .curve-bottom {
  position: absolute;
  right: 0;
  left: 0;
  bottom: -2px;
  pointer-events: none;
  z-index: 1;
}
.description-section .curve-bottom img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.description-section .shape-crown {
  position: absolute;
  right: 100px;
  bottom: 0;
  width: 120px;
  height: 100px;
  z-index: 10;
  animation: moveupdown 5s ease-in-out infinite;
}

.description-section .shape-star {
  position: absolute;
  left: 300px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  z-index: 10;
  animation: rotate 15s ease-in-out infinite;
}

@media (max-width: 1199px) {
  .description-section .section-inner.more-padding {
    padding: 190px 0 130px;
  }
  .description-section .image-content .img-inner {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .description-section .mini-box-text {
    position: unset;
    margin-top: 2rem;
  }
  .description-section .image-content {
    margin-top: 2rem;
  }
  .description-section .image-content .img-inner {
    width: 350px;
  }
  .description-section .section-inner.more-bottom {
    padding-bottom: 120px;
  }
  .description-section .shape-star {
    left: 40%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 768px) {
  .description-section .section-inner.more-padding {
    padding: 170px 0 110px;
  }
  .description-section .alert-box p {
    font-size: 16px;
  }
  .description-section .shape-crown {
    width: 100px;
    height: 88px;
  }
  .description-section .shape-star {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 575px) {
  .description-section .image-content .img-inner {
    width: 90%;
  }
  .description-section .shape-crown {
    width: 100px;
    height: 88px;
  }
}
/*#endregion -------------- Description */
/*#region ----------------- Description */
.course-information-section {
  background-color: white;
  padding: 100px 0 80px 0;
  border-radius: 0 0 100px 100px;
  position: relative;
}

.course-information-section .section-inner {
  background-color: white;
  padding: 40px;
  border-radius: 40px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  background-color: #faf7f7;
  border: 2px solid #2e4156;
}
.course-information-section .page-title h2 {
  text-align: center;
}
.course-information-section .info-list ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.course-information-section .info-list ul li {
  flex: 1 0 50%;
  width: 50%;
  padding: 12px;
  border-radius: 10px;
  font-size: 18px;
}
.course-information-section .info-list ul li span {
  color: #2e4156;
  margin-left: 5px;
}
.course-information-section .info-list ul li strong {
  background-color: #2e4156;
  color: white;
  border-radius: 10px;
  padding: 5px 10px;
}
.course-information-section .info-list ul li .fi {
  margin-left: 5px;
  position: relative;
  top: 5px;
  font-size: 20px;
  color: #8f8f93;
}

@media (max-width: 992px) {
  .course-information-section::before {
    width: 120px;
    height: 120px;
    top: -60px;
  }
  .course-information-section .section-inner {
    padding: 30px;
  }
  .course-information-section .info-list ul li {
    flex: 1 0 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .course-information-section::before {
    width: 100px;
    height: 100px;
    top: -40px;
  }
  .course-information-section .section-inner {
    padding: 20px;
  }
  .course-information-section .info-list ul li {
    font-size: 16px;
  }
}
/*#endregion -------------- Description */
/*#region ----------------- Register Phone Number */
.register-phone-number {
  margin-top: 3rem;
}
.register-phone-number .inner {
  background-color: #2e4156;
  border-radius: 30px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.register-phone-number .title {
  color: white;
  margin-bottom: 0;
  font-size: 18px;
}

.phone-number-wizard .level {
  display: none;
}
.phone-number-wizard .level.active {
  display: block;
}
.phone-number-wizard .inputgroup {
  position: relative;
  width: 100%;
}
.phone-number-wizard .inputgroup .input {
  width: 100%;
  height: 48px;
  font-size: 16px;
  padding: 5px 15px 5px 15px;
  border-radius: 15px;
  border: none;
  text-align: right;
}
.phone-number-wizard .inputgroup .btn-primary {
  position: absolute;
  left: 0;
  top: 0;
  height: 48px;
  border-radius: 15px;
}
.phone-number-wizard .resend-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.phone-number-wizard .showCountdown {
  font-size: 20px;
  font-weight: 800;
  color: white;
  font-family: "Sahel";
}
.phone-number-wizard .btns-action {
  display: none;
}
.phone-number-wizard .btn-resend-sms {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 14px;
  border-radius: 50px;
  padding: 8px 16px;
}
.phone-number-wizard .btn-resend-sms:hover {
  color: #e1cf1f;
}
.phone-number-wizard .btn-edit {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid white;
  color: white;
  font-size: 14px;
  border-radius: 50px;
  padding: 8px 16px;
}
.phone-number-wizard .btn-edit:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.phone-number-wizard .time {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

@media (max-width: 992px) {
  .phone-number-wizard {
    margin-top: 1rem;
  }
}
/*#endregion -------------- Register Phone Number */
/*#region ----------------- Property Section */
.property-section {
  background-color: white;
  padding: 80px 0;
}
.property-section .section-inner {
  background-color: #f8a32c;
  position: relative;
  border-radius: 40px;
  padding: 40px;
  z-index: 1;
}

.property-section .page-title h2 {
  color: white;
}
.property-section .desc p {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 32px;
}
.property-section .desc ul {
  list-style: disc;
  padding-right: 20px;
}
.property-section .desc ul li {
  text-align: justify;
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}
.property-section .desc h5,
.property-section .desc h6 {
  font-weight: 800;
}
.property-section .desc.border {
  border: 1px solid #e7e6e7;
  padding: 30px;
  border-radius: 30px;
}
.property-section .desc.border p:last-child {
  margin-bottom: 0;
}
.property-section .alert-box {
  margin-top: 2rem;
  border: 1px solid #f8a32c;
  border-radius: 30px;
  padding: 30px;
  text-align: center;
}
.property-section .alert-box p {
  font-size: 22px;
  margin-bottom: 0;
  color: #f8a32c;
  line-height: 34px;
}
.property-section .alert-box.fill {
  background-color: #f8a32c;
}
.property-section .alert-box.fill p {
  color: white;
}

@media (max-width: 992px) {
  .property-section {
    padding-bottom: 60px;
  }
  .property-section .section-inner {
    padding: 30px;
  }
  .property-section .alert-box {
    padding: 25px;
  }
  .property-section .alert-box p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .property-section .section-inner {
    padding: 20px;
  }
  .property-section .desc ul li {
    font-size: 16px;
  }
  .property-section .alert-box {
    padding: 20px;
  }
  .property-section .alert-box p {
    font-size: 18px;
  }
}
/*#endregion -------------- Property Section */
/*#region ----------------- Sponsor */
.sponsor-section {
  padding: 40px 0 80px 0;
  background-color: white;
}
.sponsor-section .item img {
  width: 100%;
}

/*#endregion -------------- Sponsor */
/*#region ----------------- Message */
.message-section {
  padding: 200px 0 100px 0;
}
.message-section .message {
  text-align: center;
}
.message-section .message h2 {
  display: inline-block;
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
}
.message-section.success {
  background: linear-gradient(180deg, rgba(18, 194, 6, 0.3), #fff);
}
.message-section.success h2 {
  background-color: #12c206;
}
.message-section.error {
  background: linear-gradient(180deg, rgba(228, 50, 6, 0.3), #fff);
}
.message-section.error h2 {
  background-color: #e43206;
}
.message-section .curve-top {
  position: absolute;
  right: 0;
  left: 0;
  top: -2px;
  pointer-events: none;
  z-index: 1;
}
.message-section .curve-top img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 992px) {
  .message-section {
    padding: 150px 0 70px 0;
  }
  .message-section .message h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .message-section {
    padding: 120px 0 50px 0;
  }
  .message-section .message h2 {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}
/*#endregion -------------- Message */
/*#region ----------------- Download App */
.download-app {
  padding: 30px 0 50px 0;
  background-color: white;
}
.download-app .download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .download-app .download-inner {
    flex-direction: column;
  }
  .download-app .btns-group .btn {
    margin: 5px;
  }
}
@media (max-width: 480px) {
  .download-app .download-inner {
    flex-direction: column;
  }
  .download-app .btns-group {
    width: 80%;
  }
  .download-app .btns-group .btn {
    width: 100%;
  }
}
/*#endregion -------------- Download App */