/*google font*/
@font-face {
  src: url("../fonts/Helvetica.ttf") format("ttf");

  font-family: "Helvetica";
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary-color: #0099cc;
  --white-color: #ffffff;
  --dark-color: #171819;
  --about-bg-color: #e6e3e3a6;

  --gray-color: #909090;
  --link-color: #404040;
  --p-color: #666262;

  --base-font-family: "Helvetica", sans-serif;
  --font-weight-bold: bold;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;

  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 24px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100%;
  --border-radius-small: 2px;
}

body {
  background: var(--white-color);
  font-family: var(--base-font-family);
}

/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-thin);
  line-height: normal;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: capitalize;
  margin: 20px 0;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  margin: 0;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: rgb(194, 188, 188);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.5em;
}

b,
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

.section {
  padding: 7rem 0;
}

/* BUTTON */

.custom-btn {
  background: transparent;
  border-radius: var(--border-radius-small);
  padding: 14px 24px;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  color: var(--primary-color);
}

.custom-btn:focus {
  box-shadow: none;
}

.custom-btn.bordered:hover,
.custom-btn.bordered:focus,
.custom-btn.bg-color:hover,
.custom-btn.bg-color:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.bordered {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.bg-color {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
  color: #9aceff;
  outline: none;
  text-decoration: none;
}

/* BG OVERLAY */

.bg-overlay {
  background: #5e03f1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

/*---------------------------------------
     MODAL              
  -----------------------------------------*/

.modal-content {
  padding: 2rem 3rem;
}

.modal-header,
.modal-body,
.modal-footer {
  border: 0;
  padding: 0;
}

.membership-form a {
  color: var(--primary-color);
}

/*---------------------------------------
    FEATURE          
  -----------------------------------------*/

.feature {
  background: var(--dark-color);
  padding: 5rem 0;
}

/*---------------------------------------
     MENU             
  -----------------------------------------*/

.container .logo {
  max-width: 100px;
  padding: 0 10px;
  overflow: hidden;
}

.container .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
}

.container .logo a img {
  max-width: 100%;
  max-height: 80px;
}

.navbar {
  background: #0047ab;
  padding: 5px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.navbar-brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand-text {
  color: var(--white-color);
  font-size: var(--h3-font-size);
  font-family: var(--base-font-family);
  font-weight: bold;
  line-height: normal;
  padding-left: 20px;
  padding-bottom: 5px;
  padding-right: 0;
}

.navbar-brand-logo {
  height: 60px;
}

.nav-item .nav-link {
  display: block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-normal);
  text-transform: uppercase;
  padding: 2px 6px;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: #9aceff;
}

.navbar .social-icon li a {
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0 10px 0 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--primary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--primary-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
     HERO              
  -----------------------------------------*/

.hero {
  background-image: url("https://images.unsplash.com/photo-1597266833335-ccd08f703654?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1052&q=80");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 100vh;
  position: relative;
}

/*---------------------------------------
     CLASS               
  -----------------------------------------*/

.class {
  background: var(--white-color);
  padding-top: 50px;
}

.class-info {
  background: var(--white-color);
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.1);
  border-radius: 0 0 2px 2px;
  padding: 1rem 2rem;
  position: relative;
  margin-bottom: 30px;
}

.class-info img {
  border-radius: 2px 2px 0 0;
}

.class-info strong {
  color: var(--gray-color);
}

.class-info p {
  text-align: justify;
  text-justify: auto;
  text-indent: 50px;
  word-spacing: 1px;
  padding-top: 15px;
  height: 270px;
  overflow: hidden;
}

.class-info a {
  display: inline-block;
  color: #fff;
  background-color: #2196f3;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.class-info a:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.class .showContent p {
  height: auto;
}

.class .showContent a.readmore-btn {
  background-color: rgb(247, 153, 30);
}

.class-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  display: block;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
}

/*---------------------------------------
     SCHEDULE             
  -----------------------------------------*/

.schedule {
  background: var(--dark-color);
}

.schedule-table {
  display: table;
  border: 0;
  text-align: center;
}

.schedule-table strong,
.schedule-table span {
  display: block;
  text-align: center;
}

.schedule-table strong {
  color: var(--white-color);
}

.schedule-table span {
  color: var(--gray-color);
}

.schedule-table span,
.schedule-table small {
  font-size: var(--menu-font-size);
  text-transform: uppercase;
}

.schedule-table small {
  position: relative;
  top: 10px;
}

.table .thead-light th,
.schedule-table tr td:first-child {
  background: var(--primary-color);
  border: 1px solid #212122;
  color: var(--white-color);
}

.schedule-table .thead-light th {
  border-bottom: 0;
  text-transform: uppercase;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid #212122;
}

.table-bordered td {
  padding-bottom: 22px;
}

.table td,
.table th {
  padding: 1rem;
}

/*---------------------------------------
      ABOUT & TEAM            
  -----------------------------------------*/

