@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Dancing+Script:wght@700&family=Lobster&family=Noto+Naskh+Arabic:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tajawal:wght@200;300;400;500;700;800;900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  font-family: "Tajawal", sans-serif;
}

:root {
  --praimary-color: #23a662;
}

body,
html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  direction: rtl;
}

::selection {
  color: rgb(255, 255, 255);
  background-color: var(--praimary-color);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #242424;
  transition: all 0.4s ease-in;
}

::-webkit-scrollbar-track {
  background: #fff0f0;
}





/* back to top button */
#button {
  display: inline-block;
  background-color: var(--praimary-color);
  width: 40px;
  height: 40Px;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 2px solid #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #B0B0B0;
}

#button:active {
  background-color: #B0B0B0;
}

#button.show {
  opacity: 1;
  visibility: visible;
}






/* top-bar  */
.top-bar {
  background-color: #000;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

.top-bar:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 300px);
  border-radius: 0 0 0 50px;
  background: var(--praimary-color);
  z-index: 1;
}

.top-bar .container-fluid {
  z-index: 1000;
}

.top-bar .col-md-3:nth-child(3) .contact-link {
  border-left: none;
}

.top-bar h6 {
  color: #fff;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
}

.top-bar .social-media ul {
  margin-bottom: 0;
}

.top-bar .social-media li {
  display: inline-block;
}

.top-bar .social-media .icon-bg {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  margin: 0 4px;
}

.top-bar .contact-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-left: 1px solid #dddddd;
}

.top-bar .contact-link .icon-bg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffffff;
  text-align: center;
  margin-left: 8px;
}

.top-bar .contact-link a {
  color: #fff;
  font-size: 15px;
}

.top-bar .social-media .icon-bg i {
  line-height: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--praimary-color);
}

.top-bar .contact-link .icon-bg i {
  line-height: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--praimary-color);
}

.top-bar .social-media .icon-bg svg {
  width: 13px;
  height: 13px;
  fill: var(--praimary-color);
}

/* navbar starts */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000 !important;
}

.nav-header {
  direction: rtl;
}

.navbar {
  background-color: var(--praimary-color);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  position: relative;
  z-index: 100000 !important;
  height: 120px;
}

.navbar:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 0px);
  border-radius: 0 50px 0 0;
  background: #f1fcf5;
  z-index: 1;
}

.navbar .container {
  z-index: 1000;
}

.navbar .container>a {
  color: var(--praimary-color);
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

nav .brand a {
  text-decoration: none;
}

nav .brand img {
  width: 30%;
}

nav .brand .brand-name {
  font-size: 19px;
  font-weight: 800;
  color: #000000;
  margin-right: 15px;
}

nav a {
  font-weight: 550;
  font-size: 14px;
  color: #fff;
}

nav .nav-item .active {
  color: var(--praimary-color);
  position: relative;
}


nav .nav-item {
  display: inline-block;
}

.navbar-nav .nav-link {
  color: #082b1b;
}

nav .lang {
  margin-right: 24px;
  border-radius: 50px;
  display: flex;
}

nav .lang a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
}

nav .lang a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

nav .lang a:hover:before {
  transform: scaleY(1);
}

nav .lang a.secondary {
  background-color: #fff;
  color: var(--praimary-color);
  border: 2px solid var(--praimary-color);
  margin-right:  8px;
}

nav .lang a.secondary:hover {
  color: #fff;
}

nav .lang i {
  margin-right: 8px;
}

