767/*
Theme Name:
Author: Alfred Mateu

Colors:
	Body 		  : #868F9B
	Headers 	: #10161A
	Primary 	: #ccff00
	Dark      : #FCFCFF
	Grey 		  : #F4F4F4 #FAFAFA #EEE

Fonts: IBM Plex Mono

Table OF Contents
------------------------------------
1 > General
2 > Logo
3 > Navigation
4 > Header
5 > About
6 > Portfolio
7 > Services
8 >  Why choose us
9 >  Numbers
10 > Pricing
11 > Testimonial
12 > Team
13 > Blog
14 > Blog post
15 > Blog sidebar
16 > Contact
17 > Footer
18 > Responsive
19 > Owl theme
20 > Back to top
21 > Preloader

------------------------------------*/

/*------------------------------------*\
	General
\*------------------------------------*/


/* -- typography -- */

body {
    /*font-family: 'Varela Round', sans-serif;*/
    font-family: 'IBM Plex Mono', monospace !important;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    color: #868F9B;
    background-color: #ff9696 !important;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Montserrat', sans-serif;
    font-weight: 700;*/
    margin-top: 0px;
    margin-bottom: 20px;
    color: #10161A;
}

h1 {
    line-height: 0.9 !important;
}

h2 {
    font-size: 28px;
}
.titulo h2 {
  font-size: 50px;
}


/*h3 {
    font-size: 24px;
}*/

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

a {
    color: #ccff00;
    text-decoration: none;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

a:hover, a:focus {
    text-decoration: none;
    outline: none;
    opacity: 0.8;
    color: #ccff00;
}

.main-color {
    color: #ccff00;
}

.white-text {
    color: #FFF;
}
.blue-text {
  color: #001884;
}
.green-text {
    color: #ccff00;
}
.black-text {
    color: #000000 !important;
}
.darkblue-text {
    color: #000f96;
}
.darkgreen-text {
  color: #e4ff00;
}


::-moz-selection {
    background-color: #ccff00;
    color: #FFF;
}

::selection {
    background-color: #ccff00;
    color: #FFF;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/* -- section  -- */

.section {
    position: relative;
}

.md-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.sm-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}


/* --  background section  -- */

.bg-grey {
    background-color: #FAFAFA;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.bg-dark {
    background-color: #1C1D21;
}

.bg-white {
    background-color: #ffffff;
}


/* --  background image section  -- */

.bg-img {
    /*position: absolute;*/
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /*z-index: -1;*/
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.headerImg, .headerImgV {
  width: 100%;
  height: auto;
}
.bg-about {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /*z-index: -1;*/
    z-index: 0;
    background-color: #b9dd59;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.bg-img .overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: #1C1D21;
}
video {
    max-width: 100%;
    height: auto;
}

/* --  section header  -- */

.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-header .title {
    text-transform: capitalize;
}

.title:after {
    content:"";
  	display:block;
  	height:4px;
  	width:40px;
  	background-color: #ccff00;
    margin-top: 20px;
}

.text-center .title:after {
    margin: 20px auto 0px;
}

/* --  Input  -- */

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input[type="url"], input[type="tel"], textarea {
    height: 40px;
    width: 100%;
    border: none;
	  background: #F4F4F4;
    border-bottom: 2px solid #EEE;
    color: #354052;
    padding: 0px 10px;
    opacity: 0.5;
    -webkit-transition: 0.2s border-color, 0.2s opacity;
    transition: 0.2s border-color, 0.2s opacity;
}

textarea {
    padding: 10px 10px;
    min-height: 80px;
    resize: vertical;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="url"]:focus, input[type="tel"]:focus, textarea:focus {
    border-color: #ccff00;
    opacity: 1;
}

/* --  Buttons  -- */

.main-btn, .white-btn, .outline-btn {
    display: inline-block;
    padding: 5px 20px;
    margin: 3px;
    border: 2px solid transparent;
    /*border-radius: 3px;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;*/
}

.main-btn {
    background: #ccff00;
    color: #FFF;
}

.white-btn {
    /*background: #FFF;
    color: #10161A !important;*/
    background: #ccff00;
    color: #000f96 !important;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
}

.outline-btn {
    background: transparent;
    color: #ccff00 !important;
    border-color: #ccff00;
}

.main-btn:hover, .white-btn:hover, .outline-btn:hover {
    opacity: 0.8;
}


/*------------------------------------*\
	Logo
\*------------------------------------*/

.navbar-brand {
    padding: 0;
}

.navbar-brand .logo, .navbar-brand .logo-alt {
    max-height: 50px;
    /*display: block;*/
    display: none;
    padding-left: 5px;
    padding-top: 5px;
}
.brand {
    max-width: 4.5%;
    position: fixed;
    top: 60px;
    left: 3%;
    z-index: 999;
}

.brand .logo {
  display: inline-block;
  max-width: 100%;
}
#nav:not(.nav-transparent):not(.fixed-nav) .navbar-brand .logo-alt {
	display: none;
}

#nav.nav-transparent:not(.fixed-nav) .navbar-brand .logo {
	display: none;
}

#nav.fixed-nav .navbar-brand .logo-alt {
    display: none;
}
.video-1920 {
    display: inline-block !important;
}
.video-768 {
  display: none !important;
}
.headerImg {
  display: inline-block !important;
}
.headerImgV {
  display: none !important;
}

@media only screen and (max-width: 767px) {
    #nav.nav-transparent .navbar-brand .logo-alt {
        display: none !important;
    }
    #nav.nav-transparent .navbar-brand .logo {
        display: block !important;
    }
    .brand .logo {
        display: none !important;
    }
    .video-1920 {
        display: none !important;
    }
    .video-768 {
      display: inline-block !important;
    }
}

