@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap");

html {
  overflow-x: hidden;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#load{
	height: 100vh;
	width: 100%;
	position: fixed;
	background: white url(/images/Spin-Preloader-1.gif) no-repeat center;
	z-index: 9999999;
}

body {
  font-family: "Poppins", sans-serif;
  font-family: "Roboto", sans-serif;
}

section {
  padding: 80px 0;
}
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

h1 {
  font-family: "Roboto", serif;
  text-align: center;
  font-size: 3rem;
  margin: 30px 0px;
  font-weight: bolder;
  width: fit-content;
  position: relative;
}

h1::after {
  content: " ";
  display: block;
  background-color: purple;
  border-radius: 4px;
  width: 80%;
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.toggle-button {
  position: absolute;
  top: 1.5rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: rgb(235, 46, 109);
}

.header {
  background: #282b28;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 10;
}

/* Add the code in comments in .header class if you need sticky header, else remove it :D
    This doesn't affect responsiveness of Header, it will be responsive and fixed for other devices as well. Checked :D
    position: fixed;
    width: 100%;
    z-index: 100; */

.logo {
  font-size: 34px;
  font-family: "Poppins", sans-serif;
  margin-left: 1rem;
  transition: all 0.3s ease;
}
.logo:hover {
  transform: translateX(10px);
}
.logo i {
  transition: all 0.4s ease;
}
.logo:hover i {
  transform: rotate(90deg);
}

.navbar li {
  display: inline-block;

  font-size: 18px;
  font-family: "Fira Sans", sans-serif;
  position: relative;
  padding: 30px;
  margin-bottom: 20px;
  font-size: 18px;
}

.navbar li a {
  text-decoration: none;
  color: white;
  padding: 28px;
}

.navbar li a {
  text-decoration: none;
  color: white;
  padding: 16px;
  transition: all 0.3s ease;
  /* text-decoration: underline; */
}

.navbar a:hover {
  color: rgb(235, 46, 109);
}

.navbar a:before {
  content: "";
  display: block;
  height: 5px;
  position: relative;
  width: 0%;
  bottom: -30px;
  transition: all ease-in-out 250ms;
}

.navbar a:hover:before {
  width: 80%;
}

.btn2 {
  background-color: purple;
  border: none;
  color: white;
  padding: 12px;
  width: 200px;
  margin-right: 1rem;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease-in;
  font-family: "Fira Sans", sans-serif;
}
.btn2:hover {
  transform: scale(1.1);
  cursor: pointer;
  background-color: transparent;
  border: 3px solid purple;
}
.banner {
  color: white;
  display: block;
  width: 90%;
  top: -10%;
  text-align: center;
  position: relative;
  /* left: -320px;
  opacity: 0; */
  /* animation: slide_in 1.5s linear forwards; */
}
/* @keyframes slide_in {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }
  100% {
    transform: translateX(300px);
    opacity: 1;
  }
} */
.subhead {
  font-size: 30px;
  font-weight: 600;
  margin-top: 10px;
}
.head {
  font-size: 70px;
  padding: 20px;
  font-family: "Roboto";
  word-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    purple,
    #fff,
    #ff00f3,
    #0033ff,
    #ff00c4,
    purple
  );
  background-size: 400%;
  letter-spacing: 2px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: animate 20s linear infinite;
}
@keyframes animate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
.topic {
  display: inline-block;
  font-size: 24px;
  padding: 10px;
  font-family: "Montserrat";
  z-index: 1;
}
.butns {
  background: purple;
  color: #fff;
  font-size: 20px;
  padding: 10px 10px;
  width: 25%;
  border: 2px solid purple;
  cursor: pointer;
  margin-top: 25px;
  border-radius: 15px;
  font-family: "Roboto";
  transition: all 0.3s ease;
}
.butns:hover {
  background: #fff;
  color: purple;
  border: 2px solid white;
  cursor: pointer;
}
.butns i {
  transition: all 0.2s ease;
}
.butns:hover i {
  transform: translateX(10px);
}
.butns_link {
  color: white;
  text-decoration: none;
}
.butns_link:hover {
  color: black;
  text-decoration: none;
}