.navbar-nav .nav-link:hover {
  color: var(--praimary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.nav-item .dropdown-menu .dropend .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 195px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav .dropdown-menu a {
  color: #090909;
  font-size: 14px;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

nav .dropdown-menu a:hover {
  padding-right: 23px;
  color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

nav .dropdown-item:focus,
.dropdown-item:hover {
  background-color: #23a66215;
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  /* transform: translateX(100%); */
  left: -100%;
  top: 15px;
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
}

.nav-item:hover .dropdown-menu {
  display: block;
  margin-top: 3px;
  background: rgb(254, 254, 254);
  border: 0;
  border-top: 3px solid var(--secondary-color);
  border-radius: 5px;
  direction: rtl;
  text-align: right;
  transform: translateX(50%);
  transition: all 0.4s ease-in;
  animation: growDown 300ms ease-in-out forwards;
  transform-origin: top center;
  left: auto;
  border-top: 3px solid #23a662;
}

@keyframes growDown {
  0% {
    transform: scaleY(0);
  }

  80% {
    transform: scaleY(1.1);
  }

  100% {
    transform: scaleY(1);
  }
}

.nav-item .dropdown-menu .dropend:hover .dropdown-menu::before {
  display: none;
}

.navbar-nav .dropdown-menu {
  margin-top: 7px;
  text-align: left;
  transition: all 0.4s ease-in;
}

nav .nav-item #dropdown {
  margin-top: -10px;
}

nav .list-group p {
  font-size: 12px;
  font-weight: 700;
  line-height: 26px;
  color: #94a3b8;
}

nav .list-group span {
  padding: 5px;
  color: aliceblue;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0.2rem;
}

nav .lang-back {
  padding: 5px 15px;
  border-radius: 20px;
  background-color: var(--praimary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .lang-back i {
  margin-left: 5px;
}

nav a:hover .lang-back {
  background-color: var(--secondary-color);
  transition: all 0.4s ease-in;
}

.navbar .navbar-toggler {
  font-size: 20px;
}

nav .register-link {
  margin-right: 50px;
  display: flex;
  align-items: center;
}

nav .register-link a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff !important;
  font-family: var(--title-font);
  border-radius: 5px;
  text-decoration: none;
  padding: 5px 30px;
}

nav .register-link a:before {
  content: "";
  position: absolute;
  height: 0%;
  left: 50%;
  top: 50%;
  width: 600%;
  background-color: var(--secondary-color);
  transform: translateX(-50%) translateY(-50%) rotate(60deg);
  z-index: -1;
  transition: 0.7s ease;
}

nav .register-link a:hover:before {
  height: 560%;
}

nav .register-link a:hover {
  color: #fff;
}

@media screen and (max-width: 991px) {
  nav .lang {
    padding-left: 0;
  }
}

@media screen and (max-width: 330px) {
  .navbar .navbar-toggler {
    font-size: 15px;
  }

  nav a img {
    width: 70px;
    height: 70px;
  }
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.4rem;
    padding-left: 0.4rem;
  }
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  /* Menu is hidden (off-screen to the right) */
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  /* Delay visibility hiding */
  direction: rtl;
}

.side-menu.show {
  transform: translateX(0);
  /* Menu is visible */
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s;
  /* Show instantly with the menu */
}

.side-menu.hide {
  transform: translateX(100%);
  /* Move out of the viewport */
  opacity: 0;
  /* Fade out */
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
  /* Hide after animation */
}

.side-menu .menu .menu-toggle {
  position: absolute;
  left: -18px;
  top: 60px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--praimary-color);
  border: 0;
  z-index: 1;
}

.side-menu .menu .menu-toggle i {
  color: #ffffff;
}

.side-menu .menu {
  width: 100%;
  max-width: 310px;
  height: 100%;
  position: relative;
  left: 0;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
  background-color: #fff;
}


.side-menu .menu .menu-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  padding: 15px;
  background-color: #242424;
  position: relative;
}

.side-menu .menu .menu-logo::before {
  content: "";
  position: absolute;
  background: url(../images/contact-shape-3.png);
  background-size: contain;
  background-repeat: repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
}

.side-menu .menu .menu-logo a {
  text-align: center;
  text-decoration: none;
}

.side-menu .menu .menu-logo a p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--secondary-color);
  padding-top: 8px;
}

.side-menu .menu .menu-logo img {
  width: 85%;
}

.side-menu .menu .menu-content {
  padding: 15px;
  background-color: var(--heading-color);
  height: 100%;
}

.side-menu .menu .menu-content ul {
  list-style: none;
  padding-right: 0;
  padding-left: 0;
}

.side-menu .menu .menu-content ul .nav-item {
  border-bottom: 1px solid #ded3d361;
  padding: 5px 0;
}