@media only screen and (max-width: 480px) {
    .headerImg {
      display: none !important;
    }
    .headerImgV {
      display: inline-block !important;
    }
}

/*------------------------------------*\
	Navigation
\*------------------------------------*/

#nav {
    /*padding: 10px 0px;*/
    padding: 40px 0px;
    background: #FFF;
    -webkit-transition: 0.2s padding;
    transition: 0.2s padding;
    z-index: 999;
}

#nav.navbar {
  /* Alfred 24/04/2019 */
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
  /* ---------------- */
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
}

#nav.fixed-nav {
    position: fixed;
    left: 0;
    right: 0;
    /*padding: 0px 0px;*/
    padding: 40px 0px;
    /*background-color: #FFF !important;
    border-bottom: 1px solid #EEE;*/
}

#nav.nav-transparent {
    background: transparent;
}


/* -- default nav -- */

@media only screen and (min-width: 768px) {
    .main-nav li {
        padding: 0px 30px;
        font-weight: 500;
    }
    .main-nav li a {
        /*font-size: 14px;*/
        -webkit-transition: 0.2s color;
        transition: 0.2s color;
    }
    .main-nav>li>a {
        /*color: #10161A;*/
        color: #fff;
        padding: 15px 0px;
    }
    .main-nav>li.tickets>a {
        /*color: #10161A;*/
        color: #000000 !important;
        padding: 15px 15px;
        background-color: #ccff00;
    }
    #nav.nav-transparent:not(.fixed-nav) .main-nav>li>a {
        /*color: #fff;*/
    }
    .main-nav>li>a:hover, .main-nav>li>a:focus, .main-nav>li.active>a {
        background: transparent;
        /*color: #ccff00;*/
        color: #ccff00;
    }
    .main-nav>li>a:after {
        content: "";
        display: block;
        background-color: #ccff00;
        height: 2px;
        width: 0%;
        -webkit-transition: 0.2s width;
        transition: 0.2s width;
    }
    .main-nav>li>a:hover:after, .main-nav>li.active>a:after {
        width: 100%;
    }
    /* dropdown */
    .has-dropdown {
        position: relative;
    }
    .has-dropdown>a:before {
        font-family: 'FontAwesome';
        content: "\f054";
        font-size: 6px;
        margin-left: 6px;
        float: right;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: 0.2s transform;
        transition: 0.2s transform;
    }
    .dropdown {
        position: absolute;
        right: -50%;
        top: 0;
        background-color: #ccff00;
        width: 200px;
        -webkit-box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        box-shadow: 0px 5px 5px -5px rgba(53, 64, 82, 0.2);
        -webkit-transform: translateY(15px) translateX(50%);
        -ms-transform: translateY(15px) translateX(50%);
        transform: translateY(15px) translateX(50%);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>.has-dropdown>.dropdown {
        top: 100%;
        right: 50%;
    }
    .main-nav>.has-dropdown>.dropdown .dropdown.dropdown-left {
        right: 150%;
    }
    .dropdown li a {
        display: block;
        color: #FFF;
        border-top: 1px solid rgba(250, 250, 250, 0.1);
        padding: 10px 0px;
    }
    .dropdown li:nth-child(1) a {
        border-top: none;
    }
    .has-dropdown:hover>.dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px) translateX(50%);
        -ms-transform: translateY(0px) translateX(50%);
        transform: translateY(0px) translateX(50%);
    }
    .has-dropdown:hover>a:before {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    .nav-collapse {
        display: none;
    }
}

/* -- mobile nav -- */

@media only screen and (max-width: 767px) {
    #nav {
        padding: 0px 0px;
    }
    #nav.nav-transparent {
        /*background: #FFF;*/
    }
    .main-nav {
        position: fixed;
        right: 0;
        height: calc(100vh - 80px);
        /*-webkit-box-shadow: 0px 80px 0px 0px #1C1D21;
        box-shadow: 0px 80px 0px 0px #1C1D21;*/
        -webkit-box-shadow: 0px 80px 0px 0px #ff9696;
        box-shadow: 0px 80px 0px 0px #ff9696;
        max-width: 250px;
        width: 0%;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
        margin: 0;
        overflow-y: auto;
        /*background: #1C1D21;*/
        background: #ff9696;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    #nav.open .main-nav {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
        width: 100%;
    }
    .main-nav li {
        border-top: 1px solid rgba(250, 250, 250, 0.1);
    }
    .main-nav li a {
        display: block;
        color: #FFF;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
    .main-nav>li.active {
        border-left: 6px solid #ccff00;
    }
    .main-nav li a:hover, .main-nav li a:focus {
        background-color: #ccff00;
        color: #FFF;
        opacity: 1;
    }
    .has-dropdown>a:after {
        content: "\f054";
        font-family: 'FontAwesome';
        float: right;
        -webkit-transition: 0.2s -webkit-transform;
        transition: 0.2s -webkit-transform;
        transition: 0.2s transform;
        transition: 0.2s transform, 0.2s -webkit-transform;
    }
    .dropdown {
        opacity: 0;
        visibility: hidden;
        height: 0;
        background: rgba(250, 250, 250, 0.1);
    }
    .dropdown li a {
        padding: 6px 10px;
    }
    .has-dropdown.open-drop>a:after {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .has-dropdown.open-drop>.dropdown {
        opacity: 1;
        visibility: visible;
        height: auto;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }
}


/* -- nav btn collapse -- */

.nav-collapse {
    position: relative;
    float: right;
    width: 40px;
    height: 40px;
    margin-top: 5px;
    margin-right: 5px;
    cursor: pointer;
    z-index: 99999;
}

.nav-collapse span {
    display: block;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
}

.nav-collapse span:before, .nav-collapse span:after {
    content: "";
    display: block;
}

.nav-collapse span, .nav-collapse span:before, .nav-collapse span:after {
    height: 4px;
    /*background: #10161A;*/
    background: #ccff00;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.nav-collapse span:before {
    -webkit-transform: translate(0%, 10px);
    -ms-transform: translate(0%, 10px);
    transform: translate(0%, 10px);
}

.nav-collapse span:after {
    -webkit-transform: translate(0%, -14px);
    -ms-transform: translate(0%, -14px);
    transform: translate(0%, -14px);
}

#nav.open .nav-collapse span {
    background: transparent;
}

