@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sen:wght@400..800&display=swap");

:root {
  --font-family-dm-sans: "DM Sans", sans-serif;
  --font-family-inter: "Inter", sans-serif;
  --font-family-lora: "Lora", serif;
  --font-family-manrope: "Manrope", sans-serif;
  --font-family-plus-jakarta-sans: "Plus Jakarta Sans", sans-serif;
  --font-family-raleway: "Raleway", sans-serif;
  --font-family-roboto: "Roboto", sans-serif;
  --font-family-sen: "Sen", sans-serif;
  --theme-green-color: #32be29;
  --theme-red-color: #ea5859;
  --theme-gradient: linear-gradient(
    to left bottom,
    #057578,
    #038b84,
    #1ca18d,
    #3ab792,
    #5bcd93
  );
  --theme-body-bg: #141414;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-raleway);
  color: #ffffff;
  scrollbar-width: thin;
  scrollbar-color: #0cadb3 #141414;
}

/* GLOBAL */
.main-body {
  background-color: var(--theme-body-bg);
  overflow: hidden;
}

a {
  text-decoration: none !important;
}

.section-title {
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ffffff;
  display: inline-block;
  visibility: hidden;
  width: 0;
  margin-bottom: 2rem;
}


/* SCROLLBAR */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #141414;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #0cadb3, #141414);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #0cadb3, #141414);
}

/* HEADER */
.main-logo {
  height: 80px;
}
header, footer{
  background: linear-gradient(71deg, #1f1f1f, #212022, #121213);
}

header .nav-link {
  font-weight: 500;
}

header .nav-link {
  color: #ffffff !important;
}

header .nav-link:hover {
  color: #0cadb3 !important;
}

header .nav-link.active {
  color: #0cadb3 !important;
  font-weight: 600;
}

.logo-content {
  animation-name: slide-left;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes slide-left {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


/* FOOTER */

.social-icons-item{
  width: 2rem;
  height: 2rem;
  border: 1px solid #057578;
  border-radius: 50%;
  top: 0em;
  position: relative;
  transition: all 0.2s ease;
}

.social-icons-item i{
  color: #057578;
  transition: all 0.2s ease;
}

.social-icons-item:hover{
  border: 1px solid #ffffff;
  top: -0.2em;
  position: relative;
  i{
    color: #ffffff;
  }
} 

footer::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../asset/lines.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.footer-info-text{
  font-family: var(--font-family-plus-jakarta-sans);
}

.footer-cards-icon img{
  height: 3em;
}

.footer-card {
  backdrop-filter: blur(3px);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 5px rgba(170, 166, 166, 0.589); 
  transition: transform 0.3s ease, backdrop-filter 0.3s ease; 
}

footer{
  box-shadow: 0 0 10px rgba(105, 103, 103, 0.589);
}


.footer-card:hover {
  position: relative;
  transform: scale(1.1); 
  backdrop-filter: (blur0px); 
  background: rgb(255, 255, 255);
  border-radius: 0.5em;
  .small{
    color: #121213;
  }
  svg{
    fill: #121213;
  }
  svg path{
    fill: #121213;
  }
  
}

/* HERO */

.heroSwiper {
  width: 100%;
  height: 675px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-images {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 15s ease;
}

.swiper-slide-active .swiper-images {
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background-image: var(--theme-gradient) !important;
}

.hero-content {
  width: 100%;
  height: 100%;
  padding: 4em;
}

.get-started-btn {
  background-image: linear-gradient(
    to left bottom,
    #057578,
    #038b84,
    #1ca18d,
    #3ab792,
    #5bcd93
  );
}

/* WHO NEEDS IT */
.who-need-point-wrapper {
  margin-bottom: 1rem;
  border-radius: 2em;
  transition: all 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 2px #038b84;
}

.who-need-point-wrapper:hover {
  background-image: var(--theme-gradient);
  box-shadow: 0 4px 10px rgba(3, 139, 132, 0.5);
}

.who-need-point-wrapper:hover .rounded-circle {
  background-image: none;
}

.rounded-circle {
  background-image: var(--theme-gradient);
  width: 3rem;
  height: 3rem;
  transition: all 0.5s ease;
}

.who-need-point {
  font-family: var(--font-family-manrope) !important;
}

/* WHY JOIN */

.ag-courses_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ag-courses_item {
  -ms-flex-preferred-size: calc(33.33333% - 30px);
  flex-basis: calc(33.33333% - 30px);
  margin: 0 15px 30px;
  overflow: hidden;
  border-radius: 28px;
}
.ag-courses-item_link {
  display: block;
  padding: 30px 20px;
  background-color: #222222;
  overflow: hidden;
  position: relative;
  min-height: 30em;
}
.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
  text-decoration: none;
  color: #fff;
}
.ag-courses-item_link:hover .ag-courses-item_bg {
  -webkit-transform: scale(12);
  -ms-transform: scale(12);
  transform: scale(12);
}
.ag-courses-item_title {
  min-height: 85px;
  margin: 0 0 25px;
  overflow: hidden;
  font-weight: bold;
  font-size: 30px;
  color: #fff;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date-box {
  font-size: 18px;
  color: #fff;
  z-index: 2;
  position: relative;
}
.ag-courses-item_date {
  font-weight: bold;
  color: #f9b234;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.ag-courses-item_bg {
  height: 128px;
  width: 128px;
  background-color: #f9b234;
  z-index: 1;
  position: absolute;
  top: -75px;
  right: -75px;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
  background-color: #3ecd5e;
}
.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
  background-color: #e44002;
}
.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
  background-color: #952aff;
}
.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
  background-color: #cd3e94;
}
.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
  background-color: #4c49ea;
}


