@import url(../css/aos.css);
@import url(../css/fancybox.css);
@import url(../css/swiper.min.css);
/* @import url(../css/default.css); */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --font-family-Saira: "Saira Condensed", sans-serif;
  /* Colors: */


  --font-style-normal: normal;
  --font-size-20: 1.25rem;
  --font-size-25: 1.5625rem;
  --font-size-33: 2.0625rem;
  --font-size-35: 2.1875rem;
  --font-size-40: 2.5rem;
  --font-size-50: 3.125rem;
  --font-size-72: 4.5rem;
  --font-size-90: 5.625rem;
  --font-size-140:6.75rem;
  --font-size-160: 10rem;
  --font-size-200: 12.5rem;



  --line-height-40: 40px;
  --line-height-50: 50px;
  --line-height-55: 55px;
  --line-height-80: 5rem;
  --line-height-100: 100px;
  --line-height-112: 7rem;

  --line-height-inherit: inherit;
  --font-weight-Thin: 100;
  --font-weight-ExtraLight: 200;
  --font-weight-Light: 300;
  --font-weight-Regular: 400;
  --font-weight-Medium: 500;
  --font-weight-SemiBold: 600;
  --font-weight-Bold: 700;
  --font-weight-ExtraBold: 800;
  --font-weight-Black: 900;
  --font-weight-normal: normal;

  --color-blue: #002962;
  --color-orange: #f0663d;
  --color-black: #000000;
  --color-white: #ffffff;

}


