/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'BricolageGrotesque-ExtraBold';
  src: url('../fonts/Bricolage_Grotesque/static/BricolageGrotesque-ExtraBold.ttf');
}

@font-face {
  font-family: 'PlusJakartaSans-Medium';
  src: url('../fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Medium.ttf');
}

@font-face {
  font-family: 'PlusJakartaSans-Bold';
  src: url('../fonts/Plus_Jakarta_Sans/static/PlusJakartaSans-Bold.ttf');
}

@font-face {
  font-family: 'Inter_18pt-Bold';
  src: url('../fonts/Inter/static/Inter_18pt-Bold.ttf');
}

@font-face {
  font-family: 'Inter_18pt-SemiBold';
  src: url('../fonts/Inter/static/Inter_18pt-SemiBold.ttf');
}

@font-face {
  font-family: 'Inter_18pt-Regular';
  src: url('../fonts/Inter/static/Inter_18pt-Regular.ttf');
}

@font-face {
  font-family: 'Inter_18pt-Medium';
  src: url('../fonts/Inter/static/Inter_18pt-Medium.ttf');
}

body {
  font-family: 'Inter_18pt-Regular';
  color: #3F3B67;
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover {
  color: #6aa3d5;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter_18pt-SemiBold';
}

.ellipse {
  position: absolute;
  margin-top: -100px;
}

@media (max-width: 768px) {
  .ellipse {
    margin-top: 60px;
    margin-left: -60px;
    width: 60%;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 1;
  background: #0051CE;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3d74c7;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 1s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-inner-pages {
  background: transparent;
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0px 12px 16px 0px #a7a7a726;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 70px;
}

@media (max-width: 992px) {
  #header {
    border: 0;
  }
}

@media (max-width: 768px) {
  #header .logo img {
    max-height: 56px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'PlusJakartaSans-Medium';
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar.navbar-scrolled a {
  color: #000;
}

.navbar a.contact {
  font-family: 'PlusJakartaSans-Bold';
  background: #fff;
  color: #0051CE;
  border-radius: 50px;
  padding: 10px 15px;
  margin-left: 40px;
}

.navbar a.contact.contact-scrolled {
  font-family: 'PlusJakartaSans-Bold';
  background: #0051CE;
  color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
}

.navbar a:hover,
.navbar a.active:not(.contact),
.navbar a.active:focus:not(.contact),
.navbar li:hover>a:not(.contact) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.navbar.navbar-scrolled a:hover,
.navbar.navbar-scrolled a.active:not(.contact),
.navbar.navbar-scrolled a.active:focus:not(.contact),
.navbar.navbar-scrolled li:hover>a:not(.contact) {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.navbar a.contact:hover {
  color: #0051CE;
  text-decoration: none;
}

.navbar.navbar-scrolled a.contact:hover {
  color: #fff;
  text-decoration: none;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.mobile-nav-toggle-scrolled {
  color: #000;
}

.mobile-nav-toggle.bi-x {
  color: #000;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 25px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #394047;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #428bca;
}

.navbar-mobile img {
  height: 56px;
}

.navbar-mobile .nav-contact {
  position: fixed;
  bottom: 30px;
  width: 100%;
}

.navbar-mobile .nav-contact a.contact {
  background: #0051CE;
  color: #fff;
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.navbar-mobile .nav-contact a.contact span {
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0px;
  left: 50px;
  right: 50px;
}

/* #hero .container {} */

#hero span {
  background: #0D0D0D45;
  color: #fff;
  border-radius: 50px;
  padding: 15px 10px;
  font-size: 16px;
}

#hero .news {
  background: #fff;
  color: #000;
  padding: 5px 10px;
  margin-right: 10px;
}

#hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-family: 'BricolageGrotesque-ExtraBold';
  font-size: 75px;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #000;
  font-size: 20px;
}

#hero p b {
  font-family: 'Inter_18pt-Bold';
  font-weight: bold;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: left top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .btn-get-started {
  font-family: 'PlusJakartaSans-Bold';
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 50px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  color: #0051CE;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #fff;
}

#hero #contact {
  background: transparent;
  border: 1px solid;
  color: #1D1942;
  margin-left: 30px;
}

#hero .btn-get-started:hover,
#hero #contact:hover {
  color: #5697d0;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 52px;
  }

  #hero span {
    font-size: 13px;
  }

  #hero p {
    font-size: 18px;
  }

  #hero .btn-get-started {
    font-size: 14px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media (max-width: 576px) {
  #hero .carousel-container {
    left: 10px;
    right: 10px;
  }

  #hero span {
    font-size: 10px;
  }
}