#nav.open .nav-collapse span:before {
    -webkit-transform: translateY(0px) rotate(-135deg);
    -ms-transform: translateY(0px) rotate(-135deg);
    transform: translateY(0px) rotate(-135deg);
}

#nav.open .nav-collapse span:after {
    -webkit-transform: translateY(-4px) rotate(135deg);
    -ms-transform: translateY(-4px) rotate(135deg);
    transform: translateY(-4px) rotate(135deg);
}


/*------------------------------------*\
	Header
\*------------------------------------*/

header {
    position: relative;
}

#home {
    /*height: 100vh;*/
    height: auto;
}

#home .home-wrapper {
    position: absolute;
    left: 0px;
    right: 0px;
    /*top: 32%;*/
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    /*text-align: center;*/
    text-align: left;
}

.home-content h1 {
  text-transform: uppercase;

}
.home-content button {
  margin-top: 20px;
}

.header-wrapper h2 {
    display: inline-block;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb {
    float: right;
    background: transparent;
    margin-bottom: 0px;
}

.header-wrapper .breadcrumb .breadcrumb-item.active {
    color: #868F9B;
}

.breadcrumb>li+li:before {
    color: #868F9B;
}

.logos {
  padding-top: 10%;
}
.home-tickets {
    padding-top: 35px;
    padding-bottom: 35px;
}
.home-tickets>a {
    color: #000000 !important;
    padding: 15px 15px;
    background-color: #ccff00;
    font-size: 30px;
}
.home-tickets>a:hover {
    color: #ccff00 !important;
    background-color: #000000;
    opacity: 1 !important;
}
.boton-free {
  margin-left:40px;
}
.blink_me {
  display: inline-block;
  vertical-align: bottom;
  animation-delay: -0.5s;
}

.blink_me span {
  float: left;
  overflow: hidden;
  animation: hideShow 20s linear infinite;
}

.blink_me span:nth-child(1) { animation-delay: -0s; }
.blink_me span:nth-child(2) { animation-delay: -1s; }
.blink_me span:nth-child(3) { animation-delay: -2s; }
.blink_me span:nth-child(4) { animation-delay: -3s; }
.blink_me span:nth-child(5) { animation-delay: -4s; }
.blink_me span:nth-child(6) { animation-delay: -5s; }
.blink_me span:nth-child(7) { animation-delay: -6s; }
.blink_me span:nth-child(8) { animation-delay: -7s; }
.blink_me span:nth-child(9) { animation-delay: -8s; }
.blink_me span:nth-child(10) { animation-delay: -9s; }
.blink_me span:nth-child(11) { animation-delay: -10s; }
.blink_me span:nth-child(12) { animation-delay: -11s; }
.blink_me span:nth-child(13) { animation-delay: -12s; }
.blink_me span:nth-child(14) { animation-delay: -13s; }
.blink_me span:nth-child(15) { animation-delay: -14s; }
.blink_me span:nth-child(16) { animation-delay: -15s; }
.blink_me span:nth-child(17) { animation-delay: -16s; }
.blink_me span:nth-child(18) { animation-delay: -17s; }
.blink_me span:nth-child(19) { animation-delay: -18s; }
.blink_me span:nth-child(20) { animation-delay: -19s; }

@keyframes hideShow {
  0%, 5%, 10%, 15%, 20%, 25%, 30%, 35%, 40%, 45%, 50%, 55%, 60%, 65%, 70%, 75%, 80%, 85%, 90%, 95%, 100% { width: 0; }
  5% { width: auto; }
}
/*------------------------------------*\
	About
\*------------------------------------*/

.about-content h2 {
  text-transform: uppercase;
  margin-bottom: 4%;
  font-size: 54px !important;
  line-height: 1 !important;
}
.about-content h3 {
  font-weight: 500;
}
/*#about {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #EEE;
    margin: 15px 0px;
}*/
#about p {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 400;
  line-height: 1.2;
}

#about h3 {
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.about:hover h3 {
    color: #fff;
}
.about-item {
  position: relative;
  padding: 40px 20px 40px 20px;
  margin: 15px 0px;
}
.about-item h3{
  padding-top: 15px;
}

/*------------------------------------*\
	Portfolio
\*------------------------------------*/

.speakers-title h2 {
  text-transform: uppercase;
}
.speakers-content {
    text-align: left;
    position: relative;
    z-index: 11;
}

