
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');


@font-face {
  font-family: "Tajawal-Bold";
  src: url(../webfonts/Tajawal-Bold.ttf)
}
@font-face {
  font-family: "Tajawal-Medium";
  src: url(../webfonts/Tajawal-Medium.ttf);
}
@font-face{
  font-family: "Tajawal-Regular";
  src: url(../webfonts/Tajawal-Regular.ttf)
}

/* Start general rule */
  :root{
  --red-color: #ED1C24;
  --hawkes-blue-color:#D9E0E9;
  --dark-blue-color:#042E6F;
  --white-color:#fff;
  --pattens-blue-color:#DCE2E9;
  --gray-color:#555555;
  --pale-grey-blue-color:#D4E2EB;
  --light-blue:#A7B7C8;
  --Lighter-blue-color: #E8E1F5;
  --shadow-color:rgba(4, 46, 111, 15%);
  --shadow-2-color:rgba(0, 0, 0, 16%);
  --btn-padding:7px 10px;
  --box-shadow:0px 2px 3px var(--shadow-color);
  --box-shadow-2:0px 2px 6px var(--shadow-2-color);
  }
  *, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  }

  html, body {
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  }

  body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  }
  html[dir=rtl] body{
      font-family: 'Tajawal', sans-serif;
  }

  img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  transition: .2s scale ease-in-out;
  }

  input, button, textarea, select {
  font: inherit;
  }

  p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  }
  p {
      color: var(--dark-blue-color);
  }
  a{
  text-decoration: none;
  }
  ul{
      list-style: none;
  }

  /*helper classes*/
  .main-color{
      color: var(--dark-blue-color);
  }
  .second-color{
      color: var(--red-color);
  }
  .third-color{
      color: var(--hawkes-blue-color);
  }
  .light-blue-color{
      color: var(--light-blue);
  }

  .bg-main{
      background-color: var(--hawkes-blue-color);
  }
  .bg-main-color{
      background-color: var(--dark-blue-color);
  }
  .bg-succes{
      background-color: #1bbd40;
  }
  .bg-light-green{
      background-color: #00cbb8;
  }
  .bg-light-orange{
      background-color: #ffdf01;
  }
  .bg-dark-red{
      background-color: #ed1c24;
  }
  .main-color-light{
      color: rgba(4, 46, 111, 50%);;
  }

  .box-shadow{
      box-shadow: var(--box-shadow);
  }
  .box-shadow2{
      box-shadow: var(--box-shadow-2);
  }
  .box-shadow-2{
      box-shadow: 3px 3px 10px 0px rgba(4, 46, 111, .20)
  }
  .fs-12px{
      font-size: 12px;
  }
  .fs-14px{
      font-size: 14px ;
  }
  .fw-400{
      font-weight: 400;
  }
  .fw-500{
      font-weight: 500;
  }
  .fw-600{
      font-weight: 600;
  }
  .fw-700{
      font-weight: 700;
  }
  html[dir=rtl] .f-b {
      font-family: "Tajawal-Bold";
  }
  html[dir=rtl] .f-m {
  font-family: "Tajawal-Medium";
  }

  html[dir=rtl] .text-end-g-rtl {
      text-align: right ;
  }
  .text-end-g-rtl{
      text-align: left;
  }
  html[dir=rtl] p {
      font-weight: 500;
      line-height: 2;
      font-size: 15px;
  }
  html[dir=rtl] .fs-3r {
      font-size: 1.75rem;
  }
  html[dir=rtl] .fs-4r {
      font-size: 1.5rem;
  }
  html[dir=rtl] .fs-5r {
      font-size: 1rem;
  }
  html[dir=rtl] .offset-xl-3{
      margin-left: 0%;
  }
  html[dir=rtl] .offset-lg-1{
      margin-right: 8.333333%;
      margin-left: 0%;
  }
  html[dir=rtl] .hide-in-rtl{
      display: none;
  }
  html[dir=rtl] .hide-in-ltr{
      display: block;
  }
  .hide-in-ltr{
      display: none;
  }
  .height-10px{
      height: 10px;
  }
  .width-25ch{
      width: 25ch;
  }
  .width-35{
      width: 35px;
      height: 35px;
  }
  .width-50{
      width: 50px;
  }
  .height-50{
      height: 50px;
  }
  .width--35{
      width: 35%;
  }
  .width-75{
      width: 75px;
  }
  .height-75{
      height: 75px;
  }
  .height-5{
      min-height: 5rem;
  }
  .width-100{
      width: 100px;
  }
  .height-100{
      height: 100px;
  }
  .min-width-28r{
      min-width: 28rem;
  }
  .width-40r p{
      max-width: 40rem;
  }
  .width-25r p{
      max-width: 25rem;
  }
  .position-inset{
      top: -35%;
      left:35%;
  }
  html[dir=rtl] .position-inset{
      top: -35%;
      left: 40%;
  }
  .fit-cover{
      object-fit: cover;
  }
  .container{
      width: 1024px;
      margin-inline: auto;
      padding-left: 15px;
      padding-right: 15px;
  }
  .btn{
      padding: var(--btn-padding);
      color: var(--white-color);
      background-color: var(--dark-blue-color);
  }
  .btn-center{
      display: block;
      max-width: 10rem;
      padding-block: .5rem;
      margin-inline: auto;
  }
  .btn-white{
      padding: var(--btn-padding);
      color: var(--dark-blue-color);
      background-color: var(--white-color);
  }
  .text-red{
      color: var(--red-color);
  }
  .hide-forms form{
      visibility: hidden;
      opacity: 0;
      height: 0;
      transition: height  .5s .35s,
      opacity .5s .25s,
      visibility .5s .25s
  }

  .error {
      color:red;
  }

  .hide-forms.show-widget form{
      visibility: visible;
      opacity: 1;
      height: 10rem;
      transition: opacity .5s .25s,
      height .5s ,
      visibility .5s .25s ;
  }

  .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
  .bootstrap-select .dropdown-toggle:focus {
      outline: 0px auto -webkit-focus-ring-color !important;
      outline-offset: 0px;
  }

  .bootstrap-select .dropdown-toggle .filter-option {
      text-align: start;
  }

  .bootstrap-select > .dropdown-toggle {
      background-color: #fff;
      border: 1px solid #707070;
      padding: 12px 16px;
      color: var(--dark-blue-color) !important;
      height: 46px;
      box-shadow: none;
  }
  .bootstrap-select > .dropdown-toggle.bs-placeholder {
      color: var(--dark-blue-color) !important;
  }
  .bootstrap-select .dropdown-item:hover{
      color: var(--dark-blue-color) !important;
      background-color: var(--hawkes-blue-color);
  }
  .bootstrap-select.select-small > .dropdown-toggle {
      padding: 10px 16px;
      height: 44px;
  }

  .bootstrap-select.rounded-10 > .dropdown-toggle {
      border-radius: 10px;
  }

  .bootstrap-select.text-gray > .dropdown-toggle.bs-placeholder {
      color: #c2c8dd !important;
  }

  .dropdown-toggle:hover,
  .dropdown-toggle:focus {
      background-color: #fff !important;
      box-shadow: none;
  }
  .bootstrap-select .dropdown-menu li{
      text-align: start;
  }
  .bootstrap-select .dropdown-menu li.selected.active a:hover {
      color: #fff;
  }

  .bootstrap-select .dropdown-toggle::after {
      content: unset;
  }
  .bootstrap-select .dropdown-toggle::before {
      position: absolute;
      content: "\f107";
      font-family: 'Font Awesome 6 Pro';
      font-weight: 900;
      font-size: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #000;
      font-size: 14px;
      right: 10px;
  }
  html[dir=rtl] .bootstrap-select .dropdown-toggle::before{
      left: 10px;
      right: unset;
  }
  .dropdown-menu .dropdown-item {
      font-size: 14px;
      padding: 0.4rem 1.5rem;
      transition: all 0.2s ease-in-out;
      margin-bottom: 2px;
  }

  .dropdown-item.active,
  .dropdown-item:active {
      color: #35498e !important;
      background-color: #eaecf3;
  }

  html[dir=ltr] .dropdown-menu {
  text-align: left;
  }

  /* from js */
  .red-end .last-word {
      color: var(--red-color);
  }
  .link-light:focus, .link-light, a{
      transition: .3s ease;
  }
  a:not(.btn, .nav-link, .text-red, .navbar-brand, .social__link, .page-link):hover{
      color: var(--red-color) !important;
      background-color: #d9e0e9;
      border-radius: .5rem;
  }
  a:is(.tab--link, .link-light, .nav-link,.course_name_link, .dropdown-item, .page-link):hover{
      color: var(--red-color) ;
      background-color: transparent;
  }
  .card{
      transition: .3s ease-in-out;
  }
  a:not(.nav-link){
      overflow: hidden;
  }
  a:hover img,
  a .card:hover img{
      scale: 1.07;
  }
  .card:hover{
      transform: translateY(-2px);
      box-shadow: 3px 3px 10px 0px rgba(4, 46, 111, .10);
  }
  .social_media span:hover,
  .social_media_footer span:hover {
      box-shadow: 3px 3px 10px 0px rgba(4, 46, 111, .30);
  }

  .show-input:hover{
      cursor: pointer;
      opacity: .8;
  }
  .or{
      background: var(--white-color);
      opacity: .25;
      font-weight: 600;
      margin: 1rem 0;
      text-align: center;
      position: relative;
  }
  .or::before{
      content: "";
      position: absolute;
      width: 45%;
      border: 1px solid #c7c8c9;
      top: 9px;
      left: 1px;
  }
  .or::after{
      content: "";
      position: absolute;
      width: 45%;
      border: 1px solid #c7c8c9;
      top: 9px;
      right:  1px;
  }
  form{
      position: relative;
  }
  .input-activate .form-activate{
      transition: .15s all ease-in-out;
      border: 1px solid var(--hawkes-blue-color);
  }
  .input-activate .form-activate:focus{
      border-color: var(--dark-blue-color);
  }
  .search-icone{
      position: absolute;
      top: 12px;
      left: 7px;
      color: var(--dark-blue-color);
      font-size: .87rem;
      z-index: 1;
  }
  html[dir=rtl] .search-icone{
      left: 11px;
  }
  ::placeholder {
      color: var(--dark-blue-color) !important;
      opacity: .75; /* Firefox */
      font-size: 14px;
  }
  input[type="search"]{
      padding-left: 2rem;
  }
  html[dir=rtl] .breadcrumb-item+.breadcrumb-item::before{
      float: right;
      padding-left: .5rem;
  }
  html[dir=rtl] .fa-angle-left{
      rotate: 180deg;
  }
  html[dir=rtl] .fa-angle-right{
      rotate: -180deg;
  }




  /* start header */
  .shadow-header{
      box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .12);
      position: relative;
      z-index: 1;
  }
  .navbar-brand .logo{
      width: 90px;
      height: 90px;
      object-fit: contain;
  }
  .dropdown-menu[data-bs-popper]{
      top: 100%;
      padding:0;
  }
  html[dir=rtl] .dropdown-menu[data-bs-popper]{
      right: 0;
  }

  .navbar-toggler{
      padding: .15rem 1rem;
  }
  .navbar-toggler:focus{
      box-shadow: none;
  }

  #courses-dropdown .tab-link{
      width: 12rem;
      color: var(--dark-blue-color);
      display: flex;
      align-items: center;
      /* gap: 3rem; */
      font-weight: 500;
      font-size: 1rem;
      justify-content: space-between;
      padding: 1rem;
  }

  #v-pills-home{
      padding-inline: 1rem;
  }

  #courses-dropdown .tab-link.active{
      background-color: var(--hawkes-blue-color);
  }
  #courses-dropdown .tab-content {
      height: 18rem;
      /* overflow-y: auto; */
      border-inline-start: 1px solid #70707070;
      padding-inline-start: 1rem;
  }
  #courses-dropdown .tab-content .row{
      gap: 0 3rem;
  }
  #courses-dropdown .tab-content-name{
      display: flex;
      align-items: center;
      color: var(--dark-blue-color);
      width: 11rem;
      justify-content: space-between;
      font-weight: 500;
      padding: 1.5rem 0;
      gap: 1rem;
      text-align: start;
  }
  #courses-dropdown .tab-content-name img{
      width: 40px;
      height: 40px;
  }
  #courses-dropdown .tab-content-name:not(:last-child) a{
      width: 100%;
      color: var(--dark-blue-color);
  }
  html[dir=rtl] #courses-dropdown .tab-content-name:not(:last-child) a{
      font-weight: 700;
  }
  .nav-item .nav-link {
      color: var(--dark-blue-color);
      font-weight: 500;
      position: relative;
      font-size: 1rem;
  }

  .navbar-expand-lg .navbar-nav{
      flex-grow: 1;
      justify-content: space-evenly
  }

  .nav-item .nav-link:hover {
      color: var(--red-color)
  }
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
      border-top: 1px solid;
      border-right: 1px solid;
      border-left: 1px solid;
  }

  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link-form.active{
      background-color: var(--hawkes-blue-color);
      border: 0;
      color: var(--dark-blue-color) !important;
      font-weight: 500;
      opacity: .75;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
  }
  .nav-tabs-form{
      width: fit-content;
      margin: 0 auto;
      border: 1px solid rgba(4, 46, 111, .20) ;
      border-radius: .5rem .5rem 0 0 ;
  }

  .navbar-nav .nav-link::after{
      content: "";
      width:0%;
      height: 2px;
      position: absolute;
      background-color: var(--red-color);
      left:12px ;
      bottom: 0px;
      transition: .2s ease;
  }

  .navbar-nav .nav-link.active{
      color: var(--red-color);
  }

  .search .search-dropdown{
      margin: 0;
      padding: 0;
  }


  .nav-item .nav-link.language{
      color: var(--red-color);
  }
  .vertical-line a{
      color: var(--dark-blue-color);
      font-weight: 500;
      display: block;
      text-align: start;
  }
  .vertical-line .get__started{
      color: var(--white-color);
      font-weight: 500;
  }


  .btn:not(.dropdown-toggle):hover{
      color: var(--white-color);
      background-color: var(--dark-blue-color);
      box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--dark-blue-color);
  }

  /* end header */

  /* start banner  */
  .banner-section{
      position: relative;
      height: 100vh;
  }
  .banner-section > *{
      grid-column: 1 / 1;
      grid-row: 1 / 1;
  }
  .banner-section .banner__img{
      height: 100vh;
      width: 100%;
      grid-column: 1 / -1;
      object-fit: cover;
  }
  .banner-section .img::after{
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      /* z-index: 1; */
      /*background-image: url(./../images/home/overlay-banner.png);*/
      /* background-color: rgba(15, 8, 73, 0.815); */
      background-size: cover;

  }

