@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.header0 {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.header0 h5 {
  position: relative;
  font-size: 27px;
  line-height: 35px;
  color: #000;
  letter-spacing: 2px;
  display: inline-flex;
}

span.header0-ex {
  position: relative;
  width: 20%;
}

span.header0-ex::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  border-top: 1px solid #ff0002;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

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

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 40px;
  border: 1px solid #0000;
  background: linear-gradient(
    90deg,
    rgba(255, 2, 3, 1) 0%,
    rgba(246, 90, 91, 1) 100%
  );
  overflow: hidden;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  border: 1px solid #fff;
  border-radius: 5px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 100px;
  background-color: #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover::before {
  height: 110%;
  width: 110%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-family: "Poppins", serif;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
}

.theme1 span.theme1-icon-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon-ex {
  height: 25px;
  width: 25px;
  padding: 7px;
  background-color: red;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon-ex img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(0%)
    hue-rotate(70deg) brightness(108%) contrast(108%);
}

.theme2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-size: 16px;
  line-height: 1;
  color: #fff;
  font-family: "Poppins";
  height: 100%;
}

.theme3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 5px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-family: "Poppins";
  height: 100%;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "akira_jimbo";
  font-size: 95px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

h2 {
  font-family: "akira_jimbo";
  font-size: 55px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "akira_jimbo";
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "akira_jimbo";
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "akira_jimbo";
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "akira_jimbo";
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", serif;
  font-weight: 400;
  margin: 0;
  opacity: 0.7;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Sec Css Starts*/

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  padding: 30px 0 0 0;
}
.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 50px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  text-transform: capitalize;
  font-size: 13px;
  line-height: 25px;
  border-radius: 5px;
  overflow: hidden;
  font-family: "Poppins";
  color: #fff;
  font-weight: 400;
  height: 100%;
  z-index: 9;
  transition: ease-in;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 0;
  z-index: -1;
  background-color: #ff0405;
  transition: ease-in;
  transition-duration: 0.5s;
}

/* .menu-box ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  margin: 0 auto;
  background-color: #ff451b;
  transition: ease-in;
  transition-duration: 0.5s;
} */

.menu-box ul li a:hover::before {
  height: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* .menu-box ul li a:hover::after {
  height: 3px;
  transition: ease-out;
  transition-duration: 0.5s;
} */

.menu-box ul li.active a::before {
  height: 100%;
}

.menu-box ul li.active a::after {
  height: 3px;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: absolute;
  z-index: 1000;
  background-color: #000;
  left: 0;
  width: 230px;
  text-align: left;
  top: 48px;
  height: auto;
  gap: 0;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
}

.menu-box li > ul > li > a {
  border: none;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
  width: 100%;
  height: 40px;
  padding: 0 10px;
  display: flex !important;
  align-items: center;
  justify-content: start;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
  border-radius: 0;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  border-radius: 5px;
  overflow: hidden;
}

/*Header Sec Css Ends*/

/*Banner Sec Css Starts*/

.main-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  /* background: rgba(0, 0, 0, 0.1); */
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.carousel-item {
  height: 130vh;
  overflow: hidden;
}

.carousel-caption .row {
  position: relative;
}

.banner-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.banner-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.banner-txt .header0 h5 {
  color: #fff;
}

.banner-txt p {
  color: #fff;
}

.banner-txt h6 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
}

img.ban1 {
  position: absolute;
  top: -20%;
  left: 38%;
  height: 900px;
  width: 850px;
  object-fit: contain;
}

img.ban-ex {
  position: absolute;
  top: -18%;
  left: 50%;
  height: 750px;
  width: 750px;
  object-fit: contain;
}

.ban-scroll {
  position: absolute;
  bottom: 0;
  left: 2%;
  max-width: 20%;
  display: flex;
  align-items: start;
  justify-content: start;
  height: 140px;
}

.ban-scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-right: 1px solid #fff;
  height: 45%;
}

.ban-scroll a {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-family: "akira_jimbo";
  text-transform: capitalize;
  writing-mode: sideways-lr;
  letter-spacing: 3px;
}

/*Banner Sec Css Ends*/

/*Inner Banner Sec Css Starts*/

section.inner-banner .carousel-item {
  height: 550px;
}