.side-menu .menu .menu-content ul li .dropdown-menu {
  width: 100% !important;
}

.side-menu .menu .menu-content ul a {
  font-size: 13px;
  color: var(--block-background-color);
  font-weight: 600;
}

.side-menu .menu .menu-content ul li:hover a {
  transition: all ease 1s;
  color: var(--praimary-color);
}

@media (max-width:767px) {
  .top-bar {
    display: none;
  }
}


/* navbar ends */




/* scroll animation */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}







/* slideshow */
.slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 85vh;
  z-index: 1;
}

.slideshow .slideshow-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slideshow .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slideshow .slide {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slideshow .slide.is-active {
  display: block;
}

.slideshow .slide.is-loaded {
  opacity: 1;
}

.slideshow .slide .caption {
  position: relative;
  padding: 0 100px;
  z-index: 1;
  margin: 0 auto;
}

.slideshow .slide .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  z-index: 1;
  background-size: cover;
  image-rendering: optimizeQuality;
}

.slideshow .slide .image-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 30%);
}

.slideshow .slide .image {
  width: 100%;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slideshow .slide-content {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  /* text-align: center; */
  display: flex;
  align-items: center;
}

.slideshow .shape {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
}

.slideshow .shape img {
  position: absolute;
  /* top: 0;
  left: 0;
  bottom: 0; */
  right: 0;
  /* width: 100%; */
  height: 85vh;
  object-fit: contain;
  z-index: 0;
}

.slideshow .slide .name {
  color: #fff;
  font-weight: bolder;
  position: relative;
  font-size: 30px;
}

/* .slideshow .slide .name:before {
  content: '';
  height: 4px;
  width: 100%;
  background-color: var(--praimary-color);
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  bottom: 0;
} */
.slideshow .slide .title {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  /* -webkit-text-stroke: 1px #fff; */
  margin-bottom: 10PX;
  text-transform: uppercase;
}

.slideshow .slide .text {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  background-color: #4f6163a1;
  padding: 15px;
  border-left: 4px solid var(--secondary-color);
}

.slideshow .slide .text p {
  margin-bottom: 0;
}

@media screen and (max-width:575px) {

  .slideshow .slide .title {
    font-size: 18px;

  }

  .slideshow .slide .text {
    font-size: 20px;
  }

  .slideshow {
    height: 70vh;
  }

}

.slideshow .btn-primary {
  margin-top: 16px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 16px;
  min-width: 144px;
  border-radius: 4px;
}

.slideshow .btn-primary i {
  margin-right: 8px;
}

.slideshow .btn-primary:before,
.slideshow .btn-primary:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(1.1);
}

.slideshow .btn-primary:before {
  transform: scaleY(0);
}

.slideshow .btn-primary:after {
  transform: scaleY(0);
}

.slideshow .btn-primary:hover::before,
.slideshow .btn-primary:hover:after,
.slideshow .btn-primary.active::before,
.slideshow .btn-primary.active:after {
  border-radius: 0;
  transform: scale(1);
}

.slideshow .pagination {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  height: 12px;
  cursor: default;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.slideshow .pagination .item {
  display: inline-block;
  padding: 15px 5px;
  position: relative;
  width: 23px;
  height: 32px;
  cursor: pointer;
  text-indent: -999em;
  z-index: 1;
}

.slideshow .pagination .item+.page {
  margin-left: -2px;
}

.slideshow .pagination .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: rgb(255, 255, 255);
  transition: background 0.2s ease;
}

.slideshow .pagination .item::after {
  width: 0;
  background: #fff;
  z-index: 2;
  transition: width 0.2s ease;
}

.slideshow .pagination .item:hover::before,
.slideshow .pagination .item.is-active::before {
  background-color: var(--praimary-color);
  border: 1px solid #ffffff;
}

.slideshow .arrows .arrow {
  margin: -33px 0 0;
  padding: 20px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 3;
}

.slideshow .arrows .prev {
  left: 30px;
}

.slideshow .arrows .prev:hover i {
  left: -10px;
}

.slideshow .arrows .next {
  right: 30px;
}

