@charset "UTF-8";

/* Roboto fonts setup */
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-regular.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/roboto-v30-latin-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/roboto-v30-latin-regular.woff") format("woff"),
    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
      url("../fonts/roboto-v30-latin-regular.ttf") format("truetype"),
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
      url("../fonts/roboto-v30-latin-regular.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-v30-latin-italic.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-italic.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/roboto-v30-latin-italic.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/roboto-v30-latin-italic.woff") format("woff"),
    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
      url("../fonts/roboto-v30-latin-italic.ttf") format("truetype"),
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
      url("../fonts/roboto-v30-latin-italic.svg#Roboto") format("svg"); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v30-latin-700.eot"); /* IE9 Compat Modes */
  src: url("../fonts/roboto-v30-latin-700.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("../fonts/roboto-v30-latin-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/roboto-v30-latin-700.woff") format("woff"),
    /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
      url("../fonts/roboto-v30-latin-700.ttf") format("truetype"),
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
      url("../fonts/roboto-v30-latin-700.svg#Roboto") format("svg"); /* Legacy iOS */
}

/* theme style css */

:root {
  --theme-font-family: "Roboto", sans-serif;
  --theme-font-size: 20px;
  --theme-body-line-height: 1.75;
  --theme-heading-line-height: 1.2;
  --theme-font-weight-400: 400;
  --theme-font-weight-700: 700;
  --theme-light-gray-color: #f8f8f8;
  --theme-white-color: #ffffff;
}

* {
  margin: 0px;
  padding: 0px;
}
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--theme-font-family);
  font-size: var(--theme-font-size);
  line-height: var(--theme-body-line-height);
  font-weight: var(--theme-font-weight-400);
  background: var(--theme-white-color);
  overflow-x: hidden;
}
.container {
  max-width: 1694px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1200px) {
  section .container {
    max-width: 1140px;
  }
}
@media screen and (min-width: 1400px) {
  section .container {
    max-width: 1320px;
  }
}

.section-div {
  width: 100%;
  height: 100%;
  padding: 0;
  background-image: url(../images/bg_header.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}

.logo_div {
  margin: 10px 0;
}

.main-div {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* padding: 0px 5.208vw; */
}

.menu_bar_main .navbar {
  width: 100%;
  padding: 0;
}

.menu_bar_main {
  width: 87%;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.nav-div {
  width: 12%;
  text-align: left;
  padding-left: 2.5px;
}
.logo {
  width: 180px;
}
.nav-div1 {
  width: 68%;
}

.navbar-nav {
  /* width: 95%;
  margin-left: 10px; */
}
.nav-item {
  padding: 12px 1.25vw;
  text-align: left;
}
.navbar-nav .nav-link {
  text-decoration: none;
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  display: flex;
  align-items: center;
  padding: 0;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
  color: #1a1817;
}
.dropdown-menu {
  background-color: #fff;
}
.dropend .dropdown-toggle {
  color: 000;
}
.dropdown-item {
  padding: 10px 0 10px 20px;
}
.dropdown-item:hover {
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  color: #fff;
}

.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
}
@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
}

.nav-div2 {
  width: 15%;
  text-align: center;
  justify-content: center;
}
.nav-div2 button {
  width: 100%;
  border-radius: 90px;
  background: #0d529f;
  background: -moz-linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  background: -webkit-linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  color: #fff;
  border: 0px;
  padding: 12px 2.208vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--theme-font-family);
  font-size: 0.938vw;
  font-style: normal;
  font-weight: var(--theme-font-weight-700);
  line-height: normal;
}