@media (max-width: 1630px) {
    .banner-section{
        height: auto!important;
    }
    .banner-section .banner__img {
        height: 100%!important;
    }

    .page-image-section {
        height: auto!important;
    }
    .about-section img {
        height: 100%!important;
    }
  }

  .banner-section .container{
      z-index: 1;
  }
  .hero-content{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--white-color);
  }
  .border-shape{
      --_top-right-border:5rem;
      --_bottom-right-border:8rem;

      position: relative;
      width: calc(16rem + 5vw);
      min-height: calc(17rem + 5vw);
      border-left-width: 5px;
      border-top-width: 5px;
      border-bottom-width: 5px;
      border-top-style: solid;
      border-left-style: solid;
      border-bottom-style: solid;
      border-top-color: var(--hawkes-blue-color);
      border-left-color: var(--hawkes-blue-color);
      border-bottom-color: var(--hawkes-blue-color);
  }
  .border-shape::before{
      content: "";
      position: absolute;
      right: 0;
      width: 5px;
      height: var(--_top-right-border) ;
      background-color: var(--hawkes-blue-color);

  }
  .border-shape::after{
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 5px;
      height: calc(var(--_bottom-right-border) - 2vw) ;
      background-color: var(--hawkes-blue-color);
  }

  html[dir=rtl] .border-shape{
      rotate: 180deg;
  }
  .hero-text h1{
      --_top_spacer:4rem;
      --_left-spacer:1.5rem;
      position: absolute;
      top: var(--_top_spacer);
      left: var(--_left-spacer);
  }
  .hero-text span:nth-of-type(1){
      color: var(--white-color);
      font-size: 2.5rem;
      font-weight: 700;

  }
  .hero-text span:nth-of-type(2){
      color: var(--red-color);
      font-size: 2rem;
      font-weight: 700;
  }
  .hero-text p{
      color: var(--hawkes-blue-color);
      font-size: 0.95rem;
      line-height: 1.6;

  }
  .hero-text a{
      display: block;
      font-weight: 500;
  }

  .rotate__text{
      position: absolute;
      left: -42px;
      top: 7px;
      rotate: 90deg;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--hawkes-blue-color);
  }
  html[dir=rtl] .rotate__text{
      display: none;
  }
  .social_media{
      align-self: center;
      z-index: 1;

      z-index: 1000;
  }
  @media (max-width: 576px) {
  .social_media{
      align-self: end;
      z-index: 1;
      display: flex;
      justify-content: center;
      }
      .width-sm-100{
          width: 100%;
      }
      .fs-sm-14px{
          font-size: 14px;
      }
  }
  .social_media span, .social_media_footer span{
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: var(--white-color);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: var(--dark-blue-color);
      font-size: 1.125rem;
      box-shadow: var(--box-shadow);
      transition: .3s ease;
  }
  /* end banner  */

  /* start about us */

  .grid-col{
      --_border-radi:10rem;
      display: grid;
      gap: 1rem;
  }
  .grid-col {
      height: 100%;
      object-fit: fill;
  }
  .about-us h4{
      color: var(--dark-blue-color);
      font-weight: 700;
  }
  .about-us p{
      color: var(--dark-blue-color);
      font-weight: 500;
      margin-bottom: 0;
  }
  .about-us a{
      padding-inline: 2rem;
  }
  .about-us h4 span{
      color: var(--red-color);
  }
  .about-us .list img{
      object-fit: cover;
      width: 30px;
      height: 30px;
      margin-inline-end: .5rem;
  }
  /* end about us */


   /* start Most Popular Courses */
  .most-popular {
      background-color: var(--hawkes-blue-color);
  }

  .most-popular h2 {
      color: var(--dark-blue-color);
      font-weight: 700;
  }
  .most-popular .p-head{
      color: rgba(4, 46, 111, 50%);
      font-weight: 500;
  }
  .most-popular h2 span,
  .most-popular h5{
      color: var(--red-color);
  }

  .most-popular .card-title{
      color: var(--dark-blue-color);
      font-weight: 500;
  }

  /******* owl carousel *******/
  .owl-nav{
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 3rem;
  }



  [aria-label="Next"],[aria-label="Previous"]{
      opacity: 0;
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev{
      text-align: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: var(--white-color) !important;
      position: relative;
  }
  .owl-carousel .owl-nav button.owl-next::after{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 7px;
      left: 7px;
      scale: .7;
      background-repeat: no-repeat;
      background-image: url(./../images/arrow-sm-right.png);
  }

  .owl-carousel .owl-nav button.owl-prev::after{
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 5px;
      left: 4px;
      scale: .65;
      background-repeat: no-repeat;
      background-image: url(./../images/arrow-sm-left-svgrepo-com.png);
  }
  html[dir=rtl] .owl-carousel .owl-nav button.owl-prev::after{
      background-image: url(./../images/arrow-sm-right.png);
  }

  html[dir=rtl] .owl-carousel .owl-nav button.owl-next::after{
      background-image: url(./../images/arrow-sm-left-svgrepo-com.png);
      scale: .6;
      top: 4px;
  }
  /* end Most Popular Courses */


  /* start start Flexible Plans & Pricing  */
  .plans h2{
      font-weight: 700;
  }
  .plans .price{
      font-weight: 600;
  }
  .plans .card{
      background-color: var(--dark-blue-color);
      color: var(--white-color);
  }
  .plan-p-head{
      opacity: .5;
      font-weight: 500;
      max-width: 44rem;
      margin: auto;
  }

  .plans img{
      width: 28px;
      height: 28px;
  }
  .plans a{
      padding: .5rem 3rem;
      display: block;
      width: fit-content;
      margin: auto;
  }

  /* end start Flexible Plans & Pricing  */


  /* start FAQ */
  .accordion{
      max-width: 45rem;
      margin: 2rem auto;
  }

  .accordion-header{
      border-radius: 1rem;
  }
  html[dir=rtl] .accordion-flush .accordion-item .accordion-button,
  html[dir=rtl] .accordion-flush .accordion-item .accordion-button.collapsed{
      text-align: right;
  }
  /* end FAQ */


  /* start Footer */
  footer  .row{
      position: relative;
      z-index: 1;
  }
  footer .order{
      order: 5;
  }
  footer .footer-img{
      width: 8rem;
      height: 4rem;
      object-fit: contain;
  }
  footer .footer-img-logo{
      width: 4rem;
  }
  /* end Footer */


/* About us page */
  .about-section{
      position: relative;
      height: 100vh;
  }
  .about-section img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
  .about-section::after{
      content: "";
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-image:url(./../images/home/overlay-about.png) ;
  }
  .about-section .about-hero-text{
      position: absolute;
      /* top: 0; */
      inset: 0;
      height: 100%;
      display: grid;
      place-content: center;
      z-index: 1;
  }
  .grid-col-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .team-carousel .circle-img{
      width: 12rem;
      height: 12rem;
      border-radius: 50%;
      overflow: hidden;
  }
  .team-carousel .circle-img img{
      object-fit: cover;
      width: 100%;
      height: 100%;
  }

/* End About us page */


/* Certificates Page */
.full-card{
  position: relative;
  height: 75vh;
}
.full-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.body-full-card{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: rgba(4, 46, 111, .76);
}
.body-full-card p{
  width: 80%;
}
.checkbox-apple {
  position: relative;
  width: 50px;
  height: 25px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-apple label {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 25px;
  border-radius: 50px;
  background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-apple label:after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.checkbox-apple input[type="checkbox"]:checked + label {
  background: linear-gradient(to bottom, var(--dark-blue-color), var(--dark-blue-color));
}

.checkbox-apple input[type="checkbox"]:checked + label:after {
  transform: translateX(25px);
}

.checkbox-apple label:hover {
  background: linear-gradient(to bottom, #b3b3b3, #e6e6e6);
}

.checkbox-apple label:hover:after {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.yep {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 25px;
}


.accordion-button:not(.collapsed){
  background: var(--hawkes-blue-color);
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none;
}
html[dir=rtl] .accordion-button::after{
  margin-left:unset;
  margin-right: auto;
}
/* Hide the default checkbox */
.wrap-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
 }

 .wrap-check {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: .5rem;
 }

 /* Create a custom checkbox */
 .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 1em;
  width: 1em;
  background: #8196b7;
  border-radius: 5px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0,5);
 }



 /* Create the checkmark/indicator (hidden when not checked) */
 .checkmark:after {
  content: "";
  position: absolute;
  display: none;
 }

 /* Show the checkmark when checked */
 .wrap-check input:checked ~ .checkmark:after {
  display: block;
 }

 /* Style the checkmark/indicator */
 .wrap-check .checkmark:after {
  left: 0.4em;
  top: 0.2em;
  width: 0.25em;
  height: 0.5em;
  border: solid white;
  border-width: 0 0.15em 0.15em 0;
  transform: rotate(45deg);
 }


 .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: var(--red-color);
 }

  @media (max-width: 768px){
      .full-card{
          height: 100dvh;
      }
  }

/* End Certificates Page */


/* Corporate Page */
.wrapper-overlay{
  position: relative;
}
.wrapper-overlay video{
  width: 100%;
  height: 65vh;
  object-fit:fill;
}
.overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(4, 46, 111, .5);
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
}
.toggle_mute_video {
  position: relative;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
}