.about {
  background: var(--white-color);
  padding-bottom: 50px;
}

.about p {
  text-align: justify;
  text-justify: inter-word;
  text-indent: 50px;
  word-spacing: -2px;
}

.about-working-hours {
  border-left: 2px solid;
  padding-left: 3.5rem;
}

.about-working-hours strong {
  color: var(--white-color);
  opacity: 0.85;
}

.team-thumb {
  position: relative;
  padding-top: 50px;
}

.team-thumb .shadow {
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
}

.team-info {
  background: var(--white-color);
  border-radius: 0 0 2px 2px;
  box-shadow: 6px 0 38px rgba(20, 20, 20, 0.1);
  padding: 20px;
  position: relative;
}

.team-info span {
  font-weight: var(--font-weight-light);
  opacity: 0.85;
}

.team-info .social-icon {
  position: absolute;
  top: 10px;
  right: 20px;
}

.team-info .social-icon li {
  display: block;
}

.description {
  padding-top: 0px;
  margin: 0;
  padding-bottom: 4rem;
}

.description p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -2px;
  line-height: 0.75cm;
  text-indent: 50px;
  padding-left: 10px;
  padding-bottom: 10px;
}

/*---------------------------------------
     CONTACT              
  -----------------------------------------*/
#contact {
  padding-top: 50px;
}
.contact {
  background: #f0f0f0a6;
  min-height: 80vh;
}

.contact .container {
  margin-top: 50px;
}

.webform input,
button#submit-button {
  height: calc(2.25rem + 20px);
}

.form-control {
  border-radius: var(--border-radius-small);
  margin: 1.3rem 0;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--dark-color);
}

button#submit-button {
  background: #0047ab;
  border-color: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

button#submit-button:hover {
  background: #598fc2;
}

.contact h2 + p {
  max-width: 90%;
}

.contact h2 {
  color: var(--dark-color);
}
.contact p .fa {
  color: #000000;
}

.google-map {
  border-top: 2px solid #000000;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

.google-map iframe {
  width: 100%;
}

/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.site-footer {
  background: #0047ab;
  border-top: 1px solid #efebeb;
  padding: 3rem 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: var(--font-weight-light);
}

.site-footer a:hover {
  font-size: var(--base-font-size);
  color: #9aceff;
}

.site-footer p {
  font-size: var(--base-font-size);
  color: #ffffff;
}

.contact .fa,
.site-footer .fa {
  color: white;
}

/*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 5px 0 0 0;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  text-decoration: none;
  display: inline-block;
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  margin: 5px 10px;
  text-align: center;
}

.social-icon li a:hover {
  color: var(--primary-color);
}

#glass {
  background-color: rgba(212, 212, 212, 0.1);
  width: 500px;
  border-radius: 5px;
  padding: 30px;
  padding-top: 130px;
  box-shadow: 10px 5px 5px rgba(0, 140, 255, 0.2);
  border: 3px solid rgb(230, 230, 230);
}

#glass-a {
  background-color: rgba(212, 212, 212, 0.1);
  width: 300px;
  border-radius: 5px;
  padding: 30px;

  box-shadow: 10px 5px 5px rgba(0, 140, 255, 0.2);
  border: 3px solid rgb(230, 230, 230);
  padding-bottom: 50px;
}

#glass-a .indent {
  padding-left: 80px;
  padding-top: 20px;

  height: 140px;
}
#glass-a ul {
  font-size: 1.25rem;
  font-weight: bold;
}

/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (max-width: 992px) {
  #glass {
    padding-top: 40px;
  }
  .section {
    padding: 5rem 0;
  }

  .container .logo {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .nav-item .nav-link {
    padding: 6px;
  }

  .navbar .social-icon {
    margin-top: 22px;
  }

  .navbar-collapse,
  .site-footer {
    text-align: center;
  }

  .schedule-table {
    display: block;
  }

  .modal-content {
    padding: 2rem;
  }

  .description {
    padding-top: 0px;
  }
  .about {
    padding-bottom: 3rem;
  }
}

@media screen and (max-width: 539px) {
  .description p {
    padding-left: 0px;
  }
  glass-a ul {
    font-size: 1.1rem;
    font-weight: bold;
  }
  #glass-a h3 {
    font-size: 1.2rem;
    font-weight: bold;
  }
  #glass-a .indent {
    padding-left: 40px;
  }

  .cookie-container p {
    font-size: 12px;
  }

  h1 {
    font-size: 38px;
  }

  #carouselExampleIndicators .carousel-item h1 {
    font-size: 24px;
  }

  #carouselExampleIndicators .carousel-item h6 {
    font-size: 14px;
  }

  .about-working-hours {
    border-left: 0;
    padding: 22px 0 0 0;
  }

  .contact h2 span {
    display: block;
  }

  .navbar-brand-text {
    font-size: 18px;
  }

  .navbar-brand-logo {
    height: 40px;
  }

  #cs p {
    height: 300px;
  }
  .class-info a {
    display: none;
  }
  #dt p {
    height: 350px;
  }
  #is p {
    height: 430px;
  }

  #ccc p {
    height: 350px;
  }

  body p {
    font-size: 16px;
  }

  body h2 {
    font-size: 26px;
  }
  body h3 {
    font-size: 24px;
  }

  .btn-callout {
    font-size: 10px;
  }
  .contact .container {
    margin-top: 0px;
  }
  .slick-next {
    display: none;
  }
  .slick-prev {
    display: none;
  }
  .carousel3 {
    margin-left: 10px;
    margin-right: 10px;
  }

  #glass-a {
    height: 370px;
  }
}

@media screen and (max-width: 321px) {
  .description p {
    padding-left: 0px;
  }
  .slick-next {
    display: none;
  }
  .slick-prev {
    display: none;
  }
  .navbar-brand-text {
    font-size: 16px;
    margin-top: 6px;
  }

  .navbar-brand-logo {
    height: 36px;
  }

  #cs p {
    height: 300px;
  }
  #dt p {
    height: 350px;
  }
  #is p {
    height: 430px;
  }
  #ccc p {
    height: 350px;
  }
  .btn-callout {
    font-size: 10px;
  }
}

/* //project */

#project_slider {
  display: flex;
  align-items: center;

  background: #f0f0f0a6;
  padding: 5rem 0;
  min-height: 100vh;
}