.speakers-content h3 {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.speakers-content span {
    font-family: 'IBM Plex Serif', serif;
    line-height: 1;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}
.work .speaker-data {
  position: relative;
}

.work {
    position: relative;
    padding: 20px;
}

.work>img {
  width: 100%;
}

.work .overlay {
    /*background: #1C1D21;*/
    background: #ff9696;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .overlay {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    /*opacity: 0.8;*/
    opacity: 1;
}

.work .speakers-description {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 25px;
    text-align: left;
    /*-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);*/
}

/*.work .speakers-description h3 {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    color: #FFF;
    margin-bottom: 10px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.work:hover .speakers-description h3 {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}*/

.work .speakers-description span {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 400;
    line-height: 1.2;
    display: block;
    line-height: 1.6;
    /*text-transform: uppercase;*/
    /*-webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);*/
    opacity: 0;
    /*color: #ccff00;*/
    color: #000f96;
    background-color: ;
    margin-bottom: 5px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.work:hover .speakers-description span {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

/*.work .work-link {
    text-align: center;
    margin-top: 20px;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.work .work-link a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #ccff00;
    color: #FFF;
    line-height: 50px;
    text-align: center;
}

.work:hover .work-link {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
}*/


/*------------------------------------*\
	Services
\*------------------------------------*/

#service {
  background-color: #f67d5c;
}
.program-title h2 {
  text-transform: uppercase;
  padding-bottom: 40px;
  font-size: 54px !important;
  line-height: 1 !important;
}
.horario{
  color: #FFF;
  text-align: right;
}
.service {
    position: relative;
    padding: 40px 20px 40px 70px;
    margin: 15px 0px;
    /*border: 1px solid #EEE;*/
}

.service i {
    position: absolute;
    left: 20px;
    text-align: center;
    font-size: 32px;
    color: #ccff00;
    border-radius: 50%;
}

.service:after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    z-index: -1;
    -webkit-transition: 0.2s width;
    transition: 0.2s width;
}

.service:hover:after {
    width: 100%;
}

.service h3 {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

.service:hover h3 {
    color: #fff;
}
.charla {
  margin-bottom: 10px;
}
.item-charla {
  position: relative;
  margin-bottom: 20px;
}
.item-bloque {
  position: relative;
  margin-bottom: 20px;
}
.item-charla p,
.schedule-text p {
      font-family: 'IBM Plex Serif', serif;
      font-weight: 400;
      line-height: 1.2;
}
.schedule-text .tickets,
.schedule-text .tickets-free {
    padding-top: 35px;
}
.schedule-text .tickets-free {
  margin-top: 20px;
}
.schedule-text .tickets>a,
.schedule-text .tickets-free>a {
    color: #000000 !important;
    padding: 15px 15px;
    background-color: #abdc56;
    font-size: 30px;
}
.schedule-text .tickets>a:hover,
.schedule-text .tickets-free>a:hover {
    color: #ccff00 !important;
    background-color: #000000;
    opacity: 1 !important;
}
.caja_ponencia {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.caja_bloque {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  background-color: #abdc56;
}
/*------------------------------------*\
	Safety
\*------------------------------------*/

#safety {
  background-color: #ccff00;
}
.safety-title h2 {
    text-transform: uppercase;
    padding-bottom: 40px;
}
.safety-text h3 {
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}
.safety-text p {
      font-family: 'IBM Plex Serif', serif;
      font-weight: 400;
      line-height: 1.2;
}
.safety-img {
  position: relative;
  padding: 0px 0px 20px 0px;
  margin: 0px;
}
/*------------------------------------*\
	Map
\*------------------------------------*/

#map {
  background-color: #86a0b6;
}
.mapa {
    -webkit-filter: grayscale(100%);
       -moz-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
         -o-filter: grayscale(100%);
            filter: grayscale(100%);
}
.map-title h2 {
    text-transform: uppercase;
    padding-bottom: 40px;
    font-size: 54px !important;
    line-height: 1 !important;
}
.map-text h3 {
  line-height: 1.2;
  font-weight: 400;
}
.map-text p {
      font-family: 'IBM Plex Serif', serif;
      font-weight: 400;
      line-height: 1.2;
}
.intro-map {
  padding-bottom: 40px;
}
.google-maps {
    position: relative;
    padding-bottom: 60%; // This is the aspect ratio
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
/*------------------------------------*\
	Past edition
\*------------------------------------*/

#past-edition {
  background-color: #b98fc3;
}
.video2019 {
  padding-top: 40px;
}
.past-edition-img {
  position: relative;
  padding: 40px 20px 40px 20px;
  margin: 15px 0px;
}
/*------------------------------------*\
	Why choose us
\*------------------------------------*/

.feature {
    margin: 15px 0px;
}
.feature i {
    float: left;
    padding: 5px;
    border-radius: 50%;
    color: #ccff00;
    border: 1px solid #ccff00;
    margin-right: 5px;
}

/*------------------------------------*\
	Numbers
\*------------------------------------*/

.number {
    text-align: center;
    margin: 15px 0px;
}

.number i {
    color: #ccff00;
    font-size: 36px;
    margin-bottom: 20px;
}

.number h3 {
    font-size: 36px;
    margin-bottom: 10px;
}


/*------------------------------------*\
	Pricing
\*------------------------------------*/

.pricing {
    position: relative;
    text-align: center;
    border: 1px solid #EEE;
    background-color: #FFF;
    z-index: 11;
    margin: 15px 0px;
}

.pricing::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: -1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.pricing:hover:after {
    height: 100%;
}

.pricing .price-head {
    position: relative;
    margin-bottom: 20px;
}

.pricing .price-title {
    display: block;
    padding: 40px 0px 20px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .price-title {
    color: #ccff00;
}

.pricing .price {
    position: relative;
    width: 140px;
    height: 140px;
    line-height: 140px;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    border: 2px solid #ccff00;
}

.pricing .price h3 {
  font-size: 42px;
  margin: 0px;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  position: absolute;
  left: 0;
  right: 0;
}

.pricing:hover .price h3 {
    color: #fff;
}

.pricing .duration {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: #10161A;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.pricing:hover .duration {
    color: #fff;
}

.pricing .price-btn {
    padding-top: 20px;
    padding-bottom: 40px;
}

/*------------------------------------*\
	Testimonial
\*------------------------------------*/

.testimonial {
    margin: 15px 0px;
}

.testimonial-meta {
    position: relative;
    padding-left: 90px;
    height: 70px;
    margin-bottom: 20px;
    padding-top: 10px;
}

.testimonial img {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
}

.testimonial h3 {
    margin-bottom: 5px;
}

.testimonial span {
    font-size: 14px;
    color: #ccff00;
    text-transform: uppercase;
}


/*------------------------------------*\
	Team
\*------------------------------------*/

.team {
    position: relative;
    background-color: #F4F4F4;
    padding: 40px 20px;
    margin: 15px 0px;
}

.team::after {
    content: "";
    background-color: #1C1D21;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 0%;
    z-index: 1;
    -webkit-transition: 0.2s height;
    transition: 0.2s height;
}

.team:hover:after {
    height: 100%;
}

.team-img {
    position: relative;
    margin-bottom: 20px;
    z-index: 11;
}

.team-img>img {
  width: 100%;
}

.team .overlay {
    background: #1C1D21;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team:hover .overlay {
    opacity: 0.8;
}

.team .team-content {
    text-align: center;
    position: relative;
    z-index: 11;
}

.team .team-content h3 {
    margin-bottom: 10px;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team .team-content span {
    font-size: 14px;
    text-transform: uppercase;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

.team:hover .team-content h3 {
    color: #FFF;
}

.team:hover .team-content span {
    color: #ccff00;
}

.team .team-social {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.team .team-social a {
    display: block;
    line-height: 50px;
    width: 50px;
    text-align: center;
    background-color: #ccff00;
    color: #FFF;
}

.team:hover .team-social {
    opacity: 1;
}


/*------------------------------------*\
	Blog
\*------------------------------------*/

.blog {
    background-color: #FFF;
    margin: 15px 0px;
}

.blog .blog-content {
    padding: 20px 20px 40px;
}

.blog .blog-meta {
    margin-bottom: 20px;
}

.blog .blog-meta li {
    display: inline-block;
    font-size: 14px;
    color: #10161A;
    margin-right: 10px;
}

.blog .blog-meta li i {
    color: #ccff00;
    margin-right: 5px;
}

/*------------------------------------*\
	Blog post
\*------------------------------------*/

#main .blog .blog-content {
  padding: 20px 0px 0px;
}

#main .blog {
  margin-top: 0px;
}

/* -- blog tags -- */

.blog-tags {
    margin: 40px 0px;
}

.blog-tags h5 {
    margin-bottom: 0;
    display: inline-block;
}

.blog-tags a {
    display: inline-block;
    padding: 6px 13px;
    font-size: 14px;
    margin: 2px 0px;
    background: #F4F4F4;
    color: #10161A;
}

.blog-tags a:hover {
  color: #FFF;
  background-color: #ccff00;
}

.blog-tags a i {
    margin-right: 3px;
    color: #ccff00;
}

.blog-tags a:hover i {
  color: #FFF;
}


/* -- blog author -- */

.blog-author {
    margin: 40px 0px;
}

.blog-author .media .media-left {
    padding-right: 20px;
}

.blog-author .media {
    padding: 20px;
    border: 1px solid #EEE;
}

.blog-author .media .media-heading {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #EEE;
}

.blog-author .media .media-heading h3 {
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
}

.blog-author .media .media-heading .author-social {
  float: right;
}

.blog-author .author-social a {
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 3px;
    margin-left: 5px;
    color: #FFF;
    background-color: #ccff00;
}

/* -- blog comments -- */

.blog-comments {
    margin: 40px 0px;
}

.blog-comments .media {
    padding: 20px;
    background-color: #FFF;
    border-top: 1px solid #EEE;
    border-bottom: 0px;
    border-right: 1px solid #EEE;
    border-left: 1px solid #EEE;
    margin-top: 0px;
}

.blog-comments .media:first-child {
    border-bottom: 0px;
}

.blog-comments .media:last-child {
    border-bottom: 1px solid #EEE;
}

.blog-comments .media .media-left {
  padding-right: 20px;
}

.blog-comments .media .media-body .media-heading {
    text-transform: uppercase;
    margin-bottom:10px;
}

.blog-comments .media .media-body .media-heading .time {
    font-size: 12px;
    margin-left: 20px;
    /*font-weight: 400;*/
    color: #868F9B;
}

.blog-comments .media .media-body .media-heading .reply {
    float: right;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    /*font-weight: 400;*/
}

.blog-comments .media.author {
    background-color: #F4F4F4;
    border-color: #ccff00;
    border-bottom: 1px solid #ccff00;
}
.blog-comments .media.author>.media-body>.media-heading {
    color: #ccff00;
}

.blog-comments .media.author + .media {
    border-top: 0px;
}

/* blog reply form */

.reply-form {
    margin: 40px 0px;
}

.reply-form form .input, .reply-form form .input , .reply-form form textarea {
	margin-bottom:20px;
}

.reply-form form .input, .reply-form form .input {
    width: calc(50% - 10px);
    display: inline-block;
}

.reply-form form .input:nth-child(2) {
    margin-left: 15px;
}


/*------------------------------------*\
	Blog sidebar
\*------------------------------------*/

#aside .widget {
    margin-bottom: 40px;
}

.widget h3 {
  text-transform: uppercase;
}

/* -- search sidebar -- */

#aside .widget-search {
    position: relative;
}

#aside .widget-search .search-input {
    padding-right: 50px;
}

