@font-face {
  font-family: "Gotham-Book";
  src: url("../fonts/Gotham-Book.otf");
}
@font-face {
  font-family: "Gotham-Medium";
  src: url("../fonts/Gotham-Medium.otf");
}
@font-face {
  font-family: "Gotham-Bold";
  src: url("../fonts/Gotham-Bold.otf");
}
body {
  font-family: "Gotham-Book";
}

.menu_popup .modal-dialog {
  max-width: 100%;
  margin: 0;
  height: 100%;
}
.menu_popup .modal-dialog .modal-content {
  border-radius: 0;
  border: 0;
  background-color: rgba(0, 19, 89, 0.95);
  height: 100%;
}
.menu_popup .modal-dialog .modal-content .modal-header {
  border: 0;
  border-radius: 0;
}
.menu_popup .modal-dialog .modal-content .modal-header .btn-close {
  color: #fff;
  filter: invert(100%) sepia(0%) saturate(7498%) hue-rotate(111deg) brightness(115%) contrast(82%);
  opacity: 1;
}
.menu_popup .modal-dialog .modal-content ul {
  margin-bottom: 0;
  padding-top: 25px;
  text-align: center;
}
.menu_popup .modal-dialog .modal-content ul li a {
  color: #fff;
  font-size: 25px;
  font-family: "Gotham-Medium";
  padding: 20px 0;
  text-decoration: none;
  display: block;
}
.menu_popup .modal-dialog .modal-content ul li a:hover {
  color: #F06D17;
}

.home_banner {
  height: 100vh;
  position: relative;
}
.home_banner .container {
  position: relative;
}
.home_banner .menu {
  position: absolute;
  left: 40px;
  top: 25px;
  z-index: 9;
}
.home_banner .menu img {
  width: 40px;
}
.home_banner .container, .home_banner .carousel, .home_banner .carousel-inner, .home_banner .carousel-item {
  height: 100%;
}
.home_banner .carousel-item {
  position: relative;
}
.home_banner .carousel-item img {
  height: 100%;
  object-fit: cover;
}
.home_banner .carousel-item:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.59);
}
.home_banner .caption {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.home_banner .caption img {
  margin-bottom: 35px;
  width: 27%;
}
.home_banner .caption h1 {
  color: #fff;
  font-family: "Gotham-Book";
  margin-bottom: 0;
  font-size: 50px;
  text-transform: uppercase;
}
.home_banner .caption h1 strong {
  display: block;
  font-family: "Gotham-bold";
}

.scroll-btn {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid #3e3e3e;
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 99;
  margin-left: -13px;
  border-radius: 12px;
  text-align: center;
  line-height: 0;
  transition: border 0.35s ease;
  -webkit-transition: border 0.35s ease;
}

.scroll-btn > span {
  display: inline-block;
  position: relative;
  margin: 5px 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  border-radius: 8px;
  -webkit-animation-name: downup;
  animation-name: downup;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  transition: border 0.35s ease;
  -webkit-transition: border 0.35s ease;
}

.scroll-btn:hover, .scroll-btn:focus {
  border-color: #2e2e2e;
}

.scroll-btn:hover > span, .scroll-btn:focus > span {
  background-color: #2e2e2e;
}

.scroll-btn.light {
  border-color: #fff;
}

.scroll-btn.light > span {
  background-color: #fff;
}

.scroll-btn.light:hover, .scroll-btn.light:focus {
  border-color: #fff;
}

.scroll-btn.light:hover > span, .scroll-btn.light:focus > span {
  background-color: #fff;
}

@-webkit-keyframes downup {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes downup {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
  100% {
    transform: translateY(0);
  }
}
/*----END OF SCROL TO BOTTOM STYLE---*/
.banner_bottom .schedule, .banner_bottom .classes {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px;
}
.banner_bottom .schedule h2, .banner_bottom .classes h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-family: "Gotham-Medium";
  margin-bottom: 20px;
}
.banner_bottom .schedule {
  background-image: url("../images/schedules.jpg");
}
.banner_bottom .classes {
  background-image: url("../images/classes.jpg");
}
.banner_bottom .inner_block {
  border: 6px solid #fff;
}

.welcome {
  padding: 60px 0;
  margin-top: 50px;
}

.welcome_img {
  position: relative;
}
.welcome_img:after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 200px;
  background-image: url("../images/dots.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 5s;
}
.welcome_img:before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  height: 500px;
  width: 500px;
  background-image: url("../images/bg.svg");
  background-repeat: no-repeat;
  background-size: 100%;
}
.welcome_img img {
  width: 80%;
  position: relative;
  z-index: 4;
}