/*Inner Banner Sec Css Ends*/

/*About Us Sec Css Starts*/

.about-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 385px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-card-box {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.about-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 50%;
}

.about-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  background: linear-gradient(
    90deg,
    rgba(255, 2, 3, 1) 0%,
    rgba(246, 90, 91, 1) 100%
  );
  border-radius: 5px;
  overflow: hidden;
  padding: 25px;
}

.about-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.about-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.about-card-txt h5 {
  font-size: 32px;
  line-height: 40px;
}

/*About Us Sec Css Ends*/

/*Programs Sec Css Starts*/

section.programs-sec {
  padding: 0 0 80px 0;
}

.programs-heading-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px 0;
}

.programs-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* gap: 10px; */
  position: relative;
  height: 330px;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.programs-card-main:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.programs-card-main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0;
  width: 0;
  border-radius: 100px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0) 0%,
    rgb(255 4 5 / 71%) 100%
  );
  transition: ease-in;
  transition-duration: 0.5s;
}

.programs-card-main:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.programs-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.programs-card-txt-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  width: 80%;
  z-index: 999;
}

.programs-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
}

.programs-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.programs-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.programs-card-txt h5 {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

.programs-card-txt p {
  color: #fff;
}

/*Programs Sec Css Ends*/

/*Choose Sec Css Starts*/

section.choose-sec {
  background-image: url("../images/choose-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

section.choose-sec .row {
  position: relative;
}

.choose-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.choose-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
  width: 100%;
}

.choose-txt-main p {
  width: 80%;
  color: #fff;
}

.choose-bar-main {
  width: 100%;
  height: 10px;
  border-radius: 0;
  overflow: hidden;
}

.choose-bar-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 80%;
}

.choose-txt-bar-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.choose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.choose-txt-main .header0 h5 {
  color: #fff;
}

.choose-txt-main h2 {
  color: #fff;
}

.choose-bar-box .choose-txt-bar-main .choose-txt-main .choose-txt p {
  color: #fff;
  width: 100%;
}

.choose-head h5 {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

.choose-head h6 {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

.choose-bar .progress {
  height: 10px;
  border-radius: 0;
}

.choose-bar .progress .progress-bar {
  background-color: #ff0002;
}

.choose-img {
  position: absolute;
  top: -10%;
  left: 55%;
  height: 760px;
  width: 650px;
}

.choose-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
  height: 100%;
  width: 100%;
}

/*Choose Sec Css Ends*/

/*Gallery Sec Css Starts*/

section.gallery-sec {
  padding: 80px 0 0 0;
  height: 1000px;
}

.gallery-heading .header0 {
  justify-content: center;
}

.gallery-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 50%;
  margin: 0 auto 50px auto;
  text-align: center;
}

.gallery_slider .slick-active,
.gallery_slider .slick-slide {
  opacity: 1;
}

.gallery_slider .slick-slide {
  margin: 0px 5px;
}

.gallery-card-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 570px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.gallery-card-main a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.gallery-card-main a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

section.inner-gallery-sec .gallery-card-main a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main a:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main .gallery-card-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main a p {
  text-align: center;
  color: #fff;
  opacity: 1;
  text-transform: uppercase;
  font-family: "akira_jimbo";
  letter-spacing: 1px;
  font-size: 25px;
  line-height: 30px;
  width: 100%;
  height: 100%;
  scale: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main a:hover p {
  scale: 1;
  transition: ease-out;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  background: radial-gradient(
    circle,
    rgb(255 4 5 / 29%) 0%,
    rgb(255 4 5 / 85%) 100%
  );
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

section.inner-gallery-sec .gallery-card-main a:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Gallery Sec Css Ends*/

/*Video Sec Css Ends*/

.video-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin: 0 0 50px 0;
}

.video-card-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  /* margin: 0 0 30px 0; */
}

.video-card-main img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video-card-main a img.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  padding: 35px;
  object-fit: contain;
  background: linear-gradient(
    90deg,
    rgba(255, 2, 3, 1) 0%,
    rgba(246, 90, 91, 1) 100%
  );
  border-radius: 100px;
}

.video-card-head h4 {
  font-size: 30px;
  line-height: 40px;
}

.video-card-main iframe {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

/*Video Sec Css Ends*/

/*Testimonial Sec Css Starts*/

.testimonial-heading-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px 0;
}

