@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

@font-face
{

font-family: conthrax;

src:url(conthrax.otf);

}

:root {
	--main-color: #339933;
    --black-color: #000000;
    --white-color: #ffffff;
    --title-color: #ffffff;
    --text-color: #ffffff;
    --body-color: #232323;
	--footer-color: #1a1817;
	--text-font: 'Barlow', sans-serif;
    --title-font: 'conthrax';
    --text-font-size: 14px;
    --title-font-size: 2rem;
    --biggest-font-size: 5rem;
    --bigger-font-size: 3.5rem;
    --big-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    --text-line-height: 2rem;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-size: var(--text-font-size);
	font-family: var(--text-font);
	scroll-behavior: smooth;
    color: var(--text-color);
    overflow-x: hidden;
}

body
{
	background-attachment: fixed;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    height: 100%;
    overflow-x: hidden;
}

a {
	text-decoration: none;
    color: var(--main-color);
}



.animated {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }



.container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
    width: 100%;
}

.col-right
{
    display: flex;
    width: 100%;
}

.col-left
{
    display: flex;
    width: 100%;
}

img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0rem;
	text-align: center;
}

.section-title span {
	color: var(--main-color);
}

div.header .nav-bar
{
    display: flex;
    flex-direction: column;
    background-color: var(--main-color);
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

div.header .nav-top .container
{
    color: var(--white-color);
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}
div.header .nav-top .container span
{
    padding: 0.2rem;
    width: auto;
}
div.header .nav-top .container span i
{
    margin-right: 0.5rem;
}

nav
{
    display: none;
}

#header {
	left: 0;
	top: 0;
	width: 100%;
    height: 100%;
	display: flex;
	align-items: center;
    background-image: url(../img/header_bg.jpg); 
    background-size: cover;
	justify-content: space-between;
	align-items: center;
    padding-bottom: 3rem;
}

#header div.header
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header .header {
	min-height: 8vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	height: 100%;
	padding: 0 10px;
}

#header .brand {
	display: flex;
	align-items: center;
	justify-content:center;
	width: 100%;
	height: 100%;
	padding: 15px 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
	background-color: rgb(31, 30, 30);
}
#header .nav-list ul.active {
	left: 0%;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
	text-align: center;
;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: var(--main-color);
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	left:calc(50% - 30px)
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 2s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.5s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}


div.header .nav-logo
{
    width: 70%;
    margin: 0.5rem auto;
}

div.header .header-content
{
    display: flex;
    flex-direction: column-reverse;
    height: 100%;
}

div.header .col-right
{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
div.header .col-right img
{
    width: 95%;
    height: auto;
}

div.header .col-left 
{
    display: flex;
    flex-direction: column;
}
div.header .col-left h3
{
    font-family: var(--title-font);
    width: 95%;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-align: center;
}

div.header .col-left p
{
    width: 100%;
    text-align: left;
    padding: 1rem;
    text-align: center;
    display: none;
}

div.header .col-left h1
{
    font-family: var(--title-font);
    color: var(--white-color);
    padding: 1rem 0;
    text-align: center;
    display: none;
}

div.header .col-left h1 span
{
    color: var(--main-color);
}





.btn-register {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    color: var(--white-color);
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    margin: auto;
    transition-duration: 0.4s;
    position: relative;
    overflow: hidden;
    width: 80%;
    text-align: center;
  }
  
  .btn-register:hover {
    background: var(--main-color);
  }
  
  .btn-register span {
    transition: 0.5;
    opacity: 1;
    margin: 0;
    padding: 0;
  }
  
  .btn-register span:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--main-color));
    animation: animate1 2s linear infinite;
  }
  
  @keyframes animate1 {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .btn-register span:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--main-color));
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
  }
  
  @keyframes animate2 {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(100%);
    }
  }
  
  .btn-register span:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, var(--main-color));
    animation: animate3 2s linear infinite;
  }
  
  @keyframes animate3 {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .btn-register span:nth-child(4) {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, transparent, var(--main-color));
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
  }
  
  @keyframes animate4 {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(-100%);
    }
  }



#icon
{
    background-color: var(--main-color);
    width: 100%;
    padding: 2rem 1rem;
}


#icon .icon{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

#icon .icon div
{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
}

#icon .icon div h3
{
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin: 0.5rem auto;
}

#icon .icon div p
{
    text-align: center;
}

#icon .icon div img
{
    width: 50%;
    margin: 0 auto;
}

#about .about
{
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 3rem 0;
}

#about .about .col-right
{
    display: flex;
    flex-direction: column;
}

#about .about .col-right h1
{
    color: var(--white-color);
}

#about .about .col-right p
{
    padding: 1rem 2rem;
}

#about .about .col-left img
{
    width: 80%;
    margin: 1rem auto;
}


#offer .offer div
{
    height: 300px;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

#offer .offer div span
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: var(--white-color);
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    text-transform: uppercase;
    z-index: 99;
}

#offer .offer div .big-box
{
    width: 100%;
    
}

#offer .offer div .small-box
{
    width: 100%;
}

#offer .offer div img:hover
{
    opacity: 0.8;
    transition: 1s;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}