/* WHAT DO YOU GET */

.gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gradient-cards-item {
  margin-bottom: 1rem;
}
.container-card {
  position: relative;
  border: 1px solid rgba(83, 83, 83, 0.301);
  background: linear-gradient(71deg, #1f1f1f, #212022, #121213);
  border-radius: 45px;
  padding: 2em;
  height: 100%;
}

.container-card img{
  height: 4em;
}

.card-title {
  font-weight: 600;
  color: white;
  font-size: 1.8rem;
  padding-bottom: 8px;
}

.card-description {
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.685);
}

/* BANNER */

.banner-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../asset/lines.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  opacity: 0.4;
  border-radius: 2em;
  border: 1px solid rgba(83, 83, 83, 0.61);
  box-shadow: 0 0 2px #ffffff;
}

/* TRAINING SCHEDULE */
.circle {
  padding: 12px 18px;
  border-radius: 1rem;
  background-color: #057578;
  color: #fff;
  max-height: 60px;
  z-index: 2;
  font-size: 0.7rem;
  text-wrap: nowrap;
}

.how-it-works.row .col-2 {
  align-self: stretch;
  position: relative;
}
.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid #057578;
  z-index: 1;
}
.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-2.top::after {
  height: 50%;
  left: 50%;
  top: 0;
}

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid #057578;
  margin: 0;
  top: 17px;
  position: relative;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
  border: 3px solid #057578;
  width: 100%;
  position: relative;
  border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}

.timeline-time, .timeline-list li{
  font-family: var(--font-family-plus-jakarta-sans) !important;
}


/* TEAM */

.team_content{
  background-color: #1F1F1F;
}

.team_content::before {
  content: '';
  width: 150%;
  height: 200%;
  position: absolute;
  top: -3.8em;
  left: -2em;
  transform: rotate(165deg);
  z-index: -1;
  background-color: #1F1F1F;
  transition: all 0.5s ease; 
}

.team-title-line{
  width: 60px;
  height: 3px;
}

.team_card:hover .team_content::before {
  transform: rotate(180deg) translateY(0em);
  top: 0; 
  background-color: #3ECD5E;
}

.team_card:hover .team_content{
  background-color: #3ECD5E;
  h5,p,i{
    color: #121213;
  }
}

.team_card:hover .team-title-line{
  background-color: #121213;
}

.team_card_1 .team-title-line{
  background-color: #3ECD5E;
}

.team_card_2 .team-title-line,
.team_card_2:hover .team_content::before {
  background-color: #952AFF;
}

.team_card_3 .team-title-line,
.team_card_3:hover .team_content::before {
  background-color: #CD3E94;
}

.team_card {
  height: 100%;
}
/* WHATSAPP */

.whatsapp-btn-container {
  position: fixed;
  right: 30px;
  opacity: 0;
  bottom: -1rem;
  padding: 1.5rem;
  animation: fade-up 1000ms forwards;
  animation-delay: 1000ms;
  z-index: 9999;
}

@keyframes fade-up {
  100% {
      bottom: 1rem;
      opacity: 1;
  }
}

.whatsapp-btn-container .whatsapp-btn {
  font-size: 48px;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}

.whatsapp-btn-container span {
  position: absolute;
  top: 0;
  left: 4px;
  font-weight: bold;
  transform: rotateZ(20deg) translateX(10px);
  opacity: 0;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
  transform: rotateZ(0deg) translateX(0px);
  opacity: 1;
}


span#visitor-count {
  font-family: var(--font-family-dm-sans);
}