* {
  outline: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

body {
  font-family: var(--font-family-Saira);
  font-style: var(--font-style-normal);
  font-size: var(--font-size-20);
  color: var(--color-white);
  font-weight: var(--font-weight-Regular);
  margin: 0;
  padding: 0;
  /* overflow-x: hidden; */
}

.clr {
  width: 100%;
  float: left;
}

.img {
  width: 100%;
}

a,
.btn,
button {
  color: var(--color-000000);
  outline: none;
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
  color: var(--color-f1da70);
  text-decoration: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-000000);
  text-transform: normal;
  margin-bottom: 15px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

header,
footer,
section {
  width: 100%;
  float: left;
}

hr {
  border-bottom: 1px solid var(--color-ba8b1d);
  border-top: 0 none;
  margin: 40px 0;
  padding: 0;
  opacity: 1;
}

p {
  font-size: var(--font-size-20);
  margin-bottom: 15px;
  text-align: justify;
}

.section-space {
  padding: 100px 0;
}
.orange{
  color: var(--color-orange) !important;
}
.big-title-text {
  font-size: var(--font-size-140);
  line-height:var(--line-height-112);
  color: #000;
  margin-bottom: 15px;
  background: -webkit-linear-gradient(-86deg, #292928 5%, #b3b3b3 53%, #000000 91%);
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  text-transform: uppercase;
  font-weight: 800;
  /* height: auto; */
  /* background-repeat: repeat; */
  position: relative;
  letter-spacing: 10px;
}

.section-title {
  font-size: var(--font-size-72);
  color: var(--color-orange);
  font-weight: var(--font-weight-SemiBold);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: var(--line-height-80);
}

.main-title {
  font-size: var(--font-size-140);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: var(--font-weight-SemiBold);
  line-height: var(--line-height-100);

}

.title-40 {
  font-size: var(--font-size-40);
  text-transform: uppercase;
  line-height: var(--line-height-55);
}

.title-25 {
  font-size: var(--font-size-25);
  color: var(--color-orange);

}

.view-more-text {
  display: inline-block;
}

.view-more-text-btn {
  font-size: var(--font-size-19);
  line-height: var(--line-height-inherit);
  color: var(--color-f1da70);
  font-weight: var(--font-weight-Regular);
  font-family: var(--font-family-Poppins);
  text-transform: uppercase;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 2;
  padding: 0;
  outline: none;
  border: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.view-more-text-btn:hover {
  color: var(--color-ba8b1d);
  letter-spacing: 1px;
}

.view-more {
  display: inline-block;
}

.view-more-btn {
  display: inline-block;
  font-size: var(--font-size-22);
  line-height: var(--line-height-inherit);
  color: var(--color-white);
  font-weight: var(--font-weight-Bold);
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 0px;
  border: solid 1px var(--color-white);
  background: var(--color-orange);
  position: relative;
  z-index: 2;
  outline: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.view-more-btn:hover {
  color: var(--color-white);
  background: var(--color-black);
  border: solid 1px var(--color-blue);
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.img-zoom {
  overflow: hidden;
}

.img-zoom .zoom {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 2.5s ease-out 0s;
  -moz-transition: all 2.5s ease-out 0s;
  -ms-transition: all 2.5s ease-out 0s;
  -o-transition: all 2.5s ease-out 0s;
  transition: all 2.5s ease-out 0s;
}

.img-zoom:hover .zoom {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* @import url(../css/root.css); */
/* main-header */
.g_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  background-color: #ffffffb3;
}

.g_header::after {
  position: absolute;
  content: '';
  right: 0;
  width: 10%;
  background-color: var(--color-blue);
  top: 0;
  height: 100%;
  z-index: -1;
}

.g_shrink {
  background: transparent;
  position: fixed;
  -webkit-transition: all 5.5s ease-out 0s;
  -moz-transition: all 5.5s ease-out 0s;
  -ms-transition: all 5.5s ease-out 0s;
  -o-transition: all 5.5s ease-out 0s;
  transition: all 5.5s ease-out 0s;
  z-index: 999;
}

.g_shrink .main-nav {
  display: none;
}

.g_shrink .sidenav .main-nav {
  display: block;
}

.g_shrink .fix-toggle {
  display: block;
}

.scroll-down {
  font-size: var(--font-size-18);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 93px;
  justify-content: center;
  left: 0;
  z-index: 8;
}

.scroll-down a {

  transform: rotate(270deg);
}
.scroll-down a:hover{
  color: var(--color-orange);
}
.scroll-down::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100px;
  background-color: var(--color-white);
  bottom: 73px;
}

/* loader css*/
/* loader css */
.main-nav {
  width: 100%;
  float: left;
  position: relative;
}

.celebrating {
  position: absolute;
  top: 0px;
  left: 20px;
  padding: 0;
}

.main-header.g_shrink .celebrating {
  display: none;
}

.celebrating img {
  width: 180px;
  padding-top: 20px;
  position: relative;
  z-index: 11;
}

.celebrating::before {
  position: absolute;
  content: "";
  top: -200px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: var(--color-000000);
  z-index: -1;
  transform: rotate(125deg);
  border-radius: 0 100px 0 0;
}

.main-nav .navbar {
  padding: 0;
  width: 100%;
  float: left;
}

.main-nav .navbar-expand-xl .navbar-brand {
  margin-right: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  align-items: center;
  display: flex;
  height: 100%;
}

.main-nav .navbar-expand-xl .navbar-brand img {
  width: 100%;
  object-fit: contain;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  width: 12rem;
}

.main-nav .navbar-nav .nav-item .nav-link {
  position: relative;
  display: block;
  color: var(--color-black);
  font-weight: var(--font-weight-Medium);
  line-height: var(--line-height-inherit);
  padding: 0px;
}

.main-nav .navbar-nav .nav-item {
  padding: 25px 0;

  margin-left: 30px;
}

.main-nav .navbar-nav .nav-item .nav-link:focus,
.main-nav .navbar-nav .nav-item.active .nav-link,
.main-nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--color-orange);
}

.main-nav .navbar-nav .nav-item .nav-link.show,
.main-nav .navbar-nav .nav-item .show>.nav-link {
  color: var(--color-orange);
}

.main-nav .navbar-nav .mobile-toggle .toggle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
}

.navbar-expand-xl .navbar-nav {
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}

.email-box {
  background-color: var(--color-blue);
  color: var(--color-white);
  /* margin-left: 0; */
  padding-left: 50px !important;
}

.email-box a {
  color: var(--color-orange) !important;
  font-weight: var(--font-weight-SemiBold);
}
.email-box a:hover {
  color: var(--color-white) !important;
}

.join-box a{
  background-color: var(--color-orange);
  color: var(--color-white) !important;
  /* margin-left: 0; */
  padding-left: 50px !important;
  padding: 15px !important;
  border-radius: 5px;
  line-height:10px !important;
}
.fix-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  width: 120px;
  height: 100px;
  line-height: 100px;
  border-radius: 0 0 0 100px;
  text-align: center;
}

.fix-toggle .toggle img {
  width: 50px;
  height: 50px;
  position: relative;
  left: 10px;
  top: -10px;
  cursor: pointer;
}

