#wrapper {
  width: 100%;
  max-width: 1550px;
  position: relative;
  margin-top: 100px;
}

#carousel {
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#carousel::-webkit-scrollbar {
  height: 0;
}

#prev,
#next {
  display: flex;
  justify-content: center;
  align-content: center;
  background: white;
  border: none;
  padding: 8px;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  position: absolute;
}

#prev {
  top: 50%;
  left: -30px;
  transform: translate(50%, -50%);
  display: none;
}

#next {
  top: 50%;
  right: -30px;
  transform: translate(-50%, -50%);
}

#content {
  display: grid;
  gap: 10px;
  grid-auto-flow: column;
  margin: auto;
  box-sizing: border-box;
}

.item {
  width: 160px;
  height: 160px;
  border-radius: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}

.content_1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 505px;
  height: 500px;
  background-color: white;
  border-radius: 10px;
}

.content_text {
  font-size: 50px;
  color: black;
}

.content_btn {
  border: none;
  outline: none;
  border: 2px solid #00b7c7;
  background-color: white;
  color: #00b7c7;
  padding: 10px;
  transition: all 1s;
  border-radius: 10px;
  font-size: 25px;
  cursor: pointer;
}

.content_btn:hover {
  border: 2px solid #2c3a68;
  background: #2c3a68;
  color: white;
}

.MYTEAM {
  color: white;
  text-align: center;
  padding-top: 100px;
  font-size: 50px;
}

.contact {
  width: 100%;
  background-color: rgba(0, 144, 156, 0.4784313725);
  height: 100px;
  margin-top: 10px;
}

.form {
  display: flex;
  align-items: center;
  flex-direction: column;
}

#contact_text {
  text-align: center;
  color: white;
  font-size: 30px;
  font-weight: bold;
  padding-top: 30px;
}

.bi {
  font-size: 50px;
  transition: all 1s;
  color: white;
}

.footer_black {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61), rgba(1, 46, 94, 0.61), rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61));
  width: 100%;
  min-height: 100%;
}

.footer_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer_btn {
  height: 100px;
  width: 320px;
  position: relative;
  padding: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.footer_btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  border: 4px solid transparent;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
}

.footer_btn::after {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  border: 4px solid transparent;
  top: 0;
  right: 0;
  box-sizing: border-box;
}

.footer_btn:hover::before {
  height: 100px;
  width: 320px;
  border: 4px solid white;
  border-right: none;
  border-bottom: none;
  transition: heigth 0.5s linear, width 0.5s linear 0.5s;
  cursor: pointer;
}

.footer_btn:hover::after {
  height: 100px;
  width: 320px;
  border: 4px solid white;
  border-left: none;
  border-top: none;
  transition: heigth 0.5s linear, width 0.5s linear 0.5s;
}

.footer_texts {
  color: white;
  font-size: 29px;
  text-align: center;
  width: 550px;
  margin: 0 auto;
}

.footer_black_bg {
  background-color: #041e3d;
  width: 100%;
  padding: 50px;
}

.footer {
  gap: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_texts_text {
  text-align: center;
  color: white;
  font-size: 30px;
  padding-top: 20px;
}

@media screen and (max-width: 325px) {
  .footer_btn {
    height: 100px;
    width: 250px;
    position: relative;
    padding: 10px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
  .footer_btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    border: 4px solid transparent;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
  }
  .footer_btn::after {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    border: 4px solid transparent;
    top: 0;
    right: 0;
    box-sizing: border-box;
  }
  .footer_btn:hover::before {
    height: 100px;
    width: 250px;
    border: 4px solid white;
    border-right: none;
    border-bottom: none;
    transition: heigth 0.5s linear, width 0.5s linear 0.5s;
    cursor: pointer;
  }
  .footer_btn:hover::after {
    height: 100px;
    width: 250px;
    border: 4px solid white;
    border-left: none;
    border-top: none;
    transition: heigth 0.5s linear, width 0.5s linear 0.5s;
  }
}
@media screen and (max-width: 596px) {
  .footer_texts_text {
    font-size: 25px;
  }
}
@media screen and (max-width: 520px) {
  .footer_texts_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 441px) {
  .footer_texts_text {
    font-size: 17px;
  }
}
@media screen and (max-width: 395px) {
  .footer_texts_text {
    font-size: 13px;
  }
}
@media screen and (max-width: 335px) {
  .footer_texts_text {
    font-size: 10px;
  }
}
@media screen and (max-width: 1065px) {
  .content_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 508px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
  }
  .content_text {
    font-size: 25px;
  }
  .content_btn {
    font-size: 20px;
    padding: 8px;
  }
}
@media screen and (max-width: 866px) {
  .content_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 400px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
  }
  .content_text {
    font-size: 20px;
  }
  .content_btn {
    font-size: 17px;
    padding: 6px;
  }
}
@media screen and (max-width: 668px) {
  .content_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 255px;
    height: 500px;
    background-color: white;
    border-radius: 10px;
  }
  .content_text {
    font-size: 17px;
  }
  .content_btn {
    font-size: 12px;
    padding: 5px;
  }
}/*# sourceMappingURL=main.css.map */