@media (max-width:469px) {
  #hero .btn-get-started {
    width: 100%;
    margin: 10px 0 10px 0;
    text-align: center;
    font-size: 12px;
  }

  #hero #contact {
    margin-left: 0;
  }
}

@media (max-width:450px) {
  #hero span {
    display: flex;
    padding: 5px;
  }

  #hero .news {
    padding: 7px 10px;
    font-size: 11px;
  }

  #hero h1 {
    font-size: 36px;
  }

  #hero p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-family: 'Inter_18pt-SemiBold';
  font-size: 18px;
  color: #0051CE;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 16px;
  }
}

@media(max-width:450px) {
  section {
    padding: 40px 0;
  }
}

/*--------------------------------------------------------------
# Our Partners
--------------------------------------------------------------*/
.ourPartners {
  text-align: center;
}

.ourPartners p {
  font-size: 20px;
}

.ourPartners .card {
  border: none;
}

.ourPartners .club {
  width: 74px;
}

@media (max-width: 768px) {
  .ourPartners p {
    font-size: 16px;
  }

  .ourPartners .club {
    width: 70px;
  }
}

@media (max-width: 576px) {
  .ourPartners p {
    font-size: 15px;
  }

  .ourPartners .club {
    width: 62px;
  }
}

/*--------------------------------------------------------------
# Who We Are
--------------------------------------------------------------*/
.whoWeAre {
  text-align: center;
}

.whoWeAre p {
  font-size: 20px;
}

.whoWeAre h1 {
  color: #1D1942;
  font-family: 'Inter_18pt-Bold';
  font-size: 40px;
}

@media (max-width: 768px) {
  .whoWeAre h1 {
    font-size: 36px;
  }

  .whoWeAre p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .whoWeAre h1 {
    font-size: 28px;
  }

  .whoWeAre p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product {
  text-align: center;
}

.product .card {
  border-radius: 16px;
  background: transparent;
}

.product p {
  font-size: 20px;
}

.product h1 {
  color: #1D1942;
  font-family: 'Inter_18pt-Bold';
  font-size: 40px;
}

.product .product-item {
  text-align: left;
}

.product .product-item img {
  width: 100%;
}

.product .product-item .sportsImg {
  border-radius: 20px;
}

.product .product-item .icon {
  width: 27px;
  margin-bottom: 10px;
}

.product .product-item h3 {
  color: #1D1942;
  font-family: 'Inter_18pt-Bold';
  font-size: 24px;
}

.product .product-item p {
  font-size: 16px;
  color: #3F3B67;
}

@media (max-width: 768px) {
  .product h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .product h1 {
    font-size: 28px;
  }

  .product .product-item .icon {
    margin-top: 30px;
  }

  .product .product-item p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contactUs {
  text-align: center;
}

.contactUs .card {
  border-radius: 16px;
  background: transparent;
}

.contactUs h1 {
  font-family: 'Inter_18pt-Bold';
  font-size: 48px;
  color: #001046;
}

.contactUs p {
  color: #363B4D;
  font-size: 20px;
}

.contactUs .contactUs-item {
  text-align: left;
}

.contactUs .contactUs-item .icon {
  width: 32px;
}

.contactUs .contactUs-item h6 {
  font-family: 'Inter_18pt-Medium';
  font-size: 20px;
  color: #1D1942;
  margin-top: 20px;
}

.contactUs .contactUs-item p {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .contactUs h1 {
    font-size: 36px;
  }

  .contactUs p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contactUs h1 {
    font-size: 28px;
  }

  .contactUs p {
    font-size: 15px;
  }

  .contactUs .contactUs-item h6 {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
}

#footer img {
  height: 64px;
}

#footer .copyright {
  text-align: right;
}

@media (max-width: 768px) {
  #footer {
    font-size: 13px;
  }

  #footer img {
    height: 56px;
  }
}

@media (max-width: 576px) {
  #footer .logo {
    text-align: center;
    margin-top: 20px;
  }

  #footer img {
    height: 44px;
  }

  #footer .copyright {
    text-align: center;
    font-size: 12px;
  }
}