.featureclass {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid {
  max-width: 90%;
  display: grid;
  margin: 50px auto;
  grid-template-columns: (3, 1fr);
}
.grid .card {
  background: rgb(240, 239, 239);
  transition: 0.5s;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.grid .card .img {
  height: 250px;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.grid .card .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card .content {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.card a {
  text-decoration: none;
  color: black;
}
.card:hover {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgb(235, 46, 109) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.body {
  /* background-color: #000; */
  /* background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  ); */
  background-image: url(./images/backg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 960px;
  margin-top: 0px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card p {
  font-weight: 600;
  padding: 15px 0;
}
.content .title {
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 12px 0;
}
.content .time {
  font-size: 16px;
  font-weight: 600;
}

.content p {
  font-weight: 500;
  font-size: 17px;
  padding: 15px 0;
  height: 130px;
  color: rgb(31, 31, 31);
}

/* trainers section */
.trainers-content {
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trainers-content .title {
  font-family: "Roboto";
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.trainers-content p {
  font-weight: 500;
  font-size: 14px;
  font-family: "poppins";
  padding: 15px 0;
  height: 200px;
  color: rgb(31, 31, 31);
}
.Certification {
  margin: 10px auto;
  height: 20px;
  font-weight: 600;
}

.grid .card2 {
  background: rgb(240, 239, 239);
  transition: 0.5s;
  padding: 5px;
  border-radius: 5px;
}

.grid .card2 .img {
  height: 350px;
  width: 100%;
}

.grid .card2 .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* tii now  */
/* added newly  */
.card1 {
  width: 280px;
  height: 360px;
  padding: 2rem 1rem;
  background: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
  transition: 0.5s ease-in-out;
}
.card1:hover {
  transform: translateY(20px);
}
.card1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 176, 155, 0.5),
    rgba(150, 201, 61, 1)
  );
  z-index: 2;
  transition: 0.5s all;
  opacity: 0;
}
.card1:hover::before {
  opacity: 1;
}
.card1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.card1 .info {
  position: relative;
  z-index: 3;
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s all;
}
.card1:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.card1 .info h1 {
  margin: 0;
}
.card1 .info {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.card1 .info .btn {
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
/* newly */
.featureclass {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.topscheduledclass,
.toptrainers {
  background-color: rgb(245, 245, 245);
  width: 100%;
  display: flex;
  justify-content: center;
}

.scheduledclass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scheduledclass .img {
  width: 400px;
  height: 350px;
  background: rgb(240, 239, 239);
}

.btn {
  margin-top: 10px;
  width: fit-content;
  font-size: 18px;
  color: white;
  background: purple;
  padding: 10px 40px;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease-in;
}

.btn:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.card2:hover {
  cursor: pointer;
  transform: translateY(-2.2rem);
  box-shadow: 5px 5px purple, -1em 0 0.5em gray;
}

.card2:hover {
  cursor: pointer;
  transform: translateY(-2.2rem);
  box-shadow: 5px 5px purple, -1em 0 0.5em gray;
}

/* registration  */
.signup-connect .btn {
  display: block;
  background: purple;
  color: hsl(0, 0, 100);
  text-decoration: none;
  margin: 20px 0;
  padding: 15px 15px;
  border-radius: 5px;
  position: relative;
}
.signup-connect .btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: inset 0 3px 0 hsla(0, 0, 0, 0), 0 3px 3px hsla(0, 0, 0, 0.2);
  border-radius: 5px;
}

.signup-connect .btn:hover::after {
  background: hsla(0, 0, 0, 0.1);
  box-shadow: inset 0 3px 0 hsla(0, 0, 0, 0.2);
}
.signup-connect .btn-social {
  padding-left: 64px;
  position: relative;
  z-index: 1;
}
.signup-connect .btn-social .fa {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 100%;
  text-align: center;
  background: hsla(0, 0, 0, 0.1);
  line-height: 3.2;
  border-radius: 5px 0 0 5px;
}

.signup-connect .btn-facebook {
  background-color: hsl(221, 44%, 41%);
}
.signup-connect .btn-twitter {
  background-color: hsl(206, 82%, 63%);
}
.signup-connect .btn-google {
  background-color: hsl(7, 71%, 55%);
}
.signup-connect .btn-linkedin {
  background-color: hsl(196, 100%, 43%);
}

.form fieldset {
  border: none;
  padding: 0;
  margin: 20px 0;
  position: relative;
}
.form fieldset input {
  width: 100%;
  height: 48px;
  color: hsl(0, 0, 20);
  padding: 15px 40px 15px 15px;
  border-radius: 5px;
  font-size: 14px;
  outline: none !important;
  border: 1px solid hsla(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 4px hsla(0, 0, 0, 0.2);
  vertical-align: top;
}
.signup-connect,
.signup-classic {
  width: 50%;
  padding: 30px 50px;
}

.form button {
  width: 100%;
  outline: none !important;
  background: linear-gradient(-5deg, purple, rgb(193, 3, 193));
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 3px 0px hsla(86, 21%, 44%, 0.2);
  text-shadow: 0 2px 3px hsla(0, 0, 0, 0.2);
}
.signup {
  max-width: 800px;
  margin: auto;
  background: hsl(0, 0, 100);
  border-radius: 10px;
  box-shadow: 0 3px 25px hsla(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
}

@media (max-width: 756px) {
  .signup {
    flex-direction: column;
    align-items: center;
  }
  #registration {
    display: none;
  }
  .signup-connect {
    display: none;
  }
}

.signup-connect {
  background: linear-gradient(-5deg, purple, rgb(193, 3, 193));
  color: hsl(0, 0, 100);
  border-radius: 30px;
}

.signup-connect h2 {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 40px;
  text-shadow: 0 2px 3px hsla(0, 0, 0, 0.1);
}

.signup-classic h2 {
  font-size: 18px;
  font-weight: normal;
  margin-top: 23px;
  margin-bottom: 43px;
  text-shadow: 0 2px 3px hsla(0, 0, 0, 0.1);
}

.signup-classic fieldset::after {
  content: "\f007";
  font-family: FontAwesome;
  position: absolute;
  right: 15px;
  top: 17px;
  z-index: 2;
  width: 20px;
  color: hsla(0, 0, 0, 0.2);
  text-align: center;
}

.signup-classic fieldset.email::after {
  content: "\f0e0";
}

.signup-classic fieldset.password::after {
  content: "\f023";
}

.scheduledclass .img {
  width: 400px;
  height: 350px;
  /* background: black; */
}

.scheduledclass .img {
  width: 400px;
  height: 350px;
  /* background: black; */
}

.scheduledclass button {
  margin-bottom: 20px; 
}

#name-id {
  margin-top: 28px;
}

#main-form-inside {
  margin-top: 25px;
}
.testimonial {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topreview {
  width: 100%;
  display: flex;
  justify-content: center;
}
.container {
  padding-top: 65px;
  position: relative;
  /* width: 800px; */
  min-width: 350px;
  min-height: 250px;
  padding-bottom: 40px;
  overflow: hidden;
}
.wrapper {
  width: 300%;
  min-height: 100%;
  display: flex;
  justify-content: space-between;
  transition: 1s;
}
.testimonial .cards {
  width: 800px;
  min-height: 100%;
  display: flex;
  background: #fff;
  padding: 20px;
  margin: 0 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
}
.card-start {
  width: 70%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.card-start img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid purple;
}
.reviewer-name {
  position: absolute;
  bottom: 1px;
  left: 1px;
  padding: 5px 20px;
  background: purple;
  font-size: 14px;
  color: #fff;
}
.card-body {
  width: 120%;
  min-height: 100%;
  height: auto;
  margin-left: 20px;
  position: relative;
  padding-bottom: 50px;
}
.card-body .review {
  font-size: 17px;
  line-height: 30px;
  font-weight: 900;
  margin-top: 30px;
  font-family: "poppins";
}
.stars {
  position: absolute;
  top: 90%;
  left: 20%;
}
.checked {
  color: orange;
}
.indicators {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.indicators button {
  background: none;
  border: none;
  outline: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid purple;
  margin-right: 5px;
  transition: 0.5s;
}
.indicators button.active {
  width: 40px;
  border-radius: 50px;
  background: purple;
}
.gallerySection {
  position: relative;
  text-align: center;
  width: 100%;
  justify-content: center;
  min-height: 100vh;
  background-color: white;
}
.gallerySection .image-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 10px;
}

.gallerySection .image-container .image:hover img {
  transform: scale(1.2);
}
.gallerySection .heading-gallery {
  background-color: rgb(245, 245, 245);
}

.gallerySection .image-container .image {
  height: 250px;
  width: 350px;
  border: 10px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}

.gallerySection .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.2s linear;
}

.gallerySection .image-container .image:hover img {
  transform: scale(1.2);
}

.gallerySection .popup-img {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.755);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.gallerySection .popup-img span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 100;
}

.gallerySection .popup-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid #fff;
  border-radius: 5px;
  width: 750px;
  object-fit: cover;
}

/*Pricing Section*/
.pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(#d724ff 0%, #77a5f8 100%);
}

.toppricing {
  background-color: rgb(245, 245, 245);
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2%;
}

.wrapper {
  width: 400px;
  display: block;
  background: #fff;
  padding: 30px;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.05);
}

.wrapper header {
  display: flex;
  position: relative;
  align-items: center;
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-align: center;
  gap: 0px;
  padding: 20px;
}

.wrapper header label {
  height: 100%;
  width: 30%;
  padding: 20px;
  z-index: 2;
  display: flex;
  position: relative;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

#tab-1:checked ~ header .tab-1,
#tab-2:checked ~ header .tab-2,
#tab-3:checked ~ header .tab-3 {
  color: #fff;
}

.wrapper input[type="radio"] {
  display: none;
}

.wrapper header label:nth-child(2) {
  width: 40%;
}

header .slider {
  position: absolute;
  left: 50%;
  height: 85%;
  width: 120px;
  background: red;
  border-radius: inherit;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #d724ff 0%, #77a5f8 100%);
  transition: all 0.3s ease-in-out;
}

#tab-1:checked ~ header .slider {
  left: 0%;
  width: 120px;
  transform: translateX(5%);
}
#tab-2:checked ~ header .slider {
  left: 50%;
  width: 120px;
  transform: translateX(-50%);
}
#tab-3:checked ~ header .slider {
  left: 100%;
  width: 120px;
  transform: translateX(-105%);
}

.cards-area {
  overflow: hidden;
}

.cards .row-1 {
  transition: all 0.3s ease;
}
#tab-1:checked ~ .cards-area .price-card .row-1 {
  margin-left: 0%;
}
#tab-2:checked ~ .cards-area .price-card .row-1 {
  margin-left: -33.4%;
}
#tab-3:checked ~ .cards-area .price-card .row-1 {
  margin-left: -66.8%;
}

