
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');


@font-face {
    font-family: Manrope-Regular;
    src: url(../fonts/Manrope-Regular.ttf);
}



body {
   padding: 0;
   margin: 0;   
  overflow-x: hidden !important;
  font-family: var(--main_font) !important;
}
html{
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
:root{
--color-black: #000010;
--primary-color: #00498c;
--primary-color-dark: #004989;
--secondary-color: #efc993;
--secondary-light: #f4e9da;
--para-dark-lite-color: hsla(0, 0%, 0%, 0.60);
--para-white-lite-color: #ffffffce;
--blue-gradient: linear-gradient(0deg, rgba(6,51,93,1) 0%, rgba(9,84,154,1) 100%);
--main_font: "Manrope-Regular";
/* --main_font: "Host Grotesk", serif; */
/* --secondary_font: 'Poppins', sans-serif; */
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--main_font) !important;
}
p{
    /* font-family: var(--secondary_font) !important; */
    font-size: 17px;
    font-family: var(--main_font) !important;
    line-height: 25px;
    /* margin-bottom: 25px !important; */
    font-weight: 400 ;
}
a{
  font-family: var(--main_font) !important;
  text-decoration: none !important;
  --webkit-text-decoration: none !important;
  --moz-text-decoration: none !important;
  --ms-text-decoration: none !important;
  --o-text-decoration: none !important;
}
.mt-100{
  margin-top: 100px;
}
.mt-150{
    margin-top: 150px;
}
.mb-150{
    margin-bottom: 150px;
}

.home {
    height: 100vh;
    position: relative;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}
.home-content {
    position: relative;
    color: #5a0505;
    width: 600px;
    left: 800px;
    top: 270px;
}
.home-content h1{
    font-size: 70px;
    margin: 0;
    margin-bottom: 10px;
    animation: ani 3s;
    -webkit-animation: ani 3s ease-in-out;
}
@keyframes ani{
  from{
      letter-spacing: 25px;
      filter: blur(5px);
      -webkit-filter: blur(5px);
      opacity: 0;
  }to{
      letter-spacing: 0;
      filter: blur(0);
      -webkit-filter: blur(0);
      opacity: 1;
  }
}

.home-content p{
    margin: 0;
    margin-bottom: 25px;
}

/* ============= */
 @keyframes zoom {
  from {
      -moz-transform: scale(1);
      transform: scale(1);
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod='auto expand')";
      filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.0, M12=0, M21=0, M22=1.0, SizingMethod="auto expand");
  }
  to {
      -moz-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
      filter: progid: DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod="auto expand");
  }
}

#home-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

#home-slider-container .container {
  height: 100vh;
}

#home-slider-container .container .slider-controls {
  position: relative;
  height: 100vh;
}

#home-slider-container .container .slider-controls .slider-next,
#home-slider-container .container .slider-controls .slider-prev {
  position: absolute;
  margin-top: -20px;
  top: 50%;
  z-index: 9999;
  width: 30px;
  height: 30px;
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  opacity: 0.5;
  text-decoration: none;
}

#home-slider-container .container .slider-controls .slider-next:focus,
#home-slider-container .container .slider-controls .slider-prev:focus {
  outline: none;
}

#home-slider-container .container .slider-controls .slider-next:hover,
#home-slider-container .container .slider-controls .slider-prev:hover {
  opacity: 1;
}

#home-slider-container .container .slider-controls .slider-next i,
#home-slider-container .container .slider-controls .slider-prev i {
  font-size: 100px;
  color: #000;
}

#home-slider-container .container .slider-controls .slider-prev {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin-left: 20px;
  left: 0;
}

#home-slider-container .container .slider-controls .slider-next {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  margin-right: 20px;
  right: 0;
}

#home-slider-container #home-slider {
  height: 100vh;
  width: 100%;
  position: relative;
}

#home-slider-container #home-slider .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  padding-left: 0%;
  /* z-index: 3; */
}

#home-slider-container #home-slider .slick-dots li {
  display: inline-block;
  text-align: center;
  position: relative;
  width: 12px;
  height: 12px;
  margin: 0px 5px;
}

#home-slider-container #home-slider .slick-dots li.slick-active:after,
#home-slider-container #home-slider .slick-dots li:hover:after {
  background-color: #fff;
}

#home-slider-container #home-slider .slick-dots li button {
  display: none;
}

#home-slider-container #home-slider .slick-dots li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  transition: background-color 0.4s ease;
  -webkit-transition: background-color 0.4s ease;
  -moz-transition: background-color 0.4s ease;
  -o-transition: background-color 0.4s ease;
  -ms-transition: background-color 0.4s ease;
}

#home-slider-container #home-slider .slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}

#home-slider-container #home-slider .slider-item img {
  object-fit: cover;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  /* -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
  -webkit-animation: zoom 15s ease-in-out infinite alternate;
  -moz-animation: zoom 15s ease-in-out infinite alternate;
  -o-animation: zoom 15s ease-in-out infinite alternate;
  -ms-animation: zoom 15s ease-in-out infinite alternate;
  animation: zoom 15s ease-in-out infinite alternate; */
}

.banner_text {
  color: #fff;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 3%;
  z-index: 10;
}

.banner_text h5{
  background-color: #f0f8ff4d;
  padding: 7px 19px;
  border-radius: 20px;
  border: 0.5px solid #ffffff2e;
  width: fit-content;
  margin-bottom: 3.5rem;

}
.banner_text h1 {
  font-size: 75px;
  margin: 0;
  margin-bottom: 10px;
  animation: ani 3s;
  font-weight: 300;
  -webkit-animation: ani 3s;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
}

.banner_text p {
  width: 65%;
  color: #ffffff;
  font-weight: 400;
  margin-top: 25px;
}