#aside .widget-search .search-btn {
    position: absolute;
    right: 0px;
	  bottom: 0px;
    width: 40px;
    height: 40px;
    border: none;
    line-height: 40px;
    background-color: transparent;
    color: #ccff00;
}

/* -- category sidebar -- */

.widget-category a {
    display: block;
    font-size: 14px;
    color: #354052;
    border-bottom: 1px solid #EEE;
    padding: 5px;
}

.widget-category a:nth-child(1) {
  border-top: 1px solid #EEE;
}

.widget-category a span {
    float: right;
    color: #ccff00;
}

.widget-category a:hover {
    color: #ccff00;
}

/* -- tags sidebar -- */

.widget-tags a {
  display: inline-block;
  padding: 6px 13px;
  font-size: 14px;
  margin: 2px 0px;
  background: #F4F4F4;
  color: #10161A;
}

.widget-tags a:hover {
  color: #FFF;
  background-color: #ccff00;
}

/* -- posts sidebar -- */

.widget-post {
    min-height: 70px;
    margin-bottom: 25px;
}

.widget-post img {
    display: block;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
}

.widget-post a {
    display: block;
    color: #10161A;
}

.widget-post a:hover {
    color: #ccff00;
}

.widget-post .blog-meta {
    display: inline-block;
}