.wrapper .cards-area .row {
  display: block;
}

.wrapper .cards-area .price-card {
  width: 300%;
  display: flex;
}

.cards-area .price-card .row {
  width: 350.4px;
}

.row .pricing-details {
  display: block;
  margin: 20px 0;
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #e6e6e6;
}

.row .pricing-details span {
  font-size: 65px;
  font-weight: 600;
  position: relative;
}

.row .pricing-details span::before {
  position: absolute;
  content: "$";
  font-size: 20px;
  left: -13px;
  top: 17px;
  font-weight: 400px;
}

.row .pricing-details span::after {
  content: "/mon";
  font-size: 20px;
  right: -33px;
  top: 17px;
}

.pricing-details p {
  font-size: 18px;
  margin-top: 5px;
}

.row .features li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 10px;
  list-style: none;
}

.row .features li i {
  color: #77a5f8;
}

.features li span {
  margin-left: 10px;
}

.wrapper button {
  height: 55px;
  width: 100%;
  margin-right: 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(145deg, #d724ff 0%, #77a5f8 100%);
  transition: all 0.3s ease;
}

.wrapper button:hover {
  transform: scale(0.98);
}

/* Faq section */
.faq_heading {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wrap {
  position: relative;
  width: 100%;
  padding: 30px;
  max-width: 1200px;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}

.accordion {
  display: block;
  position: relative;
  width: 100%;
}

.accordion__item {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__title {
  display: block;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0px 50px 0 20px;
  font-size: 1.4em;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid #eee;
  overflow: hidden;
  transition: background-color 0.2s;
}

.accordion__title:hover {
  background-color: #d5d4d4;
}

.accordion__title.active {
  background: rgb(128, 0, 128);
  color: white;
}

footer {
  background-color: purple;
  padding-top: 50px;
  height: 617px;
}

.accordion__title.active .x7 {
  transform: rotate(-90deg);
}

.accordion__title.active .x7 .btop {
  width: 67%;
  top: 2px;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: 50% 50%;
  background-color: white;
}
.accordion__title.active .x7 .bmid {
  opacity: 0;
}
.accordion__title.active .x7 .bbot {
  width: 67%;
  bottom: 2px;
  transform: translateY(50%) rotate(45deg);
  transform-origin: 50% 50%;
  background-color: white;
}

.accordion__content {
  display: none;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  border-top: none;
  line-height: 1.65;
  padding: 25px;
  background-color: #fff;
  font-size: 1.2em;
}

/* --- Icon --- */
.bmenu {
  width: 26px;
  height: 16px;
  display: block;
  position: absolute;
  right: 15px;
  top: 12px;
}

.btop,
.bmid,
.bbot {
  right: 0;
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #333;
  border-radius: 1px;
}

.btop {
  width: 40%;
}

.bmid {
  width: 60%;
}

.bbot {
  width: 80%;
}
.x7 {
  transition: transform 0.3s ease-out;
  transform-origin: 60% 75%;
}

.x7 .btop {
  top: 0;
  transition: width 0.3s, transform 0.3s, top 0s;
  transition-timing-function: ease-out;
}

.x7 .bmid {
  top: calc(50% - 1px);
  transform-origin: 100% 50%;
  transition: opacity 0.1s;
  transition-timing-function: ease-out;
}

.x7 .bbot {
  bottom: 0;
  transition: width 0.3s, transform 0.3s, bottom 0s;
  transition-timing-function: ease-out;
}

footer {
  background-color: purple;
  padding-top: 50px;
  height: 557px;
}

@media screen and (min-width: 1260px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }

  .navbar li a {
    padding: 0px 34px;
  }

  .banner {
    text-align: center;
    max-width: 45%;
  }
  .trainers-content p {
    height: 210px;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1260px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 40px;
  }
  .grid .card .img {
    height: 200px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .trainers-content p {
    height: 250px;
  }

  .card .content {
    padding: 15px 10px;
  }
  .content .title {
    font-size: 20px;
  }
  .content .time {
    font-size: 14px;
  }

  .content p {
    font-size: 15px;
    padding: 10px 0;
    height: 130px;
  }
}

@media screen and (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 40px;
  }

  .body {
    overflow: hidden;
  }
  .grid .card .img {
    height: 200px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .card .content {
    padding: 15px 10px;
  }
  .content .title {
    font-size: 22px;
  }
  .content .time {
    font-size: 12px;
  }

  .content p {
    font-size: 14px;
    padding: 10px 0;
    height: 115px;
    text-align: center;
  }
}
@media screen and (max-width: 860px) {
  .navbar ul li {
    padding: 8px;
  }
  .signup-connect,
  .signup-classic {
    width: 60%;
    padding: 0px;
  }
}
@media screen and (max-width: 690px) {
  .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 40px;
    place-items: center;
  }
  .grid .card {
    width: 340px;
  }
  .grid .card .img {
    height: 200px;
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .card .content {
    padding: 15px 10px;
  }
  .content .title {
    font-size: 20px;
  }
  .content .time {
    margin-top: 19px;
    font-size: 12px;
  }

  .content p {
    font-size: 12px;
    padding: 10px 0;
    height: 80px;
    text-align: center;
  }
  .btn2 {
    display: none;
    margin-top: -48px;
    margin-left: 18rem;
    padding-left: 20px;
    text-decoration: none;
  }

  .navbar.active ul {
    height: 350px;
    margin-bottom: -50px;
    background-color: #181818;
  }
  .toggle-button {
    display: flex;
  }

  .subhead {
    margin-top: 70px;
    font-size: 30px;
  }
  .head {
    font-size: 40px;
  }
  .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .topic {
    font-size: 15px;
  }

  .logo {
    align-self: flex-start;
  }

  .navbar {
    display: none;
    margin-top: 30px;
    width: 100%;
  }

  .navbar li {
    padding: 16px 0;
    background: rgb(24, 24, 24);
    width: 100%;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  h1 {
    font-size: 35px;
  }
  #registration {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .gallerySection .popup-img img {
    width: 95%;
  }
}

@media screen and (max-width: 690px) {
  .h {
    margin-top: 150vh;
  }

  .toggle-button {
    display: flex;
  }

  .subhead {
    margin-top: 70px;
    font-size: 30px;
  }
  .head {
    font-size: 40px;
  }
  .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .topic {
    font-size: 15px;
  }

  .logo {
    align-self: flex-start;
  }

  .navbar {
    display: none;
    margin-top: 30px;
    width: 100%;
    padding-bottom: 10px;
  }

  .navbar li {
    padding: 20px;
    background: rgb(24, 24, 24);
    width: 100%;
    margin-bottom: 0px;
    top: -30px;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  h1 {
    font-size: 35px;
  }
}
.socials {
  display: flex;
  gap: 10px;
}
.socials img {
  transform: scale(0.8);
}
.carousel-inner .carousel-item .d-block {
  height: 100vh;
}
.carousel-inner .carousel-item h5 {
  font-size: 61px;
}

@media (max-width: 800px) {
  .testimonial {
    height: 175vh;
  }
  .container {
    width: 50%;
    margin: auto;
  }
  .cards {
    flex-direction: column;
  }
  .card-start {
    width: 100%;
    border-radius: 10px;
  }
  .card-body {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }
}
/* newly */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  width: 100%;
  height: 100vh;
  /* background: #2b2b2b; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.card3 {
  width: 380px;
  perspective: 1000px;
  cursor: pointer;
}
.card-inner {
  position: relative;
  width: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.front-face {
  backface-visibility: hidden;
}
.front-face img {
  width: 100%;
  border-radius: 10px;
}
.back-face {
  backface-visibility: hidden;
  background-color: #c62600;
  color: white;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transform: rotateY(180deg);
}

.back-face h2 {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 25px;
  font-weight: 600;
}
.back-face p {
  font-size: 17px;
  font-weight: 300;
}
.card3:hover .card-inner {
  transform: rotateY(-180deg);
}

/* css for footer */
.footer {
  height: 70px;
}
.container-footer {
  margin: auto;
  padding-top: 40px;
  background-color: white;
}
.row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 70px;
}
.one {
  max-width: 20%;
}
.one img {
  width: 200px;
  margin-bottom: 20px;
}
.one p {
  margin-top: 10px;
  font-size: 20px;
}
.socials {
  margin-top: 25px;
  justify-content: center;
}
.socials i {
  font-size: 18px;
  padding: 5px;
  height: 35px;
  width: 35px;
  text-align: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: all 0.1s ease-in-out;
  transform: scale(1.2);
  margin: 5px;
  transition: all 0.3s ease;
}
.fb {
  color: #4267b2;
  border: 2px #4267b2 solid;
  transition: all 0.3s ease;
}
.socials :hover .fb {
  background-color: #4267b2;
  color: #fff;
}
.twit {
  color: #1da1f2;
  border: 2px #1da1f2 solid;
  transition: all 0.3s ease;
}
.socials :hover .twit {
  background-color: #1da1f2;
  color: #fff;
}
.fa-instagram {
  color: #e1306c;
  border: 2px #e1306c solid;
  transition: all 0.3s ease;
}
.socials :hover .fa-instagram {
  background-color: #e1306c;
  color: #fff;
}
.linkd {
  color: #0077b5;
  border: 2px #0077b5 solid;
  transition: all 0.3s ease;
}
.socials :hover .linkd {
  background-color: #0077b5;
  color: #fff;
}
ul {
  list-style: none;
}
.footer-col {
  padding: 20px 15px;
}
.footer-col h4 {
  font-size: 26px;
  color: black;
  text-transform: capitalize;
  margin-bottom: 30px;
  font-weight: bold;
  position: relative;
}
.footer-col .timing {
  margin-top: 20px;
  margin-bottom: 15px;
}
.footer-col .timing i {
  color: purple;
  transition: all 0.3s ease;
}
.footer-col .timing i:hover {
  transform: translateY(-5px);
  color: crimson;
}
.footer-col ul li {
  line-height: 2.5;
  text-transform: capitalize;
  font-size: 18px;
}
.footer-col a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-col hr {
  width: 0;
  border-color: #fff;
  transition: all 0.3s ease;
}
.footer-col li:hover hr {
  border-color: purple;
  color: purple;
  background-color: purple;
  width: 100%;
}
.schedule p,
.schedule h4:last-child {
  font-size: 20px;
}
.num {
  font-size: 26px;
}
.footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px;
}
.left-corner p {
  margin-left: 45px;
  text-transform: capitalize;
}
.left-corner span {
  text-transform: capitalize;
  font-weight: bolder;
}
.right-corner {
  display: flex;
  justify-content: space-between;
}
.right-corner p {
  margin: 10px 35px;
}

.copyright {
  padding-bottom: 17px;
  padding-top: 17px;
  background-color: purple;
  color: #fff;
}
.copyright p {
  font-size: 18px;
}
.copyright a {
  font-weight: 600;
  transition: all 0.2s ease-out;
}
.copyright span {
  padding: 5px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.copyright span:hover {
  background-color: #fff;
  color: purple;
}

/*responsive*/
@media (max-width: 1130px) {
  .grid .card .content .time {
    font-size: 15px;
  }

  .socials {
    justify-content: center;
  }
  .one {
    min-width: 100vw;
    text-align: center;
  }
  .footer-col {
    width: calc(100vh / 4);
    padding: 10px;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .footer-col {
    text-align: center;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom .left-corner {
    width: 424px;
    text-align: center;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 690px) {
  .body {
    height: 600px;
  }
  .h {
    margin-top: 150vh;
  }

  .toggle-button {
    display: flex;
  }

  .subhead {
    margin-top: 70px;
    font-size: 30px;
  }
  .head {
    font-size: 40px;
  }
  .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .topic {
    font-size: 15px;
  }

  .logo {
    align-self: flex-start;
  }

  .navbar {
    display: none;
    margin-top: 30px;
    width: 100%;
    padding-bottom: 10px;
  }

  .navbar li {
    padding: 20px;
    background: rgb(24, 24, 24);
    width: 100%;
    margin-bottom: 0px;
    top: -30px;
  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .navbar.active {
    display: flex;
  }

  h1 {
    font-size: 35px;
  }
}

@media (max-width: 800px) {
  .grid .card .content p {
    font-size: 15px;
  }
  .grid .card .content .time {
    font-size: 15px;
  }
  .testimonial {
    height: 175vh;
  }
  .container {
    width: 50%;
    margin: auto;
  }
  .cards {
    flex-direction: column;
  }
  .card-start {
    width: 100%;
    border-radius: 10px;
  }
  .card-body {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }
}
@media (max-width: 512px) {
  .butns {
    width: 200px;
    padding: 7.5px 3.25px;
  }
  .trainers-content p {
    height: 230px;
  }
}

/* new  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");
html {
  overflow-x: hidden;
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: 13px;
  text-align: center;
  font-family: "Roboto";
  background: #fcfcfd;
}
.section1 {
  float: left;
  position: relative;
  padding: 30px 0;
  background: #fcfcfd;
  z-index: 1;
  width: 100%;
}
.section-title {
  float: left;
  position: relative;
  width: 100%;
  padding-bottom: 40px;
}
.section-title p {
  color: #7d93b2;
  font-size: 13px;
  line-height: 20px;
  max-width: 550px;
  margin: 0 auto;
}
.section-title h2 {
  float: left;
  width: 100%;
  text-align: center;
  color: #007aff;
  font-size: 34px;
  font-weight: 800;
  position: relative;
}
.section-separator {
  float: left;
  width: 100%;
  position: relative;
  margin: 20px 0;
}
.section-separator:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 3px;
  width: 50px;
  border-radius: 3px;
  z-index: 2;
  background-color: #007aff;
  margin-left: -25px;
}
.swiper-container {
  width: 100%;
  height: 100%;
}
.listing-carousel-button {
  position: absolute;
  top: 50%;
  width: 80px;
  height: 50px;
  line-height: 50px;
  margin-top: -25px;
  z-index: 100;
  cursor: pointer;
  background: #007aff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.45);
  transition: all 200ms linear;
  outline: none;
}
.listing-carousel-button.listing-carousel-button-next {
  right: -30px;
  padding-right: 20px;
  border-radius: 60px 0 0 60px;
}
.listing-carousel-button.listing-carousel-button-prev {
  left: -30px;
  padding-left: 20px;
  border-radius: 0 60px 60px 0;
}
.listing-carousel-button.listing-carousel-button-next:hover {
  right: -15px;
  background: rgba(6, 27, 65, 0.4);
}
.listing-carousel-button.listing-carousel-button-prev:hover {
  left: -15px;
  background: rgba(6, 27, 65, 0.4);
}
.testi-item {
  transition: all 0.3s ease-in-out;
  transform: scale(0.9);
  opacity: 0.9;
}
.testimonials-text {
  padding: 75px 50px 75px;
  overflow: hidden;
  background: #f5f6fa;
  border: 1ps solid #f1f1f1;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}
.testimonials-text-after {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  bottom: 25px;
  right: 30px;
}
.testimonials-text-before {
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  position: absolute;
  color: #ccc;
  opacity: 0.3;
  font-size: 35px;
  transition: all 400ms linear;
  top: 25px;
  left: 30px;
}
.testimonials-text .listing-rating {
  float: none;
  display: inline-block;
  margin-bottom: 12px;
}
.listing-rating i {
  color: #007aff;
}
.testimonials-avatar h3 {
  font-weight: 600;
  color: #7d93b2;
  font-size: 18px;
}
.testimonials-avatar h4 {
  font-weight: 400;
  font-size: 12px;
  padding-top: 6px;
  color: #007aff;
}
.testimonials-carousel .swiper-slide {
  padding: 30px 0;
}
.testi-avatar {
  position: absolute;
  left: 50%;
  top: -30px;
  width: 90px;
  height: 90px;
  margin-left: -45px;
  z-index: 20;
}
.testi-avatar img {
  width: 90px;
  height: 90px;
  float: left;
  border-radius: 100%;
  border: 6px solid #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}
.swiper-slide-active .testimonials-text {
  background: #fff;
  box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}
.testimonials-text p {
  color: #878c9f;
  font-size: 14px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
  line-height: 24px;
  padding-bottom: 10px;
  font-weight: 500;
}
.text-link {
  position: absolute;
  bottom: 0;
  padding: 15px 0;
  border-radius: 10px 10px 0 0;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
  left: 50%;
  width: 200px;
  margin-left: -100px;
}
.swiper-slide-active .testi-item {
  opacity: 1;
  transform: scale(1);
}
.tc-pagination {
  float: left;
  margin-top: 10px;
  width: 100% !important;
}
.tc-pagination_wrap {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
}
.tc-pagination2 {
  float: none;
  display: inline-block;
  padding: 14px 0;
  background: #fff;
  border-radius: 30px;
  min-width: 250px;
  border-bottom: 0;
}
.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
  opacity: 1;
  background: #384f95;
  margin: 0 2px;
  width: 10px;
  height: 10px;
  transition: all 300ms ease-in-out;
}

#logo-primary {
  padding-bottom: 10px;
  padding-right: 100px;
}

.social-button {
  display: flex;
  flex-direction: column;
  align-content: stretch;
}

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
  background-color: #c2bcbcc3;
}

::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border: 3px solid transparent;
  border-radius: 13px;
  background-color: purple;
}

#upbtn{
  position: fixed;
  right: 1vw;
  bottom: 1vw;
  font-size: 4.5vw;
  color: #000;
  cursor: pointer;
}

#upbtn:hover{
  transform: scale(1.02);
}