

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #F8CB2E;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;
  --body-font-family:             'Outfit', sans-serif;
  
  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family); 
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 60px;
  padding-bottom: 30px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 35px;
}

.nav-tabs {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 5px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link, 
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color); 
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5, 
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
/* Define keyframe animation */
@keyframes border-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Apply animation to buttons */
/* Define keyframe animation */
@keyframes border-animation {
  0% {
    border-color: red;
  }
  25% {
    border-color: blue;
  }
  50% {
    border-color: green;
  }
  75% {
    border-color: yellow;
  }
  100% {
    border-color: red;
  }
}

/* Apply animation to buttons */
.custom-btn,
.custom-border-btn,
.custom-btn-bg-white {
  background: var(--custom-btn-bg-color);
  border: 50px solid var(--custom-btn-bg-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: border-animation 3s linear infinite;
}

.custom-btn:hover,
.custom-border-btn:hover,
.custom-btn-bg-white:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}



/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}





/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  height: calc(100vh - 51px);
  max-width:100vw;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 99;
  opacity: 0.45;
}


.hero-section .container {
  position: relative;
  z-index: 100;
  height: 100%;
  padding-bottom: 400px;
}

.hero-section .container .row {
  height: 100%;
}

.about-section {
  background-image: url('../images/edward-unsplash-blur.jpg');
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
  margin-bottom:50px;
}

.about-section .container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section .row {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease, transform 1s ease;
}

.about-section .row.active {
  opacity: 1;
  transform: translateX(0);
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 15px;
  padding: 30px;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before{
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr, 
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}


.job-section{
  background-position:center;
  background-repeat: no-repeat;
  background-size:cover;
  background-image: url(/static/images/careers1.jpeg);
}

.section-header {
  text-transform: uppercase;
  color: #007bff; /* Primary color for headers */
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 5px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.section-text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

.button-container {
  text-align: center;
  margin-top: 20px;
}

.custom-button {
  background-color: #007bff; /* Primary button color */
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.custom-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  text-decoration: none;
}

.services-infoc {
  background-color: rgba(255, 255, 255, 0.6); /* white background with 0.4 opacity */
  padding: 20px; /* Add some padding if needed */
  border-radius: 20px;
}

.services-infoc p {
  font-size: 18px; /* Increase the text size */
  font-weight: 400;
}




/* footer */

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #c5D3E8;
}

.footer a {
  color: #c5D3E8;
  text-decoration: none;
}

.footer p {
  color: #c5D3E8;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #c5D3E8;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #c5D3E8;
}

.contact-info span,
.contact-info a {
  display: block;
  margin-bottom: 5px;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 12px;
}

/*--------------------------------------------------------------
# sideNavigation Menu
--------------------------------------------------------------*/
.sidenavmenu {
  padding: 0;
  z-index: 9997;
}

.sidenavmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
  width: 140px;
}

.sidenavmenu a,
.sidenavmenu a:focus {
  color: var(--nav-color);
  font-family: var(--nav-font);
  display: flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 15px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.sidenavmenu a i,
.sidenavmenu a:focus i {
  font-size: 20px;
  color:#ffff;
  text-decoration: none;
}

.sidenavmenu a span,
.sidenavmenu a:focus span {
  padding: 0 5px 0 7px;
  color:#fff;
  text-decoration: none;
}

@media (min-width: 992px) {

  .sidenavmenu a,
  .sidenavmenu a:focus {
    max-width: 56px;
  }

  .sidenavmenu a span,
  .sidenavmenu a:focus span {
    display: none;
  }
}

.sidenavmenu a:hover,
.sidenavmenu .active,
.sidenavmenu .active:focus,
.sidenavmenu li:hover>a {
  color: var(--contrast-color);
  background: var(--nav-hover-color);
}

.sidenavmenu a:hover,
.sidenavmenu li:hover>a {
  max-width: 100%;
  color: var(--contrast-color);
}

.sidenavmenu a:hover span,
.sidenavmenu li:hover>a span {
  display: block;
}


:root {  
  --default-color: #272829;
  --contrast-color: #ffffff; 
  --default-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #45505b; 
  --nav-hover-color: #0563bb; 
}

--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  min-width: 200px;
}