.main-nav .navbar-nav .nav-item .nav-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.main-nav .navbar-nav .nav-item.our-profile .nav-link {
  display: inline-block;
  font-size: var(--font-size-14);
  line-height: var(--line-height-inherit);
  color: var(--color-white);
  font-weight: var(--font-weight-Medium);
  font-family: var(--font-family-Poppins);
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  border: solid 1px var(--color-ba8b1d);
  background: var(--color-ba8b1d);
  position: relative;
  z-index: 2;
  outline: none;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.main-nav .navbar-nav .nav-item.our-profile:hover .nav-link {
  color: var(--color-white);
  border: solid 1px var(--color-f1da70);
  background: var(--color-f1da70);
}

.blink-soft {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

/* dropdown-menu */
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:focus,
.main-nav .navbar-nav .nav-item.dropdown .dropdown-item:hover {
  background-color: transparent;
}

.main-nav .navbar-nav .dropdown .dropdown-menu {
  position: absolute;
  min-width: auto;
  margin: 0;
  top: 100%;
  padding: 0px;
  background-color: var(--color-white);
  border: none;
  box-shadow: 0px 0px 10px -4px #0000009d;
  z-index: 9;
  left: 0;
}

.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  width: 100%;
  float: left;
  font-size: var(--font-size-27);
  font-family: var(--font-family-Poppins) !important;
  font-weight: var(--font-weight-SemiBold);
  color: var(--color-blue);
  padding: 10px 12px;
  text-transform: uppercase;
  text-align: center;
}

.main-nav .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.dropdown-toggle {
  white-space: nowrap;
}

.main-nav .navbar-nav .nav-item .dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: 5px;
  content: "";
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
}
.banner-content .nav-link {
  color: var(--color-white);
  line-height: 120px;
}
/* dropdown-menu */
/* mob-sidenav */
.sidenav .navbar-expand-xl .navbar-nav {
  flex-direction: column;
}

.sidenav {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: unset;
  right: 0;
  background-color: #000000e3;
  overflow-x: hidden;
  transition: .6s ease-in-out;
  padding-top: 60px
}

.mob-sidenav .closebtn {
  position: absolute;
  top: 50px;
  right: 50px;
  margin-left: 0;
  z-index: 9;
}

.mob-sidenav .closebtn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center
}

.navbar-expand-xl .navbar-nav .dropdown-menu {
  position: static;
}

.sidenav .main-nav .navbar-nav .nav-item {
  padding-left: 0;
  margin-bottom: 30px;
  text-align: center;
}

/* mob-sidenav */
/* main-header */
/* main-banner */
.main-banner {
  height: 100vh;
  background-image: url(../images/banner/home-banner.jpg);
  background-size: cover;
  width: 100%;
}

.main-banner-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-banner-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.main-banner-img img {
  -webkit-animation: zoom 150s linear;
  animation: zoom 150s linear;
}

.main-slider img {
  position: relative;
  z-index: 0;
}
.main-slider.swiper-container{
  overflow: visible;
}

/* Zoom in Keyframes */
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.banner-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

}

.logo_video {
  width: 100%;
  height: 100%;
}

.logo_video .myVideo {
  width: 100%;
  height: 100%;
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.inner-banner .banner-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--color-000000);
  z-index: -1;
  opacity: 0.3;
}

.banner-content {
  display: flex;
}