.wrapper {
  width: 100%;
  border-color: none;

  margin-bottom: 50px;
}

.wrapper h2 {
  text-align: center;
  padding-bottom: 4rem;
}
.wrapper img {
  width: 100%;
  height: auto;
}

.carousel2 .card {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-dot {
  height: 15px;
  width: 15px;
  border-radius: 24px;
  cursor: pointer;
  outline: none;
  margin: 0 5px;
  border: 2px solid #28527a !important ;
  transition: all 0.3s ease;
}

.owl-dot:hover,
.owl-dot.active {
  background: #28527a !important;
}

.project_slider p {
  text-align: justify;
  text-justify: inter-word;
  word-spacing: -2px;
  line-height: 0.75cm;
  text-indent: 50px;
}

.btn-callout {
  background-color: rgba(0, 4, 233, 0.527);
  border: 1px solid white;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  transition: 0.5s all ease-in-out;
  border-radius: 15px;
  font-weight: bold;
}

.btn-callout:hover {
  cursor: pointer;
  background: white;
  color: #1f4141;
  -webkit-animation: none;
  animation: none;
}

.button-pulse {
  -webkit-animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  animation: pulse 2s infinite 3s cubic-bezier(0.25, 0, 0, 1);
  box-shadow: 0 0 0 0 white;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }
}
.button-float {
  -webkit-animation: float 1.5s linear alternate infinite;
  animation: float 1.5s linear alternate infinite;
}

@-webkit-keyframes float {
  50% {
    transform: translateY(-px);
  }
  100% {
    transform: translateY(-18px);
  }
}

@keyframes float {
  50% {
    transform: translateY(-px);
  }
  100% {
    transform: translateY(-18px);
  }
}

/*MESSAGE */

#name {
  text-transform: uppercase;
}

.cookie-container {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: #2f3640;
  color: #f5f6fa;
  padding: 0 32px;
  box-shadow: 0 -5px 16px rgba(47, 54, 64, 0.39);

  transition: 100ms;

  z-index: 10;
}

.cookie-container {
  padding-top: 20px;
  display: block;
}

.cookie-container.active {
  bottom: 0;
}

.cookie-container a {
  color: #7790f7;
}

.cookie-btn {
  background: #0047ab;
  border: 0;
  color: #f5f6fa;
  padding: 12px 48px;
  font-size: 18px;
  margin-bottom: 16px;
  border-radius: 8px;
  cursor: pointer;

  z-index: 50;
}

.container1 {
  background: var(--dark-color);
  height: 90vh;
  width: 90%;

  margin: auto;

  text-align: center;
  opacity: 70%;
  margin-top: 100px;
}

.carousel3 {
  margin-bottom: 100px;
}

.slick-prev:before,
.slick-next:before {
  color: black;
  font-size: 25px;
  margin-left: -2px;
}

#btnScrollToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  background-color: #315e9e;
  color: white;
  padding-top: 12px;
  padding-left: 12px;
  box-shadow: 0 2px 5px 0 rgba(3, 6, 26, 0.15);
  transition: 0.5s all ease-in-out;
  border-radius: 15px;
  margin-right: 310px;
  z-index: 99;
  margin-bottom: 140px;
  display: none;
}

#btnScrollToTop:hover {
  cursor: pointer;
  background: #3679cc;
  color: #fdfdfd;
  -webkit-animation: none;
  animation: none;
}