.nav{
  display: block !important;
}
/*-------- white arrow button --------*/
nav .arrow_btn{
  padding: 8px 10px 8px 15px;
  height: 45px;
}
.arrow_btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px 8px 15px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-family: var(--main_font);
    cursor: pointer;
    outline: none;
    position: relative;
    transition: all 0.5s ease-in-out;
  }
  nav .arrow_btn:hover{
    color: var(--secondary-color) ;
    background: var(--primary-color-dark);
  }
  .arrow_btn.slider_btn{
    background: var(--secondary-color) ;
    color: var(--primary-color);
  }
  .arrow_btn.slider_btn:hover{
    color: var(--secondary-color) ;
    background: var(--primary-color-dark);
  }
  .arrow_btn.slider_btn_alt{
    background: var(--primary-color-dark) ;
    color: #ffffff;
  }
  .arrow_btn.slider_btn_alt:hover{
    color: var(--primary-color-dark) ;
    background: var(--secondary-color);
  }
  .main_btn .arrow_btn.slider_btn_alt{
    margin-bottom: 20px;
  }

  
.main_btn{
  margin-top: 4rem;
}
  .arrow_btn .btn-icon{
    margin-left: 5px;
    /* border-radius: 50%; */
    /* transform: rotate(-45deg); */
  }

/*-------- white arrow button --------*/


/*-------- Dark arrow button --------*/
/* .arrow_btn_dark {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px 8px 15px;
    background: transparent;
    border: 1px solid var(--color-black);
    border-radius: 999px;
    color: var(--color-black);
    font-size: 18px;
    font-family: var(--main_font);
    cursor: pointer;
    outline: none;
    position: relative;
  } */

/*-------- Dark arrow button --------*/


/* -------- Header ----------*/
/* Navbar section */

.nav {
  width: 100%;
  height: 100px;
  position: fixed;
  line-height: 0;
  text-align: center;
  z-index: 1000;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 5rem;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--main_font);
}

.nav div.main_list ul li a:hover {
  color: #ffd69d;
}
.nav.affix div.main_list ul li a:hover {
  color: var(--secondary-color);
}

.nav .active {
  color: var(--secondary-color) !important;
}
.classy{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  /* margin-top: 10px; */
  /* background-color: #0000002d; */
  /* backdrop-filter: blur(10px); */
  /* border-radius: 100px; */
  /* background-color: #fff; */
  padding: 10px 0px;
  /* box-shadow: 0px 0px 10px #0000001f; */
  transition: all ease 0.3s;
}
.navlinks li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* Home section */

.home {
  width: 100%;
  height: 100vh;
  background-image: url(../images/banner1.png);
  background-position: center top;
  background-size: cover;
}

.navTrigger {
  display: none;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
      margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .navTrigger {
      display: block;
  }
  .nav {
    background-color: #0000002d;
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    --moz-backdrop-filter: blur(10px);
    --ms-backdrop-filter: blur(10px);
    --o-backdrop-filter: blur(10px);
  }
  .affix .logo{
    padding-top: 10px;
  }
  .nav.affix {
    background-color: #ffffff !important;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 15px #00000010;
  }
  .affix.nav .classy{
    padding: 0px;
  }
  .arrow_btn{
    height: 55px !important;
    font-size: 30px !important;
  }
  .affix .arrow_btn{
    border: 1px solid #fff !important;
    color: #fff !important;
  }
  .affix .arrow_btn .icon {
    background: #fff !important;
    color: var(--primary-color) !important;
  }
  .affix .arrow_btn .btn-icon {
    /* background: #fff !important;
    color: var(--primary-color) !important; */
  }
  .for_mob{
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
  
  /* .nav div.logo {
  margin-left: 15px;
} */
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 100%;
      height: 100vh;
      right: 0;
      left: 0;
      bottom: 0;
      background:var(--blue-gradient);
      background-position: center top;
    }
    .nav.affix div.main_list ul {
    margin-top: 0px;
    
}
  .nav div.main_list ul li {
      width: 100%;
      text-align: right;
  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 1.5rem;
      padding: 20px;
    color: #fff !important;
  }
  .nav div.media_button {
      display: block;
  }
  .classy{
    display: contents;
    align-items: center;
    justify-content: space-between;
  }
  .navlinks li{
    display: initial;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }
  .section_heading_blog {
    font-size: 45px;
    width: 100%;
}
}
.blue-logo{
  display: none;
  transition: 0.3s  ease-in;
  width: 185px;
}

/* Animation */


/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

/* .affix {
  padding: 10px 0px !important;
} */
.affix .classy{
  background-color: #fff;
  padding: 8px 0px;
  box-shadow: 0px 0px 10px #0000001f;
}
.affix .blue-logo{
  display: flex;
  transition: 0.3s  ease-in;
}
.white-logo{
  display: flex;
  width: 207px;
}
.affix .white-logo{
  transition: 0.3s  ease-in;
  width: 175px;
  display: none;
}
.arrow_btn {
  /* border: 1px solid var(--color-black); */
  color: #004986;
  gap: 5px;
  padding: 8px 20px;
  background: #f2c998;
  /* background-image: linear-gradient(261deg, #7f6535, #345a9f); */
  transition: 0.4s ease-in-out;
}

nav .arrow_btn:hover {
  color: #ffffff;
  background: #004986;
  /* background-image: linear-gradient(119deg, #c1a064, #3663b6b3); */
  border-radius: 10px;
}

.affix div.main_list ul li a {
  color: #000000;
}

.affix .navTrigger i {
  background: var(--primary-color);
}



.show_list ul li a {
  color: var(--color-black) !important;
}

