:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  font-size: 62.5%;
  font-family: "Roboto", sans-serif;
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

/* ==================section================== */

section {
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  /* padding: 60px 20px; */
  text-align: center;
}

/* Section colors */
#home {
  height: 100vh;
  color: rgb(255, 255, 255);
}

#coaches {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

#services {
  background: #e9ecef;
}

#contact {
  background-color: rgba(89, 66, 40, 0.528);
  color: #000000;
  padding: 0 40px;
}

/* ==================End section================== */

/* ==================navigation================== */

.navbar-brand {
  font-weight: bold;
  width: 75px;
  height: 75px;
}

.nav-link:hover {
  color: rgb(190, 122, 13) !important;
}

.nav-link.active {
  color: rgb(190, 122, 13) !important;
  font-weight: bold;
}

/* Fix navbar overlap */
.navbar {
  z-index: 1000;
}
.navbar > .container {
  background-color: rgba(89, 66, 40, 0.528);
}

/* ==================End navigation================== */

/* ==================Slide Show==================  */

.carousel-item > img {
  height: 100vh;
  object-fit: cover;
}

.box {
  background: linear-gradient(to top, #000000, #00000000);
  height: 100vh;
}
.box > h1 {
  text-shadow: #c1e0e3 1px 0 10px;
  bottom: 13%;
  left: 10%;
}

.box > p {
  bottom: 7%;
  left: 10%;
}
.profile_logo {
  box-shadow: rgba(255, 255, 255, 0.827) 0px 5px 35px;
  bottom: 20%;
  left: 10%;
}

/* ==================End Slide Show================== */

/*=================Coaches================== */

.coaches_title {
  font-weight: bold;
  color: rgb(255, 255, 255);
  text-shadow: 8px 4px 3px rgb(127, 72, 60);
}
.coaches_card {
  height: 450px;
  transition: all 0.7s;
  cursor: pointer;
}
.coaches_card_img {
  height: 85%;
  box-shadow: rgb(255, 255, 255) 0px 0px 10px;
  /* transition: all 0.7s; */
}
.coaches_card_box {
  transition: all 0.7s;
}
.coaches_card_box:hover > :not(.coaches_card:hover) {
  filter: blur(3px);
  opacity: 80%;
  transform: scale(0.95);
}
.coaches_card:hover {
  transform: scale(1.05);
}
.coaches_card_name {
  height: 10%;
  margin-top: 15px;
}
.coaches_card_name > h2 {
  font-weight: bold;
  margin-top: 8px;
  background-image: linear-gradient(
    175deg,
    rgb(255, 255, 255),
    rgb(87, 29, 16)
  );
  color: transparent;
  -webkit-background-clip: text;
}

/*=================End Coaches================== */

/* ==================Contact================== */

.contact_logo {
  width: 75px;
  height: 75px;
}

.conect {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.conect_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.conect_ul ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: grid;
  padding: 2rem;
  gap: 0.7rem;
  grid-template-columns: repeat(4, 1fr);
  cursor: pointer;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.conect_ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s;
  animation: updown 2s ease-in-out infinite;
}

.conect_ul li:hover {
  width: 120px;
  border-radius: 50px;
  margin-left: 0;
  margin-right: 0;
  /* box-shadow: 0 0 20px 4px rgb(114, 231, 231); */
  box-shadow: 0 0 20px 4px rgb(255, 255, 255, 0.827);
  background-color: black;
  /* animation-play-state: paused; */
}

.conect_ul li:hover > .conect_icon {
  display: none;
  color: white;
}

.conect_icon {
  transition: 2s;
  color: black;
}
.conect_name_icon {
  display: none;
  font-size: 20px;
  font-weight: bold;
}

.conect_ul li:hover > .conect_name_icon {
  display: block;
  color: white;
}

.conect_icon i {
  margin-left: -1px;
  margin-top: -1px;
  font-size: 35px;
}

.contact-form {
  margin: 30px 10px;
  background-color: transparent;
  padding: 15px;
  border-radius: 12px;
  box-shadow: rgba(255, 255, 255, 10.827) 0px 0px 20px;
}
.btn-send {
  width: 100%;
  background-color: rgb(87, 29, 16) !important;
  color: #fff;
  font-weight: bold;
}
.btn-send:hover {
  background-color: rgb(59, 19, 10) !important;
}

/*  ==================End Contact==================  */

footer {
  background-color: transparent;
  color: #f7d296;
  text-align: center;
  padding: 20px 10px;
  font-size: medium;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
/* .cursor {
      border-left: 3px solid #00ffcc;
      margin-left: 5px;
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      50% { border-color: transparent; }
    } */

/* ==================Responsive Design================== */

@media screen and (max-width: 1200px) {
  .coaches_card {
    height: 380px;
  }
}

@media screen and (max-width: 992px) {
  .coaches_card {
    height: 290px;
  }
}

@media screen and (max-width: 900px) {
  .conect_ul ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #contact {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .conect_ul ul {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact-form {
    margin: 10px;
  }
  #contact {
    padding: 0 30px;
  }
  .coaches_card {
    height: 380px;
  }
}

@media screen and (max-width: 576px) {
  #contact {
    padding: 0 10px;
  }
  .profile_logo {
    width: 150px !important;
    height: 150px !important;
    bottom: 22%;
  }
  .box > h1 {
    font-size: 2.8rem !important;
    bottom: 15%;
  }
  .box > p {
    bottom: 2.5%;
  }

  .conect_ul ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    margin: 0;
  }
  .block_cantact_info {
    padding-bottom: 0 !important;
  }
  .coaches_card {
    height: 450px;
  }

  footer {
    font-size: small;
  }
}

@media screen and (max-width: 340px) {
  .coaches_card {
    height: 350px;
  }
}
