@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-color: #133e0a;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: var(--black);
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1440px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

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

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  background-color: var(--black);
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 0.5rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--white);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  margin-left: 1.5rem;
}
.menuWrap {
  margin-left: auto;
}
.menuWrap .topMenu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 2rem;
}

.menuWrap .topMenu form .form-group {
  display: flex;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid var(--white);
  justify-content: space-between;
  margin-right: 5rem;
}
.menuWrap .topMenu form input {
  background-color: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  outline: none;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 300;
}
.menuWrap .topMenu form button {
  background-color: transparent;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--white);
  outline: none;
  height: 100%;
}
.menuWrap .topMenu > li a {
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
  position: relative;
}
.menuWrap .topMenu > li a:hover {
  color: var(--theme-color);
}
.menuWrap .topMenu > li > a > span {
  position: absolute;
  display: grid;
  place-items: center;
  height: 15px;
  width: 15px;
  font-size: 9px;
  border-radius: 50%;
  color: var(--white);
  background-color: #ca2b28;
  position: absolute;
  top: 0;
  right: -0.25rem;
}

/* Menu CSS Start */

.navigationMenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  max-width: 425px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.navigationMenu.active {
  pointer-events: visible;
}

.navigationMenu .revealer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background-color: var(--white);
  z-index: 2;
}
.trigger h3 {
  color: var(--white);
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.trigger {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 11;
  height: 22px;
  width: 40px;
  border: 0;
  outline: none;
  background-color: transparent;
}
.trigger:focus,
.trigger:active {
  outline: none;
}
.trigger.active .top {
  transform: translateY(12px) translateX(0) rotate(45deg);
  background: var(--black);
  right: 0;
}
.trigger.active .middle {
  opacity: 0;
  background: var(--black);
}
.trigger.active .bottom {
  transform: translateY(-3px) translateX(0) rotate(-45deg);
  background: var(--black);
  /* width: 35px; */
  right: 0;
}
.trigger span {
  background: var(--white);
  border: none;
  height: 2px;
  width: 40px;
  position: absolute;
  top: 12px;
  right: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.trigger span:nth-of-type(2) {
  top: 19px;
  width: 35px;
  right: 5px;
}
.trigger span:nth-of-type(3) {
  top: 26px;
  width: 40px;
}
.navigationMenu .menu-wrapper {
  background-color: var(--theme-color);
}
.navigationMenu .menu {
  position: relative;
  padding: 2rem;
  margin: 0;
  height: inherit;
  display: flex;
  justify-content: center;
  flex-direction: column;
  list-style-type: none;
}
.navigationMenu .menu li a {
  font-size: 1.5rem;
  text-decoration: none;
  padding: 10px;
  display: inline-flex;
  justify-content: flex-start;
  text-transform: uppercase;
  align-items: center;
  font-weight: 900;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.navigationMenu .menu li a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  width: 0;
  margin: auto;
  display: inline-flex;
  height: 0;
  border: 2px solid #ca2b28;
  border-radius: 100px;
  transition: all ease 0.25s;
}
.navigationMenu .menu li a.active::after,
.navigationMenu .menu li a:hover::after {
  opacity: 1;
  left: 0;
  width: 100%;
}
/* Menu CSS END */

.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider h2 {
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
  font-family: "Bebas Neue", cursive;
}
.main-slider h2 span {
  display: block;
  font-size: 2.1875rem;
  font-weight: 400;
}
.main-slider p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.667;
}
.main-slider .themeBtn {
  background-color: #ca2b28;
  color: var(--white);
}
.main-slider .themeBtn:hover {
  background-color: var(--theme-color);
}
.secHeading {
  font-size: 4.375rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.themeBtn {
  background-color: var(--theme-color);
  color: var(--white);
  font-size: 1.125rem;
  line-height: 1;
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.75em 1em;
  text-transform: uppercase;
}
.themeBtn:hover {
  background-color: #ca2b28;
  color: var(--white);
}
.spielSec {
  padding: 0;
}
.spielCard {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  transition: 0.3s ease-in-out;
  padding: 4rem 2rem 3rem;
  flex-direction: column;
  background-color: #252525;
}
.spielCard h2 {
  font-size: 1.9375rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
}
.spielCard h3 {
  font-size: 1.525rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.spielCard h4 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.667;
  margin: 0;
}
.spielCard p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.502);
  line-height: 1;
  font-weight: 500;
}
.spielCard ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.spielCard ul li a {
  font-size: 1.5rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.spielCard ul li a span {
  display: block;
}

.spielCard:hover {
  background-color: var(--theme-color);
  transform: scale(1.05);
  z-index: 1;
}

/* eventSection */
.eventSection {
  padding-bottom: 0;
}

.event-card {
  position: relative;
  background-color: var(--black);
}
.event-card img {
  width: 100%;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
.event-card .content {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  top: 0rem;
  right: 0rem;
  padding: 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  transition: 0.3s ease-in-out;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}
.event-card .content h3 {
  font-size: 3.125rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  text-decoration: underline;
  text-transform: uppercase;
  line-height: 1.861;
}
.event-card:hover img {
  opacity: 1;
}
.event-card:hover .content {
  transform-origin: top;
  transform: scaleY(1);
}

/* alumniSection */
.alumniSection {
  background: url(../images/alumniBg.jpg) top center/auto no-repeat;
  padding-bottom: 0;
}

.alumniCard {
  background-color: var(--white);
  text-align: center;
  padding: 3rem;
  margin: 0.5rem;
}
.alumniCard h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 1.5rem;
  color: var(--black);
}
.alumniCard p {
  color: #828282;
  line-height: 1.389;
}

.alumniSection .slick-prev::before,
.alumniSection .slick-next::before {
  display: none;
}
.alumniSection .slick-prev {
  width: 100px;
  z-index: 1;
  left: -4rem;
}
.alumniSection .slick-next {
  width: 100px;
  z-index: 1;
  right: -4rem;
}
.alumniSection .slick-prev:hover,
.alumniSection .slick-next:hover {
  transform: scale(1.125);
}

.sponsorSection .secHeading {
  color: var(--white);
}
.sponsorWrap {
  display: grid;
  text-align: center;
  place-items: center;
}

/* Begin: Instagram */
.instaCard {
  position: relative;
}
.instaCard .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  transform-origin: center;
  transform: scale(0);
  background-color: rgba(0, 0, 0, 0.4);
}
.instaCard a {
  font-size: 4rem;
  color: var(--white);
}
.instaCard:hover .content {
  transform: scale(1);
}