#offer .pop
{
    padding: 5rem 0;
    display: none;
}

#offer .pop-active
{
    display: flex;
}

#offer .pop-active .container
{
    flex-direction: column;
}

#offer .pop-active .container .col-right
{
    flex-direction: column;
    padding: 3rem;
}


#offer .pop-active .container .col-right ul
{
    margin: 2rem 0;;
}

#offer .pop-active
{
    flex-direction: row;
}

#ref
{
    background: linear-gradient(90deg, rgba(51,153,51,0) 40%, rgba(51,153,51,1) 40%, rgba(51,153,51,1) 60%, rgba(51,153,51,0) 60%);
    width: 100%;
}

#ref .ref
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: auto;
}

#ref .ref div
{
	color: white;
	text-align: center;
	width: 40%;
    margin: 1rem auto;
}

#ref .ref div img
{
    width: 100%;
    height: auto;
}

.wrap {
	position: relative;
  }
  

  #slider
  {
	display: flex;
  }

  #slider .slide
  {
	width: 100vw;
	display: flex;
	flex-direction: column;
	transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
  }

  .arrow {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: 0px;
	width: 0;
	height: 0;
	border-style: solid;
  }
  
  #arrow-left {
	border-width: 15px 20px 15px 0;
	border-color: transparent rgba(255, 255, 255, 0.7) transparent transparent;
	left: 0;
	margin-left: 15px;
  }
  
  #arrow-right {
	border-width: 15px 0 15px 20px;
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.7);
	right: 0;
	margin-right: 15px;
  }

#sponsor
{
    background-image: url(../img/sponsor-bg.jpg);
    background-size: cover;
    background-attachment: none;
    background-position: center center;
}

#sponsor .sponsor
{
    background-color: rgba(51, 153, 51, 0.75);    
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#sponsor .sponsor img
{
    width: 50%;
    max-width: 300px;
    margin: 2rem;
}

#sponsor .sponsor h1
{
    font-family: var(--title-font);
    text-transform: uppercase;
    padding: 0.5rem;
    font-size: 3rem;
}

#sponsor .sponsor h3
{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
}

#contact .contact
{
    display: flex;
    flex-direction: column;
}

#contact .contact .col-left
{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 2rem auto;
    border-left: 2px solid var(--main-color);
    padding-left: 2rem;
    text-transform: uppercase;
}

#contact .contact .col-left h1
{
    font-family: var(--title-font);
    margin-bottom: 1rem;
}

#contact .contact .col-left div
{
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#contact .contact .col-left div i
{
    margin-right: 1rem;
    color: var(--main-color);
}

#contact .contact .col-right
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .contact .col-right .mapa
{
    height: 400px;
    margin-bottom: 2rem;
}

footer
{
    border-top: 1px solid var(--white-color);
    border-bottom: 1px solid var(--white-color);
    padding: 2rem;
    flex-wrap: wrap;
}

footer .col-left
{
    display: none;
}

footer .col-right 
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .col-right img
{
    width: 60%;
    margin: 1rem auto;
}

footer .container
{
    border-top: 1px solid var(--white-color);
    padding: 1rem 0;
    justify-content: space-between;
}

@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}



@media only screen and (min-width: 1200px) {

    .animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
      }
      

.container
{
    width: 1440px;
}

.col-right
{
    display: flex;
    width: 50%;
}

.col-left
{
    display: flex;
    width: 50%;
}


#header
{
	height: 100%;
}

#header .hamburger {
    display: none;
}

#header .nav-list
{
    width: 80%;
    margin: 0 auto;
}

#header .nav-list ul {
	list-style: none;
	position: relative;
	width: 80%;
    left: 0;
    top: 0;
    margin: 0 auto;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
	background-color:transparent;
}


#header .nav-list ul.active {
	left: 0%;
}

#header .nav-list ul a {
	font-size: 1.5rem;
	font-weight: 300;
	letter-spacing: 0rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
	text-align: center;
;
}
#header .nav-list ul a::after {
	content: none;
}
#header .nav-list ul li:hover a::after {
	transform: translate(0%, 0%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: var(--main-color);
}


div.header ul
{
    display: flex;
}
div.header .nav-list 
{
    display: flex;
    width: 80%;
    flex-direction: column;
}