@-webkit-keyframes run {
  0% {
    right: 30px;
  }
  50% {
    right: 100px;
  }
  100% {
    right: 30px;
  }
}
.welcome_msg h5 {
  text-transform: uppercase;
  color: #F06D17;
}
.welcome_msg h1 {
  color: #606060;
  font-display: 65px;
  font-family: "Gotham-Medium";
  margin-bottom: 25px;
}
.welcome_msg p {
  line-height: 32px;
}
.welcome_msg img {
  margin-bottom: 15px;
}
.welcome_msg h3 {
  color: #F06D17;
}

.body_shape {
  padding: 60px 0;
}
.body_shape h2 {
  color: #606060;
  font-size: 35px;
  font-family: "Gotham-Medium";
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}
.body_shape h2 span {
  color: #F06D17;
}
.body_shape p {
  color: #606060;
  line-height: 35px;
  text-align: center;
}
.body_shape .swiper-container {
  padding-bottom: 50px;
  margin-top: 60px;
}
.body_shape .swiper-container .swiper-slide {
  position: relative;
}
.body_shape .swiper-container .swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 52%, rgba(0, 0, 0, 0.93) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 52%, rgba(0, 0, 0, 0.93) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 52%, rgba(0, 0, 0, 0.93) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#ed000000",GradientType=0 ); /* IE6-9 */
}
.body_shape .swiper-container .swiper-slide h3 {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 15px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  font-size: 22px;
  text-transform: uppercase;
}
.body_shape .swiper-container .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
.body_shape .swiper-container .swiper-pagination-bullet-active {
  background-color: #F06D17;
}

.testo {
  padding: 60px 0;
}
.testo h2 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Gotham-Medium";
}
.testo h2 small {
  display: block;
  font-family: "Gotham-Book";
  font-size: 18px;
  margin-bottom: 15px;
}
.testo h2 span {
  color: #F06D17;
}
.testo .swiper-container {
  padding-bottom: 50px;
  margin-top: 60px;
}
.testo .swiper-container .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
}
.testo .swiper-container .swiper-pagination-bullet-active {
  background-color: #F06D17;
}
.testo .swiper-container .swiper-slide {
  display: flex;
  align-items: center;
}
.testo .swiper-container .swiper-slide .img img {
  border-radius: 50%;
  border: 1px solid #F06D17;
}
.testo .swiper-container .swiper-slide .testo_desc {
  padding-left: 22px;
}
.testo .swiper-container .swiper-slide .testo_desc h3 {
  color: #606060;
  font-family: "Gotham-Medium";
  font-size: 25px;
}
.testo .swiper-container .swiper-slide .testo_desc h3 small {
  display: block;
  font-family: "Gotham-Book";
  color: #BCBCBC;
  font-size: 14px;
}
.testo .swiper-container .swiper-slide .testo_desc p {
  color: #606060;
  line-height: 25px;
  font-size: 14px;
}

/*------GALLERY IMAGE----*/
.centering {
  max-width: 1300px;
  margin: 50px auto;
  text-align: left;
}

.lightbox_overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.7;
  z-index: 999;
  cursor: pointer;
}

.lightbox {
  position: absolute;
  background: white;
  z-index: 1000;
}

.spinner {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  font-size: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.close {
  position: absolute;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.next_img {
  position: absolute;
  color: #fff;
  font-size: 50px;
  right: 10px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.9;
}

.next_img:hover {
  opacity: 1;
}

.prev_img {
  position: absolute;
  color: #fff;
  font-size: 50px;
  left: 10px;
  cursor: pointer;
  z-index: 1001;
  opacity: 0.9;
}

.prev_img:hover {
  opacity: 1;
}

.gallery {
  margin-top: 50px;
}
.gallery [class*=col-] img {
  height: 250px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  border: 1px solid #fff;
}

.form_area {
  margin-top: 40px;
  background-image: url("../images/form_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: 90px 0;
}
.form_area:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.form_area .container {
  position: relative;
  z-index: 1;
}
.form_area h2 {
  font-family: "Gotham-bold";
  color: #fff;
  margin-bottom: 30px;
}
.form_area p {
  color: #fff;
}
.form_area ul li {
  color: #fff;
}
.form_area .form-control {
  height: 45px;
  border-radius: 0;
  margin-bottom: 15px;
  border: 0;
  font-size: 14px;
}
.form_area textarea.form-control {
  height: 200px;
}
.form_area .btn {
  background-color: #F06D17;
  color: #fff;
  text-transform: uppercase;
  border-radius: 0;
  width: 250px;
}
.form_area .btn:hover {
  background-color: #fff;
  color: #F06D17;
}

.logos {
  padding: 60px 0;
}

/*---------*/
.blocks {
  padding-top: 50px;
}
.blocks .inner_blocks {
  text-align: center;
}
.blocks .inner_blocks img {
  width: 100px;
  height: 100px;
}
.blocks .inner_blocks h5 {
  font-size: 18px;
  margin-top: 20px;
  color: #161F24;
  font-weight: 600;
}
.blocks .row [class*=col] {
  padding-top: 30px;
  padding-bottom: 30px;
}
.blocks .row [class*=col]:nth-child(odd) {
  background-color: #9D8579;
}
.blocks .row [class*=col]:nth-child(even) {
  background-color: #E6B399;
}

/*---PRICE TABLE-----*/
.schedule {
  height: 100%;
}
.schedule .swiper-container {
  padding-bottom: 45px;
  padding-top: 6px;
}
.schedule .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
.schedule .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #F06D17;
}

.services {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.16);
  position: relative;
  border-radius: 10px;
}
.services img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.services h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #F06D17;
}
.services p {
  text-align: justify;
  line-height: 30px;
  font-size: 14px;
}