.widget-post .blog-meta li {
    display: inline-block;
    margin-right: 5px;
    color: #ccff00;
    font-size: 12px;
}

.widget-post li i {
    color: #ccff00;
    margin-right: 5px;
}



/*------------------------------------*\
	Contact
\*------------------------------------*/

.contact {
    margin: 15px 0px;
    text-align: center;
}

.contact i {
    font-size: 36px;
    color: #ccff00;
    margin-bottom: 20px;
}

.contact-form {
    text-align: center;
    margin-top: 40px;
}

.contact-form .input {
    margin-bottom: 20px;
}


.contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
    width: calc(50% - 10px);
}

.contact-form .input:nth-child(2) {
    margin-left: 15px;
}

/*------------------------------------*\
	Footer
\*------------------------------------*/

#footer {
    position: relative;
    background-color: #86a0b6;
}
#footer .rowlogos {
  border-top: 3px solid #defe03;
    padding-bottom: 20px;
}
#footer .row {
  padding-bottom: 20px;
}
.colabora p {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 400;
    line-height: 1.2;
}
.footer-copyright {
    margin-top: 15px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo>a>img {
    max-height: 80px;
}

.footer-follow {
    text-align: center;
    margin-bottom: 20px;
}

.footer-follow li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 13px;
}

.footer-follow li a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
  background-color: #ccff00;
  color:#FFF;
}

.footer-copyright p {
    color: #ccff00;
    text-align: left;
    font-size: 18px;
    font-weight: 400 !important;
    margin: 0;
}
.demopadding {
  margin: auto;
  text-align:center;
}
.icon {
	position:relative;
	text-align:center;
	width:0px;
	height:0px;
	padding:20px;
	border-top-right-radius: 	20px;
	border-top-left-radius: 	20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 	20px;
	-moz-border-radius: 		20px 20px 20px 20px;
	-webkit-border-radius: 		20px 20px 20px 20px;
	-khtml-border-radius: 		20px 20px 20px 20px;
	color:#FFFFFF;
}
.icon i {
	font-size:20px;
	position:absolute;
	left:9px;
	top:10px;
}
.icon.social {
	float:left;
	margin:0 5px 0 0;
	cursor:pointer;
	background:#ccff00;
	color:#ffffff;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}
.icon.social:hover {
	background:#ffffff;
	color:#ccff00;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	/*-webkit-filter:	drop-shadow(0 1px 10px rgba(0,0,0,.8));
	-moz-filter: 	drop-shadow(0 1px 10px rgba(0,0,0,.8));
	-ms-filter: 		drop-shadow(0 1px 10px rgba(0,0,0,.8));
	-o-filter: 		drop-shadow(0 1px 10px rgba(0,0,0,.8));
	filter: 			drop-shadow(0 1px 10px rgba(0,0,0,.8));*/
}
.icon.social.fb i {
	left:13px;
	top:10px;
  color:#FFF !important;
}
.icon.social.fb:hover i {
  color:#ccff00 !important;
}
.icon.social.tw i {
	left:11px;
  color:#FFF !important;
}
.icon.social.tw:hover i {
  color:#ccff00 !important;
}
.icon.social.be i {
	left: 9px;
  color:#FFF !important;
}
.icon.social.be:hover i {
  color:#ccff00 !important;
}
.icon.social.pr i {
	left: 12px;
  color:#FFF !important;
}
.icon.social.pr:hover i {
  color:#ccff00 !important;
}
.logo-footer {
  padding-top: 90px;
  padding-bottom: 65px;
}
.logo-sponsor {
  padding-top: 15px;
}
.logo-design {
  float: right;
}

/*------------------------------------*\
	Privacy Policy
\*------------------------------------*/

#policy p {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 400;
  line-height: 1.2;
}
#policy a {
  text-decoration: underline;
}

/*------------------------------------*\
	Responsive
\*------------------------------------*/