div.header .nav-list .nav-logo
{
    max-width: 450px;
    margin: 0 auto;
}
div.header .nav-list
{
    width: 100%;
    border-bottom: 1px solid #FFF;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

div.header .nav-list ul
{
    width: 80%;
    display: flex;
    list-style: none;
    justify-content: space-around;
}

div.header .nav-list ul li
{
    font-size: var(--big-font-size);
    color: var(--white-color);
}

div.header .nav-list ul li a
{
    color: var(--white-color);
    transition: .5s;
}

div.header .nav-list ul li a:hover
{
    color: var(--main-color);
}


div.header .header-content
{
    display: flex;
    flex-direction: row;
    height: 100%;
}
div.header .col-right
{
    height: 100%;
}
div.header .col-left 
{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}


div.header .col-left h3
{
    font-family: var(--title-font);
    width: 75%;
    font-size: 1.5rem;
    text-transform: uppercase;
    max-width: 400px;
    text-align: left;
}

div.header .col-left p
{
    width: 75%;
    text-align: left;
    padding: 1rem 0;
    display: flex;
    max-width: 450px;
}

div.header .col-left h1
{
    font-family: var(--title-font);
    color: var(--white-color);
    font-size: 4rem;
    padding: 1rem 0;
    text-align: center;
    display: block;
    margin: 0 0;
    width: 75%;
    margin-top:4rem;
}

div.header .col-left h1 span
{
    color: var(--main-color);
}

.btn-register {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 3rem;
    padding-right: 3rem;
    color: var(--white-color);
    text-transform: uppercase;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    margin-left:12.5%;
    transition-duration: 0.4s;
    position: relative;
    overflow: hidden;
    width: 50%;
    text-align: center;
  }




div.header .col-left button
{
    text-transform: uppercase;
    padding: 1rem;
    border: 1px solid var(--white-color);
    text-transform: uppercase;
    background-color: transparent;
    color: var(--white-color);
    margin: 0;
}


#icon .icon{
    flex-direction: row;
    }
    
    #icon .icon div
    {
        width: 20%;
        min-width: 300px;
    }




    #offer .offer
{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 0;
}



    #offer .offer div
{
    height: 350px;
    position: relative;
    background-color: #000000;
    overflow: hidden;
}

#offer .offer div span
{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    color: var(--white-color);
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    text-transform: uppercase;
    z-index: 99;
}

#offer .offer .big-box
{
    width: 50%;
}

#offer .offer .small-box
{
    width: calc(100% / 3);
}


#ref
{
    background: linear-gradient(0deg, rgba(51,153,51,0) 40%, rgba(51,153,51,1) 40%, rgba(51,153,51,1) 60%, rgba(51,153,51,0) 60%);
    width: 100%;
    padding: 4rem 0;
    box-sizing: border-box;
}

#ref .ref
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	height: auto;
    width: 80%;
    margin: 0 auto;
}

#ref .ref div
{
	color: white;
	text-align: center;
	width: 30%;
    max-width: 350px;
    margin: 1rem auto;
}


#sponsor
{
    background-attachment: fixed;
}


#about .about
{

    flex-direction: row;
    margin: 4rem auto;
}

#about .about .col-right
{
    margin-left: 10%;
}

#about .about .col-right h1
{
    color: var(--white-color);
    width: 60%;
}

#about .about .col-right p
{
    padding: 1rem 2rem;
    width: 60%;
    text-align: left;
}

#about .about .col-left
{
    justify-content: flex-end;
    padding-right: 3rem;
}

#about .about .col-left .about-img
{
    width: 50%;
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-right: 15px solid var(--main-color);
    border-bottom: 15px solid var(--main-color);
}


#about .about .col-left img
{
    width: auto;
    height: 100%;
    margin: 0rem auto;
}

#contact .contact
{
    display: flex;
    flex-direction: row;
}

#contact .contact .col-left
{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 2rem auto;
    border-left: 2px solid var(--main-color);
    padding-left: 2rem;
    text-transform: uppercase;
}

#contact .contact .col-left h1
{
    margin-bottom: 6rem;
    font-size: 2rem;
}

#contact .contact .col-left div
{
    margin-bottom: 4rem;
    font-size: 2rem;
}

#contact .contact .col-left div i
{
    margin-right: 2rem;
    color: var(--main-color);
}

#contact .contact .col-right
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#contact .contact .col-right .mapa
{
    height: 100%;
    width: 100%;
    margin-bottom: 5rem;
    margin-top: 5rem;
}

#contact .contact .col-right .mapa iframe
{
    height: 100%;
    min-height: 500px;
}

footer 
{
    flex-wrap: wrap;
}

footer .container
{
    border-top: 1px solid var(--white-color);
    padding: 1rem 0;
    justify-content: space-between;
}

footer .col-left
{
    display: flex;
}

footer .col-left ul
{
    list-style: none;
    padding: 3rem;
}


footer .col-left ul li
{
    padding-bottom: 2rem;
}

footer .col-left ul a
{
    color: var(--white-color);
}


footer .col-right 
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer .col-right img
{
    width: auto;
    max-height: 100px;
    margin: 3rem 3rem;
}


#offer .pop-active .container
{
    flex-direction: row;
}

#offer .pop-active .container .col-right
{
    flex-direction: column;
    padding: 3rem;
}


#offer .pop-active .container .col-right ul
{
    margin: 2rem 0;;
}

#offer .pop-active
{
    flex-direction: row;
}


nav
{
    display: flex;
    position: fixed;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 0 3rem;
    z-index:9999;
    margin-top:-50px;
    transition: 1s;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.8);
-moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.8);
box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.8);
}

nav ul
{
    display: flex;
    flex-direction: row;
    width: 75%;
    height: 50px;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.nav-active
{
    margin-top:0px;
}


nav ul a
{
    color: var(--white-color);
}

nav ul a:hover
{
    color:var(--main-color)
}

}