@import "colors.css";
@import "text.css";

body {
  background-color: #eee;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}

.contain {
  max-width: 1024px;
  margin: 0px auto;
}
.icon-circle {
  padding: 10px;
  background-color: var(--yellow);
  border-radius: 100%;
  color: var(--white);
  margin-bottom: -5px;
  margin-right: 10px;
}

.actionBtn {
  border: none;
  padding: 20px 25px;
  background-color: var(--yellow);
  color: var(--white);
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
}

.outlinedBtn {
  border: 1px solid var(--yellow);
  padding: 10px 15px;
  background-color: none;
  color: var(--yellow);
  border-radius: 10px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-size: 0.8em;
  display: inline-block;
}

.outlinedBtn input {
  display: none;
}

.logo img {
  width: 100px;
}

input.form-control,
select.form-control {
  padding: 20px;
  margin-bottom: 20px;
}

option {
  padding: 10px;
}

.img-full img{
  width: 100%
}
/* Nav */

.top_section {
  background: var(--white);
}
nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  padding-right: 40px;
  position: absolute;
  z-index: 100;
  /* background-color: var(--primary) */
}

nav ul {
  margin-left: auto;
}

nav ul li {
  display: inline-block;
  padding: 15px 20px;
}

nav ul li a {
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

nav ul li.flags a img {
  width: 30px;
}

nav ul li.dropdown ul {
  padding: 0;
  margin: 0;
  position: absolute;
  display: none;
}

nav ul li.dropdown ul li {
  display: inline-block;
  background: var(--primary);
  width: 150px;
  transition: 0.3s ease-in;
}

nav ul li.dropdown ul li:hover {
  background: var(--primary-light);
}

nav ul li.dropdown:hover ul {
  display: block;
}

.menu_burger {
  position: absolute;
  top: 5px;
  right: 5px;
  color: var(--yellow);
  font-size: 2em;
}

/* Jumbo thron */
.jumbothron {
  width: 100%;
  height: 600px;
  display: flex;
  background: url("./../img/background.jpg") center no-repeat;
  background-size: cover;
  margin: 0;
  align-items: center;
  padding-left: 10%;
  flex-direction: row;
}

.jumbothron-min {
  width: 100%;
  height: 400px;
  display: flex;
  background: var(--primary) url("./../img/background_classes.jpg") center
    no-repeat;
  background-size: cover;
  margin: 0;
  align-items: center;
  flex-direction: row;
}

.jumbothron .caption,
.jumbothron-min .caption {
  color: var(--white);
}

.jumbothron .actionBtn {
  display: inline-block;
}

.jumbothron .caption .col-md-8 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.jumbothron .caption h2,
.jumbothron-min .caption h2 {
  font-size: 4em;
  text-transform: uppercase;
  font-weight: 700;
}

.jumbothron-min .caption h2 {
  color: var(--yellow);
  margin-bottom: 20px;
}

.jumbothron .cover {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 600px;
  align-items: center;
}

.caption .img-full img{
  margin-bottom: -140px;
}

/* Box with icon */

.box_icon {
  padding: 25px;
}

.box_icon > div {
  color: var(--grey-dark);
  padding: 20px 10px;
  text-align: left;
  border-radius: 5px;
  background-color: var(--white);
}

.box_icon > div.active {
  background: var(--primary);
}

.box_icon > div h4 {
  font-weight: 300;
}

.box_icon > div i {
  color: var(--primary);
  background-color: var(--primary-light);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  padding-top: 8px;
  margin: 10px;
}

.box_reg {
  text-align: center;
  padding-top: 100px;
}

a.box_icon,
a.box_icon_line {
  text-decoration: none;
}

.box_icon.hover {
  transition: 0.3s ease;
}

.box_icon.hover:hover > div {
  background-color: var(--primary);
  color: var(--white);
}

.box_icon.hover:hover > div p {
  color: var(--white);
}

.box_icon.hover:hover > div i {
  color: var(--white);
  background-color: var(--primary-light);
}

.box_icon_line {
  padding: 20px;
  background-color: var(--primary);
  text-align: center;
  font-size: 1.2em;
}

.box_icon_line.active {
  background-color: var(--yellow);
}

.box_icon_line span {
  color: var(--white);
}

.box_icon_line.active span {
  color: var(--grey-dark);
}

.box_icon_line i {
  display: inline-block;
  color: var(--white);
  background-color: var(--yellow);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  padding-top: 8px;
}

.box_icon_line.active i {
  color: var(--grey-dark);
  background-color: var(--yellow);
}

/* Flex behavior */

.section1{
  background: url("./../img/3.png") center no-repeat;
  background-size: 600px;
  padding-bottom: 30px;
}

.section1 .text-box {
  padding-top: 200px;
}

.section1 .text-box h3 {
  font-weight: 300;
  margin-bottom: 30px;
}

.section1 .box_icon > div{
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
}

.section1 .box_icon > div:hover{
  background-color: var(--white);
}

.section2 img {
  width: 100%;
}

/* footer */
footer {
  background-color: var(--grey-dark);
}

footer h3,
footer h4 {
  color: var(--grey);
}

.socialmedia a {
  color: var(--orange);
  transition: 0.3s ease;
  margin: 10px;
}

.socialmedia a:hover {
  color: var(--primary-light);
}

.whatsApp {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #2cb742;
  color: var(--white);
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 10px;
  bottom: 10px;
  transition: 0.3s ease-out;
}

.whatsApp:hover {
  width: 60px;
  height: 60px;
  border-radius: 30px;
}

/* Classess */

.class-section1 {
  margin-top: -20px;
}

.class-section2 {
  margin-top: 30px;
}

.list1 {
  margin: 0;
  padding: 0;
}

.list1 li {
  list-style: none;
  padding: 5px 0px;
  color: var(--grey-dark);
}

.list1 li i {
  color: var(--yellow);
}

.class-image {
  text-align: right;
}

.class-image img {
  width: 35%;
  margin: 2%;
  display: inline-block;
}

/* Tabs */
.tab_content {
  display: none;
}

.tab_content.open {
  display: block;
}

/* registration page */

.registeration-section1 {
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Contact page */
.contact_info i {
  font-size: 1.2rem;
  background-color: var(--yellow);
  width: 50px;
  display: inline-flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  color: var(--white);
  border-radius: 25px;
  margin-right: 20px;
}

/* Gallery */

.gallery-section1 {
  padding: 20px 0px;
}

.gallery-section1 img {
  display: inline-block;
  width: 200px;
  margin: 5px;
  opacity: 0.8;
  transition: 0.3s all;
}

.gallery-section1 img:hover {
  opacity: 1;
}

/* Mini Gallery */
.minGallery {
  margin-top: 50px;
  margin-bottom: 50px;
}
.minGallery .item {
  padding: 5px;
}
.minGallery .item img {
  width: 100%;
}

/* Gallery */

.gallery .item {
  padding: 20px;
}

.gallery .item .row {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
}

.galleryItem {
  width: 100%;
  height: 150px;
}

/* About us */
.about-section1 {
  padding: 20px 0px;
}

.col-md-3.d-flex#events{
  border-bottom: 2px solid #000;
}