/* END: Instagram */

/* Begin: footer */

footer {
  background: url(../images/footerBg.png) right center/auto no-repeat;
  padding-top: 6em;
  position: relative;
}
footer h3 {
  font-size: 2.1875rem;
  font-family: "Bebas Neue", cursive;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.5rem;
}
footer .links,
footer .contInfo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-flow: column;
  gap: 1.3rem 0;
}

footer .contInfo {
  gap: 2rem 0;
}

footer .links li a,
footer .contInfo li a {
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  font-size: 1rem;
}

footer .contInfo li a {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  line-height: 1.5;
}

footer .contInfo li a span {
  display: block;
  text-transform: none;
}

footer .contInfo li a strong {
  text-transform: uppercase;
  font-weight: 500;
}

footer .links li a:hover,
footer .links li a:focus {
  color: var(--theme-color);
}

.copyRight {
  border-top: 1px solid #707070;
  padding: 2em 0;
  margin-top: 5em;
  align-items: center;
}

.copyRight p {
  margin: 0;
  font-size: 1rem;
}

.footerSocial {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 0 6px;
}

.footerSocial a {
  font-size: 1rem;
  color: #b2b2b2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #b2b2b2;
  width: 46px;
  height: 46px;
}

.footerSocial a:hover {
  background-color: #ca2b28;
  color: var(--white);
}

.copyRight .links {
  display: flex;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
}

.copyRight .links li a {
  color: var(--white);
  font-size: 1rem;
  padding: 0 1rem;
}

.copyRight .links li + li {
  border-left: 1px solid var(--white);
}

.abtImg figure {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 1.4rem;
}

.abtImg figure .one {
  width: 35%;
}

.abtImg figure .two {
  width: 60%;
}

.abtImg figure .thre {
  width: 100%;
}

.abtSec {
  padding: 6rem 0;
  background: url(../images/bginner.png) bottom center/cover no-repeat;
}