.slideshow .arrows .next:hover i {
  left: 10px;
}

.slideshow .arrows i {
  position: relative;
  left: 0;
  font-size: 30px;
  color: #fff;
  transition: left 0.2s ease;
}

/* slider ends */









/* about start */

.about {
  padding-top: 50px;
  padding-bottom: 70px;
  background-color: #f1fcf5;
  position: relative !important;
  overflow: hidden;
}

.about .shapes .shape {
  content: "";
  position: absolute;
  z-index: 1;
}

.about .shapes .shape.shape-1 {
  top: 0;
  right: 0;
}

.about .shapes .shape.shape-1 img {
  height: auto;
  max-width: 100%;
}

.about .shapes .shape.shape-2 {
  bottom: 0;
  right: 50px;
}

.about .shapes .shape.shape-3 {
  bottom: 0;
  left: 0;
}

.about .container {
  position: relative;
}

.about .images {
  height: 100%;
  position: relative;
  display: block;
}

.about .images .main-img {
  width: 100%;
  height: 340px;
  z-index: 2;
  position: relative;
  padding-right: 50px;
  padding-left: 50px;
}

.about .images .main-img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 15px;
  border: 6px solid #fff;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about .title-box {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 4px 4px 4px 16px;
  border: 1px solid #bff3d7;
  border-radius: 100px;
  margin-bottom: 12px;
}

.about .title-box .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #bff3d7;
  text-align: center;
  margin-left: 8px;
}

.about .title-box .icon-bg i {
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  color: var(--praimary-color);
}

.about .title-box h3 {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 0;
}

.about p {
  color: #838383;
  font-size: 15px;
  text-align: justify;
}

.about .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
}

.about .button a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

.about .button a:hover:before {
  transform: scaleY(1);
}







/* services start */

.courses {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-color: #051a10;
}

.courses:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../images/process_bg_1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: .4;
}

.courses .title-box {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #f1fcf5;
  padding: 4px 4px 4px 16px;
  border: 1px solid #bff3d7;
  border-radius: 100px;
  margin-bottom: 12px;
}

.courses .title-box .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #bff3d7;
  text-align: center;
  margin-left: 8px;
}

.courses .title-box .icon-bg i {
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  color: var(--praimary-color);
}

.courses .title-box h3 {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 0;
}

.courses .service-grid {
  position: relative;
  transition: all 0.4s ease-out;
}

.courses .service-grid:hover {
  transform: translateY(-15px);
}

.courses .service-grid_icon {
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #8ee7b8;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 auto 0 auto;
  transform: translateY(40px);
}

.courses .service-grid_icon:after,
.courses .service-grid_icon:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--praimary-color);
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
}

.courses .service-grid_icon:after {
  animation-delay: 0.5s;
}

.courses .service-grid_icon img {
  position: relative;
  z-index: 2;
  width: 55px;
  height: 55px;
}

/* Ripple animation */
.courses .service-grid_icon:before,
.courses .service-grid_icon:after {
  animation: ripple 2s linear infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.4;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.courses .service-grid_content {
  box-shadow: 0 10px 15px rgba(8, 14, 28, 0.06);
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 70px 16px 32px 16px;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}


.courses .service-grid_content .box-title a {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #1b1b1b;
  text-decoration: none;
}

.courses .service-grid_content .service-grid_text {
  position: relative;
  z-index: 1;
  color: #838383;
  font-size: 15px;
  text-align: center;
}


.courses img.main {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  position: relative;
}

.courses .button {
  text-align: center;
  margin-top: 24px;
}

.courses .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
}

.courses .button a.secondary {
  background-color: #fff;
  color: var(--praimary-color);
  border: 2px solid var(--praimary-color);
}

.courses .button a.secondary:hover {
  color: #fff;
}

.courses .button a.main {
  border: 2px solid var(--praimary-color);
}

.courses .button a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

.courses .button a:hover:before {
  transform: scaleY(1);
}





/* news start */

.news {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background-color: #f1fcf5;
}

.news__bg {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 430px;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/why_bg_2.webp);
  z-index: 1;
}

.news .container {
  position: relative;
  z-index: 2;
}