.toggle_mute_video.video_muted::before {
  content: '';
  width: 27px;
  position: absolute;
  top: 13px;
  height: 3px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -2px;
}
.container-video-muted {
  position: absolute;
  bottom: 15px;
  right: 50%;
  transform: translateX(50%);
  z-index: 2;
}


/*Consulting Services page*/

  .rounded-befor{
      position: relative;
  }
  .rounded-befor::before{
      content: "";
      position: absolute;
      width: 15px;
      height: 15px;
      border-radius: 50%;
      background: var(--hawkes-blue-color);
      top: 5px;
      left: -23px;
  }
  html[dir=rtl] .rounded-befor::before{
      right: -23px;
  }

/* End Corporate Page */


/* Course Page */
  .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
      border-bottom: 3px solid var(--red-color);
      color: var(--dark-blue-color);
      background-color: transparent;
      border-radius: unset;
      font-weight: 700;
      margin-inline-end: 10px;
      padding-inline: 0px;

  }
  .border-top-widget{
      position: relative;
      border-top: 13px solid var(--hawkes-blue-color);
      border-radius: 13px;
  }
  .card-body:not(:has(.btn)) p{
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      max-height: 100px;
      overflow: hidden;
  }
/* End Course Page */


/* Start Certificate map  */
.widget{
  background: linear-gradient(to right,#2C82B1, #0B649C, #0B609C, #042E6F);
  padding: 2rem;
  border-radius: 2rem;
  position: relative;
}
.widget::after{
  content: "";
  height: 1px;
  width: 258px;
  width: calc(358px - 1vw);
  background-color: #d6d6d6;
  position: absolute;
  right: -71%;
  top: 50%;
  z-index: -1;
}
html[dir=rtl] .widget::after{
  content: "";
  height: 1px;
  width: 258px;
  width: calc(358px - 1vw);
  background-color: #d6d6d6;
  position: absolute;
  right: 71%;
  top: 50%;
  z-index: -1;
}

.overlay-widget{
  position: relative;
  margin: auto;
  z-index: 1;
}
.overlay-widget::before{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(to right,#0B699C, #0B499C);
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  scale: 1.25;
}

.widget-border{
  border: 10px solid #EE796B;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem;
  max-width: 26rem;
  box-shadow: 2px 1px 2px #00000094;
  flex-wrap: wrap;
}
.widget-border-img{
  width: 75px;
  height: 75px;
  border: 5px solid #ED1C24;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline{
  position: relative;
}
.timeline .widget-border{
  transition: 350ms ease-out;
}
.timeline .widget-border:hover{
  box-shadow: 4px 4px 12px var(--shadow-2-color);
}
.timeline .vertical--line{
  width: 7rem;
  transform: translateX(-50%);
  border: 2px solid #d6d6d6;
  position: absolute;
  left: 0;
  border-right: 0;
}
html[dir=rtl] .timeline .vertical--line {
  width: 7rem;
  transform: translateX(50%);
  border: 2px solid #d6d6d6;
  position: absolute;
  /* left: 0; */
  border-left: 0;
  right: 0;
}
.timeline li{
  position: relative;

}
.timeline-item{
  min-height: 127px;
}
.timeline-item p{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 45px;
  overflow: hidden;
  line-height: 1.5;

}

html[dir=rtl] .timeline-item p{
  line-height: 1.5 ;
  font-size: 13px;
}

.timeline li::before{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  outline: 1px solid #d6d6d6;;
  background-color: var(--red-color);
  border-radius: 50%;
  top: 45%;
  left: -15px;
}
html[dir=rtl] .timeline li::before{
  right:-15px;
  left: unset;
}
.timeline li:not(:first-child, :last-child):after{
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #d6d6d6;;
  border-radius: 50%;
  top: 50%;
  left: -55px;
  z-index: -1;
}
html[dir=rtl] .timeline li:not(:first-child, :last-child):after {
  left: unset;
  right: -55px;
}
/* End Certificate map  */


/* Start singup form */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button{
  display: none;
  text-align: center;
}
input[type="number"]{
  text-align: center;
  font-size: 1.125;
  font-weight: 500;
}
.fixed-width{
  max-width: 1400px ;
  width: 100%;
  margin-inline:auto ;
  position: relative;
}
.widget-form{
  position: absolute;
  top: -30%;
  width: 45%;
  right: -16%;
}
.widget-form img{
  position: absolute;
}
html[dir=rtl] .widget-form img {
  transform: rotateY(180deg);
}
.man-laptop{
  top: 171px;
  width: 87%;
  left: 60px;
}

html[dir=rtl] .widget-form{
  left: -16%;
  right: unset;
}
/* End singup form */


/* Start edite profile */
.uploadImg {
  position: relative;
}

.uploadImg .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(119, 119, 119, 0.5);
  top: 0;
  right: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploadImg .overlay .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.uploadImg .overlay .icon i {
  color: #fff;
  font-size: 20px;
}

.symbol.symbol-100 > img {
  width: 100px;
  max-width: 100px;
  height: 100px;
}

@media (max-width: 991px) {
  .symbol.symbol-100 > img {
    width: 80px;
    height: 80px;
  }
}

input[type=file]{
  width: 100%;
  height: 150%;
  left: -50%;
  top: 42%;
  opacity: 0;

}
input[type=file]:hover {
  cursor: pointer;
}

/* End edite profile */

/* Start payment */
.form-group .input-group{
  border: 1px solid var(--hawkes-blue-color);
  cursor: pointer;
}
.form-group .input-group.active-payment{
  border: 3px solid var(--dark-blue-color);
}
.form-group .input-group label{
  top: -20px;
  background: #fff;
  font-size: 1.35rem;
  color: rgba(4, 46, 111, 70%);
}
.form-group input[type=radio]{
  inset: 0;

}
.form-group input[type=radio]:hover{
  cursor: pointer;
}

/* End payment */


/* Start My subscriptions */
.nav-tabs-subscription{
  border: 2px solid #95a7c2;
  width: fit-content;
  border-radius: 2rem;
  overflow: hidden;

}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link-subscription{
  border-top-left-radius:0;
  border-top-right-radius:0;
  border-width: 0;
  border-inline: 1px solid #f4f6f9;
  color: var(--dark-blue-color);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link-subscription.active{
  border: 0;
  color: var(--white-color);
  background-color: var(--dark-blue-color);
}
/* End My subscriptions */


/* Start cours-page */
.pagination-course .page-link.active{
  background-color: var(--dark-blue-color);
}
.page-item .page-link {
  border: 1px solid #889cbb;
  padding: 0.2rem 1rem;
}
.page-item:first-child .page-link {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

html[dir=rtl] .page-item:first-child .page-link {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-item:last-child .page-link {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
html[dir=rtl] .page-item:last-child .page-link{
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.border-progress{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid var(--hawkes-blue-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dark-blue-color);
}

.circleProgress {
  position: relative;
  width: 35px;
}
.circleProgress .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-progress {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.circle-progress-text {
  fill: #000;
  font-weight: 700;
  display: none;
  position: relative;
}
.circle-progress-circle {
  stroke-width: 7px;
  stroke: var(--hawkes-blue-color);
}
.circleProgress_1 .circle-progress-value,
.circleProgress_2 .circle-progress-value,
.circleProgress_3 .circle-progress-value,
.circleProgress_4 .circle-progress-value,
.circleProgress_5 .circle-progress-value
 {
  stroke: var(--dark-blue-color);
}
.circleProgress.completed{
  background-color: var(--dark-blue-color);
  border-radius: 50%;
}
.circleProgress.completed .text{
  color: var(--white-color);
}
.circleProgress.completed .circle-progress-circle{
  stroke-width: 0;
}

/* End cours-page */


/* Start Unit test */
.answer{
  width: 100%;
  transition: .2s ease-in-out;
  padding-block: .65rem;
  padding-inline: .5rem;
}

.answer:hover {
  width: 100%;
  cursor: pointer;
  background: #edf0f4;;
}
.select-answer:hover .border-progress{
  background-color: var(--dark-blue-color);
  color: var(--white-color);
  border: 0;
}
.select-answer,
.correct-answer,
.wrong-answer{
  background: #edf0f4;
  border-radius: 7px;
}
.select-answer .border-progress{
  background-color: var(--dark-blue-color);
  color: var(--white-color);
  border: 0;
}

.correct-answer .border-progress{
  background-color: #1bbd40;
  color: var(--white-color);
  border: 0;
}
.correct-answer .correct{
  color: #1bbd40;
}

.wrong-answer .border-progress{
  background-color: #ed1c24;;
  color: var(--white-color);
  border: 0;
}
.wrong-answer .wrong{
  color: #ed1c24;;
}

.border-time{
  border: 2px solid var(--dark-blue-color);
}
.quiz-result {
  border: 2px solid;
}
/* End Unit test */


/* Start stats teacher */
.body-notif{
  min-height: 10rem;
  max-height: 25rem;
  overflow-y: auto;
}
.notif-text:nth-child(odd){
  background-color: var(--hawkes-blue-color);;
}
option {
  font-size: 18px;
  background-color: #ffffff;
}

option:before {
  content: ">";
  font-size:45px;
  display: none;
  padding-right: 10px;
  padding-left: 5px;
  color: #fff;
}

option:hover:before {
  display: inline;
}
/* End stats teacher */




@media (min-width: 320px) {
  .container {
      width: 100%;
  }
  html[dir=rtl] .hero-text h1{
      font-size: 2rem;
      font-size: clamp(2rem, 7vw, 1.80rem);
  }
  .navbar-brand .logo{
      width: 50px;
      height: 50px;
  }
  .bg-white-pos {
      position: absolute;
      top: 59px;
      left: -5rem;
      z-index: -1;
      height: 15rem;
      width: 23rem;
      scale: 1.5;
  }
  html[dir=rtl] .bg-white-pos{
      right: -2rem;
      left: unset;

  }
  .notification-number{
      position: absolute;
      width: 15px;
      height: 15px;
      background-color: var(--red-color);
      border-radius: 50%;
      color: var(--white-color);
      top: -5px;
      right: -9px;
      font-size: 10px;
      font-weight: 500;
      text-align: center;
  }
  ul.dropdown-menu.dropdown-notification{
      width: 19rem;
      left: -13rem;
      top: 3.5rem;
  }
  ul.dropdown-menu.dropdown-notification::before{
      content: "";
      border-width: 7px;
      border-color: #ffffff;
      border-style: solid;
      right: 70px;
      position: absolute;
      rotate: 45deg;
      top: -7px;
      z-index: -1;
      box-shadow: var(--box-shadow-2);
      /* outline: 1px solid #cbcbcb; */
  }
  html[dir=rtl] ul.dropdown-menu.dropdown-notification{
      right: -13rem;
  }
  html[dir=rtl] ul.dropdown-menu.dropdown-notification::before{
      left: 84px;
      right: unset;
  }
  ul.dropdown-menu.dropdown-profile{
      left: -10rem;
      top: 4rem;
      width: 13rem;
      border: 0;
  }
  ul.dropdown-menu.dropdown-profile::before{
      content: "";
      border-width: 7px;
      border-color: #ffffff;
      border-style: solid;
      left:85%;
      position: absolute;
      rotate: 45deg;
      top: -5px;
      z-index: -1;
      box-shadow: var(--box-shadow-2);
      /* outline: 1px solid #cbcbcb; */
  }
  html[dir=rtl]  ul.dropdown-menu.dropdown-profile{
      left:0px;
      right: unset;
  }
  html[dir=rtl]  ul.dropdown-menu.dropdown-profile::before{
      left:15px;
  }
}

@media (min-width: 576px) {
  .container {
  width: 568px;
  }
  html[dir=rtl] .hero-content{
      width: 75%;
  }
  html[dir=rtl] .hero-text h1{
      --_top_spacer: 7.5rem;
      font-weight: 700;
      font-size: clamp(2.35rem, 7vw, 1.80rem);
  }
  ul.dropdown-menu.dropdown-notification{
      width: 23rem;
      left: -17rem;
  }
  html[dir=rtl] ul.dropdown-menu.dropdown-notification {
      right: -20.5rem;
  }
  html[dir=rtl] ul.dropdown-menu.dropdown-notification::before {
      left: 25px;
      right: unset;
  }
  .banner-section{
      grid-template-columns: 50px 1fr;
  }
  .social_media{
      grid-column: 1 / 2;
  }
  .vertical-line .get__started{
      width: fit-content;
  }
  .hero-text p {
      font-weight: 500;
  }
  .bg-white-pos {
      position: absolute;
      top: 59px;
      left: -10rem;
      z-index: -1;
      height: 15rem;
      width: 23rem;
      scale: 1.5;
  }
  html[dir=rtl] .bg-white-pos{
      /* right: -6rem; */
      left: unset;
  }
  .social_media{
      position: fixed;
      top: 50%;
  }
  .width-md-45{
      width: 45%;
  }
  html[dir=rtl] .fs-sm-3r {
      font-size: 1.75rem;
  }
  html[dir=rtl] .fs-sm-4r {
      font-size: 1.5rem;
  }
}


/* Small Screen */

@media (min-width: 768px) {
  .container {
      width: 750px;
  }

  html[dir=rtl] .hero-text h1{
      --_top_spacer: 7.5rem;
      font-weight: 700;
      font-size: clamp(3rem, 7vw, 1.80rem);
  }
  .hero-content {
      left: 40%;
      max-width: 52rem;
  }
  .border-shape {
      --_top-right-border: 5rem;
      --_bottom-right-border: 8rem;
      width: auto;
      min-height: 23rem;
  }
  .hero-text h1 {
      --_top_spacer: 5rem;
      font-size: 3rem;
  }
  .social_media span, .social_media_footer span{
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
  }
  .hero-text a{
      width: 10rem;
  }
  .hero-content .space-bottom{
      margin-bottom: 3rem;
  }

  .plans .card{
      max-width: 21rem;
      width: 100%;

  }
  footer .order{
      order: 0;
  }
  html[dir=rtl] .bg-white-pos{
      right: -9rem;
      left: unset;
  }
  html[dir=rtl] .fs-md-3r {
      font-size: 1.75rem;
  }
  html[dir=rtl] .fs-md-4r {
      font-size: 1.5rem;
  }
  html[dir=rtl] .text-md-end-rtl {
      text-align: right !important;
  }
  .width-md-45{
      width: 45%;
  }
}

/* Medium Screen */
@media (max-width: 992px) {
  .wrapper-overlay{
      height: 70vh;
  }
  .navbar-expand-lg .navbar-nav{
      height: 100vh;
  }
  .vertical-line .get__started{
      margin-block: 1rem;
  }
  #courses-dropdown{
      position: absolute;
      width: 96%;
  }
  .accordion {
      margin: 0;
  }
  .show-lg-screen{
      display: none !important;
  }
  .navbar-expand-lg .navbar-nav .dropdown-search.show-on{
      display: block;
      padding: 0;
      z-index: 10;
      width: min(300px, 100%);
  }
  .widget::after {
      content: "";
      height: 182px;
      width: 2px;
      background-color: #d6d6d6;
      position: absolute;
      right: 50%;
      top: unset;
      z-index: -1;
      bottom: -74px;
  }
  html[dir=rtl] .widget::after {
      content: "";
      height: 182px;
      width: 2px;
      background-color: #d6d6d6;
      position: absolute;
      right: 50%;
      top: unset;
      z-index: -1;
      bottom: -74px;
  }
  .timeline::before {
      content: '';
      height: 80%;
      width: unset;
      transform: translateX(-50%);
      border: 2px solid #d6d6d6;
      position: absolute;
      left: 50%;
      top: 10.5%;
      border-right: 0;
  }
  .timeline .vertical--line{
      display: none;
  }
  .timeline li:not(:first-child, :last-child):after, .timeline li::before{
      display: none;
  }

  .widget-border{
      margin-inline: auto;
  }
  .widget-form{
      display: none;
  }
  html[dir=rtl] .bg-white-pos{
      height: 13.5rem;
      top: 54px;
  }

}


@media (min-width: 992px) {
  .container {
      width: 970px;
  }
  html[dir=rtl] .hero-text h1{
      --_top_spacer: 7.5rem;
      font-weight: 700;
      font-size: clamp(4rem, 7vw, 1.80rem);
  }
  .navbar-brand .logo {
      width: 70px;
      height: 70px;
      object-fit: contain;
  }
  .navbar-expand-lg .navbar-nav{
      border-inline-end: 2px solid var(--dark-blue-color);
  }
  .dropdown-tab:hover #courses-dropdown{
      display:block;
      top:100%;
      padding: 0;
  }
  .form-control{
      border: 0;
      position: relative;
  }
  .form-control::after{
      content: "";
      border-width: 7px;
      border-color: #ffffff;
      border-style: solid;
      left: 13rem;
      position: absolute;
      rotate: 45deg;
      top: -5px;
      z-index: -1;
      outline: 1px solid #cbcbcb;
  }
  .form-control:focus{
      box-shadow: none;
  }
  ul.dropdown-menu.dropdown-search {
      width: 17rem;
      left: -13rem;
      top:5rem;
  }
  ul.dropdown-menu.dropdown-notification{
      width: 23rem;
      left: -19.5rem;
      top: 5rem;
  }
  html[dir=rtl] ul.dropdown-menu.dropdown-notification {
      right: -19rem;
  }
  ul.dropdown-menu.dropdown-notification .card-body{
      transition: .2s ease;
  }
  ul.dropdown-menu.dropdown-notification .card-body:hover{
      background-color: var(--hawkes-blue-color);
      cursor: pointer;
  }
  ul.dropdown-menu.dropdown-profile::before,
  ul.dropdown-menu.dropdown-notification::before,
  .navbar-expand-lg .navbar-nav .dropdown-search::before{
      content: "";
      border-width: 7px;
      border-color: #ffffff;
      border-style: solid;
      left: 13rem;
      position: absolute;
      rotate: 45deg;
      top: -5px;
      z-index: -1;
      /* outline: 1px solid #cbcbcb; */
  }
  .navbar-expand-lg .navbar-nav .dropdown-search::before{
      top: -4px;
      right: 40px;
      left: unset;
      box-shadow: var(--box-shadow-2);
  }
  html[dir=rtl] .navbar-expand-lg .navbar-nav .dropdown-search::before{
      right: 10px;
  }
  ul.dropdown-menu.dropdown-notification::before{
      left: 85%;
      border-width: 20px;
      outline: 0;
  }
  ul.dropdown-menu.dropdown-profile{
      left: -8rem;
      top: 5.45rem;
      border: 0;
  }
  ul.dropdown-menu.dropdown-profile::before{
      left: 8rem;
      border-width: 10px;
      outline: 0;
  }
  .notification-number{
      position: absolute;
      width: 18px;
      height: 18px;
      background-color: var(--red-color);
      border-radius: 50%;
      color: var(--white-color);
      top:0;
      right: 0;
      font-size: 12px;
      font-weight: 500;
      text-align: center;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
      padding-inline: 0px;
  }
  .navbar-nav .nav-link:hover::after{
      width: 40%;
      left: 25%;
      color: var(--red-color)
  }
  .navbar-nav .nav-link.active::after{
      content: "";
      width: 40%;
      height: 2px;
      position: absolute;
      background-color: var(--red-color);
      left: 10px;
      bottom: 0px;
  }
  .nav-item .nav-link{
      font-size: calc(.25rem + 10px) ;

  }
  #courses-dropdown{
      min-width: 44rem;
  }
  .show-sm-screen{
      display: none;
  }
  .vertical-line{
      display: flex;
      align-items: center;
  }
  .vertical-line a{
      padding: var(--btn-padding);
      font-size: calc(.25rem + 10px) ;
  }

  /* banner section*/
  .border-shape {
      --_bottom-right-border: 8rem;
      min-height: 26rem;
  }
  .hero-text span:nth-of-type(1) {
      font-size: 4.5rem;
  }
  .hero-text span:nth-of-type(2) {
      font-size: 3.5rem;
  }
  .hero-text p{
      font-weight: 500;
      font-size: 1.10rem;
  }
  .owl-nav{
      text-align: right;
      position: absolute;
      top: -8rem;
      display: flex;
      justify-content: flex-end;
      gap: 3rem;
  }
  .hero-text h1 {
      --_top_spacer: 7rem;
      font-size: 3.5rem;
  }
  /* Diploma-map  */

  html[dir=rtl] .timeline-left-rtl {
      margin-right: 8.333%;
      margin-left: 0;
  }
  html[dir=rtl] .timeline-right-rtl {
      margin-left: 8.333%;
      margin-right: 0;
  }
  .widget::after {
      right: -34%;
  }
  .temp-line::after{
      right: -60%;
  }

  html[dir=rtl] .widget::after{
      left: -34%;
      right: 0;
      width: unset;
  }
  html[dir=rtl] .text-end-rtl {
      text-align: right !important;
  }
  html[dir=rtl] .temp-line::after{
      left:-60%;
  }
  /* owl-carousel */
  .team-carousel .owl-nav{
      top: 5rem;
      display: flex;
      justify-content: space-between;
      gap: 3rem;
  }

  /* footer */
  .bg-white-pos{
      position: absolute;
      top: 0;
      left: -24rem;
      z-index: -1;
      height: 27rem;
      width: 45rem;
      scale: 1;
  }
  html[dir=rtl] .bg-white-pos{
      right: -24rem;
      left: unset;
  }

  .show-0n-lg{
      display: block !important;
  }
  html[dir=rtl] .fs-lg-3r {
      font-size: 1.75rem;
  }
  html[dir=rtl] .fs-lg-4r {
      font-size: 1.5rem;
  }
}

/* Large Screen */

@media (min-width: 1200px) {
  .container {
      width: 1170px;
  }
  .nav-item .nav-link{
      font-size: calc(.6rem + 8px) ;
  }
  #courses-dropdown{
      min-width: 54rem;
  }
  .vertical-line{
      gap: calc(.25rem + 8px)
  }
  .vertical-line a{
      padding: var(--btn-padding);
      font-size: calc(.30rem + 10px) ;
  }
  .hero-text span:nth-of-type(1) {
      font-size: 5.5rem;
  }
  .hero-text span:nth-of-type(2) {
      font-size: 4.5rem;
  }
  .hero-text span:nth-of-type(3) {
      font-size: 2.8rem;
  }
  /* banner section*/
  .border-shape {
      --_bottom-right-border: 9rem;
      /* min-height: 30rem; */
  }
  .hero-text p {
      font-weight: 500;
      font-size: 1.25rem;
      line-height: 1.7;
  }
  html[dir=rtl] .hero-text p{
      font-size: 1.125rem;
  }
  .widget::after {
      right: -45%;
  }
  html[dir=rtl] .widget::after{
      left: -45%;
      right: 0;
      width: unset;
  }
  .temp-line::after{
      right: -60%;
  }
  html[dir=rtl] .temp-line::after{
      left:-60%;
  }
  .width-lg-45 {
      width: 45%;
  }
  html[dir=rtl] .bg-white-pos {
      right: -28rem;
      left: unset;
      width: 50rem;
      height: 32rem;
  }
  html[dir=rtl] .offset-xl-3-rtl{
      /* margin-right: 25%; */
      margin-left: 8.333333%;
  }
}

/* X-Large Screen */

@media (min-width: 1400px) {
  .container {
      width: 1295px;
  }
  .nav-item .nav-link{
      font-size: calc(.6rem + 8px) ;
  }
  .vertical-line{
      gap: calc(.25rem + 10px)
  }
  .vertical-line a{
      padding: var(--btn-padding);
      font-size: calc(.30rem + 11px) ;
  }
  .hero-text h1{
      font-size: 4rem;
  }

}

/* End Grid Rules */

.consulting-content li {
  position: relative;
}

.consulting-content li::before{
   content: "";
   position: absolute;
   width: 15px;
   height: 15px;
   border-radius: 50%;
   background: var(--hawkes-blue-color);
   top: 5px;
   left: -23px;
}
html[dir=rtl] .consulting-content li::before{
   right: -23px;
}


.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.selected-color {
  background-color: #d1d7dc;
}
.selected-section-color {
  background-color: #E5EDEE;
}


/* Strat Partners Section */

.brand-logo-wrapper {
  background-color: #2980b561;
  padding: 60px 100px;
  border-radius: 10px;
  position: relative;
}
@media only screen and (max-width: 767px),
  only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-logo-wrapper {
    padding: 50px 50px;
  }
}
@media only screen and (max-width: 575px) {
  .brand-logo-wrapper {
    padding: 30px 30px;
  }
}
.brand-logo-wrapper .shape-1 {
  position: absolute;
  top: 60px;
  right: 31%;
}
@media only screen and (max-width: 767px) {
  .brand-logo-wrapper .shape-1 {
    display: none;
  }
}
.brand-logo-wrapper .shape-2 {
  position: absolute;
  top: 50px;
  right: 45px;
}
@media only screen and (max-width: 767px) {
  .brand-logo-wrapper .shape-2 {
    display: none;
  }
}
.brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 15px;
}
.single-brand {
  margin-top: 30px;
  text-align: center;
}
.brand-logo .brand-item {
  background-color: white;
  border: 1px solid #06060614;
  box-shadow: 2px 5px 12px #05124214;
  padding: 20px 10px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.brand-logo .brand-item .image {
  margin: auto;
  width: 100px;
  height: 100px;
}

.brand-logo .brand-item .image a {
  padding: unset;
  display: inline;
  margin: auto;
}

.brand-logo .brand-item .image  img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 991px) {

  .brand-logo .swiper-next,
  .brand-logo .swiper-prev {
      margin: 0px -50px;
  }
}

/* End Partners Section */
.forward-button .active>.page-link,
.page-link.active {
    z-index: 0;
}
/* Start Our Mission Section */
.our-mission {
    background-color: #06285B;
    position: relative;
    min-height: 600px;
    text-align: center;

}

.our-mission h4 {
    color: var(--white-color);
    font-weight: bold;
    border-bottom: 1px solid var(--white-color);
    text-align: center;
    margin: 15px auto;
    font-size: calc(1.375rem + 1.5vw);
    padding: 5px;
    display: inline-flex;
}

.our-mission .our-mission-main {
    background-image: url(../images/our-mission-image.png);
    background-position: center center;
    opacity: 5%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}

.our-mission .container {
    z-index: 3;
    position: relative;
}

.our-mission .content .top-mission,
.our-mission .content .bottom-mission {
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    position: relative;
}

.our-mission .content .top-mission,
.our-mission .content .top-mission::before {
    background-color: rgba(49, 28, 63, 1);

}

.our-mission .content .bottom-mission::before,
.our-mission .content .bottom-mission {
    background-color: rgba(227, 62, 87, 1);
}

.our-mission .content .top-mission::before,
.our-mission .content .bottom-mission::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 55px;
    left: 50%;
    transform: translateX(-50%);
}

.our-mission .content .top-mission::before {
    top: 0;
}

.our-mission .content .bottom-mission::before {
    bottom: 0;
}



.our-mission .content .body-mission {
    margin: calc(50px - 18px) auto;
}

.our-mission .content .body-mission .mission-item {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.our-mission .content .body-mission .mission-item:nth-child(even) {
    flex-direction: row-reverse;
}

.our-mission .content .body-mission .mission-item .text-mission,
.our-mission .content .body-mission .mission-item .number-mission {
    padding: 10px;
    min-height: 200px;
    color: white;
    font-size: 20px;
    text-align: center;
}

html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(odd) .text-mission {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(254, 254, 254, 0.05) 4%, rgba(245, 246, 246, 0.39) 31%, rgba(239, 239, 239, 0.65) 55%, rgba(234, 235, 235, 0.84) 75%, rgba(231, 232, 232, 0.96) 91%, #E6E7E7 100%);
}

html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(even) .text-mission {
    flex-direction: row-reverse;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(254, 254, 254, 0.05) 4%, rgba(245, 246, 246, 0.39) 31%, rgba(239, 239, 239, 0.65) 55%, rgba(234, 235, 235, 0.84) 75%, rgba(231, 232, 232, 0.96) 91%, #E6E7E7 100%);
}

html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(odd) .text-mission {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(254, 254, 254, 0.05) 4%, rgba(245, 246, 246, 0.39) 31%, rgba(239, 239, 239, 0.65) 55%, rgba(234, 235, 235, 0.84) 75%, rgba(231, 232, 232, 0.96) 91%, #E6E7E7 100%);
}

html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(even) .text-mission {
    flex-direction: row-reverse;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(254, 254, 254, 0.05) 4%, rgba(245, 246, 246, 0.39) 31%, rgba(239, 239, 239, 0.65) 55%, rgba(234, 235, 235, 0.84) 75%, rgba(231, 232, 232, 0.96) 91%, #E6E7E7 100%);
}

.our-mission .content .body-mission .mission-item .text-mission {
    flex-basis: 40.5%;
    display: flex;
}

.our-mission .content .body-mission .mission-item .text-mission .icon-mission {
    position: absolute;
    top: 50%;
    width: 150px;
    height: 250px;
    transform: translateY(-50%);
}

.our-mission .content .body-mission .mission-item .text-mission .icon-mission img {
    width: 100%;
    height: 100%;
}


.our-mission .content .body-mission .mission-item .number-mission {
    flex-basis: 19%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: clamp(25px, 35px, 5vw);
}

.our-mission .content .body-mission .mission-item:not(:last-child) .number-mission {
    border-bottom: 5px solid rgba(49, 28, 63, 1);
}

@media (min-width: 992px) {

    .our-mission .content .body-mission .mission-item:first-child .number-mission:after {
        content: "";
        position: absolute;
        width: calc(100% / 2);
        height: 5px;
    }

    .our-mission .content .body-mission .mission-item .number-mission .half-line {
        position: absolute;
        width: calc(100% / 2);
        height: 5px;
        bottom: 0;
    }

    .our-mission .content .body-mission .mission-item:first-child .number-mission:after {
        background-color: rgba(49, 28, 63, 1);
    }

    .our-mission .content .body-mission .mission-item .number-mission .half-line {
        background-color: rgb(180 52 59);
    }

    html[dir="ltr"] .our-mission .content .body-mission .mission-item:first-child .number-mission:after {
        top: 0;
        left: 0;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item:first-child .number-mission:after {
        top: 0;
        right: 0;
    }

    html[dir="ltr"] .our-mission .content .body-mission .mission-item:last-child .number-mission:after {
        bottom: 0;
        right: 0;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item .number-mission .half-line {
        bottom: 0;
        left: 0;
    }

    .courseIMG {
        height: 360px;
    }
}

.our-mission .content .body-mission .mission-item .number-mission p {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    margin: 0;
    font-size: clamp(20px, 28px, 5vw);
}
.our-mission .content .body-mission .mission-item .number-mission p::before {
    content: "";
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    border: 1px solid rgb(217 213 219);
}


.our-mission .content .body-mission .mission-item .text-mission .info {
    padding: 15px;
    max-width: 50%;
}

.our-mission .content .body-mission .mission-item .text-mission .info h6 {
    display: inline-block;
    padding: 5px;
    border-bottom: 1px solid rgba(49, 28, 63, 1);
    font-weight: 700;
    font-size: clamp(25px, 35px, 5vw);
    margin-bottom: 15px;
}

.our-mission .content .body-mission .mission-item .text-mission .info h6,
.our-mission .content .body-mission .mission-item .text-mission .info p {
    color: rgba(49, 28, 63, 1);
}

.our-mission .content .body-mission .mission-item .text-mission .info p {
    font-size: 15px;
    font-weight: normal;
}

.our-mission .content .body-mission .mission-item:nth-child(odd) .text-mission .info {
    margin-inline-start: auto;
}

.our-mission .content .body-mission .mission-item:nth-child(even) .text-mission .info {
    margin-inline-end: auto;
}

.our-mission .content .body-mission .mission-item .number-mission div.line {
    position: absolute;
    top: 0;
    background-color: rgba(49, 28, 63, 1);
    width: 5px;
    height: 100%;
}

html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(odd) .number-mission div.line {
    left: 0;
}

html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(odd) .number-mission div.line {
    right: 0;
}

html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(even) .number-mission div.line {
    right: 0;
}

html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(even) .number-mission div.line {
    left: 0;
}

/* Start Small Screen Custom 575 => */
@media (max-width: 991px) {

    .our-mission .content .top-mission,
    .our-mission .content .bottom-mission {
        display: none;
    }

    .our-mission .content .body-mission .mission-item {
        margin-bottom: 40px;
        justify-content: center;
    }

    .our-mission .content .body-mission .mission-item .number-mission .half-line {
        display: none;
    }

    .our-mission .content .body-mission .mission-item:not(:last-child) .text-mission span.line {
        position: absolute;
        bottom: -25px;
        width: calc(100% + 3px);
        height: 5px;
        background-color: rgba(49, 28, 63, 1);
    }

    html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(odd) .text-mission span.line {
        left: 40px;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(odd) .text-mission span.line {
        right: 40px;
        left: unset;
    }

    html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(even) .text-mission span.line {
        right: 40px;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(even) .text-mission span.line {
        left: 40px;
        right: unset;
    }

    .our-mission .content .body-mission .mission-item .text-mission {
        flex-basis: 95.5%;
        display: flex;
        position: relative;
    }

    .our-mission .content .body-mission .mission-item .number-mission {
        padding: 0;
        flex-basis: 0;
    }

    .our-mission .content .body-mission .mission-item:not(:last-child) .number-mission {
        border-bottom: 0;
    }



    html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(odd) .number-mission div.line {
        left: 50%;
        transform: translateX(-50%);
        top: unset;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(odd) .number-mission div.line {
        right: 50%;
        transform: translateX(50%);
        top: unset;
    }

    html[dir="ltr"] .our-mission .content .body-mission .mission-item:nth-child(even) .number-mission div.line {
        right: 50%;
        transform: translateX(50%);
        top: unset;
    }

    html[dir="rtl"] .our-mission .content .body-mission .mission-item:nth-child(even) .number-mission div.line {
        right: 50%;
        transform: translateX(50%);
        top: unset;
    }

    .our-mission .content .body-mission .mission-item .number-mission div.line {
        height: calc(100% + 40px);
    }

    .our-mission .content .body-mission .mission-item:first-child .number-mission div.line {
        height: calc(100% + 25px);
        top: 0 !important;
        bottom: unset;
    }

    .our-mission .content .body-mission .mission-item:last-child .number-mission div.line {
        height: calc(100% + 20px) !important;
        top: unset;
        bottom: 0;
    }

    /* circle */
    .our-mission .content .body-mission .mission-item:first-child .number-mission:after,
    .our-mission .content .body-mission .mission-item:last-child .number-mission:after {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 50%;
    }

    .our-mission .content .body-mission .mission-item:first-child .number-mission:after {
        background-color: rgba(49, 28, 63, 1);
        top: 0;
    }

    .our-mission .content .body-mission .mission-item:last-child .number-mission:after {
        background-color: rgb(180 52 59);
        bottom: 0;
    }

    .courseIMG {
        height: 290px;
    }
}

/* End Small Screen Custom  575 => */

/* Start Small Screen Custom  575 =< */
@media (max-width: 575px) {
    .our-mission .content .body-mission .mission-item .text-mission .icon-mission {
        position: static;
        transform: translateY(0%);
        width: 115px;
        margin: auto;
    }

    .our-mission .content .body-mission .mission-item .text-mission {
        flex-direction: column !important;
    }

    .our-mission .content .body-mission .mission-item .text-mission .info {
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 420px) {
    .our-mission .content .body-mission .mission-item .text-mission {
        text-align: start;
        flex-basis: content;
    }

    .our-mission .content .body-mission .mission-item .text-mission .icon-mission {
        display: none;
    }
}

/* End Small Screen Custom  575 =< */

/* End Our Mission Section */

.widget__item-attac {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.widget__item-attac .widget__item-icon {
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
}

.widget__item-attac .widget__item-icon img {
    object-fit: contain;
}

.widget__item-attac .widget__item-content {
    -webkit-margin-start: 15px;
    margin-inline-start: 15px;
}

.HomeCourseIMG {
    height: 256px;
}