@media only screen and (min-width: 1400px) {
  body{
    font-size: 16px;
  }
  h1 {
    font-size: 70px;
  }
  h2 {
    font-size: 28px !important;
  }
  .titulo h2 {
    font-size: 50px !important;
  }
  h3 {
    font-size: 22px;
  }
  .main-nav li a{
    font-size: 20px;
  }
  #home .home-wrapper {
    top: 50%;
  }
  .white-btn {
    font-size: 36px;
  }
  .container {
    padding-right: 3% !important;
    padding-left: 3% !important;
  }
  .logo-header {
    padding-top: 40px;
    padding-bottom: 65px;
  }
  .work .speakers-description span {
      font-size: 16px;
  }
  .speakers-content span {
      font-size: 16px;
  }
  #header h2 {
    font-size: 28px;
  }
  .home-content h1 {
    font-size: 70px !important;
    margin-bottom: 0px;
    margin-top:60px;
  }
  #about h3 {
    font-size: 30px;
  }
  #about p {
    font-size: 21px;
  }
  .item-charla h3 {
    font-size: 21px;
  }
  .item-bloque h3 {
    font-size: 21px;
  }
  .item-charla p,
  .schedule-text p,
  .map-text p {
    font-size: 21px;
  }
  .schedule-text h3 {
    font-size: 30px;
  }
  .schedule-text .tickets>a,
  .schedule-text .tickets-free>a {
    font-size: 30px;
}
{
      font-size: 30px;
  }
  .map-text h3 {
    font-size: 18px;
  }
  #footer .col-md-3 h3 {
    font-size: 18px;
  }


}
@media only screen and (min-width: 1200px) and (max-width:1399px) {
  body{
    font-size: 14px;
  }
  h1 {
    font-size: 39px !important;
  }
  h2 {
    font-size: 25px !important;
  }
  h3 {
    font-size: 23px !important;
  }
  .home-tickets>a {
    font-size: 26px;
  }
  .main-nav li a{
    font-size: 18px;
  }
  #home .home-wrapper {
    top: 55%;
  }
  .white-btn {
    font-size: 28px;
  }
  .container {
    padding-right: 5% !important;
    padding-left: 5% !important;
    width: 1170px !important;
  }
  .logo-header {
    padding-top: 30px;
    padding-bottom: 45px;
  }
  .work .speakers-description span {
      font-size: 14px;
  }
  .speakers-content span {
      font-size: 13px;
  }
  .item-charla h3 {
    font-size: 18px;
  }
  .about-content p,
  .about-item p,
  .item-charla p,
  .schedule-text p,
  .map-text p {
    font-size: 18px;
  }
  .item-charla h3 {
    font-size: 18px !important;
  }
  .item-bloque h3 {
    font-size: 18px !important;
  }
.schedule-text h3 {
    font-size: 26px;
  }
  .map-text h3,
  .colabora h3,
  .footer-copyright p {
    font-size: 18px;
  }
  .md-padding {
    padding-top: 90px;
    padding-bottom: 90px;
  }


}

@media only screen and (min-width: 992px) and (max-width:1199px) {
  body{
    font-size: 14px;
  }
  h1 {
    font-size: 34px !important;
  }
  h2 {
    font-size: 22px !important;
  }
  h3 {
    font-size: 20px !important;
  }
  .home-tickets>a {
    font-size: 24px;
    padding: 10px 10px;
  }
  .boton-free {
    margin-left: 20px;
  }
  .about-content h2,
  .program-title h2,
  .map-title h2 {
    font-size: 38px !important;
  }

  .main-nav li a{
    font-size: 16px;
  }
  #home .home-wrapper {
    top: 60%;
  }
  .white-btn {
    font-size: 24px;
  }
  .container {
    margin-right: 2% !important;
    margin-left: 2% !important;
  }
  .logo-header {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .work .speakers-description span {
      font-size: 12px;
  }
  .speakers-content span {
      font-size: 11px;
  }
  .item-charla h3 {
    font-size: 16px;
  }
  .about-content p,
  .about-item p,
  .item-charla p,
  .schedule-text p,
  .map-text p {
    font-size: 16px;
  }
  .schedule-text h3 {
    font-size: 22px;
  }
  .schedule-text .tickets>a, 
  .schedule-text .tickets-free>a {
    font-size: 23px;
  }
  .map-text h3,
  .colabora h3,
  .footer-copyright p {
    font-size: 16px;
  }
  .md-padding {
    padding-top: 70px;
    padding-bottom: 70px;
  }


}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body{
    font-size: 12px;
  }
  h1 {
    font-size: 24px !important;
  }
  h2 {
    font-size: 15px !important;
  }
  h3 {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }
  .home-tickets>a {
    padding: 10px 10px;
    font-size: 22px;
  }
  .boton-free {
    margin-left: 20px;
  }
  .about-content h2,
  .program-title h2,
  .map-title h2 {
    font-size: 32px !important;
  }
 .main-nav li {
    padding: 0px !important;
  }
  .main-nav li a{
    font-size: 14px;
  }
  #home .home-wrapper {
    top: 60%;
  }
  .home-tickets>a {
    font-size: 16px;
  }
  .white-btn {
    font-size: 20px;
  }
  .container {
    padding-right: 7% !important;
    padding-left: 7% !important;
  }
  .work .speakers-description span {
      font-size: 12px;
  }
  .item-charla h3 {
    font-size: 14px;
  }
  .schedule-text .tickets,
  .schedule-text .tickets-free {
    padding-bottom: 50px;
  }
  .schedule-text .tickets>a,
  .schedule-text .tickets-free>a {
    font-size: 16px;
}
.schedule-text .tickets-free {
  margin-top: 0px;
  padding-top: 0px;
}
.item-charla p,
  .schedule-text p,
  .map-text p {
    font-size: 14px;
  }
  .schedule-text h3 {
    font-size: 18px;
  }
  .map-text h3,
  .colabora h3,
  .footer-copyright p {
    font-size: 14px;
  }
  .md-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

}