.for_sm {
  padding-top: 100px;
}
  
  /* -------- home about section -------- */

  .home_about {
    /* height: 100vh; */
    /* position: relative; */
    background-image: url(/images/icons/bg-pattern.svg);
    /* overflow: hidden; */
    background-position: top;
    background-size: contain;
    /* background-repeat: repeat; */
}
  /* .home_about_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
  } */
  .small_heading {
    color: var(--secondary-color);
    margin-bottom: 20px !important;
    font-family: var(--secondary_font);
    font-weight: 400;
    font-size: 17px;
    color: #004986;
    /* font-weight: 500 !important; */
    text-transform: capitalize;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    /* background-color: var(--secondary-light); */
    line-height: 1;
    width: max-content;
    background-image: linear-gradient(45deg, #ebebeb, #e3e6ff, #fff2da);
    /* background-image: linear-gradient(45deg, #ece6ff, #ffe3e3);
    border: solid 1px #dfeaff; */
}
.home_about_content .section_heading {
  font-size: 63px;
  margin-bottom: 30px;
  /* line-height: 0.8; */
  font-weight: 400;
  letter-spacing: -1px;
  color: #004989;
  text-transform: uppercase;
  line-height: 0.9;
}
/* .section_heading {
  font-size: 65px;
  margin-bottom: 50px;
  line-height: 0.8;
  font-weight: 300;
  letter-spacing: -3px;
  color: var(--color-black);
  text-transform: capitalize;
} */
.section_heading {
  font-size: 65px;
  margin-bottom: 50px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -2px;
  color: #004989;
  text-transform: capitalize;
}
.section_heading span {
  /* margin: 0 8px; */
  margin-left: 11px;
  margin-right: 11px;
}

.section_heading_white {
  font-size: 45px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1;
}
  .lite_text_dark{
    color: var(--para-dark-lite-color);
    font-weight: 400;
  }
  .lite_text_dark b{
    font-weight: 600;
    color: rgba(0, 0, 0, 0.80);
  }
  .lite_text_white{
    color: var(--para-white-lite-color);
    font-weight: 400;
  }
.course_desc{
  max-width: 725px;
  text-align: center;
  margin: auto;
  margin-top: -30px;
}
   .dubai{
    position: absolute;
    bottom:100px;
    right: 0px;
    z-index: -1;
    width:900px;
  }
  .dubai-mob{
    width: 100%;
    display: none;
   }
  .grid-items,
  .grid-items div{
    display: flex;
    /* flex-wrap: wrap; */
    /* grid-template-columns: repeat(12, 1fr); */
    /* grid-template-rows: repeat(12, 1fr);  */
    gap: 5px;
    /* max-height: 450px; */
    width: 100%;
  }
  .grid-items {
    flex-direction: column;
    height: 100%;
    max-width: 450px;
    justify-content: flex-end;
}
.grid_cards_items{
  justify-content: flex-end;
}
.grid-item {
  /* display: flex; */
  border-radius: 25px;
  /* overflow: hidden; */
  /* background: #351d590e; */
  /* background: #eee3ff; */
  /* color: #4d2c82; */
  gap: 15px;
  /* height: 100%; */
  font-weight: 300;
  /* border: solid 1px; */
}
.item-1 {
  /* grid-column-start: 1;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 5; */
  background-color: #2e75b726;
  color: rgb(46, 117, 183);
  display: flex;
  flex-shrink: 1.4;
}

.grid-item div {
  padding: 10px 20px;
  gap: 5px;
  width: 100%;
  /* height: 100%; */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
  text-transform: capitalize;
  line-height: 1.2; 
}
.grid-item div h5 {
  font-size: 55px;
  margin: 0;
  font-weight: 400;
}
.grid-item div p{
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
.item-1, .item-2{
  background-color: var(--secondary-color);
  color: var(--primary-color-dark);
  font-weight: 400;
}
.item-1 h5, .item-2 h5{
  color:#ffff;
}
.item-3 {
  padding: 10px 0;
  background: var(--primary-color-dark);
  color: var(--secondary-color);
}
.item-3 p{
  color: #ffff;
}
.item-4 img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  max-height: 150px;
  border-radius: 25px;
}

  /* -------- courses section -------- */
  .courses {
    text-align: center;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
  .courses_cards{
    margin-left: auto;
    margin-right: auto;
    margin-top: 85px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    gap: 10px 0;
  }
  .course_card1 {
    width: 100%;
    height: 440px;
    /* background-image: url(images/london-2.jpg); */
    background-size: cover;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background-position: center;
    position: relative;
    border: solid 1px #ffffff00;
}
.course_card1:hover{
  border: solid 1px #ffffff;
  box-shadow: -2px 27px 21px -17px rgb(183 183 183);
}
.course_card1>div {
  border-radius: 15px;
  text-align: left;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 100%;
  width: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  color: #ffff;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-image: linear-gradient(0deg, rgb(14 14 14) 7%, rgb(37 37 37 / 11%) 40%);
}
.course_card1>div>div {
  transition: all 0.3s ease-in-out;
  position: relative;
  /* visibility: hidden; */
  /* display: none; */
  /* top: 175px; */
}
.course_card1>div:hover >div {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  display: block;
  top: 0;
}
.course_card1>div:hover {
  padding-bottom: 20px !important;
}
.course_card1 h5 {
  font-size: 24px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  /* color: var(--secondary-color); */
}
.course_card1 p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
  color: hsl(0deg 0% 100%);
}
.course_card1 hr{
  width: 100%;
  color: var(--secondary-color);
  margin: 0;
}
.course_card1 .course_cta {
  /* height: 100%; */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  gap: 12px;
}
.course_card1 .course_cta a {
  cursor: pointer;
  color: #ffffff;
  padding: 5px 11px;
  background: #00000000;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 200;
  transition: 0.3s ease-in-out;
  /* background-image: linear-gradient(45deg, #43365c, #000f40); */
  border: solid 1px #ffffff73;
}
.course_card1 .course_cta a i{
  position: relative;
  left: 0;
  transition: 0.3s ease-in-out;
}

.course_card1 .course_cta a:hover {
  border: solid 1px #ffffff5c;
}

.course_card1 .course_cta a:nth-child(1) i {
  color: #ffffff;
  /* filter: contrast(0.5); */
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.course_card1 .course_cta a:hover:nth-child(1) i {
  /* transform: rotate(45deg); */
  animation: rotate 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.course_card1 .course_cta a:nth-child(2) i {
  color: #f5c99d;
  transform: rotate(1eg);
}

.course_card1 .course_cta a:hover:nth-child(2) i {
  rotate: ();
  transform: rotate(360deg);
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-15deg);
  }
  60% {
    transform: rotate(15deg);
  }
  80% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

  /* -------- home courses section --------

  .home_courses{
    padding: 100px 0px;
    background-color: #f8fbff;
    border-radius: 50px;
  }

  .course_card{
    background-color: #fff;
    border-radius: 24px;
    margin: 10px 0px;
    position: relative;
    overflow: hidden;
    height: 350px;
  }
  .course_card:hover .cor_img{
    transform: scale(1.2) rotate(3deg);
    transition: all 0.3s ease-in-out;
  }
  .course_card .cor_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .contents {
    position: absolute;
    bottom: 0px;
    left:0px;
    color: white;
    padding: 100px 35px 25px 35px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.719) 0%, rgba(255, 255, 255, 0) 100%);
  }
  .contents p{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
            line-clamp: 2; 
    -webkit-box-orient: vertical;
  }

  .course_card h4{
font-size: 25px;
  } */

  /* -------- home courses section -------- */

  /* -------- counter section -------- */
  .counter-wrapper{
    padding: 100px 0px;
  }
  .count{
    font-family:var(--main_font);
    font-size: 50px;
    color: var(--secondary-color);
  }
  .counter-inner{
    border: 1px solid var(--secondary-color);
    border-radius: 45px;
  }

  /* -------- counter section -------- */

  /* -------- why choose section -------- */
  
  .why_choose .container {
    /* padding-bottom: 100px; */
    /* background-image: url(/images/feature-bg.png); */
    text-align: center;
    padding: 100px 50px;
    color: #ffff;
    border-radius: 30px;
    background-position: center;
    background-size: cover;
    background-color: #f4f4f4;
}
  .why_choose .lite_text_dark{
    padding-bottom:70px;
    text-align: center;
  }
  .why_choose .small_heading{
    text-align: center;
    background-color: #F4EAD8;
  }
  .why_choose .section_heading{
    color: #004986;
  }
  .why_choose_cards{
    margin-top: 100px;
  }
  .why_choose_card {
    /* padding: 20px; */
    /* background-color: #fffaf4; */
    /* background: var(--blue-gradient); */
    /* border-radius: 25px; */
    text-align: left;
    margin-bottom: 20px;
    height: calc(100% - 20px);
    transition: all 0.3s ease;
    border-bottom: solid 2px var(--secondary-color);
    /* border: 1px solid #f0c295; */
    padding: 1rem;
    border-radius: 12px;
    background-color: #fff;
}
.why_choose_cards>.row{
  gap: 10px 0px;
}
  .why_choose_card:hover{
  box-shadow: 0px 10px 15px #0000000f;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  }
  .why_choose_card img{
    width:60px;
    margin-bottom: 12px;
  }
  .why_choose_card h4{
    font-size: 22px;
    /* color: var(--color-black); */
    color: #004983;
  }
  .why_choose_card p {
    font-size: 16px;
    /* text-align: justify; */
    color: hsl(0deg 0% 100% / 82%);
    line-height: 1.2;
    font-weight: 300 !important;
    color: #6c6c6c;
}
  

  /* -------- why choose section -------- */
  /* -------- why choose section -------- */

  /* -------- Logos section -------- */
  .logos {
    padding-bottom: 50px;
}
  .logos-box{
    padding: 50px 20px;
    border-bottom: 1px solid var(--secondary-color);
    /* border-radius: 45px; */
    position: relative;
  }
  .logo_heading {
    position: absolute;
    top: -35px;
    left: -6px;
    background-color: #fff;
    padding: 0px 30px;
    font-size: 35px;
    font-family: var(--main_font);
    color: var(--color-black);
}
  :root {
    --marquee-width: 100%;
    --marquee-height: 60px;
    /* --marquee-elements: 12; */ /* defined with JavaScript */
    --marquee-elements-displayed: 5;
    --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
    --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }
  
  .marquee {
    width: var(--marquee-width);
    height: 100%;
    color: #000;
    overflow: hidden;
    position: relative;
  }
  
  .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling var(--marquee-animation-duration) linear infinite;
    gap: 0 20px;
}
  
  @keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content li {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    flex-shrink: 0;
    width: var(--marquee-element-width);
    max-height: 100%;
    font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
    white-space: nowrap;
  }
  
  .marquee-content li img {
    max-width: 150px;
    max-height: 60px;
    margin: 0 10px;
    filter: grayscale(0);
    transition: all 0.3s ease-in-out;
    /* height: 100%; */
  }
  .marquee-content li img:hover{
    filter: grayscale(1);
  }
  .logo_heading {
    position: absolute;
    top: -81px;
    left: -6px;
    background-color: #fff;
    padding: 0px 30px;
    font-size: 75px;
    font-family: var(--main_font);
    color: var(--color-black);
    font-weight: 300;
    letter-spacing: -4px;
    /* padding-bottom: 40px; */
}
  
  
  @media (max-width: 600px) {
    :root {
      --marquee-width: 100vw;
      --marquee-height: 16vh;
      --marquee-elements-displayed: 3;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }  
    
  @media (max-width: 500px) {
    :root {
      --marquee-width: 100vw;
      --marquee-height: 16vh;
      --marquee-elements-displayed: 2;
    }
    .marquee:before, .marquee:after { width: 5rem; }
  }
  /* -------- Logos section -------- */

  
  /* -------- Testimonials section -------- */
.home_tesimonial{
  padding-bottom: 50px;
}
.testimonial_box_overlay{
  /* width: 100%; */
  height: 100%;
  margin: 15px;
  border-radius: 30px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.894) 0%, rgba(255, 255, 255, 0) 100%);
}
.home_tesimonial .testimonial_box{
  /* background-color: var(--secondary-color); */
}
.test_desc{
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  margin-bottom: 50px ;
}
.testimonial_box {
  padding: 16px;
  /* box-shadow: 0px 0px 15px #00000010; */
  display: flex;
  height: 100%;
  align-items: flex-end;
  background-position: center;
  /* min-height: 250px; */
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
.testimonial_box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  /* background-color: rgba(0, 0, 0, 0.47); */
  z-index: 0;
}
.testi_overlay {
  background-size: cover;
  /* max-width: 1200px; */
  border-radius: 30px;
  background-position: center center;
  margin: 0px auto;
}
.bg_overlay {
  background-image: linear-gradient(0deg, rgb(0 0 0 / 47%) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 30px;
}

.testimonial_box h3{
  color: var(--color-black);
  /* margin-bottom: 20px; */
  font-weight: 400;
  overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 4; /* number of lines to show */
           line-clamp: 2; 
   -webkit-box-orient: vertical;
}


.testimonial_items{
  position: relative;
  padding: 5rem 1rem 1rem 1rem;
  background-color: #f5f5f5;
  border-radius: 10px;
  margin: 0.5rem;
  height: 375px;
}
.testi_item_img{
  position: absolute;
  top: -30px;
}
.testi_item_img img{
  width: auto;
  -webkit-width: auto !important;
  object-fit: contain;
  height: 90px;
  border-radius: 12px;
  box-shadow: 2px 2px 0px 1px #004986;
}
.testimonial_items h5{}
.testimonial_items span{}
.testimonial_items p{
  font-size: 15px;
    line-height: 1.5;
    margin-top: 1rem;
    color: #303030;
}







  /* -------- Cta section -------- */
/* .cta-div .container{
  padding: 50px 0px;
} */

.cta-div{
  position: relative;
}
.lineart{
  position: absolute;
  bottom: -100px;
  z-index: -1;
  opacity: 0.3;
}
  .cta_content {
    padding: 50px 10px;
    background-image: url(/images/cta_bg.png);
    border-radius: 30px;
    text-align: center;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
    max-width: 900px;
    position: relative;
}
.cta_content::before {
  padding: 50px 10px;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  border-radius: 30px;
  background-image: linear-gradient(358deg, #001931bf, #d3a96e96);
  z-index: -1;
}
.cta_content h2{
    font-size: 50px;
    font-weight: 400;
    color: #fff;
}
.cta_content p{
  color: #ffffffc1;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 400;
  max-width: 700px;
}
.cta_content a button{
    border: none;
    background-color: var(--secondary-color)!important;
    color: var(--primary-color-dark)!important;
}
.cta_content a button:hover{
    background-color: var(--primary-color-dark)!important;
    color: var(--secondary-color)!important;
}


  /* -------- footer section -------- */
  footer{
    background-color: var(--primary-color-dark);
    margin-top: 100px;
  }
.footer {
    padding-top: 100px;
    background-image: url(/images/icons/pattern1.svg);
   
}
footer .small_heading{
  color: var(--secondary-color);
  background:none;
  padding: 0;
  border: none;
}
footer .footer_links a{
  font-weight: 300;
}
  .footer_logo{
    width: 200px;
    margin-bottom: 20px;
  }
  .footer_heading{
    color: #fff;
    margin-bottom: 20px;
  }
  .footer_links{
    list-style: none;
    padding: 0px;
  }
  .footer_links li{
    margin-bottom: 10px;
  }
  .footer_links li a{
    color: #fff !important;
    --webkit-color: #fff !important;
    --moz-color: #fff !important;
    --ms-color: #fff !important;
    --o-color: #fff !important;
    text-decoration: none !important;
  }
  .footer_links li a:hover{
    color: var(--secondary-color);
  }
  .footer p{
    color: #fff;
  }
  .footer a{
    color: #fff;
    text-decoration: none;
  }
  .footer a:hover{
    color: var(--secondary-color) !important;
    --webkit-color: var(--secondary-color) !important;
    --moz-color: var(--secondary-color) !important;
    --ms-color: var(--secondary-color) !important;
    --o-color: var(--secondary-color) !important;
  }
  .footer i{
    color: #fff;
    margin-right: 10px;
  }
  .footer i:hover{
    color: var(--secondary-color);
  }
  .social_media{
    margin-top: 20px;
  }
  .social_media ul{
    list-style: none;
    padding: 0px;
  }
  .social_media ul li{
    display: inline-block;
    margin-right: 0px;
  }
  .social_media ul li a{
    color: var(--secondary-color);
    text-decoration: none;
  }
  .social_media ul li a i{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #1e1e1e;
    background-color: #fff;
    text-align: center;
    line-height: 40px;
  }
  .social_media ul li a:hover{
    color: var(--secondary-color);
  }

  .copyright{
display: flex;
justify-content: space-between;
font-size: 14px !important;
color: #fff !important;
padding: 25px 0px;
border-top: 1px solid #ffffff30;
margin-top: 30px;
  }
  .d5nlogo{
  width: 20px;
  margin-left: 4px;
  }
  /* -------- footer section -------- */

  /* -------- about section -------- */
  .about_main_head{
    padding: 180px 0px 50px 0px;
  }
  .about_content {
    padding: 50px 0px 0px 0px;
    max-width: 1084px;
    margin: auto;
}
.about_content .point-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  margin: auto;
  gap: 30px;
  /* flex-wrap: wrap; */
}
  .about_content .point-icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .about_content .point-icon img{
    max-width: 80px;
    margin: 0;
  }
  .point-text{
    font-weight: 600 !important;
    font-size: 17px;
    font-weight: 400;
    color: var(--primary-color);
  }

  .about_content .point-text-bold{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin:40px 0px;
  }
  
  .about_content .point-text-bold span{
    display: inline-block;
  }
  .about_content .point-text-bold span img{
    margin: 0;
    max-width: 60px;
  }
  .about_content img{
    width: 100%;
    margin-bottom: 50px;
  }

/* -------- why dubai section -------- */
.why_dubai .container {
  /* padding-bottom: 100px; */
  background-image: url(/images/why-dubai.png);
  /* text-align: center; */
  padding: 50px;
  color: #ffff;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
}
/* -------- why dubai section -------- */
.why_dubai .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at center, #00001000 0%, #000000db 100%);
  border-radius: 30px;
  z-index: 0;
  background-image: linear-gradient(17deg, #000000c4, transparent);
}
.why_dubai_cnt{
  z-index: 1;
}
.why_dubai_cnt p{
  color:  #ffffffde;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0px;
  margin: 0;
  max-width: 768px;
}
.why_dubai_h3 {
  font-size: 60px;
  color: #d3a96e;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1;
  background: #ffffff05;
  padding: 10px;
  border-radius: 10px;
  backdrop-filter: blur(18px);
  border: solid 1px #ffffff24;
  width: max-content;
}
.why_dubai_h4{
  font-size: 45px !important;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
}

  /* -------- other features section -------- */

.speciality_p {
    font-size: 17px;
    color: var(--para-light-dark-color);
    font-weight: 300;
}

h4.speciality_title {
  font-size: 45px;
  max-width: 550px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 30px;
  color: #0064bd;
}

.speciality_cnt {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* gap: 10px; */
}
.speciality_img {
  height: 100%;
  /* margin: auto; */
  /* max-height: 250px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.speciality_img img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 15px;
}
  /* -------- who can join section -------- */
.who_can_join {
    background-image: url(/images/who_can_bg.png);
    border-radius: 50px;
    padding: 80px;
    background-position: center;
    background-size: cover;
    position: relative;
}
.who_can_join::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(358deg, #000000f7, transparent);
  opacity: 0.7;
  z-index: 0;
  border-radius: 50px;
}
.who_can_join_cnt{
  text-align: center;
  position: relative;
  z-index: 1;
}
.who_can_join_cnt .section_heading_white{
  color: var(--secondary-color); 
  font-size: 60px;
}
.who_can_join_cnt .lite_text_white{
  color: #ffff;
}
.who_can_join_cnt a button {
  border: none;
  background-color: var(--secondary-color)!important;
  color: var(--primary-color-dark)!important;
}
.who_can_join a button:hover {
  background-color: var(--primary-color-dark)!important;
  color: var(--secondary-color)!important;
}
.enter_world {
  padding: 10px 50px;
}


  /* -------- other features section -------- */
  
.otherfeatures{
    padding-bottom: 100px;
  }
  .custom-heading {
    font-size: 26px;
    font-weight: 400;
    color: #000010;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    padding-right: 100px;
}
  .otherfeatures .custom-heading::before{
    content: "";
    position: absolute;
    top: -10px;
    left: -25px;
    /* transform: translateY(-50%); */
    width: 50px;
    height: 50px;
    border-radius: 50px;
    z-index: -1;
    background-color:#e4bd87;
  }
  .otherfeatures .lite_text_dark{
    padding-bottom: 20px;
    padding-right: 20px;
  }
  .custom-heading .number {
    font-size: 16px;
    font-weight: 800;
    position: relative;
    top: -0.6rem;
    margin-left: 5px;
    color: inherit;
}

  /* -------- other features section -------- */

  /* -------- mission and vision section -------- */
  .mission_vision{
    padding: 100px 0px;
    /* border-radius: 50px; */
    /* box-shadow: 0px 0px 15px 0px #00000016; */
    /* position: relative;
    overflow: hidden; */
    margin-bottom: 100px;
    background-image: url(../images/feature-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  .miss_element{
    position: absolute;
    top: 100px;
    right: 50px;
  }

.values_box {
    padding: 30px;
    background: #00294fe3;
    /* backdrop-filter: blur(20px); */
    border-radius: 30px;
    color: #fff !important;
    height: calc(100% - 15px);
    border: solid 0.5px #ffffff47;
}
.values_box h3{
  font-size: 45px;
  font-weight: 400;
}
.values_box p{
  font-size: 17px;
  font-weight: 300;
  color: #ffffffb5
}
  .values_box img{
    width: 70px;
    margin-bottom: 10px;
  }
  /* .values_box h3{
    color: #fff !important;
  } */

  /* -------- mission and vision section -------- */
  
  /* -------- who we look for section -------- */
  .who_we_look_for{
    margin-bottom: 100px;
  }

  .who_we_look_for_inner{
    background: var(--blue-gradient);
    border-radius: 50px;
    padding: 80px;
  }

  /* -------- who we look for section -------- */

  .enter_your_new_world{
    /* padding: 80px 0px;
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0px 0px 15px 0px #00000016; */
  }
  .enter_your_new_world .row{
    margin-top: 80px !important;
  }
  .enter_your_new_world .custom-heading::before{
    content: "";
    position: absolute;
    top: -10px;
    left: -25px;
    /* transform: translateY(-50%); */
    width: 50px;
    height: 50px;
    border-radius: 50px;
    z-index: -1;
    background-color:#e4bd87;
  }

  .enter_your_new_world .lite_text_dark{
    padding-bottom: 30px;
    padding-right: 20px;
  }

  /* -------- enter_your_new_world section -------- */

  .enter_your_new_world .section_heading {
    font-size: 60px;
    margin-bottom: 50px;
    line-height: 0.9;
    font-weight: 300;
    letter-spacing: -5px;
    color: var(--color-black);
    /* margin-bottom: 50px; */
}

  /*  ------ inner banner Section ------ */
  .innerpage_banner{
    position: relative;

  }
  .inner_h1 {
    font-size: 70px;
    position: absolute;
    bottom: 18px;
    /* left: 35%; */
    /* transform: translateX(-50%); */
    color: #fff;
    z-index: 2;
    max-width: 850px;
    font-weight: 300;
    letter-spacing: -3px;
    line-height: 1.2;
    text-transform: uppercase;
}
.inner_banner {
  height: 430px;
  width: 100%;
  object-fit: cover;
}
  .inner_banner_overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.894) 0%, rgba(255, 255, 255, 0) 100%);
  }

  /*  ------ courses inner section ------ */
  
  .course_inner{
    margin-top: 100px;
  }  
  .course_inner .row{
    /* padding: 20px 30px; */
    /* border-radius: 30px; */
    /* background: #ecececfa; */
  }
  .course_inner_img {
    height: 100%;
    /* margin: auto; */
    /* max-height: 250px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    padding: 10px;
}
.course_inner_img.course_1 {
  background-image: url(/images/london-2.jpg);
}
.course_inner_img.course_2 {
  background-image: url(/images/london-college.jpg);
}
.course_inner_img.course_3 {
  background-image: url(/images/acc.jpg);
}
/* .course_inner_img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.894) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 15px;
  z-index: 1;
} */
.course_inner_img h3{
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.course_title {
  display: flex;
  align-items: center;
  font-size: 35px;
  margin-bottom: 15px;
  border-bottom: solid 1px var(--secondary-color);
  padding-bottom: 10px;
  width: 100%;
}
.course_title h4 {
  margin: 0;
  font-size: 35px;
  max-width: 650px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  width: 100%;
  color: var(--primary-color-dark);
}
.course_title span {
  font-weight: 400;
  color: #ffffff;
  margin-right: 10px;
  height: max-content;
  font-size: 30px;
  background: red;
  padding: 1px 10px;
  border-radius: 37px;
  background: var(--secondary-color);
}
.course_p {
  font-size: 17px;
  color: var(--para-light-dark-color);
  font-weight: 300;
}
.course_p b{
  font-weight: 600;
}
.course_cta .arrow_btn.slider_btn {
  transition: all 0.3s ease-in-out;
  background: var(--secondary-light);
  color: var(--primary-color);
}
.course_cta .arrow_btn.slider_btn:hover {
  background: var(--primary-color-dark);
  color: var(--secondary-light);
}
  .course_enquire_form{
    padding: 80px !important;
    background: var(--blue-gradient);
    border-radius: 50px;
    position: relative;
    top: -45px;
  }
  .course_enquire_form .arrow_btn{
    padding: 1rem 1.5rem;
  }
  .course_inner_img {
    height: 100%;
    /* margin: auto; */
    /* max-height: 250px; */
    background-image: url(/images/london.jpg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    padding: 10px;
    min-height: 250px;
}
.course_cta .arrow_btn.slider_btn,
.course_cta .arrow_btn.slider_btn_alt {
  line-height: 1;
  font-size: 19px !important;
  /* text-align: left; */
}

/* form styles */
.form_input {
  width: 100%;
  padding: 15px 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #ffffff24;
  border-radius: 10px;
  border: none;
  outline: none;
  margin-bottom: 20px;
}
.form_input::placeholder{
  color: #ffffff9c;
}
.form_textarea{
  width: 100%;
  padding: 20px 25px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color:#fff;
  background-color: #ffffff24;
  border-radius: 10px;
  border: none;
  outline: none;
  margin-bottom: 25px;
}
.form_textarea::placeholder{
  color: #ffffff9c;
}
option.course_option {
  background: #063663;
}
  /*  ------ courses inner section ------ */

  /*  ------ blogs page ------ */
  .blogs_page{
    padding: 80px 0px;
  }

  .blog_inner{
    padding-top: 100px;
  }

  .section_heading_blog{
    font-size: 50px;
    margin-bottom: 15px;
    color: var(--color-black);
    width: 70%;
  }

  /* ------ gallery page ------ */
  .main {
    padding: 80px 0px;
  }
  .main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .main .card {
    color: #252a32;
    border-radius: 24px;
    background: #ffffff;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24); */
  }
  .main .card-image {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 70%;
    background: #ffffff;
  
  }
  .main .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
  
  @media only screen and (max-width: 600px) {
    .main .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
  }


  /* ----- career page ----- */
  .job_box{
    padding: 30px;
    border-radius: 20px;
   box-shadow: 0px 0px 15px 0px #00000013;
    margin-bottom: 30px;
    height: calc(100% - 30px);
  }
  .jobandtime{
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .jobandtime h3{
    font-size: 28px;
    color: var(--color-black);
    margin-bottom: 20px;
  }
  .job_time{
    font-size: 20px;
    color: var(--secondary-color);
  }

/* ------ career_inner form ---- */

.job_apply_form{
    padding: 80px !important;
    background: var(--blue-gradient);
    border-radius: 50px;
    position: relative;
    top: -45px;
    margin-top: 50px;
  }
  .job_apply_form .arrow_btn{
    padding: 1rem 1.5rem;
  }

.custom-file-upload {
    width: 100%;
    padding: 55px 16px;
    border: none;
    color:#fff;
    background-color: #ffffff24;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    text-align: center;
}

.custom-file-upload p {
    margin: 0px !important;
    color: #ffffff9c;
    font-size:1rem;
    width: 100%;
}

input[type=file] {
  margin: auto;
  padding: 3.2em 2rem;
  background-color: #ffffff24;
  border-radius: 24px;
  width: 100%;
}
input[type=file]::file-selector-button {
  padding: 1em 1.5em;
  border-width: 0;
  border-radius: 2em;
  background-color: #174d82;
  color: #ffffffbc;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-right: 1em;
}
input[type=file]:hover {
  border-color: #888;
}
input[type=file]:hover::file-selector-button {
  background-color:var(--secondary-color);
}
.contact_list{
  list-style: none;
  padding-left: 0px;
}
.contact_list a{
  text-decoration: none;
  color: var(--color-black);
}
.contact_list li{
  margin-bottom: 15px;
}
.contact_list li i{
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 20px;
}

.contact_page_form {
  padding: 80px !important;
  background: var(--blue-gradient);
  border-radius: 15px;
  margin: 80px 0px;
  margin: 80px auto;
  max-width: 930px;
}
.contact_page_form .arrow_btn {
  padding: 1rem 1rem;
  transition: all 0.3s ease-in-out;
}
.contact_page_form .arrow_btn:hover {
  padding: 1rem 1rem;
  background-color: var(--secondary-color);
  color: var(--primary-color-dark);
}

.testimonial_sec{
  padding: 80px 0px;
}
.testimonial_box_sec{
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0px 0px 15px #00000010;
  height: calc(100% - 15px);
}
.testimonial_box_sec:hover .testimonial_img{
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.testimonial_box_sec p{
  color: var(--color-black);

}
.testimonial_box_sec h3{
  color: var(--color-black);
  font-weight: 400;
  font-size: 24px;
}

.video_testimonials{
padding-bottom: 80px;
}
.video_testimonials iframe{
border-radius: 30px;
margin-bottom: 20px;
box-shadow: 0px 0px 15px #00000010;
}

section.contact_cards {
  margin: 50px 0;
}

/* ============= */


/* ======= News & Events ======= */

.news_event{
  padding: 80px 0px;
}
.news_box{
  background-color: #fff;
  border-radius: 24px;
  margin: 10px 0px;
  position: relative;
  overflow: hidden;
  height: 300px;
}
.news_box:hover .news_img{
  transform: scale(1.2) rotate(3deg);
  transition: all 0.3s ease-in-out;
}
.news_box .news_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease-in-out;
}
.news_date{
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 16px;
  background-color: var(--secondary-color);
  padding: 2px 10px;
  border-radius: 50px;
  z-index: 1;
}
.news_date span{
  font-size: 14px;
  margin-left: 4px;
}
/* ======= News & Events ======= */
.news_event_inner{
  padding: 80px 0px;
}

.news_inner_img{
width: 100%;
border-radius: 24px;
margin-bottom: 20px;
}
.event_inner_more{
padding-left: 100px;
  align-items: center;
  margin-bottom: 20px;
}
.event_inner_more h3{
  font-size: 28px;
  color: var(--color-black);
  margin-bottom: 0px;  
}
.event_inner_more ul{
  list-style: square;
  padding-left: 0px;
}
.event_inner_more ul li{
  margin-bottom: 10px;
  padding: 10px 0px;
  border-bottom: 1px solid #0000001a;
}
.event_inner_more ul li:last-child{
  border-bottom: none;
}
.event_inner_more ul li a{
  text-decoration: none;
  color: var(--color-black);
  font-size: 20px;
}
.event_inner_more ul li a:hover{
  color: var(--secondary-color);
}



/* ===== popup form====== */

.form-popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.form-popup-bg {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.289);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  overflow-y: auto;
  z-index: 10000;
}
.form-popup-bg.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.form-container {
  background: var(--blue-gradient);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 40px;
  color: #fff;
}
.form-container .form_input{
  padding: 15px 20px;
}
.form-container .form_textarea{
  padding: 15px 20px;
}
.close-button {
  background: none;
  color: var(--secondary-color);
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  border:2px solid var(--secondary-color);
  border-radius: 50%;
}
.form-popup-bg:before {
  content: '';
  background-color: #fff;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}



.blog_card{
  margin-bottom: 2.5rem;
}
.blog_card img{
  width: 100%;
  border-radius: 15px;
  height: 260px;
  object-fit: cover;
}
.blog_content_dark{
  margin-top: 1rem;
}
.blog_content_dark span{
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 0.5rem;
}
.blog_content_dark p{
  color: var(--para-color);
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.2;
}
.blog_content_dark button{
  border: none;
    background: #005395;
    color: #fff;
    padding: 6px 11px;
    border-radius: 10px;
}
.blog_content_dark button i{
  margin-left: 0.5rem;
}

.park_img img{
  width: 100%;
  border-radius: 25px;
}
.dubai_park_content{
  background-color: #004986;
    height: 100%;
    border-radius: 25px;
    padding: 2rem;
    display: grid;
    align-content: space-evenly;
}
.park_content{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    border-bottom: 1px solid #ffffff12;
    padding-bottom: 7px;
}
.dubai_park_content .park_content:nth-child(3){
  border: none;
}