.testimonial-heading.heading0 {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.testimonial_sldier .slick-active {
  opacity: 1;
}

.testimonial_sldier .slick-slide {
  opacity: 1;
}

.testimonial-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 40px 20px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #0000004a;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testimonial_sldier .slick-current .testimonial-card-main {
  border: 1px solid #0000;
}

.testimonial-card-main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 2, 3, 1) 0%,
    rgba(246, 90, 91, 1) 100%
  );
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial_sldier .slick-current .testimonial-card-main::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-star ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
  position: relative;
  z-index: 9;
}

.testimonial-card-star ul li a i {
  color: #f9ae0e;
}

.testimonial-card-txt {
  position: relative;
  z-index: 9;
}

.testimonial_sldier .slick-current .testimonial-card-txt p {
  color: #fff;
}

.testimonial-card-user-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  position: relative;
  z-index: 9;
}

.testimonial-card-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  border-radius: 100px;
  overflow: hidden;
}

.testimonial-card-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial_sldier .slick-current .testimonial-card-user-txt h5 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-user-txt p {
  font-size: 12px;
  line-height: 1;
}

.testimonial_sldier .slick-current .testimonial-card-user-txt p {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Testimonial Sec Css Ends*/

/*Footer Css Starts*/

.footer-main {
  background-image: url("../images/footer-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.footer-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 165px;
  width: 165px;
}

.footer-logo a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer-link-head {
  padding: 0;
}

.footer-link-wrap {
  border: 1px solid #ffffff8a;
  border-right: none;
  border-left: none;
}

.footer-link-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 50px;
  height: 100%;
}

.footer-link-head {
  padding: 50px 50px 50px 0;
}

.footer-head h5 {
  font-size: 30px;
  line-height: 35px;
  color: #fff;
}

.footer-txt p {
  color: #fff;
  opacity: 1;
}

.footer-link ul {
  column-count: 2;
  gap: 20px;
}

.footer-link ul li {
  margin: 0 0 20px 0;
}

.footer-contact .footer-link ul,
.footer-follow .footer-link ul {
  column-count: 1;
  gap: 20px;
}

.footer-link ul li a {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  opacity: 0.7;
  font-weight: 300;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.footer-link ul li a:hover {
  opacity: 1;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.footer-contact {
  border: 1px solid #ffffff8a;
  border-top: unset;
  border-bottom: unset;
}

.footer-link-ex {
  border: 1px solid #ffffff8a;
  border-top: unset;
  border-bottom: unset;
  border-right: unset;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.footer-copy p {
  color: #fff;
  opacity: 1;
}

/*Footer Css Ends*/

/*About Us Page Css Starts*/

section.inner-about-sec .about-txt-bottom {
  margin: 30px 0;
}

/*About Us Page Css Ends*/

/*Programs Page Css Starts*/

section.inner-programs-sec {
  padding: 80px 0;
}

/*Programs Page Css Ends*/

/*Programs Detail Page Css Starts*/

.program-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 545px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.program-detail-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.program-detail-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.program-detail-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.program-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.program-detail-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*Programs Detail Page Css Ends*/

/*Testimonial Page Css Starts*/

.testimonial-card-main::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 2, 3, 1) 0%,
    rgba(246, 90, 91, 1) 100%
  );
  border-radius: 100px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-user-txt h5 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-user-txt p {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testimonial-card-main:hover .testimonial-card-txt p {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

section.inner-testimonial-sec .testimonial-card-main {
  margin: 20px 0;
}

/*Testimonial Page Css Ends*/

/*Tournaments Page Css Starts*/

.tournaments-heading {
  margin: 0 0 50px 0;
}

.tournaments-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin: 0 0 30px 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #00000029;
  box-shadow: 0 0 20px 0 #0000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.tournaments-card-main:hover {
  border: 1px solid #0000;
  box-shadow: 0 0 20px 0 #00000038;
  transition: ease-out;
  transition-duration: 0.5s;
}

.tournaments-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 315px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.tournaments-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tournaments-card-txt-main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.tournaments-card-top {
  width: 100%;
}

.tournaments-card-top ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tournaments-card-top-txt p {
  color: #7c7c7c;
  font-size: 12px;
  line-height: 25px;
}

.tournaments-card-mid-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.tournaments-card-mid-txt h5 {
  font-size: 24px;
  line-height: 1;
}

/*Tournaments Page Css Ends*/

/*Tournaments Detail Page Css Starts*/

.tournament-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 455px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.tournament-detail-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tournament-detail-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.tournament-detail-txt ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 100px;
}

.tournament-detail-bottom-txt {
  margin: 50px 0 0 0;
}

/*Tournaments Detail Page Css Ends*/

/*Gallery Page Css Starts*/

section.inner-gallery-sec {
  height: 100%;
  padding: 80px 0;
}

section.inner-gallery-sec .gallery-card-wrap .gallery-card-main {
  height: 275px;
}

section.inner-gallery-sec .gallery-card-main {
  height: 100%;
}

section.inner-gallery-sec .gallery-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

section.inner-gallery-sec .gallery-card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}

/*Gallery Page Css Ends*/

/*Contact Us Page Css Starts*/

section.contact .container {
  width: 80%;
  margin: 0 auto;
}

.contact {
  padding: 100px 0;
}

.contact_right {
  padding: 30px;
  background-color: #f5f5f5;
}

.contact_right h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 0 20px 0;
}