.marquee {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #745a4d;
  white-space: nowrap;
  color: #fff;
  width: 100%;
  height: 48px;
  padding-left: 23px;
  font-family: var(--theme-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.marquee--inner {
  display: block;
  width: 300%;
  position: absolute;
  animation: marquee 35s linear infinite;
  &:hover {
    animation-play-state: paused;
    color: #fff;
  }
}

.marquee-slide {
  float: left;
  width: 48%;
  overflow: hidden;
}

@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

/* images sliding section  */

.logo-slider-img {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider-img img {
  position: relative;
  max-width: 100%;
  height: auto;
}
.sliding-text {
  padding-left: 5.99vw;
  padding-right: 5.99vw;
  top: 10%;
}
.sliding-image1 {
  width: 100%;
}
.sliding-text-heading {
  font-family: "Times New Roman", Times, serif;
  font-size: 3.333vw;
  font-weight: var(--theme-font-weight-700);
  line-height: var(--theme-heading-line-height);
}
.sliding-text-heading1,
sup {
  background: var(
    --Primary-1,
    linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sliding-text-heading2 {
  /* width: 900px; */
  border-radius: 4px;
  border-left: 4px solid #0d529f;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0) 98.18%
  );
  display: flex;
  padding: 10px 16px;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  margin-top: 30px;
  border-image: linear-gradient(to bottom, #0d529f, #3fa9df) 1 100%;
  width: fit-content;
}

.sliding-text-heading2 p {
  font-family: var(--theme-font-family);
  font-size: 35px;
  font-style: italic;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #1a1817;
}
.section-text-heading3 {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 2.083vw;
  margin-top: 2.604vw;
}
.section-text-heading3-div {
  width: 40%;
  display: flex;
  /* border-right: 2px solid #1a1817; */
  gap: 15px;
  position: relative;
}
.section-text-heading3-div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #1a1817;
}
.section-text-heading3-div1 {
  width: 60%;
  display: flex;
  gap: 0.781vw;
}
.section-text-heading3-date {
  width: 2.083vw;
  height: 2.083vw;
}
.slider-date {
  color: #1a1817;
  text-align: left;
  font-size: 24px;
}
.section-text-heading3-location {
  width: 40px;
  height: 40px;
  margin-left: 0px;
}

.slider-location {
  color: #1a1817;
  text-align: left;
  font-size: 24px;
  line-height: 28px;
}
.slider-button {
  display: flex;
  padding: 16px 64px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 2.604vw;
  border-radius: 44px;
  border: 0px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 24px;
  font-weight: var(--theme-font-weight-700);
  line-height: normal;
}
/* end sliding section css  */

/* our team section  */
.team-main-section {
  width: 100%;
  padding-bottom: 100px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.team-main-section::before {
  background-image: url("../images/ourteam/blobs/Right.svg");
  background-repeat: no-repeat;
  content: "";
  width: 90px;
  height: 327px;
  position: absolute;
  z-index: -1;
  top: 5%;
  right: 0%;
}

.team-main-section::after {
  background-image: url("../images/ourteam/blobs/Left.svg");
  background-repeat: no-repeat;
  content: "";
  width: 90px;
  height: 220px;
  position: absolute;
  z-index: -1;
  top: 70%;
  left: 0%;
}

.team-section {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-weight: var(--theme-font-weight-700);
  line-height: normal;
  text-align: center;
  padding-left: 10px;
  margin-top: 80px !important;
  border-left: 4px solid #3fa9df00;
  border-image: linear-gradient(to bottom, #0d529f, #3fa9df) 1 100%;
  margin: auto;
  width: fit-content;
}
.team-text {
  width: auto;
  margin: auto;
  color: #1a1817;
  text-align: center;
  margin-top: 30px;
  font-family: var(--theme-font-family);
  font-size: 20px;
  line-height: 150%;
  max-width: 600px;
  letter-spacing: 0.02em;
}
.team-div {
  max-width: 80%;
  margin: auto;
  margin-top: 40px;
  padding: 1.385vw;
}

.team-div-img {
  margin: auto;
}
.team-div-img img {
  border-radius: 20px;
  border-radius: 20px;
  border: 2px solid #ffb800;
}

.team-div-img div {
  /* color: #1a1817;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.72px;
  margin-top: 24px;
  position: relative; */
}
.team-div-img .person-heading {
  color: #1a1817;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 24px;
  font-weight: var(--theme-font-weight-700);
  line-height: 130%;
  letter-spacing: 0.03em;
  margin-top: 30px;
  position: relative;
}
.team-div-img div.col-md-4 {
  position: relative;
}
.team-div-img div.col-md-4::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: #1a1817;
}
.team-div-img div.col-md-4:last-child::after {
  display: none;
}
.team-div-img p {
  color: #1a1817;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-weight: var(--theme-font-weight-400);
  line-height: 130%;
  letter-spacing: 0.03em;
  margin-top: 12px;
}

.image-all-together {
  width: 202px;
  height: 190px;
  position: relative;
  margin: 20px auto;
}
.image-all-together span {
  position: absolute;
  background: var(
    --Primary-1,
    linear-gradient(133deg, #fbcb64 0.61%, #da9b16 100%)
  );
  box-shadow: -2px -2px 5px #fbcb64;
  transition: 0.3s;
}
.image-all-together .one {
  height: 0;
  width: 4px;
  top: 0;
  left: 0;
}

.image-all-together .three {
  height: 0;
  width: 3px;
  bottom: 0;
  right: 0;
}

.image-all-together:hover .one,
.image-all-together:hover .three {
  height: 90%;
  margin-top: 10px;
  border-radius: 10px;
}
.image-all-together:hover .two,
.image-all-together:hover .four {
  width: 0%;
}
.image-all-together:hover img {
  transition-duration: 0.3s;
  transition-delay: 0.3s;
  box-shadow: 3px 3px 20px #fbcb64, -3px -3px 30px #fbcb64;
}
/* end team section  */

/* about section  */
.about-section {
  background: rgba(54, 189, 240, 0.1);
  padding: 80px 113px;
  width: 100%;
}
.about-section-div {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

.about-section-div1 {
  width: 60%;
}
.about-section-div1 h2 {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: var(--theme-font-weight-700);
  line-height: normal;
  border-left: 4px solid #0d529f;
  padding-left: 14px;
}
.about-section-div1 p {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: var(--theme-font-weight-400);
  line-height: 150%;
  letter-spacing: 0.02em;
  align-self: stretch;
  margin-top: 32px;
  width: 80%;
}
.about-section-div1 button {
  border-radius: 4px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border: 0px;
  font-size: 18px;
  font-weight: var(--theme-font-weight-700);
  color: #fff;
  font-family: var(--theme-font-family);
  margin-top: 35px;
}
.about-section-div2 {
  width: 40%;
}

.about-section-div2 img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* end about section  */

/* photo gallery  */
.photo-gallery-section {
  width: 100%;
  padding-bottom: 80px;
  position: relative;
  z-index: 9;
}
.photo-section {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding-left: 10px;
  margin-top: 80px !important;
  border-left: 4px solid #3fa9df00;
  border-image: linear-gradient(to bottom, #0d529f, #3fa9df) 1 100%;
  margin: auto;
  width: fit-content;
}
.photo-text {
  width: 619px;
  margin: auto;
  color: #1a1817;
  text-align: center;
  margin-top: 30px;
  font-family: var(--theme-font-family);
  font-size: 20px;
  font-style: normal;
  line-height: 130%;
  letter-spacing: 0.02em;
}

.button {
  cursor: pointer;
  position: relative;
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  user-select: none;
  z-index: 5;
  padding: 12px 24px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #0d529f;
  transition: all 0.5s;
  border-radius: 5px;
}
a {
  text-decoration: none;
}
.photo-gallery-section .buttons {
  margin-top: 2.604vw;
}
.button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.05);
  z-index: -1;
  transition: all 0.5s;
  color: #fff !important;
}
.button:hover::before {
  width: 100%;
  border-radius: 0;
  transition: 0.5s;
  color: #fff !important;
}
.button:hover {
  color: #fff;
}
.button:hover svg path {
  fill: #fff;
}
.wrapper {
  padding: 70px 0;
}

.water-btn {
  cursor: pointer;
  position: relative;
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 2s;

  user-select: none;
  z-index: 5;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #0d529f;
  transition: all 0.5s;
  border-radius: 5px;
}
.water-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: var(
    --Primary-1,
    linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%)
  );
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.05);
  z-index: -1;
  transition: all 0.5s;
  color: #fff !important;
}
.water-btn:hover::before {
  width: 100%;
  border-radius: 0;
  transition: 0.5s;
  color: #fff !important;
}
.water-btn:hover {
  color: #fff;
}
.water-btn:hover svg path {
  fill: #fff;
}

/* Default slide */
.center-slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}
.center-slider .slick-slide,
.center-slider
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transition: all 0.4s ease-in-out;
  transform: scale(0.8);
}

/* Active center slide (You can change anything here for cenetr slide)*/
.center-slider .slick-center,
.center-slider
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}
.center-slider .slick-current.slick-active {
  transform: scale(1.1);
}
.center-slider .slick-slide img {
  /* padding: 20px;
  margin: 20px 60px; */
}