.news .title-box {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 4px 4px 4px 16px;
  border: 1px solid #bff3d7;
  border-radius: 100px;
  margin-bottom: 32px;
}

.news .title-box .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #bff3d7;
  text-align: center;
  margin-left: 8px;
}

.news .title-box .icon-bg i {
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  color: var(--praimary-color);
}

.news .title-box h3 {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 0;
}

.news .service-grid {
  position: relative;
  transition: all 0.4s ease-out;
}

.news .service-grid:hover {
  transform: translateY(-15px);
}

.news .service-grid_icon {
  height: 80px;
  width: 80px;
  background-color: #defaeb;
  border-top: 6px solid var(--praimary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 16px auto;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-size: 22px;
  font-weight: 600;
}

.news .service-grid_icon span {
  font-size: 15px;
  font-weight: 500;
}

.news .service-grid_content {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 50px 16px 16px 16px;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border-top: 6px dashed var(--praimary-color);

}

.news .service-grid_content .box-title a {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #1b1b1b;
  text-decoration: none;
}

.news .service-grid_content .service-grid_text {
  position: relative;
  z-index: 1;
  color: #838383;
  font-size: 15px;
  text-align: center;
}

.news img.main {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: relative;
}

.news .button {
  text-align: center;
  margin-top: 24px;
}

.news .button.main {
  margin-bottom: 24px;
  margin-top: 0;
}

.news .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
}

.news .button a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

.news .button a:hover:before {
  transform: scaleY(1);
}







/* events start */

.events {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.events__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .7;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/hero-shape-13.png);
  z-index: -1;
}

.events .title-box {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 4px 4px 4px 16px;
  border: 1px solid #bff3d7;
  border-radius: 100px;
  margin-bottom: 12px;
}

.events .title-box .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #bff3d7;
  text-align: center;
  margin-left: 8px;
}

.events .title-box .icon-bg i {
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  color: var(--praimary-color);
}

.events .title-box h3 {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 0;
}

.events .event-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  border: 1px solid #D0DBE9;
  background: #fff;
  border-radius: 10px;
  margin-right: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
  z-index: 2;
}

.events .event-list:before {
  content: '';
  background-color: var(--praimary-color);
  width: 0;
  height: 0;
  border-radius: inherit;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
  z-index: -1;
}

.events .event-list_icon {
  width: 120px;
  height: 120px;
  line-height: 60px;
  min-width: 60px;
  background-color: #EBF2FF;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  /* margin-right: 15px; */
  border: 1px solid #D0DBE9;
  margin-right: -30px;
}

.events .event-list_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.events .event-list_content {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 16px 16px;
  width: 100%;
  border-radius: 10px;
}

.events .event-list_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #1b1b1b;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.events .event-list_title a {
  color: inherit;
  -webkit-transition: 0s;
  transition: 0s;
  text-decoration: none;
}

.events .event-list_text {
  color: #838383;
  font-size: 15px;
  display: block;
  margin-bottom: -.4em;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.event-list .icon-btn {
  margin-right: auto;
  min-width: 50px;
  border: 1px solid var(--praimary-color);
  color: var(--praimary-color);
  position: absolute;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  line-height: 44px;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  border-radius: 50%;
}

.event-list .icon-btn i {
  margin-right: 10px;
  transform: scale(-1);
}

.event-list:hover:before {
  width: 100%;
  height: 100%;
}

.event-list:hover {
  box-shadow: 0 10px 12px 0 rgb(13 94 244 / .2);
}

.event-list:hover .event-list_icon {
  background: var(--theme-color);
}

.event-list:hover .event-list_title {
  color: #fff;
}

.event-list:hover .event-list_text {
  color: #f5eeee;
}

.event-list:hover .icon-btn {
  background-color: #fff;
  color: var(--praimary-color);
  border-color: #fff;
  opacity: 1;
}

.events .button {
  text-align: center;
  margin-top: 24px;
}

.events .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
}

.events .button a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

.events .button a:hover:before {
  transform: scaleY(1);
}







/* video start */

.video {
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/footer-bg-1-2.webp);
}