.banner-content .title {
  background: var(--color-ba8b1d);
  background: var(--linear-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 50px;
}

/* main-banner */

/* about-section  */
.about-section {
  background-image: url(../images/about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  position: relative;
  margin-top: -100px;
  z-index: -1;
  padding-top: 200px;
  position: relative;
}

.title-change {
  margin-top: -45px;
  position: relative;
  z-index: 0;
  margin-bottom: 0;
  display: inline-block;
}

.experience-box .title {
  font-size: var(--font-size-90);
  line-height: var(--line-height-50);
  margin-bottom: 30px;
}

.shape-change {
  width: 350px;
  top: 120px;
  position: relative;
}

.triangle-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  top: -13%;
  position: absolute;
  width: 100%;
  z-index: -1;
  left: 0;
}

.tri::before, .tri::after {
  content: "";
  display: inline-block;
  width: 229px;
  height: 400px;
  background: linear-gradient(-60deg, rgba(255, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 50%);
}

.tri::after {
  background: linear-gradient(60deg, rgba(255, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 50%);
  position: relative;
  left: -3px;
}

.tri {
  animation: pulse 1000ms linear infinite alternate;
  position: absolute;
  z-index: -1;

}

.tri1 {
  transform: rotate(180deg);
  animation: pulse 1000ms linear infinite alternate;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 20px #ccc);
  }

  100% {}
}

.triangle {
  --b: 10px;
  width: 350px;
  aspect-ratio: 1;
  clip-path: polygon(
      /* outer points */
      0 100%, 0 0, 100% 100%, 0 100%,
      /* inner points */
      var(--b) calc(100% - var(--b)), calc(100% - var(--b) / tan(22.5deg)) calc(100% - var(--b)), var(--b) calc(var(--b) / tan(22.5deg)), var(--b) calc(100% - var(--b)));
  background: linear-gradient(90deg, #f2792f, #ff2d00);
  position: absolute;
  transform: rotate(315deg);
  /* display: flex; */
  /* align-items: center; */
  height: 250p;
  /* justify-content: center; */
  /* left: 0; */
}

.orange-scroll {
  background-color: #cf4825;
  padding: 10px;
  font-size: var(--font-size-25);
  height: 57px;
  overflow: hidden;
  transform: rotate(358deg);
  top: -44px;
  position: relative;
  z-index: 10;
}

.orange-scroll svg {
  font-size: 7px !important;
  top: -6px;
  position: relative;
}

.orange-scroll span {
  padding: 0px 30px;
  font-size: var(--font-size-27);
  text-transform: uppercase;
  font-weight: var(--font-weight-Medium);
  color: var(--color-white);
}

#scrollingText {
  overflow: hidden;

}

.experience-box {
  padding: 3rem;
  background-color: var(--color-orange);
  color: var(--color-white);
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* width: 100px; */
  /* align-items: flex-end; */
  float: inline-end;
  font-weight: var(--font-weight-SemiBold);
  bottom: 0;
  position: absolute;
  /* height: 100px; */
  right: 0;
}

.vision-mission {
  position: relative;
  z-index: 99;
}

.vision-mission .tab-content {
  color: var(--color-white);
  padding: 0rem 6rem;
}

.vision-mission .nav-pills .nav-link.active, .vision-mission .nav-pills .show>.nav-link {
  color: var(--color-orange);
  background-color: transparent;
}

.vision-mission .nav-link {
  display: block;
  padding: 0;
  color: var(--color-white);
  text-decoration: none;
  padding: 20px 90px;
  font-weight: var(--font-weight-SemiBold);
}

.vision-mission ul {
  border-bottom: 2px solid #fff;
}
.workshop-box{
margin-top: 150px;
}
.about-title {
  position: relative;
  z-index: 99;
}

.about-second .about-title .tri {
  position: absolute;
  top: -148%;
  z-index: -1;
  left: 40%;
  display: flex;
  align-items: flex-end;
  width: 36rem;
  height: 30rem;
  animation: none;
}

.about-second .about-title .tri::before {
  content: "";
  display: inline-block;
 
  background: linear-gradient(-60deg, rgba(255, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 50%);
}

.about-second .about-title .tri::after {
  content: "";
  display: inline-block;
  background: linear-gradient(-60deg, rgba(255, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 50%);
}

.about-img {
  position: relative;
  z-index: -5;
}

.about-second .about-title .tri::after {
  background: linear-gradient(60deg, #012c67 50%, rgba(0, 0, 0, 0) 50%);
  position: relative;
  left: 0px;
}

.about-second .about-title .tri::before {
  background: linear-gradient(-60deg, #012c67 50%, rgba(0, 0, 0, 0) 50%);

}

.about-second {
  position: relative;
  margin-top: -51px;
}

#counter span.percent:after {
  content: "+";
  display: inline-block;
}



.round-box .contain {
position: relative;
  text-align: center;
}

.round-box .count {
  color: var(--color-orange);
  font-weight: var(--font-weight-ExtraBold);
}

.contain {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  margin: 20px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.path-placeholder {
  position: relative;
  
  border: 2px solid var(--color-orange);
  width: 14rem;
  height: 14rem;
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.mover {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--color-white);
  animation: spin 3s infinite linear;
  position: relative;
}

.mover1 {
  margin: 0 auto 0;
  transform-origin: 74px 93px;
  position: absolute;
  left: 16%;
  top: 8%;
}

.mover2 {
  margin: 0 auto 0;
  left: -14%;
  top: 33%;
  position: absolute;
  transform-origin: 93px 15px;
}

.testimonial-upcoming-section {
  position: relative;
  background-image: url(../images/testimonial-upcoming-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-upcoming-section #scrollingText {
  height: 250px;
}

.upcoming-title {
  font-size: 200px;
  font-weight: var(--font-weight-SemiBold);
  position: absolute;
  top: -278px;
  text-transform: uppercase;
  color: var(--color-blue);
  overflow: hidden;
}

.testimonial-content .row {
  display: flex;
  align-items: center;
}

.testimonial-p {
  color: var(--color-white);
}

.testimonial-img img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.testimonial-content .title-40 {
  color: var(--color-orange);
}

.gallery-section {
  background-color: var(--color-black);
}

.gallery-img-700 {
  height: 700px !important;
}

.gallery-img-300 {
  height: 300px !important;
}

.gallery-img-400 img {
  height: 403px !important;
}

.inside-img {

  object-fit: cover;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
}

.inside-img a:hover {
  transform: scale(1.1);
}

.inside-img .title-40 {
  font-size: var(--font-size-35);
  font-weight: var(--font-weight-SemiBold);
  text-transform: uppercase;
  line-height: var(--line-height-40);
  position: absolute;
  z-index: 9;
  bottom: 0;
  background-color: #ffffff87;
  color: var(--color-black);
  padding: 15px;
  width: 100%;
  padding-left: 42px;
}

.inside-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  z-index: 0;
  position: relative;
  transition: ease all 0.5s;
  overflow: hidden;

}

.inside-img:hover img {
  transform: scale(1.05) !important;
}
.inside-img:hover .title-40{
  background-color: var(--color-orange);
}

.inside-img .title {
  padding: 15px;
  position: absolute;
  bottom: 0;
  z-index: 99;
  width: 100%;
}

/* video section */
.video-section {
  position: relative;
  background-color: var(--color-black);
  padding-top: 200px;
}

.video-content-box {
  background-color: var(--color-orange);
  padding: 4rem;
  color: var(--color-white);
  width: 30%;
  position: absolute;
  right: 0;
  top: -12%;
  z-index: 9;
}

/* footer-section */
.main-footer {
  padding: 50px 0;
  background-image: url(../images/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.footer-box{
  display: block;
}
.main-footer .title-40 {
  color: var(--color-orange);
  font-weight: var(--font-weight-SemiBold);
}

.footer-text {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}

.footer-text p, .footer-text p a {
  color: var(--color-white);
}
.footer-text p a:hover{
  color: var(--color-orange);
}


.footer-text h4.text {
  width: 25%;
  float: left;
  margin-bottom: 0;
}

.footer-text p.text {
  width: 75%;
  float: left;
  margin-bottom: 0;
}

.footer-menu a {
  font-size: var(--font-size-16);
  line-height: var(--line-height-16);
  color: var(--color-a49f9f);
  margin-bottom: 12px;
  font-family: var(--font-family-Poppins);
  display: block;
}

.footer-menu a:hover {
  color: var(--color-f1da70);
}

.footer-social a {
  display: inline-block;
  margin-left: 10px;
}

.footer-social a .svg {
  width: 20px;
  height: 20px;
  fill: var(--color-f1da70);
}

.copyright {
  padding: 20px 0;
  background-color: var(--color-blue);
  color: var(--color-white)
}
.copyright a:hover{
  
  color: var(--color-orange)
}
.copyright p {
  font-size: var(--font-size-16);
  line-height: var(--line-height-16);
}

.footer-inside-section {
  background-color: var(--color-black);
}

.footer-inside-section .footer-contact {
  display: flex;
  justify-content: end;
  height: 100%;
  align-items: center;
}

.footer-inside-section .footer-contact ul {
  display: flex;
}

.footer-inside-section .footer-contact li {
  list-style: none;
  margin-left: 64px;
}

.footer-inside-section .footer-contact a:hover {
  color: var(--color-orange);
}

.footer-inside-section .footer-social a {
  display: inline-block;
  margin-left: 30px;
  color: var(--color-white) !important;
}

/* footer-section */
/* contact-form */
.contact-form label {
  font-size: var(--font-size-22);
  line-height: var(--line-height-20);
  color: var(--color-000000);
  font-weight: var(--font-weight-Regular);
  margin-bottom: 10px;
  width: 100%;
  font-family: var(--font-family-Poppins);
}

.contact-form label span {
  color: var(--color-white);
}

.contact-form .form-control {
  font-size: var(--font-size-20);
  line-height: var(--line-height-20);
  color: var(--color-white);
  font-weight: var(--font-weight-SemiBold);
  background: transparent;
  height: 60px;
  border-radius: 0;
  border: none;
  padding: 0.5rem 0px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
  transition: ease all 0.5s;
}
.contact-form .form-control:hover{
  border-bottom: 1px solid var(--color-orange);

}
.contact-form .form-control::placeholder{
  color: var(--color-white);
}
.contact-form .form-select {
  background-image: url(../images/icons/form-select-icon.svg);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  color: var(--color-606062);
}

.contact-form textarea.form-control {
  height: 80px;
  resize: none;
}

.submit-btn {
  padding: 12px 50px;
  color: var(--color-000000);
  background: var(--linear-gradient);
  border-color: var(--color-ba8b1d);
}

/* contact-form */

/* inner-banner */
.inner-banner, .inner-banner .banner-text {
  height: 750px;
}

/* inner-banner */
/* inner-about-us */
.inner-about-left {
  position: relative;
}

.inner-about-left::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 10px;
  bottom: 10px;
  right: 0;
  background: var(--color-white);
  opacity: 1;
}

.about-bg04 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 150px;
  z-index: 1;
  background: var(--linear-gradient);
}

.inner-about-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/bg/inner-about-bg.jpg);
  opacity: 0.1;
}

/* inner-about-us */
/* mission-section */
.mission-div {
  padding: 100px 120px;
  border: solid 5px var(--color-ba8b1d);
  position: relative;
}

.mission-div img {
  position: absolute;
  left: -78.5px;
  top: 80px;
  height: 150px;
  width: 150px;
  object-fit: contain;
}

.mission-div::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 190px;
  top: 60px;
  left: -12px;
  background: var(--color-000000);
  opacity: 1;
}

.mission-right img {
  right: -78.5px;
  left: unset;
}

.mission-right::before {
  right: -12px;
  left: unset;
}

.mission-section {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.mission-bg::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  left: 50%;
  background: var(--color-000000);
  transform: translateX(-50%);
}

/* mission-section */

.service-section {
  position: relative;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 300px;
  padding-top: 100px;
}

.service-section .orange-box {
  background-color: var(--color-orange);
  padding: 5rem;
  width: 166%;
  position: relative;
  bottom: -200px;
  z-index: 0;
  display: inline-block;
  right: 0;
}

.service-section .orange-content {
  width: 55%;
  z-index: 9;
  position: relative;
}

.service-section .orange-content.orange-content-right {
  float: right;

}

.service-section .orange-box-right {
  float: right;
  bottom: 0;
  position: absolute;
  width: 70%;

}

.service-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 9;
}

.service-img img {
  z-index: 1;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 700px;
}
.service-img .reverse-box img{
  display: flex;
  flex-direction: column-reverse;
}



.upcoming-event-section {
  margin-top: -200px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upcoming-right {
  background-image: url(../images/upcoming-event.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* width: 75vw; */
  position: relative;
  right: 0;
margin-top: -150px;
  border-top-left-radius: 314px;
  border-bottom-left-radius: 314px;
  border-bottom-right-radius: 0%;
  border-top-right-radius: 0%;
  z-index: 0;
}

.upcoming-event-section .container {
  height: auto;
  align-items: center;
  z-index: 9;
  position: relative;
}

.upcoming-content {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: var(--font-weight-Bold);
  color: var(--color-white);
  flex-direction: column;
}

.testimonial-section {
  position: relative;
  margin-top: 15%;
}

/* inner-contact-bg */
.inner-contact-bg {
  background-color: var(--color-blue) !important;
  margin-top: -58px;
  z-index: -1;
  position: relative;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}


.contact-info {
  position: relative;
  z-index: 9;
  padding-bottom: 30px;
  height: 100%;
  text-align: left;
}

.contact-info img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 30px;
  margin-right: 15px;
}
.contact-text{
  padding-left: 20px;
  text-align: left;
}

.contact-text a:hover {
color: var(--color-orange) !important; }

/* .contact-info-border::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: var(--color-white);
  left: -15px;
  top: 0;
}
.contact-info-border::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: var(--color-white);
  right: -15px;
  top: 0;
} */
.contact-left {
  height: 80vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  background-attachment: fixed;
  text-align: center;
}

.contact-page-form {
  padding-top: 20px;
}

.contact-page-form .form-control {
  height: 30px;
  color: var(--color-000000);
}

.contact-title {
  font-size: 200px;
  font-weight: var(--font-weight-SemiBold);
  position: relative;
  top: 58px;
  text-transform: uppercase;
  color: var(--color-blue);
  overflow: hidden;
  left: 0;
  line-height: 175px;
  height: 187px;
  z-index: -1;
}

.map {
  height: 450px;
  width: 100%;
}

.map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

.contact-counter {
  position: relative;
}

.contact-counter::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0;
  top: 0px;
  background: var(--linear-gradient);
}

.contact-counter::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0px;
  background: var(--linear-gradient);
}

.contact-video {
  bottom: -100px;
  height: 1000px;
}

/* inner-contact-bg */
.inner-contact-bg .main-title i {
  font-size: var(--font-size-35);
}
.inner-contact-bg .contact-form {
  margin-left: 5rem;
}

video {
  display: block;
  height: auto;
  margin: auto;
  position: relative;
  width: 100%;
}

.video-wrap {
  margin: 0 auto;
  position: relative;
  width: 90%;
}

.video-wrap:after {
  border-bottom: 1px solid red;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video-enernal video {
  width: 90%;
  height: 900px;
  object-fit: cover;
}
.video-enernal1 video {
  width: 90%;
  height: 900px;
  margin-top: 100px;
  object-fit: cover;
}


















.mobile-none {
  display: block !important;
}

.desktop-none {
  display: none !important;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
  max-width: 1600px;
}

/* responsive css */
.ag-format-container {
  width: 100%;
  margin: 0 auto;
}

.ag-photo-gallery_list {
  display: -ms-grid;
  display: grid;

  grid-gap: 28px;

  -ms-grid-columns: 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr 0.9375rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;

  -ms-grid-rows: 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem 0.9375rem 22.125rem;
  grid-template-rows: 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem 42.125rem;

  margin-bottom: 65px;
}

.ag-photo-gallery_item {
  -ms-grid-column-span: 4;
  grid-column-end: span 4;

  cursor: pointer;

  overflow: hidden;



  position: relative;
}

.ag-photo-gallery_item__wide {
  -ms-grid-column-span: 7;
  grid-column-end: span 7;
}

.ag-photo-gallery_item__middle {
  -ms-grid-column-span: 5;
  grid-column-end: span 5;
}

.ag-photo-gallery_item__narrow {
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

.ag-photo-gallery_figure {
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.ag-photo-gallery_img {
  height: 100%;
  width: 100%;

  -o-object-fit: cover;
  object-fit: cover;

  -o-object-position: 50% 50%;
  object-position: 50% 50%;
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

  .ag-photo-gallery_list {
    grid-gap: 10px;

    -ms-grid-rows: 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem 0.9375rem 14rem;
    grid-template-rows: 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem 14rem;
  }
}

@media only screen and (max-width: 639px) {}

@media only screen and (max-width: 479px) {}

@media (min-width: 768px) and (max-width: 979px) {
  .ag-format-container {
    width: 750px;
  }
}

@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
}

.reveal img {

  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.reveal {
  visibility: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
}

#back-top-btn {
  display: inline-block;
  background-color: var(--color-orange);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 25px;
  right: 30px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 2px solid #fff;
}

#back-top-btn.show {
  opacity: 1;
  visibility: visible;
}

#back-top-btn svg {
  padding: 12px 15px;
}

#whatsapp {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 99;

}
#whatsapp img {
  width: 50px;
  background-color: #0b9946;
  padding: 10px;
  border-radius: 100%;
}