.center-slider .slick-slide img {
  width: 100%;
  border-radius: 50px;
}

.center-slider .slick-next,
.center-slider .slick-prev {
  z-index: 5;
  width: 2.865vw;
  height: 2.865vw;
  line-height: 2.865vw;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid #1a1817;
  border-radius: 50%;
}
.center-slider .slick-next {
  /* right: 40px; */
  right: 30%;
}
.center-slider .slick-prev {
  /* left: 10px; */
  left: 30%;
}

.center-slider .slick-prev:before,
.center-slider .slick-next:before {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.center-slider .slick-prev {
  background-image: url("../images/icons/chevron-left.svg");
  background-position: center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.center-slider .slick-next {
  background-image: url("../images/icons/chevron-right.svg");
  background-position: center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.center-slider .slick-next:before,
.center-slider .slick-prev:before {
  color: #000;

  display: none;
}

.customer-logos .slick-next {
  /* right: 40px; */
  top: 95%;
  right: 5%;
}
.customer-logos img,
.customer-logos-div img {
  max-width: 100%;
  height: auto;
}
.customer-logos .slick-prev {
  /* left: 10px; */
  top: 95%;
  left: 80%;
}

.customer-logos-div .slick-next {
  /* right: 40px; */
  top: 95%;
  right: 5%;
}
.customer-logos-div .slick-prev {
  /* left: 10px; */
  top: 95%;
  left: 80%;
}

.video-section {
  width: 100%;
  position: relative;
}
.video-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 81, 116, 0.5);
}
.video-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}
.video-section img {
  height: 20.833vw;
  position: relative;
  filter: blur(1.5px);
  z-index: -1;
}
.video-section h1 {
  color: #fff;
  text-align: center;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.video-btn {
  height: 49.714px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 0px;
  border-radius: 4px;
  border: 1px solid var(--Primary-1, #0d529f);
  background: var(--Bg-1, #fff);
  margin-top: 10px;
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.sponsor-section {
  width: 100%;
  padding: 80px 113px;
}
.sponsor-section-div {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
  gap: 40px;
}
.sponsor-section-div1 {
  border: 1px solid rgb(190, 190, 190);
  padding: 2.083vw;
  border-radius: 20px;
  width: 50%;
  background-color: #fff;
}

.sponsor-section-div1-div {
  align-items: center;
  flex: 1 0 0;
  text-align: center;
}
.sponsor-section-div1-div .spon-header img {
  width: 3.385vw;
}
.sponsor-section-div1-div h1 {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline;
  /* width: 460px; */
  margin: auto;
  text-align: left;
  padding-left: 15px;

  border-left: 4px solid #3fa9df00;
  border-image: linear-gradient(to bottom, #0d529f, #3fa9df) 1 100%;
  margin: auto;
  width: fit-content;
}
.sponsor-section-div1-div p {
  color: #1a1817;
  text-align: center;
  width: 100%;
  max-width: 600px;
  font-family: var(--theme-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.sponsor-svg {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.sponsor-svg .arrow-icon {
  width: 2.865vw;
  height: 2.865vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1a1817;
  border-radius: 50%;
  cursor: pointer;
}
.sponsor-svg svg {
  color: #2d2d2c;
}
.sponsor-svg img {
  max-width: 100%;
  height: auto;
}
.sponsor-section-div2 {
  border: 1px solid rgb(190, 190, 190);
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  width: 50%;
}
.sponsor-section-div2-div .spon-header img {
  width: 3.385vw;
}
.sponsor-section-div2-div h1 {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  margin: auto;
  text-align: left;
  padding-left: 15px;
  display: inline;
  border-left: 4px solid #3fa9df00;
  border-image: linear-gradient(to bottom, #0d529f, #3fa9df) 1 100%;
  margin: auto;
  width: fit-content;
}
.sponsor-section-div2-div p {
  color: #1a1817;
  text-align: center;
  width: 100%;
  max-width: 600px;
  font-family: var(--theme-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.sponsorship-section .pricing-plans {
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  padding: 64px;
}

.sponsorship-section .pricing-card {
  min-width: 100%;
  padding: 32px;
  padding-bottom: 96px;
  border-radius: 4px;
  box-shadow: 0 0 32px transparent;
  text-align: center;
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.sponsorship-section .pricing-card .features li {
  color: #1a1817;
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.4px;
  text-align: left;
  display: flex;
  gap: 1.146vw;
  padding: 20px 0px;
  border-bottom: solid 1px #1a181733;
}

.sponsorship-section .pricing-card .features li:last-child {
  border: none;
}

.sponsorship-section .pricing-card .heading {
  border-radius: 8px;
  background: linear-gradient(92deg, #5c6167 0.83%, #878da4 91.48%);
  display: inline-block;
  padding: 10px 48px;
  width: fit-content;
  margin: 0 auto;
}
.sponsorship-section .pricing-card .heading span {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.54px;
  line-height: normal;
  padding: 0;
  margin: 0px;
}
.sponsorship-section .pricing-card .price h2 {
  background: var(
    --Primary-1,
    linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.sponsorship-section .pricing-card .price sub {
  font-size: 19px;
  font-weight: lighter;
  background: var(
    --Primary-1,
    linear-gradient(133deg, #1a1817 0.61%, #1a1817 100%)
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
  padding-right: 12px;
  position: inherit;
}

.sponsorship-section .pseudo-item2 {
  background: linear-gradient(180deg, #fff 0%, #faffdc 100%);
}

.sponsorship-section .pseudo-item2 .heading {
  background: linear-gradient(90deg, #db9b23 0.27%, #ba8e01 100.27%);
}

.sponsorship-section .pseudo-item3 {
  background: linear-gradient(180deg, #fff 0%, #fceeff 100%);
}

.sponsorship-section .pseudo-item3 .heading {
  background: linear-gradient(90deg, #495bfb 0%, #4320d0 102.56%);
}

.sponsorship-section .pseudo-item4 {
  background: linear-gradient(180deg, #fff 0%, #fff 0.01%, #ffeee6 100%);
}

.sponsorship-section .pseudo-item4 .heading {
  background: linear-gradient(90deg, #745a4d 0%, #503a2f 100%);
}
.sponsorship-section .pricing-card ul {
  padding-left: 0;
}

.map-section iframe {
  width: 100%;
  height: 31.25vw;
}
.footer-section {
  width: 100%;
  position: relative;
  padding: 40px 0 40px 0;
  background: #edf9fe;
  overflow: hidden;
}

.footer-section-div {
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  /* height: 60px; */
  position: relative;
  z-index: 3;
}
.footer-section-div1 {
  width: 50%;
  padding-left: 10px;
}
.footer-section-div1 p {
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.36px;
  margin-bottom: 0;
}
.footer-section-div2 {
  width: 50%;
  text-align: center;
}
.footer-section-div2 ul {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 14px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.footer-section-div2 ul li {
  display: inline-flex;
}
.air {
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../images/Footer/leftwave.webp");
  background-size: 100% 100%;
  position: absolute;
}

.air.air3 {
  animation: wave 10s linear infinite;
  z-index: 2;
  height: 200px;
  opacity: 0.5;
  animation-delay: -9s;
  bottom: 0px;
}
.air.air4 {
  animation: wave2 8s linear infinite;
  z-index: 1;
  opacity: 0.8;
  height: 150px;
  animation-delay: -5s;
  bottom: 0px;
}
@keyframes wave {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 1000px;
    transform: translate3d(0, -25px, 0);
  }
}
@keyframes wave2 {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -1000px;
  }
}
.hrdiv {
  margin-top: 40px;
}

.footer-section-last {
  /* width: 95%;
  margin: auto;
  height: 28px; */
  margin-top: 40px;
  text-align: center;
  z-index: 3;
  position: relative;
}

.footer-section-last a {
  text-decoration: none;
  color: #1a1817;
  padding: 0 22px 0 22px;
  border-right: 1px solid #1a1817;
  color: #1a1817;
  font-family: var(--theme-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.36px;
  text-align: center;
  display: inline-block;
}
.footer-section-last a:last-child {
  border: none;
}
.navbar-expand-lg .navbar-nav {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

/* slide sposor  */
.slick-slide1 {
  margin: 0px 20px;
}

.slick-slide1 img {
  width: 100%;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide1 {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide1 {
  float: right;
}
.slick-slide1 img {
  display: block;
}
.slick-slide1.slick-loading img {
  display: none;
}
.slick-slide1.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide1 {
  display: block;
}
.slick-loading .slick-slide1 {
  visibility: hidden;
}
.slick-vertical .slick-slide1 {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.navbar-toggler {
  background: var(
    --Primary-1,
    linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%)
  );
  padding: 5px;
}

.nav-item {
  position: relative;
}

.mobile_menu {
  position: absolute;
  right: 0;
  top: 6px;
}
.mobile_menu svg {
  width: 20px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
  width: 320px;
}

.dropend .dropdown-toggle::after {
  display: none;
}

.dropdown-item .mobile_menu {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* Dots */
.slider_banner .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slider_banner .slick-dots {
  position: absolute;
  bottom: 30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slider_banner .slick-dots li {
  position: relative;
  padding: 0;
  cursor: pointer;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: width 0.3s ease-in-out;
}
.slider_banner .slick-dots li button {
  border-radius: 29.333px;

  font-size: 0;
  line-height: 0;

  display: block;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slider_banner .slick-dots li button:hover,
.slider_banner .slick-dots li button:focus {
  outline: none;
}
.slider_banner .slick-dots li button:hover:before,
.slider_banner .slick-dots li button:focus:before {
  opacity: 1;
}
.slider_banner .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  content: "•";
  text-align: center;
  border-radius: 29.333px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slider_banner .slick-dots li.slick-active button:before {
  border-radius: 29.333px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  width: 50px;
  transition: all 0.5s;
}

.slider_banner .slick-dots li {
  width: 10px;
  margin: 0 2px;
  transition: width 0.3s ease-in-out;
}

.slider_banner .slick-dots .slick-active {
  width: 50px;
  transition: width 0.3s ease-in-out;
}

/* center slider css button  */

.center-slider .slick-dots {
  position: absolute;
  top: 120%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.center-slider .slick-dots li {
  position: relative;
  padding: 0;
  cursor: pointer;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: width 0.3s ease-in-out;
}
.center-slider .slick-dots li button {
  border-radius: 29.333px;

  font-size: 0;
  line-height: 0;

  display: block;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.center-slider .slick-dots li button:hover,
.center-slider .slick-dots li button:focus {
  outline: none;
}
.center-slider .slick-dots li button:hover:before,
.center-slider .slick-dots li button:focus:before {
  opacity: 1;
}
.center-slider .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  content: "•";
  text-align: center;
  border-radius: 29.333px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center-slider .slick-dots li.slick-active button:before {
  border-radius: 29.333px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  width: 50px;
  transition: all 0.5s;
}

.center-slider .slick-dots li {
  width: 10px;
  margin: 0 2px;
  transition: width 0.3s ease-in-out;
}

.center-slider .slick-dots .slick-active {
  width: 50px;
  transition: width 0.3s ease-in-out;
}

/* consumer-logo dots  */
.customer-logos .slick-dots {
  bottom: -30%;
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.customer-logos .slick-dots li {
  position: relative;
  padding: 0;
  cursor: pointer;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: width 0.3s ease-in-out;
}
.customer-logos .slick-dots li button {
  border-radius: 29.333px;

  font-size: 0;
  line-height: 0;

  display: block;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.customer-logos .slick-dots li button:hover,
.customer-logos .slick-dots li button:focus {
  outline: none;
}
.customer-logos .slick-dots li button:hover:before,
.customer-logos .slick-dots li button:focus:before {
  opacity: 1;
}
.customer-logos .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  content: "•";
  text-align: center;
  border-radius: 29.333px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.customer-logos .slick-dots li.slick-active button:before {
  border-radius: 29.333px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  width: 50px;
  border: none;
  transition: all 0.5s;
}

.customer-logos .slick-dots li {
  width: 10px;
  margin: 0 2px;
  transition: width 0.3s ease-in-out;
}

.customer-logos .slick-dots .slick-active {
  width: 50px;
  transition: width 0.3s ease-in-out;
}

/* consumer-logo-div dots  */
.customer-logos-div .slick-dots {
  bottom: -30%;
  display: block;
  width: auto;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}
.customer-logos-div .slick-dots li {
  position: relative;
  padding: 0;
  cursor: pointer;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: width 0.3s ease-in-out;
}
.customer-logos-div .slick-dots li button {
  border-radius: 29.333px;

  font-size: 0;
  line-height: 0;

  display: block;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.customer-logos-div .slick-dots li button:hover,
.customer-logos-div .slick-dots li button:focus {
  outline: none;
}
.customer-logos-div .slick-dots li button:hover:before,
.customer-logos-div .slick-dots li button:focus:before {
  opacity: 1;
}
.customer-logos-div .slick-dots li button:before {
  font-family: "slick";
  font-size: 0px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  content: "•";
  text-align: center;
  border-radius: 29.333px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.customer-logos-div .slick-dots li.slick-active button:before {
  border-radius: 29.333px;
  background: linear-gradient(133deg, #0d529f 0.61%, #3fa9df 100%);
  width: 50px;
  transition: all 0.5s;
  border: none;
}

.customer-logos-div .slick-dots li {
  width: 10px;
  margin: 0 2px;
  transition: width 0.3s ease-in-out;
}

.customer-logos-div .slick-dots .slick-active {
  width: 50px;
  transition: width 0.3s ease-in-out;
}