.pricingTable {
  padding: 15px 10px 70px;
  margin: 0 15px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.pricingTable:after,
.pricingTable:before {
  content: "";
  position: absolute;
  left: 0;
}

.pricingTable .price-value .amount {
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
}

.pricingTable .price-value .month {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 10px;
  text-transform: uppercase;
}

.pricingTable:before {
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
}

.pricingTable:after {
  width: 70px;
  height: 30px;
  background: #9D8579;
  margin: 0 auto;
  top: 70px;
  right: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.pricingTable .title {
  padding: 15px 0;
  margin: 0 -25px 20px;
  background: #9D8579;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  position: relative;
}

.pricingTable .title:after,
.pricingTable .title:before {
  border-top: 15px solid #9D8579;
  border-bottom: 15px solid transparent;
  position: absolute;
  bottom: -30px;
  content: "";
}

.pricingTable .title:before {
  border-left: 15px solid transparent;
  left: 0;
}

.pricingTable .title:after {
  border-right: 15px solid transparent;
  right: 0;
}

.pricingTable .price-value {
  margin-bottom: 25px;
  color: #2b2b2b;
}

.pricingTable .currency {
  display: inline-block;
  font-size: 30px;
  vertical-align: top;
  margin-top: 8px;
}

.price-value .amount {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
}

.price-value .month {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 10px;
  text-transform: uppercase;
}

.pricingTable .pricing-content {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
  border-top: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
}

.pricingTable .pricing-content li {
  font-size: 15px;
  color: #8f8f8f;
  line-height: 35px;
}

.pricingTable .pricingTable-signup {
  display: inline-block;
  padding: 10px 30px;
  background: #9D8579;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: all 0.7s ease 0s;
  text-decoration: none;
}

.pricingTable .pricingTable-signup:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(0, 100%);
  transition: all 0.6s ease-in-out 0s;
}

.pricingTable .pricingTable-signup:hover:before {
  opacity: 1;
  transform: translate(0, -100%);
}

.pricingTable.blue .pricingTable-signup,
.pricingTable.blue .title,
.pricingTable.blue:after {
  background: #49b0ca;
}

.pricingTable.blue .title:after,
.pricingTable.blue .title:before {
  border-top: 15px solid #407a88;
}

.pricingTable.blue .price-value {
  color: #49b0ca;
}

.pricingTable.pink .pricingTable-signup,
.pricingTable.pink .title,
.pricingTable.pink:after {
  background: #f06ace;
}

.pricingTable.pink .price-value {
  color: #f06ace;
}

.pricingTable.pink .title:after,
.pricingTable.pink .title:before {
  border-top: 15px solid #773667;
}

@media only screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 30px;
  }
}
/*---------*/
.footer {
  padding-top: 50px;
  margin-top: 40px;
  border-top: 1px solid #9C9C9C;
  text-align: center;
}
.footer .logo img {
  width: 200px;
}
.footer .social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer .social li a {
  display: block;
  padding: 0 10px;
  color: #606060;
  font-size: 20px;
}
.footer .social li a:hover {
  color: #F06D17;
}
.footer p {
  color: #606060;
}
.footer .mobile_app {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .welcome_img img {
    width: 100%;
  }
  .welcome_img:before {
    width: 100%;
  }
  .testo .swiper-container .swiper-slide {
    flex-direction: column;
  }
  .testo .swiper-container .swiper-slide .img {
    margin-bottom: 15px;
  }
  .testo .swiper-container .swiper-slide .testo_desc {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .home_banner .caption img {
    width: 50%;
  }
  .home_banner .caption h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .home_banner {
    height: 65vh;
  }
  .home_banner .caption h1 {
    font-size: 8vw;
  }
  .footer .mobile_app img {
    width: 80%;
  }
}

/*# sourceMappingURL=style.css.map */