.subHeading {
  font-size: 1.5625rem;
  text-transform: uppercase;
  margin: 0;
}

.abtContent {
  margin-right: -65%;
  margin-top: -15px;
}

.abtContent .sectionHeading {
  margin: 0 0 0;
  font-size: 2.5rem;
}

.abtContent p {
  color: #828282;
  margin: 0 0 1.5rem;
}
.team h3 span {
  font-size: 3.75;
  font-weight: 200;
  color: #ffffff;
}

.puppiesSec .secHeading {
  color: var(--white);
}

.evntcard {
  margin-bottom: 2rem;
}
.evntcard .content {
  padding: 1rem;
  background: var(--white);
}
.evntcard .content h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.28;
}
.evntcard .content p {
  font-size: 16px;
  color: #828282;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.evntcard .btm-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 0;
  border-top: 15px solid var(--theme-color);
}
.evntcard .btm-wrap h4 {
  color: var(--theme-color);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.evntcard .btm-wrap h4 span {
  font-size: 1rem;
  font-weight: 400;
}
.contact-sec {
  padding: 6rem 0;
  background: url(../images/bginner.png) bottom center/cover no-repeat;
}

.contact-sec .landingForm {
  position: relative;
  z-index: 1;
}

#signupFormResult {
  z-index: 2;
}

.contact-sec h2 {
  font-size: 3.4375rem;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}

.contact-sec .input-cont {
  background-color: #fff;
  border-radius: 5px;
  height: 55px;
  position: relative;
}

.contact-sec .input-cont.h-auto i {
  top: 10px;
  transform: translateY(0%);
}

.contact-sec .input-cont i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
}

.contact-sec .input-cont input,
.contact-sec .input-cont textarea,
.contact-sec .input-cont select {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  padding-left: 35px;
}

.contact-sec .input-cont input:focus,
.contact-sec .input-cont textarea:focus,
.contact-sec .input-cont select {
  outline: none;
  box-shadow: none;
}

.contact-sec .input-cont input::placeholder,
.contact-sec .input-cont textarea::placeholder {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #000;
}
.contact-sec .themeBtn {
  border: 0;
  padding: 1em 3em;
}
.contactWrap {
  padding: 3rem 5rem;
  border-radius: 10px;
  background-color: #181818;
}
.ftrCal {
  text-align: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.ftrCal:hover span {
  background: var(--secondry);
  border-color: var(--secondry);
}

.ftrCal:hover span i {
  color: #fff;
}

.ftrCal span {
  border-radius: 50%;
  box-shadow: 0px 21px 20px 0px rgb(45 46 55 / 50%);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: var(--white);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #303030;
}

.ftrCal span i {
  color: var(--white);
  font-size: 2.2rem;
}

.ftrCal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 1rem 0 0.7rem;
  text-transform: capitalize;
}

.ftrCal a {
  font-size: 1rem;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.ftrCal p {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.subform {
  width: 100%;
  display: flex;
  align-items: center;
  /* border: 1px solid var(--theme-color); */
  border-radius: 0;
  margin: 0.5rem 0;
  height: 75px;
  overflow: hidden;
  background-color: var(--white);
}
.subform input {
  width: 100%;
  border: 0;
  background-color: transparent;
  padding-left: 2rem;
  color: var(--white);
  outline: none;
  font-size: 1.4rem;
  height: 100%;
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none !important;
}
.subform input::placeholder {
  font-size: 1rem;
  color: #a8acb3;
}
.subform input:focus {
  background-color: #0a0a0a;
  color: var(--white);
}
.subform button {
  background: #ca2b28;
  color: var(--white);
  border: none;
  font-size: 1rem;
  height: 100%;
  width: 250px;
  text-transform: uppercase;
  outline: none;
  padding: 0.9375rem 3rem;
}
.subform button:hover {
  background-color: var(--black);
  color: var(--theme-color);
}
.team-sec h3 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  line-height: 3.367;
}
.team-sec h3 span {
  font-size: 3.75rem;
  font-weight: 100;
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-right: 0.75rem;
  border-bottom: 2px solid var(--theme-color);
  line-height: 1;
  transform: translateY(-15px);
}

.videoImg {
  position: relative;
  display: block;
}
.videoImg span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--theme-color);
}
