/* Error de minimización. Devolviendo el contenido no minimizado.
(502,15): run-time error CSS1038: Expected hex color, found '#0101'
(522,17): run-time error CSS1038: Expected hex color, found '#0000'
(880,1): run-time error CSS1019: Unexpected token, found '@import'
(880,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800')'
(3094,56): run-time error CSS1038: Expected hex color, found '#0abff'
(3319,1): run-time error CSS1019: Unexpected token, found '}'
(3382,23): run-time error CSS1038: Expected hex color, found '#fff0'
(3403,17): run-time error CSS1038: Expected hex color, found '#fff0'
(3413,26): run-time error CSS1038: Expected hex color, found '#fff0'
(3420,17): run-time error CSS1038: Expected hex color, found '#fff0'
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}



/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #331d35;
  background-color: #e7e7e7;
}

a {
  color: #41307c;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-header {
    position: relative;
    height: 110px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}
.cd-header h1 {
  color: #ffffff;
  line-height: 150px;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 300;
}
@media only screen and (min-width: 1170px) {
  .cd-header {
    height: 110px;
  }
  .cd-header h1 {
    line-height: 180px;
  }
}

.cd-main-content {
    position: relative;
    min-height: 100vh;
    background: #f3f6f9;
    overflow: hidden;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
}

.cd-main-content.is-fixed .cd-gallery {
  padding-top: 76px;
}
.cd-main-content.is-fixed .cd-filter {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}
.cd-main-content.is-fixed .cd-filter form {
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.cd-main-content.is-fixed .cd-filter-trigger {
  position: fixed;
  
}
    .cd-main-content.is-fixed .cd-filter-trigger2 {
        position: fixed;
    }
@media only screen and (min-width: 768px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 90px;
  }

}
@media only screen and (min-width: 1170px) {
  .cd-main-content.is-fixed .cd-gallery {
    padding-top: 100px;
  }



}
/* -------------------------------- 

xtab-ticket 

-------------------------------- */
.cd-ticket-info {
    height: 70px;
    width: 100%;
    background: white;
    /*z-index: 1;*/
}
.cd-main-content.is-fixed .cd-ticket-info {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
/* -------------------------------- 

xtab-filter 

-------------------------------- */
.cd-tab-filter-wrapper {
  background-color: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  z-index: 1;
}
.cd-tab-filter-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.cd-tab-filter {
  /* tabbed navigation style on mobile - dropdown */
  position: relative;
  height: 50px;
  width: 140px;
  margin: 0 auto;
  z-index: 1;
}
.cd-tab-filter::after {
  /* small arrow icon */
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.cd-tab-filter ul {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: inset 0 -2px 0 #41307c;
}
.cd-tab-filter li {
  display: none;
}
.cd-tab-filter li:first-child {
  /* this way the placehodler is alway visible */
  display: block;
}
.cd-tab-filter a {
  display: block;
  /* set same size of the .cd-tab-filter */
  height: 50px;
  width: 140px;
  line-height: 50px;
  padding-left: 14px;
}
.cd-tab-filter a.selected {
  background: #41307c;
  color: #ffffff;
}
.cd-tab-filter.is-open::after {
  /* small arrow rotation */
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.cd-tab-filter.is-open ul {
  box-shadow: inset 0 -2px 0 #41307c, 0 2px 10px rgba(0, 0, 0, 0.2);
}
.cd-tab-filter.is-open ul li {
  display: block;
}
.cd-tab-filter.is-open .placeholder a {
  /* reduces the opacity of the placeholder on mobile when the menu is open */
  opacity: .4;
}
@media only screen and (min-width: 768px) {
  .cd-tab-filter {
    /* tabbed navigation style on medium devices */
    width: auto;
    cursor: auto;
  }
  .cd-tab-filter::after {
    /* hide the arrow */
    display: none;
  }
  .cd-tab-filter ul {
    background: transparent;
    position: static;
    box-shadow: none;
    text-align: center;
  }
  .cd-tab-filter li {
    display: inline-block;
  }
  .cd-tab-filter li.placeholder {
    display: none !important;
  }
  .cd-tab-filter a {
    display: inline-block;
    padding: 0 1em;
    width: auto;
    color: #9a9a9a;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.3rem;
  }
  .no-touch .cd-tab-filter a:hover {
    color: #41307c;
  }
  .cd-tab-filter a.selected {
    background: transparent;
    color: #41307c;
    /* create border bottom using box-shadow property */
    box-shadow: inset 0 -2px 0 #41307c;
  }
  .cd-tab-filter.is-open ul li {
    display: inline-block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-tab-filter {
    /* tabbed navigation on big devices */
    width: 100%;
    float: right;
    margin: 0;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
  }
  .cd-tab-filter.filter-is-visible {
    /* reduce width when filter is visible */
    width: 80%;
  }
}

/* -------------------------------- 

xgallery 

-------------------------------- */
.cd-gallery {
  padding: 26px 5%;
  width: 100%;
  margin:0 auto;
}
.cd-gallery li.mix {
    /*display: block !important;*/
    min-height: 250px;
    height: auto;
    width: 100%;
    border: 1px solid #ddd;
    transition:ease-in 0.1s;
}
.cd-gallery li.mix:hover {
    box-shadow: 0 16px 30px 1px rgba(0,0,0,.1);
    border: 1px solid #ddd;
    border-radius:4px;
    /*transform: scale(1.01,1.01);*/
    
}
 .btn_search_Ticket {
     cursor:pointer !important;
     background:#000000;
     transition:ease-in 0.5s;
     
}
    .cd-gallery li.mix {
        margin-bottom: 0.6em;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        display: none;
        background: white;
        border-radius: 15px;
    }
.cd-gallery li.mix.gap {
    /* used in combination with text-align: justify to align gallery elements */
    opacity: 0;
    height: 0;
    /*display: inline-block;*/
}
.cd-gallery img {
  display: block;
  width: 100%;
}
.cd-gallery .cd-fail-message {
  display: none;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cd-gallery {
    padding: 40px 3%;
  }
  .cd-gallery ul {
    text-align: justify;
  }
  .cd-gallery ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .cd-gallery li.mix {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-gallery {
    /*padding: 50px 2%;*/
    float: right;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
    padding: 60px 70px 60px 80px;
  }
  .cd-gallery li.mix {
    /*width: 23%;*/
  }
  .cd-gallery.filter-is-visible {
    /* reduce width when filter is visible */
    /*width: 80%;*/
    width: 100%;
  }
}

/* -------------------------------- 

xfilter 

-------------------------------- */
.cd-filter {
  
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
.cd-filter {
  
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: #ffffff;
  box-shadow: 4px 4px 20px transparent;
  z-index: 2;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s;
  -moz-transition: -moz-transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cd-filter::before {
    /* top colored bar */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background: linear-gradient(to right, #FF5722, #00abff);
    z-index: 2;
}
.cd-filter form {
  padding: 70px 20px;
}
.cd-filter .cd-close {
  position: absolute;
  top: 0;
  right: 0;
  height: 50px;
  line-height: 50px;
  width: 60px;
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  background: #0101;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 3;
}
.no-touch .cd-filter .cd-close:hover {
  background: #32255f;
}
.cd-filter.filter-is-visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}
.cd-filter.filter-is-visible .cd-close {
    opacity: 1;
    background: #0000;
}
.cd-filter.filter-is-visible .cd-close:hover {
    opacity: 1;
    background: #0000001c;
        
}
@media only screen and (min-width: 1170px) {
  .cd-filter {
    width: 20%;
  }
  .cd-filter form {
    padding: 70px 10%;
  }
}

.cd-filter-trigger {
    margin-left: 10px;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    line-height: 50px;
    width: 100px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    background: transparent url("../images/cd-icon-filter.svg") no-repeat center center;
    z-index: 1;
}
.cd-filter-trigger2 {
    margin-left: 10px;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    line-height: 50px;
    width: 100px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    color: transparent;
    white-space: nowrap;
    background: transparent url("../images/cd-icon-filter.svg") no-repeat center center;
    z-index: 3;
}
.cd-filter-trigger.filter-is-visible {
  pointer-events: none;
}
.cd-filter-trigger2.filter-is-visible {
    pointer-events: none;
}
@media only screen and (min-width: 1170px) {
  .cd-filter-trigger {
    width: auto;
    left: 2%;
    text-indent: 0;
    color: #9a9a9a;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
    padding-left: 24px;
    background-position: left center;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    transition: color 0.3s;
  }
  .no-touch .cd-filter-trigger:hover {
    color: #41307c;
  }
  .cd-filter-trigger.filter-is-visible, .cd-filter-trigger.filter-is-visible:hover {
    color: #ffffff;
  }
    .cd-filter-trigger2 {
        width: auto;
        left: 2%;
        text-indent: 0;
        color: #9a9a9a;
        text-transform: uppercase;
        font-size: 1.3rem;
        font-weight: 700;
        padding-left: 24px;
        background-position: left center;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        transition: color 0.3s;
    }

    .no-touch .cd-filter-trigger2:hover {
        color: #41307c;
    }

    .cd-filter-trigger2.filter-is-visible, .cd-filter-trigger2.filter-is-visible:hover {
        color: #ffffff;
    }
}

/* -------------------------------- 

xcustom form elements 

-------------------------------- */
.cd-filter-block {
  margin-bottom: 1.6em;
}
.cd-filter-block h4 {
  /* filter block title */
  position: relative;
  margin-bottom: .2em;
  padding: 10px 0 10px 20px;
  color: #9a9a9a;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.no-touch .cd-filter-block h4:hover {
  color: #41307c;
}
.cd-filter-block h4::before {
  /* arrow */
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url("../images/cd-icon-arrow.svg") no-repeat center center;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-filter-block h4.closed::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-filter-block input, .cd-filter-block select,
.cd-filter-block .radio-label::before,
.cd-filter-block .checkbox-label::before {
  /* shared style for input elements */
  font-family: "Open Sans", sans-serif;
  border-radius: 0;
  background-color: #ffffff;
  border: 2px solid #e6e6e6;
}
.cd-filter-block input[type='search'],
.cd-filter-block input[type='text'],
.cd-filter-block select {
  width: 100%;
  padding: .8em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
}
.cd-filter-block input[type='search']:focus,
.cd-filter-block input[type='text']:focus,
.cd-filter-block select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #41307c;
}
.cd-filter-block input[type='search'] {
  /* custom style for the search element */
  border-color: transparent;
  background-color: #e6e6e6;
  /* prevent jump - ios devices */
  font-size: 1.6rem !important;
}
.cd-filter-block input[type='search']::-webkit-search-cancel-button {
  display: none;
}
.cd-filter-block .cd-select {
  /* select element wrapper */
  position: relative;
}
.cd-filter-block .cd-select::after {
  /* switcher arrow for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-filter-block select {
  cursor: pointer;
  font-size: 1.4rem;
}
.cd-filter-block select::-ms-expand {
  display: none;
}
.cd-filter-block .list li {
  position: relative;
  margin-bottom: .8em;
}
.cd-filter-block .list li:last-of-type {
  margin-bottom: 0;
}
.cd-filter-block input[type=radio],
.cd-filter-block input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-filter-block .checkbox-label,
.cd-filter-block .radio-label {
  padding-left: 24px;
  font-size: 1.4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-filter-block .checkbox-label::before, .cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-filter-block .checkbox-label::before,
.cd-filter-block .radio-label::before {
  width: 16px;
  height: 16px;
  left: 0;
}
.cd-filter-block .checkbox-label::after,
.cd-filter-block .radio-label::after {
  /* check mark - hidden */
  display: none;
}
.cd-filter-block .checkbox-label::after {
  /* check mark style for check boxes */
  width: 16px;
  height: 16px;
  background: url("../images/cd-icon-check.svg") no-repeat center center;
}
.cd-filter-block .radio-label::before,
.cd-filter-block .radio-label::after {
  border-radius: 50%;
}
.cd-filter-block .radio-label::after {
  /* check mark style for radio buttons */
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  left: 5px;
}
.cd-filter-block input[type=radio]:checked + label::before,
.cd-filter-block input[type=checkbox]:checked + label::before {
  border-color: #41307c;
  background-color: #41307c;
}
.cd-filter-block input[type=checkbox]:checked + label::after{
  display: block;
  left: 0;
}

.cd-filter-block input[type=radio]:checked + label::after {
  display: block;
}
@-moz-document url-prefix() {
  /* hide custom arrow on Firefox - select element */
  .cd-filter-block .cd-select::after {
    display: none;
  }
}

li.mix.color-2.check2.radio2.option2 {
    /*font-size: 25px;*/
}

/* payment process button */









@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Top Bar
	3.2 Logo
	3.3 Main Nav
	3.4 Menu
4. Home
	4.1 Home Slider
	4.2 Home Slider Nav
	4.3 Home Slider Dots
5. Search
6. Section Title
7. Rating
8. Stats
9. Add
10. Milestones
11. Footer
	11.1 Footer - About
	11.2 Footer - Blog
	11.3 Footer - Tags
	11.4 Footer - Contact Info
12. Copyright


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

@font-face {
	font-family: 'Beyond';
	src: url('../fonts/beyond_the_mountains.otf') format('truetype'), url('../fonts/beyond_the_mountains.ttf') format('opentype');
}

/*********************************
2. Body and some general stuff
*********************************/

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
	color: #929191;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

	p a {
		display: inline;
		position: relative;
		color: inherit;
		border-bottom: solid 1px #ffa07f;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

a, a:hover, a:visited, a:active, a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

p a:active {
	position: relative;
	color: #FF6347;
}

p a:hover {
	color: #FFFFFF;
	background: #ffa07f;
}

	p a:hover::after {
		opacity: 0.2;
	}

::selection {
}

p::selection {
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px;
	text-shadow: rgba(0,0,0,.01) 0 0 1px;
}

	h1::selection,
	h2::selection,
	h3::selection,
	h4::selection,
	h5::selection,
	h6::selection {
	}

.form-control {
	color: #db5246;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.clearfix::before, .clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.trans_200 {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.trans_300 {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.trans_400 {
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.trans_500 {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.fill_height {
	height: 100%;
}

.super_container {
	width: 100%;
}

.prlx_parent {
	overflow: hidden;
}

.prlx {
	height: 130% !important;
}

.nopadding {
	padding: 0px !important;
}

.button {
	display: inline-block;
	height: 53px;
	border-radius: 27px;
	overflow: hidden;
	z-index: 1;
}

.button_bcg {
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	background: linear-gradient(to right, #fa9e1b, #8d4fff, #fa9e1b);
	z-index: -1;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.button:hover .button_bcg {
	left: -100%;
}

.button a {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	line-height: 53px;
	padding-left: 46px;
	padding-right: 46px;
	white-space: nowrap;
	z-index: 2;
}

.button span {
	display: inline-block;
	vertical-align: middle;
	width: 5.75px;
	height: 5.63px;
	background: #FFFFFF;
	border-radius: 50%;
	margin-right: 2px;
}

	.button span:first-child {
		margin-left: 10px;
	}

	.button span:nth-child(2) {
		opacity: 0.6;
	}

	.button span:last-child {
		opacity: 0.4;
		margin-right: 0px;
	}

.parallax-window {
	min-height: 400px;
	background: transparent;
}

/*********************************
3. Header
*********************************/

.header {
	position: fixed;
	width: 100%;
	background: rgba(54, 19, 84, 0.6);
	z-index: 12;
}

	.header.scrolled {
		background: rgba(54, 19, 84, 0.85);
	}

/*********************************
3.1 Top Bar
*********************************/

.top_bar {
	width: 100%;
	height: 36px;
	background: #350a4e;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.header.scrolled .top_bar {
	visibility: hidden;
	opacity: 0;
	height: 0px;
}

.phone {
	display: inline-block;
	margin-right: 36px;
	line-height: 36px;
	font-size: 10px;
	font-weight: 600;
	color: #FFFFFF;
}

.social_list_item {
	position: relative;
	display: inline-block;
	margin-right: 3px;
}

	.social_list_item:last-child {
		margin-right: 0px;
	}

	.social_list_item a {
		display: block;
		width: 100%;
		padding-left: 10px;
		padding-right: 10px;
		line-height: 36px;
	}

	.social_list_item:hover a i {
		color: #fa9e1c;
	}

	.social_list_item a i {
		font-size: 12px;
		color: #FFFFFF;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

	.social_list_item a:hover {
		color: #FFFFFF;
	}

.user_box_link {
	display: inline-block;
}

	.user_box_link a {
		display: block;
		font-size: 10px;
		line-height: 36px;
		font-weight: 600;
		color: #FFFFFF;
		text-transform: uppercase;
	}

		.user_box_link a:hover {
			color: #fa9e1c;
		}

.user_box_login {
	margin-right: 15px;
}

	.user_box_login::after {
		display: block;
		position: absolute;
		top: 15px;
		right: -9px;
		background: #FFFFFF;
		width: 1px;
		height: 9px;
		content: '';
	}

.main_nav_col {
	height: 143px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.header.scrolled .main_nav_col {
	height: 100px;
}

/*********************************
3.2 Logo
*********************************/

.logo_container {
	-webkit-transform: translateY(-6px);
	-moz-transform: translateY(-6px);
	-ms-transform: translateY(-6px);
	-o-transform: translateY(-6px);
	transform: translateY(-6px);
}

.header.scrolled .logo_container {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.logo a {
	font-family: 'Open Sans', sans-serif;
	font-size: 30px;
	color: #f4f4f8;
	font-weight: 800;
	text-transform: uppercase;
}

	.logo a img {
		display: inline-block;
		vertical-align: baseline;
		margin-right: 9px;
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}

/*********************************
3.3 Main Nav
*********************************/

.main_nav_container {
	margin-right: 221px;
}

.main_nav_item {
	position: relative;
	display: inline-block;
	margin-right: 40px;
}

	.main_nav_item:last-child {
		margin-right: 0px;
	}

	.main_nav_item a {
		font-family: 'Open Sans', sans-serif;
		font-size: 13px;
		font-weight: 600;
		color: black;
		text-transform: uppercase;
		padding-bottom: 10px;
		padding-top: 10px;
	}

	.main_nav_item::after {
		display: block;
		position: absolute;
		left: -1px;
		bottom: -11px;
		width: calc(100% + 2px);
		height: 2px;
		background: linear-gradient(to right, #fa9e1b, #8d4fff);
		content: '';
		opacity: 0;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

	.main_nav_item:hover::after {
		opacity: 1;
	}

.content_search {
	-webkit-transform: translateY(-1px);
	-moz-transform: translateY(-1px);
	-ms-transform: translateY(-1px);
	-o-transform: translateY(-1px);
	transform: translateY(-1px);
	cursor: pointer;
}

.header.scrolled .content_search {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.mag_glass {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.content_search img {
	width: 17px;
	height: 17px;
}

.content_search:hover .mag_glass {
	fill: #fa9e1c;
}

.content_search:hover .mag_glass {
	fill: #fa9e1c;
}

.search_form {
	position: absolute;
	right: 15px;
	top: 120px;
	width: 237px;
	height: 40px;
	visibility: hidden;
	opacity: 0;
}

	.search_form.active {
		top: 105px;
		visibility: visible;
		opacity: 1;
	}

.search_content_input {
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	color: #1b0b32;
	padding-left: 20px;
	outline: none !important;
	border: none !important;
	box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.bez_1 {
	-webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	-o-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1);
}

/*********************************
3.4 Menu
*********************************/

.hamburger {
	-webkit-transform: translateY(-3px);
	-moz-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	-o-transform: translateY(-3px);
	transform: translateY(-3px);
	cursor: pointer;
	margin-left: 20px;
}

.header.scrolled .hamburger {
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.hamburger i {
	font-size: 24px;
	color: #FFFFFF;
}

.hamburger:hover i {
	color: #fa9e1c;
}

.menu {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to right, #fa9e1b, #8d4fff);
	z-index: 100;
	opacity: 0;
	visibility: hidden;
}

	.menu.active {
		opacity: 0.95;
		visibility: visible;
	}

.menu_content {
	width: 100%;
	height: 100%;
}

.menu_item {
	position: relative;
	margin-bottom: 3px;
}

	.menu_item:last-child {
		margin-bottom: 0px;
	}

.menu_logo {
	margin-bottom: 28px;
}

	.menu_logo a img {
		width: 40px !important;
	}

.menu_item a {
	display: inline-block;
	position: relative;
	font-family: 'Beyond';
	font-size: 36px;
	color: #FFFFFF;
	font-weight: 400;
}

	.menu_item a::after {
		display: block;
		position: absolute;
		top: 60%;
		left: 0;
		width: 0;
		height: 4px;
		background: #FFFFFF;
		letter-spacing: 2px;
		content: '';
		z-index: 10;
		pointer-events: none;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 400ms ease;
	}

.menu_item:hover a::after {
	width: 100%;
}

.menu_close_container {
	position: absolute;
	top: 94px;
	right: 122px;
	width: 21px;
	height: 21px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu_close {
	top: 9px;
	width: 21px;
	height: 3px;
	background: #FFFFFF;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

	.menu_close::after {
		display: block;
		position: absolute;
		top: -9px;
		left: 9px;
		content: '';
		width: 3px;
		height: 21px;
		background: #FFFFFF;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after {
	background: #fa9e1c;
}

/*********************************
4. Home
*********************************/

.home {
	width: 100%;
	height: 465px;
	background: transparent;
}

.home_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.home_content {
	position: absolute;
	bottom: 106px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.home_title {
	font-size: 72px;
	font-weight: 800;
	color: #FFFFFF;
	text-transform: uppercase;
}

/*********************************
5. Intro
*********************************/

.intro {
	width: 100%;
	padding-top: 92px;
	padding-bottom: 105px;
	background: #f6f9fb;
}

.intro_image {
	position: absolute;
	right: 0;
	top: 13px;
}

.intro_title {
	font-size: 30px;
	font-weight: 700;
	color: #2d2c2c;
	text-transform: uppercase;
}

.intro_text {
	margin-bottom: 0px;
	font-weight: 600;
	color: #929191;
	margin-top: 60px;
}

.intro_button {
	margin-top: 57px;
	z-index: 1;
}

/*********************************
6. Section Title
*********************************/

.section_title {
	font-size: 30px;
	font-weight: 700;
	color: #2d2c2c;
	margin-top: -8px;
	text-transform: uppercase;
}

/*********************************
7. Rating
*********************************/

.rating {
	margin-top: 10px;
}

	.rating i {
		font-size: 19px;
		margin-right: 4px;
	}

		.rating i:last-child {
			margin-right: 0px;
		}

.rating_1 i:first-child {
	color: #ffeb8d;
}

.rating_2 i:first-child {
	color: #ffeb8d;
}

.rating_2 i:nth-child(2) {
	color: #fed46b;
}

.rating_3 i:first-child {
	color: #ffeb8d;
}

.rating_3 i:nth-child(2) {
	color: #fed46b;
}

.rating_3 i:nth-child(3) {
	color: #fbb53d;
}

.rating_4 i:first-child {
	color: #ffeb8d;
}

.rating_4 i:nth-child(2) {
	color: #fed46b;
}

.rating_4 i:nth-child(3) {
	color: #fbb53d;
}

.rating_4 i:nth-child(4) {
	color: #fa9e1b;
}

.rating_5 i:first-child {
	color: #ffeb8d;
}

.rating_5 i:nth-child(2) {
	color: #fed46b;
}

.rating_5 i:nth-child(3) {
	color: #fbb53d;
}

.rating_5 i:nth-child(4) {
	color: #fa9e1b;
}

.rating_r i::before {
	font-family: 'FontAwesome';
	content: "\f006";
	font-style: normal;
	font-size: 19px;
	margin-right: 4px;
}

.rating_r_1 i:first-child::before {
	color: #ffeb8d;
	content: "\f005";
}

.rating_r_2 i:first-child::before {
	color: #ffeb8d;
	content: "\f005";
}

.rating_r_2 i:nth-child(2)::before {
	color: #fed46b;
	content: "\f005";
}

.rating_r_3 i:first-child::before {
	color: #ffeb8d;
	content: "\f005";
}

.rating_r_3 i:nth-child(2)::before {
	color: #fed46b;
	content: "\f005";
}

.rating_r_3 i:nth-child(3)::before {
	color: #fbb53d;
	content: "\f005";
}

.rating_r_4 i:first-child::before {
	color: #ffeb8d;
	content: "\f005";
}

.rating_r_4 i:nth-child(2)::before {
	color: #fed46b;
	content: "\f005";
}

.rating_r_4 i:nth-child(3)::before {
	color: #fbb53d;
	content: "\f005";
}

.rating_r_4 i:nth-child(4)::before {
	color: #fa9e1b;
	content: "\f005";
}

.rating_r_5 i:first-child::before {
	color: #ffeb8d;
	content: "\f005";
}

.rating_r_5 i:nth-child(2)::before {
	color: #fed46b;
	content: "\f005";
}

.rating_r_5 i:nth-child(3)::before {
	color: #fbb53d;
	content: "\f005";
}

.rating_r_5 i:nth-child(4)::before {
	color: #fa9e1b;
	content: "\f005";
}

.rating_r_5 i:nth-child(5)::before {
	color: #ef910a;
	content: "\f005";
}

/*********************************
8. Stats
*********************************/

.stats {
	padding-top: 100px;
	padding-bottom: 105px;
}

.stats_text {
	margin-top: 21px;
	padding-left: 30px;
	padding-right: 30px;
}

.stats_years {
	padding-left: 116px;
	padding-right: 116px;
	margin-top: 39px;
}

.stats_contents {
	margin-top: 23px;
	padding-left: 55px;
	padding-right: 55px;
}

.stats_years div {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #fa9e1b;
}

.stats_item {
	margin-bottom: 24px;
}

	.stats_item:last-child {
		margin-bottom: 0px;
	}

.stats_last {
	width: 25%;
	float: left;
	padding-left: 60px;
}

.stats_new {
	width: 25%;
	float: left;
	padding-right: 60px;
}

.stats_last_icon {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 100%;
	padding-bottom: 5px;
}

.stats_new_icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 100%;
	padding-bottom: 5px;
}

.stats_last_content {
}

.stats_number {
	font-size: 24px;
	font-weight: 600;
	color: #2d2c2c;
}

.stats_type {
	font-size: 14px;
	font-weight: 600;
	color: #929191;
}

.stats_bar {
	width: 50%;
	height: 2px;
	background: #e1e1e1;
	float: left;
	margin-top: 33px;
}

.stats_bar_perc {
	position: absolute;
	top: 0;
	height: 2px;
	background: #FF5722;
	max-width: 100% !important;
}

	.stats_bar_perc div {
		width: 100%;
	}

.stats_bar_value {
	position: absolute;
	top: -39px;
}

/*********************************
9. Add
*********************************/

.add {
	width: 100%;
}

.add_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.add_container {
	padding-top: 52px;
	padding-bottom: 64px;
}

.add_content {
	padding-left: 151px;
}

.add_title {
	font-weight: 600;
	text-transform: uppercase;
	color: #FFFFFF;
	padding-left: 2px;
}

.add_subtitle {
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
	padding-left: 7px;
}

	.add_subtitle span {
		font-size: 18px;
		font-weight: 700;
	}

.add_button {
	margin-top: 30px;
}

/*********************************
10. Milestones
*********************************/

.milestones {
	padding-top: 105px;
	padding-bottom: 100px;
}

.milestone {
	width: 100%;
}

.milestone_icon {
	display: inline-block;
	height: 58px;
}

	.milestone_icon img {
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
	}

.milestone_counter {
	font-size: 48px;
	font-weight: 600;
	color: #2d2c2c;
	line-height: 1;
	margin-top: 25px;
}

.milestone_text {
	font-size: 14px;
	font-weight: 600;
	color: #9a9999;
	margin-top: 22px;
	text-transform: uppercase;
}

/*********************************
11. Footer
*********************************/

.footer {
	width: 100%;
	padding-top: 113px;
	padding-bottom: 104px;
	background: #FF5722;
}

.footer_title {
	font-size: 15px;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
}

/*********************************
11.1 Footer - About
*********************************/

.footer_about {
	padding-top: 67px;
}

.footer_logo {
	position: absolute;
	left: 0;
	top: -24px;
}

.footer_about_text {
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
}

.footer_social_item {
	display: inline-block;
	width: 31px;
	height: 31px;
	border: solid 1px #00abff;
	border-radius: 50%;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	margin-right: 9px;
}

	.footer_social_item:last-child {
		margin-right: 0px;
	}

	.footer_social_item a {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
	}

		.footer_social_item a i {
			display: block;
			position: relative;
			color: #000;
			top: 50%;
			-webkit-transform: translateY(-50%);
			-moz-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
			-o-transform: translateY(-50%);
			transform: translateY(-50%);
			font-size: 12px;
			-webkit-transition: all 200ms ease;
			-moz-transition: all 200ms ease;
			-ms-transition: all 200ms ease;
			-o-transition: all 200ms ease;
			transition: all 200ms ease;
		}

	.footer_social_item:hover {
		background: #fa9e1b;
	}

		.footer_social_item:hover a i {
			color: #FF5722;
		}

/*********************************
11.2 Footer - Blog
*********************************/

.footer_blog {
	margin-top: 39px;
}

.footer_blog_item {
	margin-bottom: 21px;
}

	.footer_blog_item:last-child {
		margin-bottom: 0px;
	}

.footer_blog_image {
	width: 60px;
	height: 60px;
	float: left;
}

	.footer_blog_image img {
		width: 100%;
	}

.footer_blog_content {
	padding-left: 81px;
}

.footer_blog_title {
	margin-top: -4px;
	padding-left: 1px;
}

	.footer_blog_title a {
		font-size: 14px;
		font-weight: 400;
		color: #FFFFFF;
	}

		.footer_blog_title a:hover {
			color: #fa9e1b;
		}

.footer_blog_date {
	font-size: 12px;
	font-weight: 400;
	color: #fa9e1b;
	margin-top: 7px;
}

/*********************************
11.3 Footer - Tags
*********************************/

.footer_tags {
	margin-top: 40px;
}

.tag_item {
	height: 35px;
	float: left;
	margin-right: 9px;
	margin-bottom: 9px;
	border: solid 1px #fa9e1b;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

	.tag_item:hover {
		background: #fa9e1b;
	}

	.tag_item a {
		display: block;
		font-size: 12px;
		font-weight: 600;
		color: #FFFFFF;
		line-height: 33px;
		padding-left: 25px;
		padding-right: 25px;
	}

/*********************************
11.4 Footer - Contact Info
*********************************/

.contact_info_list {
	margin-top: 40px;
}

.contact_info_item {
	margin-bottom: 22px;
}

.contact_info_icon {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

	.contact_info_icon img {
		display: block;
		width: 100%;
	}

.contact_info_text,
.contact_info_text a {
	color: #000;
	line-height: 2.14;
	margin-top: -4px;
}

.contact_info_item:hover .contact_info_text,
.contact_info_item:hover .contact_info_text a {
	color: #00abff;
}

/*********************************
12. Contact
*********************************/

.contact {
	width: 100%;
	padding-bottom: 105px;
}

.contact_background {
	position: absolute;
	bottom: -34px;
	left: 0;
	width: 100%;
	height: 104%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.contact_title {
	font-size: 30px;
	font-weight: 700;
	color: #FFFFFF;
	text-transform: uppercase;
}

.contact_form_container {
	padding-top: 74px;
	padding-left: 48px;
	padding-right: 48px;
	padding-bottom: 88px;
	background: linear-gradient(to right, #FF5722, #00abff);
}

.contact_form {
	margin-top: 52px;
	font-size: 0px;
}

.input_field {
	height: 48px;
	font-size: 12px;
	font-weight: 400;
	border: none;
	outline: none;
	background: transparent;
	color: #FFFFFF;
	border-bottom: solid 2px #e1e1e1;
}

.contact_form_name {
	width: calc((100% - 30px) / 2);
	margin-right: 30px;
}

.contact_form_email {
	width: calc((100% - 30px) / 2);
}

.contact_form_subject {
	width: 100%;
	margin-top: 11px;
}

.contact_form_message {
	height: 126px;
	width: 100%;
	border: none;
	outline: none;
	margin-top: 19px;
	background: transparent;
	font-size: 12px;
	font-weight: 400;
	color: #FFFFFF;
	border-bottom: solid 2px #e1e1e1;
	padding-top: 11px;
}

.form_submit_button {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	line-height: 53px;
	padding-left: 29px;
	padding-right: 29px;
	background: #FF5722;
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
	transform: translateY(15px);
	border: none;
	outline: none;
	margin-top: 37px;
	cursor: pointer;
}

	.form_submit_button:hover {
		opacity: 0.8;
	}

.input_field::-webkit-input-placeholder,
.text_field::-webkit-input-placeholder {
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}

.input_field:-moz-placeholder,
.text_field:-moz-placeholder {
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}

.input_field::-moz-placeholder,
.text_field::-moz-placeholder {
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}

.input_field:-ms-input-placeholder,
.text_field:-ms-input-placeholder {
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}

.input_field::input-placeholder,
.text_field::input-placeholder {
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #FFFFFF !important;
}


/*********************************
12. Copyright
*********************************/

.copyright {
	background: #1f0733;
}

.copyright_content {
	height: 52px;
}

	.copyright_content div {
		font-size: 12px;
		font-weight: 600;
		color: #685677;
	}

.footer_nav_container {
	height: 52px;
}

.footer_nav {
}

.footer_nav_list {
	font-size: 0px;
}

.footer_nav_item {
	display: inline-block;
	margin-right: 40px;
}

	.footer_nav_item a {
		font-size: 12px;
		font-weight: 600;
		color: #685677;
		text-transform: uppercase;
		line-height: 2;
		-webkit-transition: all 200ms ease;
		-moz-transition: all 200ms ease;
		-ms-transition: all 200ms ease;
		-o-transition: all 200ms ease;
		transition: all 200ms ease;
	}

		.footer_nav_item a:hover {
			color: #FFFFFF;
		}

@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

01.1920px //new
1. 1600px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 767px
11. 539px
12. 479px
13. 400px

******************************/

/************
1. 1600px
************/

@media only screen and (max-width: 1600px)
{
	.menu_close_container
	{
		top: 15px;
		right: 28px;
	}
}

/************
2. 1440px
************/

@media only screen and (max-width: 1440px)
{
	
}

/************
3. 1380px
************/

@media only screen and (max-width: 1380px)
{
	
}

/************
3. 1280px
************/

@media only screen and (max-width: 1280px)
{
	
}

/************
4. 1199px
************/

@media only screen and (max-width: 1199px)
{
	.main_nav_container
	{
		margin-right: 121px;
	}
	.footer_blog_content
	{
		padding-left: 74px;
	}
	.about_social_item
	{
		margin-right: 7px;
	}
    .menu_close_container
	{
		top: 15px;
		right: 28px;
	}
}

/************
4. 1100px
************/

@media only screen and (max-width: 1100px)
{
	
}

/************
5. 1024px
************/

@media only screen and (max-width: 1024px)
{
	
}

/************
6. 991px
************/

@media only screen and (max-width: 991px)
{
	.main_nav_container
	{
		display: none;
	}
	.hamburger
	{
		display: block;
	}
	.about
	{
		padding-bottom: 105px;
	}
	.about_image
	{
		position: relative;
		width: 100%;
		text-align: center;
		top: auto;
		left: auto;
		margin-top: -38px;
	}
	.about_image img
	{
		max-width: 50vw;
	}
	.about_content
	{
		margin-top: 20px;
	}
	.about_info
	{
		padding-top: 90px;
	}
	.footer_column
	{
		margin-bottom: 60px;
	}
	.footer_column:last-child
	{
		margin-bottom: 0px;
	}
	.copyright
	{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.copyright_content
	{
		height: auto;
		margin-top: 15px;
	}
	.footer_nav_container
	{
		height: auto;
	}
	.footer_nav_item
	{
		display: block;
	}
}

/************
7. 959px
************/

@media only screen and (max-width: 959px)
{
	
}

/************
8. 880px
************/

@media only screen and (max-width: 880px)
{
	
}

/************
9. 768px
************/

@media only screen and (max-width: 768px)
{
	.home_title
	{
		font-size: 48px;
	}
	.contact_form_container
	{
		padding-left: 30px;
		padding-right: 30px;
	}
    .menu_close_container
	{
		top: 15px;
		right: 28px;
	}
}

/************
10. 767px
************/

@media only screen and (max-width: 767px)
{

}

/************
11. 575px
************/

@media only screen and (max-width: 575px)
{
	p{font-size: 13px;}
	h1{font-size: 28px;}
	.top_bar
	{
		display: none;
	}
	.button
	{
		height: 44px;
		border-radius: 22px;
		line-height: 44px;
	}
	.button a
	{
		line-height: 44px;
		padding-left: 36px;
		padding-right: 36px;
	}
	.logo a img
	{
		width: 24px;
	}
	.logo a
	{
		font-size: 24px;
	}
	.main_nav_col
	{
		height: 60px;
	}
	.header.scrolled .main_nav_col
	{
		height: 60px;
	}
	.logo_container
	{
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}
	.content_search
	{
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}
	.header.scrolled .content_search
	{
		-webkit-transform: translateY(2px);
		-moz-transform: translateY(2px);
		-ms-transform: translateY(2px);
		-o-transform: translateY(2px);
		transform: translateY(2px);
	}
	.hamburger
	{
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}
	.logo a
	{
		font-size: 16px;
	}
	.logo a img
	{
		width: 16px;
		margin-right: 7px;
	}
	.hamburger i
	{
		font-size: 18px;
	}
	.content_search svg
	{
		width: 15px;
		height: 15px;
	}
	.menu_close_container
	{
		top: 15px;
		right: 28px;
	}
	.menu_logo
	{
		margin-bottom: 17px;
	}
	.menu_logo a img
	{
		width: 28px !important;
	}
	.menu_item a
	{
		font-size: 24px;
	}
	.section_title
	{
		font-size: 21px;
	}
	.home
	{
		width: 100%;
		height: 375px;
		background: transparent;
	}
	.home_title
	{
		font-size: 24px;
	}
	.contact_title
	{
		font-size: 24px;
	}
	.about_content
	{
		padding-top: 61px;
		margin-top: 37px;
	}
	.about_text
	{
		font-size: 13px;
	}
	.about_info
	{
		padding-top: 70px;
	}
	.contact_info_text
	{
		font-size: 13px;
	}
	.about_social_item
	{
		width: 40px;
		height: 40px;
	}
	.about_social_item a i
	{
		font-size: 18px;
	}
	.google_map
	{
		height: 75vh;
	}
	.footer_about
	{
		padding-top: 47px;
	}
	.footer_about_text
	{
		font-size: 13px;
	}
}

/************
11. 539px
************/

@media only screen and (max-width: 539px)
{
	.menu_close_container
	{
		top: 15px;
		right: 28px;
	}
}

/************
12. 480px
************/

@media only screen and (max-width: 480px)
{
	
}

/************
13. 479px
************/

@media only screen and (max-width: 479px)
{
	h2{font-size: 24px;}
	p{font-size: 13px;}
	.contact_form_container
	{
		padding-left: 15px;
		padding-right: 15px;
	}
}

/************
14. 400px
************/

@media only screen and (max-width: 400px)
{
	
}

/************
01. 1920px
************/

/*recently added*/
/* (1920x1080) Full HD Display */
@media  screen and (min-width: 1600px) {
    .menu_close_container
	{
		top: 15px;
		right: 28px;
	}
}
/****************************/
/** MAIN CSS LATERMINAL365 **/
/****************************/
/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(to top, #FF5722, #00abff);
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
/*contenido de header*/
/*#region HEADER AREA*/
.header {
    background: rgba(10, 5, 14, 0);
    /*background: rgba(10, 5, 14, 0.6);*/
}
.top_bar {
    background: #000000;
}
.header.scrolled {
    background: white;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 16px 30px 1px rgba(0,0,0,.1);
    transition: 1s;
}
.menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to right, #FF5722, #00abff);
}

.main_nav_item::after {
    background: linear-gradient(to right, #FF5722, #00abff);
}

.contact_info_item-header {
    margin-top: 8px;
}

i.fa.fa-phone.phonef {
    font-size: 15px;
}

.contact_info_icon-header {
    margin-right: 0px; 
}

/** menu mobile **/
.menu_item a{
    font-family: 'Open Sans', sans-serif;
}
.menu_item:hover a::after {
    border-radius: 160px;
}

/* SPRITE LOGO */

.logo_footer {
    background: url('../../Images/TRACASA_B.png') no-repeat top left;
    width: 250px;
    height: 90px;
    margin: 0 !important;
    padding: 0 !important;
    color: black;
    top: -64px;
}
.logo250-filtro {
    background: url('../../Images/TRACASA_B.png') no-repeat top left;
    /*background-position: -830px 0;*/
    /*width: 35px;*/
    /*height: 47px;*/
    width: 250px;
    height: inherit;
    margin: 0 !important;
    padding: 0 !important;
}

@media only screen and (max-width: 600px) {
    .logo_scrolled {
        background: url('../../Images/TRACASA_B.png') no-repeat top left !important;
        width: 250px;
        height: 90px;
        margin-top: 20px !important;
        padding: 0 !important;
        color: black;
        top: 0 !important;
        transition: 1s;
    }
    .logo {
        background: url('../../Images/TRACASA_B.png') no-repeat top left;
        width: 250px;
        height: 90px;
        padding: 0 !important;
        color: black;
        top: 15px;
    }
    
}
@media only screen and (min-width: 600px) {
    .logo_scrolled {
        background: url('../../Images/TRACASA_B.png') no-repeat top left !important;
        width: 250px;
        height: 90px;
        margin-top: 20px !important;
        padding: 0 !important;
        color: black;
        top: 0 !important;
        transition: 1s;
    }
    .logo {
        background: url('../../Images/TRACASA_B.png') no-repeat top left;
        width: 250px;
        height: 90px;
        padding: 0 !important;
        color: black;
        top: 15px;
    }
    
}
.isologo {
    background: url('../Content/images/isoblanco100.png') no-repeat top left;
    /*background-position: -830px 0;*/
    /*width: 35px;*/
    /*height: 47px;*/
    width: 100px;
    height: 100px;
    margin: 0 !important;
    padding: 0 !important;
}
/*#endregion Buttons*/

/*Botones, texto, fuentes, secciones */
/*#region Content*/

/**Buttons**/
.button_bcg {
    background: linear-gradient(to right, #FF5722, #00abff, #FF5722);
}

/** search **/
.search {
    background: linear-gradient(to right, #FF5722, #00abff);
}
img.sec-img{
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%) contrast(0);
}

img.sec-img-footer {
    filter: grayscale(0%) contrast(300%);
}
.search_tab.active {
    background: #111;
    color: #FFFFFF;
}
.search_tab:hover {
    background: #111;
    color: #FFFFFF;
}
.home_slider_container {
    background: #12234b;
}
search_button {
    background: #000000;
}

.home_slider_custom_dot:hover {
    color: #00abff;
}

.intro_date {
    background: #f11aaa;
}

.offers_price {
    color: #000000;
}

.offer_name {
    background: #00abff;
}

.test_border {
    background: linear-gradient(to right, #FF5722, #00abff);
}

.contact_form_container {
    background: linear-gradient(to top right, #FF5722, #0abff);
}

.social_list_item:hover a i
{
	color: #00abff;
}
.user_box_link a:hover
{
	color: #00abff;
}
.content_search:hover .mag_glass
{
	fill: #00abff;
}
.hamburger:hover i
{
	color: #00abff;
}
.menu_close_container:hover .menu_close,
.menu_close_container:hover .menu_close::after
{
	background: #f816a8;
}
.home_slider_custom_dot:hover
{
	color: #00abff;
}
.home_slider_custom_dot:hover.active div
{
	border-color: #00abff;
}
.dropdown_item_select:hover
{
	border: solid 1px #00abff;
}
.dropdown_item_select:focus
{
	outline-color: #00abff;
}
img.contact-sec {
    filter: grayscale(100%) contrast(0);
}

.contact-number{
    line-height: 28px;
    margin-top: -4px;
    margin-left: 5px;
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
}

.countries {
    margin: 50px;
}

p.text-center.title-option {
    color: black;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 2;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

/*#endregion Content*/

/*contenido de footer*/
/*#region footer*/
.footer {
    background: #FFFFFF;
}
.copyright {
    background: black;
}

.footer_nav_item a:hover {
    color: #FFFFFF;
}

.footer_nav_item a {
    color: #7d7d7d;
}

.copyright_content div {
    color: #7d7d7d;
}
/*#endregion footer*/

.main-menu {
    z-index: 5;
}

#div-menu {
    position: fixed;
    width: 250px;
    background-color: #333;
    padding: 1em;
    box-sizing: border-box;
    height: 100%;
    right: 0px;
    top: 0%;
    z-index: 0;
    text-align: left;
    font-family: 'arial';
    color: #F1F1F1;
    font-weight: bold;
    font-size: 20px;
}

#nav-menu {
    
    top: 0;
    right: 0;
    z-index: 2000;
    height: 4em;
    padding: 1em;
    box-sizing: border-box;
    cursor: pointer;
}

    #nav-menu:hover {
        opacity: .6;
    }

#nav-menu-proceso {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2000;
    height: 4em;
    padding: 1em;
    box-sizing: border-box;
    cursor: pointer;
}

    #nav-menu-proceso:hover {
        opacity: .6;
    }
.parallaxfx {
    /*el efecto fue removido por el efecto de flash/transition*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(/Content/images/contact_background.jpg);
}


.FadeInState{
    opacity: 0;
    -webkit-transition: opacity 0.5s linear;
    -moz-transition: opacity 0.5s linear;
    -o-transition: opacity 0.5s linear;
    transition: opacity 0.5s linear;
}


/*#region keyframes*/

/* ===========================================
    PLACEHOLDERS COLOR styling
   =========================================== */

input#select_origen-selectized::placeholder {
    color: #fff;
}

input#select_destino-selectized::placeholder {
    color: #fff;
}

input#datepicker_ida::placeholder {
    color: #fff;
}
input#datepicker_vuelta::placeholder {
    color: #fff;
}

/* #region Ticket_style */

.cardWrap.ticket_sec {
    color: #c5c8cb;
    font-family: sans-serif;
    height: 250px;
}
.cardWrap.seats_sec {
    color: #ffffff;
    background-color: #eee;
    font-family: sans-serif;
    height: 0px;
    display: block;
    transition: ease-in 0.5s;
    /*border:1px solid white;*/
}
.tiquete {
    cursor:pointer;
}
a.shitty {
    width: 50px;
    height: 50px;
    background-color: red;
    margin: 0 auto;
    display: inline-block;
}

.card1 {
    /*background: linear-gradient(to bottom, #d5c427 0%, #d5c427 26%, #ecedef 26%, #ecedef 100%);*/
    height: inherit;
    left: 0px;
    right: 0px;
    float: left;
    position: relative;
    /*padding: 1em;*/
    width: 870px;
    min-width: 20%;
    max-width: 65%;
    margin: 0 auto;
}
}
.card2 {
    /*background: linear-gradient(to bottom, #d5c427 0%, #d5c427 26%, #ecedef 26%, #ecedef 100%);*/
    height: inherit;
    /*float: right;*/
    position: absolute;
    padding: 1em 1em 1em 1em;
}
.cardLeft {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    /*border-right: 0.13em dashed #fff;*/
    width: 70%;
}
.cardLeft:before {
  top: -0.4em;
}
.cardLeft:after {
  bottom: -0.4em;
}
.cardRight {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    width: 100%;
    right: 0;
    float: right;
    height:200px;;
}
.cardRight:before {
  top: -0.4em;
}
.cardRight:after {
  bottom: -0.4em;
}
.cardRight:hover {
  /*cursor: pointer;*/
  /*margin-left: 5px;*/
}

.price {
  display: flex;
  align-items: center;
  color: black;
  margin:0 auto;    
  width: 70%;
}
.price h2 {
  font-size: 5em;
  margin: 0;
}
.price span {
  font-size: 0.5em;
  font-weight: 100;
}


/* Divider ticket & notch */
.ticket__divider {
    display: inline-block;
    height: inherit;
    background-color: #fff0;
    position: absolute;
    /*right: 300px;*/
    width: 10px;
    padding: 6px 0px 6px 4.5px;
}
.ticket__divider::after {
    content: '';
    position: absolute;
    height: 93%;
    width: 100%;
    border-left: 2px dashed #c5c8cb;
    top: 9px;
}
.ticket__notch {
    position: absolute;
    top: 0rem;
    width: 1.5rem;
    height: 1rem;
    overflow: hidden;
    left: 0px;
    background: #fff0;
}
.ticket__notch::after {
    content: '';
    position: relative;
    display: block;
    width: 2rem;
    height: 2.2rem;
    right: 4px;
    bottom: 110%;
    border: 0.5rem solid #fff0;
    border-radius: 50%;
    box-shadow: inset 0 2px 4px rgba(41, 54, 61, 0.3);
}
.ticket__notch--right {
    top: auto;
    bottom: 0px;
    background: #fff0;
}
.ticket__notch--right::after {
    right: 4px;
    top: -4%;
}
.ticket_button_area{
    height:inherit;
}

/* #EndRegion Ticket_style */

ol {
	position: relative;
	display: block;
	margin: 100px;
	height: 4px;
	background: #31708F;
}
ol::before,
ol::after {
	content: "";
	position: absolute;
	top: -8px;
	display: block;
	width: 0;
	height: 0;
  border-radius: 10px;
	border: 10px solid #31708F;
}
ol::before {
	left: -5px;
}
ol::after {
	right: -10px;
	border: 10px solid transparent;
	border-right: 0;
	border-left: 20px solid #31708F;
  border-radius: 3px;
}

/* ---- Timeline elements ---- */

.line {
    width: 100%;
    height: 3px;
    border-radius: 110px;
    margin: 0 auto;
    float: initial;
    border-bottom: 1px dotted #c5c8cb;
}

.line-content {
    width: inherit;
}

.line::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: -15px;
    top: -5px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 7.5px;
    background-color: #ffffff;
    border: 3px solid #00abff;
}
.linehover::before {
    transform:scale(1.5);
}


.duration {
    margin: 0 auto;
    /* width: inherit; */
    align-content: center;
    /* padding: 2px 0 2px 0; */
    display: inline-block;
    text-align: center;
    left: 40%;
    top: 0px;
    color:black;
    font-size:16px;
    font-family:"Montserrat";
}
.price_div {
    margin: auto;
    text-align: center;
    padding: 10px;
    color:black;
    font-family:'Montserrat', sans-serif;
    font-weight:600;
}
.price_div p{
    font-family:'Montserrat', sans-serif;
    font-weight:300;
}
.seats_div p{
    font-family:'Montserrat', sans-serif;
    font-weight:300;
}
.seats_div {
    margin: auto;
    text-align: center;
    padding: 10px;
    color:black;
    font-family:'Montserrat', sans-serif;
    font-weight:600;
}
.seats-close{
    right:0;
    width:30px;
    height:30px;
    float:right;
    color:black;
}
.seats-close-off {
    display:none;
}


.button_div {



}

.row.info_sec {
    position: relative;
    left: 0px;
    height: 100px;
    padding: 10px 40px 10px 40px;
    width: 100%;
    margin: 0 auto;
}

.payment_button {
    z-index:0;
    width: 100%;
}
.compan_sec {
    margin: 0 auto;
    /*padding: 20px;*/
}
.compan_img {
    width: 200px;
    height: 80px;
    display: inline-block;
    float: left;
    margin: 0 auto;
    background-size: cover !important;
}

.company {
    margin: 0 auto;
    font-size: 16px;
    padding: 0px 15px 0px 15px;
    color: black;
    display: inline-block;
    float: right;
    width: 250px;
    word-wrap: break-word;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight:600;
}
.origen {
    margin: 0px 20px 0px 0px;
    /* float: left; */
    top: 25px;
    left: -40px;
    position: absolute; 
    font-family:'Montserrat', sans-serif;
    font-weight:300;
}
.hora_salida {
    margin: 0px 20px 0px 0px;
    /* float: left; */
    top: -50px;
    left: -40px;
    position: absolute; 
}

.destino {
    margin: 0px 0px 0px 10px;
    float: right;
    top: 25px;
    right: -40px;
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.line::after {
    content: '';
    display: inline-block;
    width: 14px;
    position: absolute;
    right: -15px;
    top: -5px;
    height: 14px;
    -moz-border-radius: 7.5px;
    -webkit-border-radius: 7.5px;
    border-radius: 50px;
    background-color: #ffffff;
    border: 3px solid #f319aa;
}

.button_bcg_search {
    transition:ease-out 0.5s;
    width: 100%;
    text-align:center;
    height: inherit;
    font-family: sans-serif;
    color: white;
}


button.btn_search_Ticket:hover {
    background: #000000;
    transition: ease-in 0.5s;
}

button.btn_search_Ticket {
    margin: 0 auto;
    text-align: center;
    left: -100%;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    height: 100%;
    color: white;
    font-weight: 500;
    font-size: 20px;
    background: linear-gradient(to right, #00abff, #f816a8);
}
/*position: absolute;
    bottom: 51px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);*/



/************
10. 767px
************/

@media only screen and (max-width: 767px)
{
	.cd-gallery li.mix {
        /* display: block !important; */
        /*min-height: 250px;*/
        height: auto;
        width: 100%;
        transition: ease-in 0.1s;
    }
    /* css responsive ticket */
    .cardWrap.ticket_sec {
        color: #c5c8cb;
        font-family: sans-serif;
        height: 315px;
        width: inherit;
    }
    .cardWrap.seats_sec {
        color: #ffffff;
        background-color: #eee;
        font-family: sans-serif;
        height: 0px;
        display: block;
        transition: ease-in 0.5s;
        top: 55px;
        margin-bottom:60px;
    }
    .card1 {
        /*background: linear-gradient(to bottom, #d5c427 0%, #d5c427 26%, #ecedef 26%, #ecedef 100%);*/
        height: 400px;
        position: relative;
        /*padding: 1em 1em 0em 1em;*/
        min-width: 10%; 
        max-width: 100%; 
        height: 280px;
    }
    .card2 {
        /*background: linear-gradient(to bottom, #d5c427 0%, #d5c427 26%, #ecedef 26%, #ecedef 100%);*/
        height: 150px;
        position: relative;
        padding: 1em 1em 1em 0;
    }
    .cardLeft {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        /*border-right: 0.13em dashed #fff;*/
        width: 100%;
    }
    .cardLeft:before {
      top: -0.4em;
    }
    .cardLeft:after {
      bottom: -0.4em;
    }
    .cardRight {
        /*width: 6.5em;*/ 
        border-bottom-right-radius: 8px;
        border-bottom-left-radius: 8px;
        background-color: #fff;
        transition: all 0.2s ease;
        display: table-footer-group;
        width: inherit;
        padding: 0 1em 1em 1em;
        background-color: white;
        height:auto;
        bottom: 2px;
    }
    .cardRight:before {
      top: -0.4em;
    }
    .cardRight:after {
      bottom: -0.4em;
    }
 
    .price {
        display: flex;
        align-items: center;
        padding: 0 20px 0 20px;
        color: black;
        width: 100%;
    }
    .price h2 {
      font-size: 5em;
      margin: 0;
    }
    .price span {
      font-size: 0.5em;
      font-weight: 100;
    }
    .ticket {
      display: grid;
      grid-template-rows: auto 1fr auto;
      max-width: 24rem;
    }
    .ticket__header, .ticket__body, .ticket__footer {
      padding: 1.25rem;
      background-color: #fff;
      border: 1px solid #abb5ba;
      box-shadow: 0 2px 4px rgba(41, 54, 61, 0.25);
    }
    .ticket__header {
      font-size: 1.5rem;
      border-top: 0.25rem solid #dc143c;
      border-bottom: none;
      box-shadow: none;
    }
    .ticket__wrapper {
      box-shadow: 0 2px 4px rgba(41, 54, 61, 0.25);
      border-radius: 0.375em 0.375em 0 0;
      overflow: hidden;
    }
    .ticket__divider {
        position: relative;
        height: 1rem;
        background-color: #fff;
        width: inherit;
        padding: 6px 0px 6px 0;
        right: 0;

    }
    .ticket__divider::after {
        content: '';
        position: absolute;
        height: 50%;
        width: auto;
        left: 10px;
        right: 10px;
        top: 0;
        border-bottom: 2px dashed #e9ebed;
        border-left: none;
    }
    .ticket__notch {
        position: absolute;
        left: 0rem;
        width: 1rem;
        height: 1rem;
        overflow: hidden;
    }
    .ticket__notch::after {
        content: '';
        position: relative;
        display: block;
        width: 2rem;
        height: 2rem;
        right: 100%;
        top: -50%;
        border: 0.5rem solid #fff;
        border-radius: 50%;
        box-shadow: inset 0 2px 4px rgba(41, 54, 61, 0.25);
    }
    .ticket__notch--right {
      left: auto;
      right: 0rem;
    }
    .ticket__notch--right::after {
      right: 0;
    }

    


}