.contact_right form input,
.contact_right form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #0000;
  font-size: 16px;
  background-color: #ffff;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #000000;
}

.contact_right form input::placeholder,
.contact_right form textarea::placeholder {
  color: #000000;
}

.contact_right form textarea {
  resize: none;
  min-height: 170px;
}

.contact_left h2 {
  font-size: 45px;
  line-height: 1;
}

.contact_left p {
  color: #000000;
  font-size: 15px;
}

.con_icon {
  color: #000;
  font-size: 25px;
}
.con_txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.con_txt h6 {
  font-size: 25px;
  line-height: 1;
}

.con_txt span {
  color: #403f3f;
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.contact_left ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.contact_left {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
}

.contact_left ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Contact Us Page Css Ends*/

/*Trial Page Css Starts*/

.trial-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 59%;
  margin: 0 auto 50px auto;
  text-align: center;
}

.trial-form-heading h5 {
  font-size: 30px;
  line-height: 35px;
  margin: 0 0 20px 0;
}

.trial-form-input {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.trial-form-input input,
.trial-form-input textarea {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  color: #000;
  border: 1px solid #00000026;
  height: 50px;
  outline: none;
  border-radius: 5px;
  padding: 0 20px;
  margin: 0 0 20px 0;
}

.trial-form-input input::placeholder,
.trial-form-input textarea::placeholder {
  font-size: 14px;
  line-height: 1;
  color: #909091;
  text-transform: capitalize;
  font-weight: 500;
}

.trial-form-input textarea {
  resize: none;
  height: 150px;
  padding: 20px;
}

.trial-form-input textarea::placeholder {
  position: absolute;
  bottom: 15%;
  left: 2%;
}

.trial-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0 0 0;
}

.trial-form-dt-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trial-form-dt-main .trial-form-input {
  display: none;
}

.dt-active .trial-form-input {
  display: flex;
}

.trial-form-dt-main .trial-form-dt-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #00000026;
  height: 50px;
  border-radius: 5px;
  padding: 0 20px;
  margin: 0 0 20px 0;
}

.trial-form-dt-main.trial-form-dt-main .trial-form-dt-txt h6 {
  font-family: "Poppins", ui-serif;
  font-size: 14px;
  line-height: 1;
  color: #909091;
  text-transform: capitalize;
  font-weight: 500;
}

.dt-active .trial-form-dt-txt {
  display: none;
}

/*Trial Page Css Ends*/

/*Link Page Css Starts*/

.link-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  text-align: center;
}

.link-card-icon {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 300px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.link-card-icon a {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 100%;
  width: 100%;
}

.link-card-icon a img {
  display: flex;
  align-items: start;
  justify-content: start;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.link-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.link-card-txt a h5 {
  font-size: 30px;
  line-height: 35px;
  text-align: center;
}

.link-card-txt ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.link-card-txt ul li p {
  opacity: 1;
  color: #000;
  text-transform: capitalize;
}

/*Link Page Css Ends*/

body{
     overflow-x: hidden;
}