.video .title-box {
  width: fit-content;
  display: flex;
  align-items: center;
  background-color: #f1fcf5;
  padding: 4px 4px 4px 16px;
  border: 1px solid #bff3d7;
  border-radius: 100px;
  margin-bottom: 12px;
}

.video .title-box .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #bff3d7;
  text-align: center;
  margin-left: 8px;
}

.video .title-box .icon-bg i {
  line-height: 35px;
  font-size: 15px;
  font-weight: 600;
  color: var(--praimary-color);
}

.video .title-box h3 {
  color: #1b1b1b;
  font-size: 22px;
  font-weight: 600;
  line-height: 35px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 0;
}

.video .card {
  border: none;
  background-color: transparent;
  transition: 0.4s ease-in-out;
  border-radius: 10px;
}

.video .card:hover {
  box-shadow: rgb(35 166 98) 0px 5px 15px;
}

.video .card .card-video {
  background-color: #bff3d7;
  padding: 12px;
  border-radius: 10px 10px 0 0;
}

.video .card:hover .card-video {
  background-color: #ffffff;
  transition: 0.4s ease-in-out;
}

.video .card .card-video iframe {
  width: 100%;
  height: 200px;
  border-radius: 5px;
}

.video .card-body .box-title {
  text-align: center;
}

.video .card-body .box-title a {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  color: #1b1b1b;
  text-decoration: none;
}

.video .card .card-body {
  background-color: #fff;
  border-radius: 0px 0px 10px 10px;
}

.video .card:hover .card-body {
  background-color: var(--praimary-color);
  transition: 0.4s ease-in-out;
}

.video .card:hover .box-title a {
  color: #fff;
  transition: 0.4s ease-in-out;
}

.video .button {
  text-align: center;
  margin-top: 24px;
}

.video .button a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--praimary-color);
  border: 1px solid var(--praimary-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
}

.video .button a:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #082b1b;
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: 99px;
  transform: scaleY(0);
}

.video .button a:hover:before {
  transform: scaleY(1);
}












/* contact-sec start */
.contact-sec {
  position: relative;
  background: #fffafa;
}

.contact-sec .location {
  box-shadow: inset 0 0 0 2000px #00000087;
  height: 500px;
}

.contact-sec .location iframe {
  height: 100%;
  width: 100%;
}

.elementor-widget-container {
  position: absolute;
  top: -28px;
  right: 100px;
}

.ct-contact-info3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ct-contact-info3 .ct-contact-inner {
  position: relative;
  max-width: 360px;
  background-color: rgb(0, 0, 0);
  background-image: url(../images/bg-contact-info.png);
  padding: 60px 30px 64px;
}

.ct-contact-info3 .ct-contact-inner::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -28px;
  border-color: transparent rgb(103, 103, 103) rgb(103, 103, 103) transparent;
  border-width: 14px;
  border-style: solid;
}