/* about page */
.about-page{
  margin-top: -56px;
}
.about-page {
  position: relative;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 200px;
  padding-top: 100px;
  z-index: 1;
  position: relative;
}

.about-page .orange-box {
  background-color: var(--color-orange);
  padding: 5rem;
  width: 166%;
  position: relative;
  bottom: -200px;
  z-index: 0;
  display: inline-block;
  right: 0;
}

.about-page .orange-content {
  width: 55%;
  z-index: 9;
  position: relative;
}

.about-page .orange-content.orange-content-right {
  float: right;
  height: 100%;
  overflow-y: scroll;
}

.about-page .orange-box-right {
  float: right;
  bottom: 0;
  position: absolute;
  width: 70%;

}
.about-page .orange-box-left{
  float: left;
  bottom: 0;
  position: absolute;
  width: 70%;
  left: 0;
}
.about-section-team {
  position: relative;
  background-image: url(../images/testimonial-upcoming-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about-section-team .orange-box-right {
  height: 100% !important;
  top: 25%;
  /* margin-bottom: 300px; */
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.founder-section{
  margin-bottom: 200px;
}
.founder-section .orange-box-right {
  height: 100% !important;
  top: 24%;
}

.founder-title {
  font-size: 200px;
  font-weight: var(--font-weight-SemiBold);
  position: relative;
  top: 189px;
  text-transform: uppercase;
  color: #00419c;
  overflow: hidden;
  z-index: 0;
  height: 187px;
  display: block;
  line-height: 182px;
}


.event-page .event-img{
height: 70vh;
width: 100%;
}

.sponser-box img{
  border-radius: 100%;
  margin-bottom: 30px;
}



.service-page .orange-box {
  background-color: var(--color-orange);
  padding: 5rem;
  width: 166%;
  position: relative;
  bottom: -200px;
  z-index: 0;
  display: inline-block;
  right: 0;
}

.service-page .orange-content {
  width: 55%;
  z-index: 9;
  position: relative;
}

.service-page .orange-box-right {
  float: right;
  bottom: 0;
  position: absolute;
  width: 70%;
  height: 500px;
}

.service-page .orange-content-right {
  float: right;

}

.service-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 9;
}

.service-img img {
  z-index: 1;
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 700px;
}
.service-img .reverse-box img{
  display: flex;
  flex-direction: column-reverse;
}


#style-4::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar
{
	width: 2px;
	background-color: #F5F5F5;
}

#style-4::-webkit-scrollbar-thumb
{
	background-color: #ffffff;
}

.ambassador-info {
  background-attachment: fixed;
  background-image: url(../images/brand-ambassdor/big-size.jpg);
  width: 100%;
  padding: 5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  z-index: 1;
  position: relative;
}

.ambassador-box {
  background-color: #002962f5;
  padding: 5rem;
  margin-top: 20%;
  position: relative;
}


.ambassador-info .contact-title {
  font-size: 186px;
 
}

input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.05em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  margin-right: 4px;
}

input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: var(--color-orange);
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

/* input[type="radio"]:focus {
  outline: max(2px, 0.15em) solid currentColor;
  outline-offset: max(2px, 0.15em);
} */

::placeholder{
  font-size:var(--font-size-14);
}

.ex-font {
  font-size: 12px;
  position: absolute;
  margin-top: -20px;
  color: #ccc;
  display: block;
}
.info-text{
  padding: 0px 13px;
    background-color: aliceblue;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    color: black;
}
.listing li {
  list-style-type: disclosure-closed;
  margin-left: 19px;
  font-size: 16px;
}


.upload__box p{
  margin-bottom: 0;
}
.upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__btn {
  display: inline-block;
  font-weight: 600;
  color: #fff;
  text-align: center;
  min-width: 116px;
  padding: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid;
  background-color: #4045ba;
  border-color: #4045ba;
  border-radius: 10px;
  line-height: 26px;
  font-size: 14px;
  max-width: 430px;
  text-align: center;
  padding: 5px 15px;
}
.upload__btn:hover {
  background-color: var(--color-white);
  color: #4045ba;
  transition: all 0.3s ease;
}
.upload__btn-box {
  margin-bottom: 10px;
}
.upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.upload__img-box {
  width: 200px;
  padding: 0 10px;
  margin-bottom: 12px;
}
.upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}

.img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
}

:root {
  --btn-border: 1px solid rgba(255, 255, 255, 0.2);
  --btn-bg: transparent;
  --btn-shadow: 1px 1px 25px 10px rgba(255, 255, 255, 0.5);
  --btn-text-color: #f4f4f4;
  --shine-degree: 120deg;
  --shine-color: rgba(255, 255, 255, 0.533);
  --shine-effect: linear-gradient(
    var(--shine-degree),
    transparent,
    var(--shine-color),
    transparent
  );
  --shine-transition: all 0.65s ease-in-out;
}

.btn-ani {
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  padding: 0 !important;
  border-radius: 4px;
  text-decoration: none;
  border: var(--btn-border);
  color: var(--btn-text-color);
  background: var(--btn-bg);
}
.btn-ani a:hover{
  background: var(--color-blue);

}
.btn-ani::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--shine-effect);
}
.btn-anim::before {
  -webkit-animation: shine 5s ease-in-out infinite;
          animation: shine 5s ease-in-out infinite;
          z-index: 9;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    transition-property: left;
  }
  11.5044247788%, 100% {
    left: 100%;
    transition-property: left;
  }
}