@media (max-width: 1199px) {
  .header {
    background-color: var(--background-color);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    width: 300px;
    left: -100%;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header~main {
    margin-left: 160px;
  }

  .header~main .hero {
    margin-left: -160px;
    width: 100vw;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}




/* Swiper Container */
.swiper-container {
  width: 90%;
  height: 100vh;
  float: left;
  transition: opacity 0.6s ease, transform 0.3s ease;
}
.swiper-container.nav-slider {
  width: 20%;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-container.nav-slider .content {
  width: 100%;
}
.swiper-container.nav-slider .title {
  font-size: 20px;
}
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading {
  opacity: 0;
  visibility: hidden;
}

/* Swiper Wrapper */
/* .swiper-wrapper {

} */

/* Swiper Slide */
.swiper-slide {
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* @extend %backface_visibility_hidden; */
}
.slide-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.entity-img {
  display: none;
}
.content {
  position: absolute;
  top: 40%;
  left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}

.caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.7s ease;
}
.caption.show {
  transform: translateX(0);
  opacity: 1;
}

/* Swiper Buttons */
[class^="swiper-button-"] {
  width: 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  /* @extend %transition_all_03s; */
}
.swiper-button-prev {
  transform: translateX(50px);
}
.swiper-button-next {
  transform: translateX(-50px);
}

/* partner carousel slide*/

.patners-section{
    align-items: center;
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    display: flex;
    height: 100vh;
    justify-content: center;
    overflow: hidden;
    width:100%;
}
 
@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.sliderp {
  background: white;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
  padding: 50px;
  height: 200px;
  overflow: hidden;
  margin: auto;
  position: relative;
  width: 100%;
}
.sliderp::before, .sliderp::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  padding: 50px;
  height: 200px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.sliderp::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.sliderp::before {
  left: 0;
  top: 0;
}
.sliderp .slidep-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.sliderp .slidep {
  height: 100px;
  width: 250px;
}
@media screen and (max-width: 720px) {
  .sliderp img{
    width: auto;
  }
}

button {
  background: #e74c3c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

@media only screen and (max-width: 325px) {
  body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
  }

  .about-section {
      padding: 15px 10px;
  }

  .services-info h2, 
  .services-info h6, 
  .services-info p {
      font-size: 12px;
      line-height: 1.5;
      margin: 0;
      padding: 0;
  }

  .about-text-wrap {
      margin-top: 15px;
      padding: 10px 0;
  }

  .about-text-info {
      flex-direction: column;
      align-items: flex-start;
      padding: 5px 0;
  }

  .about-text-info h3 {
      font-size: 14px;
      margin: 0;
  }

  .about-text-info p {
      font-size: 12px;
      margin: 5px 0 0 0;
  }

  .about-image {
      width: 100%;
      height: auto;
      display: block;
  }

  .services-info {
      text-align: center;
  }

  .services-info h2 {
      margin-bottom: 5px;
  }

  .ms-4 {
      margin-left: 0;
  }

  img {
      max-width: 100%;
      height: auto;
      display: block;
  }

  .row {
      margin: 0;
      padding: 0;
  }

  .container {
      margin: 0 auto;
      padding: 0;
      width: 100%;
  }

/* blog page */


    .blog-section {
        padding: 10px 5px;
        text-align: center;
    }

  

    .section-header {
        font-size: 16px;
        margin-bottom: 8px;
        word-wrap: break-word; /* Prevents text overflow */
    }

    .section-title {
        font-size: 14px;
        margin-bottom: 10px;
        word-wrap: break-word; /* Ensures long titles wrap within the width */
    }

    .post-filter {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
        margin: 10px 0;
    }

    .filter-item {
        font-size: 12px;
        padding: 4px 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: #f8f9fa;
        color: #333;
        cursor: pointer;
    }

    .filter-item.active-filter {
        background-color: #007bff;
        color: #fff;
    }

    .filter-item:hover {
        background-color: #0056b3;
        color: #fff;
    }







  }
  