@media only screen and (max-width: 767px) {

  h1 {
    font-size: 16px !important;
    margin-top: 70px !important;
  }

  h2 {
    font-size: 13px !important;
    margin-top: 10px !important;
  }

  h3 {
    font-size: 11px !important;
    margin-top: 5px !important;
  }

  .home-tickets>a {
    padding: 10px 5px;
    font-size: 12px;
  }

  .home-tickets {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .boton-free {
    margin-left: 10px;
  }
  
  .about-content h2,
  .program-title h2,
  .map-title h2 {
    font-size: 26px !important;
  }

  .about-content h3,
  .about-item h3 {
    font-size: 18px !important;
  }
  .md-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .schedule-text h3 {
    font-size: 18px !important;
  }
  .schedule-text .tickets,
  .schedule-text .tickets-free {
    padding-bottom: 50px;
  }
  .schedule-text .tickets>a,
  .schedule-text .tickets-free>a {
    font-size: 18px;
}
.schedule-text .tickets-free {
  margin-top: 0px;
  padding-top: 0px;
}

  .item-charla h3 {
    font-size: 16px !important;
  }
  .item-bloque h3 {
    font-size: 16px !important;
  }

  .section-header h2.title {
  		font-size:31.5px;
	}

  .main-btn , .default-btn , .outline-btn , .white-btn  {
  		padding: 8px 22px;
  		font-size:14px;
	}

  .home-content h1 {
		font-size:36px;
	}

  .header-wrapper h2 {
      margin-bottom: 20px;
      text-align: center;
      display: block;
  }

  .header-wrapper .breadcrumb {
      float: none;
      text-align: center;
  }
  #home .home-wrapper {
      top: 50%;
  }
  .work .speakers-description span {
      font-size: 12px;
  }
  .schedule-text .tickets,
  .schedule-text .tickets-free {
      padding-bottom: 40px;
  }
  .safety-text h3 {
    font-size: 14px !important;
  }
  .horario {
    text-align: left;
  }
  .map-text h3,
  .colabora h3,
  .footer-copyright p {
    font-size: 16px;
  }
}


@media only screen and (max-width: 480px) {
  #portfolio [class*='col-xs'] {
		  width:100%;
	}

  #numbers [class*='col-xs'] {
		  width:100%;
	}

  .contact-form .input:nth-child(1), .contact-form .input:nth-child(2) {
      width: 100%;
  }
  .contact-form .input:nth-child(2) {
      margin-left: 0px;
  }

  .reply-form form .input, .reply-form form .input {
      width: 100%;
  }
  .reply-form form .input:nth-child(2) {
      margin-left: 0px;
  }
  .home-tickets>a {
    font-size: 16px;
  }
  .work .speakers-description span {
      font-size: 14px;
  }
  #home .home-wrapper {
      top: 54%;
  }
  .home-tickets {
      padding-top: 20px;
      padding-bottom: 30px;
  }
  .home-content {
    margin-left: 15px;
    margin-top: 300px;
  }
  .home-content h1 {
      font-size: 24px !important;
  }
  .home-content h2 {
    font-size: 15px !important;
  }
  .home-content h3 {
    font-size: 13px !important;
  }
  .blinking {
    margin-top:-15px;
  }
  .schedule-text .tickets,
  .schedule-text .tickets-free {
      padding-bottom: 40px;
  }
  .safety-text h3 {
    font-size: 12px !important;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .blog-author .media .media-left {
      display: block;
      padding-right: 0;
      margin-bottom: 20px;
  }
  .blog-author .media {
      text-align: center;
  }
  .blog-author .media .media-heading .author-social {
      margin-top: 10px;
      float: none;
  }
  .blog-author .media .media-left img {
      margin: auto;
  }

  .blog-comments .media .media {
      margin:0px -15px;
  }
}



/*------------------------------------*\
	Owl theme
\*------------------------------------*/

/* -- dots -- */

.owl-theme .owl-dots .owl-dot span {
    border: none;
    background: #EEE;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ccff00;
}
.owl-theme .owl-dots .owl-dot.active span {
	  background: #ccff00;
	  width:20px;
}

/* -- nav -- */

.owl-theme .owl-nav {
    opacity: 0;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
}

.owl-theme:hover .owl-nav {
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #ccff00;
    color: #FFF;
  	padding: 0px;
  	width: 50px;
  	height: 50px;
  	border-radius:3px;
  	line-height: 50px;
  	margin: 0;
}

.owl-theme .owl-prev {
    left: 0px;
}

.owl-theme .owl-next {
    right: 0px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    opacity: 0.8;
    background: #ccff00;
}


/*------------------------------------*\
	Back to top
\*------------------------------------*/

#back-to-top {
  	display:none;
  	position: fixed;
  	bottom: 20px;
  	right: 20px;
  	width: 50px;
  	height: 50px;
  	line-height: 50px;
  	text-align: center;
  	background: #ccff00;
  	border-radius:3px;
  	color: #FFF;
  	z-index: 9999;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  	cursor: pointer;
}

#back-to-top:after {
    content: "\f106";
    font-family: 'FontAwesome';
}

#back-to-top:hover {
    opacity: 0.8;
}

/*------------------------------------*\
	Preloader
\*------------------------------------*/


#preloader {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #FFF;
    z-index: 99999;
}

.preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.preloader span {
    display: inline-block;
    background-color: #ccff00;
    width: 25px;
    height: 25px;
    -webkit-animation: 1s preload ease-in-out infinite;
            animation: preload 1s ease-in-out infinite;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    border-radius:50%;
}

.preloader span:nth-child(1) {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

.preloader span:nth-child(2) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
}

.preloader span:nth-child(3) {
    -webkit-animation-delay: 0.15s;
            animation-delay: 0.15s;
}

.preloader span:nth-child(4) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

@-webkit-keyframes preload {
	0% {
	   -webkit-transform:scale(0);
	           transform:scale(0);
	}
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}

@keyframes preload {
	0% {
	   -webkit-transform:scale(0);
	           transform:scale(0);
	}
  50% {
    -webkit-transform:scale(1);
            transform:scale(1);
  }
  100% {
    -webkit-transform:scale(0);
            transform:scale(0);
  }
}