.ct-contact-info3 .ct-contact-inner .wg-title {
  margin-bottom: 33px;
  font-size: 30px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.ct-contact-info3 .ct-contact-inner .wg-title span {
  display: inline-block;
  position: relative;
  padding-left: 55px;
}

.ct-contact-info3 .ct-contact-inner .wg-title span::before {
  content: "";
  width: 44px;
  height: 3px;
  background-color: var(--praimary-color);
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translate(0px, -50%);
}

.ct-contact-info3 .ct-contact-inner .item--info {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  margin-top: 30px;
}

.ct-contact-info3 .ct-contact-inner .ct-contact-icon {
  line-height: 1;
  margin-left: 14px;
}

.ct-contact-info3 .ct-contact-inner .ct-contact-icon i {
  font-size: 35px;
  color: var(--praimary-color);
}

.ct-contact-info3 .ct-contact-inner .item--title {
  margin-bottom: 0px;
  font-size: 17px;
  line-height: 28px;
  color: rgb(183, 183, 183);
  font-weight: 500;
}

.ct-contact-info3 .ct-contact-inner .item--content {
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  margin-top: 3px;
}

.ct-contact-info3 .ct-contact-inner .item--info .ct-contact-link {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9;
}

/* footer starts */

footer {
  background-image: url(../images/footer-bg-1-2.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-top: 16px;
  padding-bottom: 8px;
}

.footer-content {
  margin: 16px;
  background-color: #ffffff1f;
  border-radius: 10px;
  padding-top: 16px;
}

.footer-content .logo-box {
  width: 70%;
}

/* .footer-content .logo-box .logo {
  width: 100%;
} */
.footer-content .logo-container p a {
  font-weight: 600;
  color: var(--praimary-color);
  text-decoration: none;
}



footer .container {
  position: relative;
}

footer h5 {
  font-size: 23px;
  font-weight: 600;
  color: var(--secondary-color);
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
    -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.footer-content p {
  margin-bottom: 0px;
  font-weight: 450;
  font-size: 15px;
  line-height: 25px;
  color: #cccccc;
}

footer h6 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0px;
}

footer .title-container {
  position: relative;
  border: none;
  color: #fff;
  line-height: 1;
  border-bottom: 0;
  padding: 0 0 18px 0;
  margin-bottom: 16px;
  max-width: 275px;
}

footer .title-container:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 51px;
  height: 3px;
  background-color: var(--praimary-color);
}

footer .title-container:after {
  content: "";
  position: absolute;
  width: 10px;
  right: 56px;
  bottom: 0;
  height: 3px;
  border-right: 10px solid var(--praimary-color);
  box-shadow: 15px 0 0 0 var(--praimary-color);
}

.footer-content .footer-link i {
  font-size: 8px;
  margin-left: 4px;
}

footer ul {
  list-style: none;
  padding-right: 0;
}

/* footer .social-media {
  padding-top: 15px;
} */

footer .social-media ul {
  margin-bottom: 0;
}

footer .social-media li {
  display: inline-block;
  padding-left: 6px;
}

footer li {
  padding-bottom: 4px;
}

footer .contact li {
  display: flex;
  align-items: center;
}

footer .contact .icon-bg {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  margin-left: 8px;
  text-align: center;
}

footer .contact .icon-bg i {
  font-size: 12px;
  line-height: 30px;
  color: var(--praimary-color);
  margin-right: 0;
}

footer .social-media .icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #23a66245;
  margin-right: 5px;
  text-align: center;
  border: 2px solid var(--praimary-color);
}

footer .social-media .icon-bg i {
  font-size: 15px;
  line-height: 35px;
  color: #fff;
  margin-right: 0;
}

footer .social-media .icon-bg svg {
  fill: #fff;
}

footer .social-media .icon-bg:hover {
  background-color: var(--praimary-color);
  transition: background-color 0.4s ease-in-out;
}


.footer-link a,
.contact-link a {
  color: #cdcdcd;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.footer-link a:hover {
  color: #fff;
}

footer #branch h5 {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 400;
}

footer .contact-sperator {
  height: 1px;
  margin-top: 8px;
  margin-bottom: 0;
  background-color: #d7dbe4;
}

.footer-copyright {
  direction: ltr;
  padding-top: 16px;
  padding-bottom: 16px;
}

footer hr {
  margin: 8px;
  color: #ffffff;
  background-color: currentColor;
  border: 0;
  opacity: .25;
}

.footer-copyright a {
  text-decoration: none;
  color: var(--praimary-color);
}

.footer-copyright p {
  font-weight: 450;
  font-size: 14px;
  line-height: 25px;
  color: #f1f4ff;
  margin-bottom: 0;
}

.footer-copyright .content {
  background-color: #0f0f0f;
  padding: 16px;
}

@media (min-width: 768px) and (max-width: 1200px) {
  footer h5 {
    font-size: 22px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 90px;
  }
}

@media screen and (max-width: 420px) {
  footer h5 {
    font-size: 20px;
    font-weight: 600;
  }

  .footer-content .logo {
    width: auto;
    height: 80px;
  }

  footer .social-media .icon-bg {
    width: 28px;
    height: 28px;
  }

  footer .social-media .icon-bg i {
    font-size: 16px;
    line-height: 28px;
  }
}

/* footer ends */

.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
}

.cursor-dot-outline {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 2px solid var(--praimary-color);
}