/***********************************/
/*********** CONTENIDOS ************/
/***********************************/

/*
1) HEADER / FOOTER / SECTIONS
2) MENU
3) SLIDER
4) COLUMNS / MARGINS 
5) TITLES
6) TAGS
7) BUTTONS
8) LISTS
9) FORMS
10) BACKGROUNDS
11) STANDARD
12) MEDIA
*/

/*********************************/
/* 1) HEADER / FOOTER / SECTIONS */
/*********************************/

* {
margin: 0;
}

.wrap {
	width:1200px;
	margin:0px auto; 
	position: relative; 
	z-index: 2;
}

header {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    overflow: inherit;
    float: none;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

header #logo_area {
    width: auto;
    text-align: center;
    margin: -110px auto 0;
    padding: 30px 200px 70px;
    transition: all 0.3s;
    background: #fc671a;
    border-radius: 50% 50%;
    display: inline-block;
}

header #logo_area img {
    width: 100%;
    display: inline-block;
    height: auto;
    max-width: 265px;
    transition: all 0.3s;
    margin: 90px 0 -50px;
}

header.smaller {
	transition: all 0.3s;
}

header.smaller #logo_area {
    text-align: center;
    transition: all 0.3s;
    padding: 20px 200px 60px;
}

header.smaller #logo_area img {
    transition: all 0.3s;
    max-width: 195px;
    margin: 100px 0 -40px;
}

#banner_area {
    display: block;
	position:relative;
    margin: 0px auto;
    width: 100%;
    padding: 420px 0 145px;
    color: #fff;
    text-align: center;
    background: url(imgs/banner_bg.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://rlv.zcache.com/foo_bar_white_tshirt-p235877025284960249a9t5r_325.jpg',sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://rlv.zcache.com/foo_bar_white_tshirt-p235877025284960249a9t5r_325.jpg', sizingMethod='scale')";
}

#intro_area {
    display: block;
    position:relative;
    margin: 0px auto;
    width: 100%;
    padding: 80px 0 20px;
    text-align: center;
    font-size: 28px;
    line-height: 34px;
    color: #312a40;
    font-family: 'Merriweather', serif;
    background: #fc671a;
}

#intro_area:before {
    content: '';
    width: 100%;
    height: 70px;
    /* border-top: solid 65px #8dd0c700; */
    /* border-left: solid 49.45vw #fc671a; */
    /* border-right: solid 49.45vw #fc671a; */
    display: inline-block;
    position: absolute;
    top: -70px;
    left: 0;
    background: url(imgs/intro_detail.png) center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#content_area {
    display: block;
    margin: 0px auto;
    padding: 90px 0 0;
    width: 100%;
    text-align: left;
    color: #312a40;
    font-size: 18px;
    position: relative;
    background: #fdebdc;
}

#content_area:before {
    content: '';
    width: 100%;
    height: 78px;
    /* border-top: solid 65px #fc671a; */
    /* border-left: solid 49.45vw #fdebdc00; */
    /* border-right: solid 49.45vw #fdebdc00; */
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(imgs/content_detail.png) center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

footer {
    margin: 0px auto;
    width: 100%;
    height: auto;
    padding: 0px 0;
    color: #fff;
}

#copyright {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: center;
    padding: 70px 5% 40px;
    display: inline-block;
    width: 100%;
    margin: 0 auto;
    background: #312a40;
}

/*********************************/
/* 2) MENU */
/*********************************/

header nav {
    width: 100%;
    text-align: right;
    margin: 20px auto 0;
    transition: all 0.3s;
}

header.smaller nav {
    margin: 18px auto 0;
    transition: all 0.3s;
}

header nav ul {
	/*overflow:hidden;*/
	list-style:none;
    text-align: right;
    padding: 0;
    margin: 0;
}

header nav ul li {
    display: inline-block;
	position:relative;
    margin: 0 0 0 25px;
}

header nav ul li a {
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    padding: 0;
    letter-spacing: 0px;
    font-weight: normal;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
}

header nav ul li a:after {
    transition: all .3s ease-in-out;
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    background: #235699;
    margin: 3px 0 0;
}

header.smaller nav ul li a {
    padding: 0px;
}

header nav ul li a:hover{
    transition: all .3s ease-in-out;
    color: #fff;
    text-decoration: none;
}

header nav ul li a:hover:after {
    transition: all .3s ease-in-out;
    width: 100%;
    background: #235699;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: -20px;
    min-width: 170px;
    box-shadow: 0px 8px 12px -2px rgba(0,0,0,0.4);
    padding: 15px 0 0;
    z-index: 999;
    text-align: left;
}

.dropdown-content a {
    background: #009943;
    padding: 18px 15px 13px;
    line-height: 18px;
    width: 100%;
    margin: 0;
    border-bottom: solid 1px rgba(0,0,0,.2);
}

.dropdown-content a:hover {
    background: #041b72;
    width: 100%;
    margin: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    transition: all .3s ease-in-out;
}

header nav .dropdown-content a:after, header nav .dropdown-content a:hover:after {
    display: none;
    width: 0%;
    height: 0px;
    margin: 0px 0 0;
}

header.smaller .dropdown-content a {
    padding: 15px 15px 10px;
    transition: all .3s ease-in-out;
}

/*********************************/
/* 3) SLIDER */
/*********************************/



/************************/
/* 4) COLUMNAS Y FIJOS */
/************************/

.desktop_only {display:inline-block;}
.desktop_tablet_only {display:block;}
.tablet_only {display:none;}
.tablet_mobile_only {display:none;}
.mobile_only {display:none !important;}

.margin_top {margin-top:20px !important;}
.margin_bottom { margin-bottom:20px !important;}
.margin_bottom_ten { margin-bottom:10px !important;}

.third_to_third_full {width:33%; float:left;}

a.anchor {display: block;position: relative;top: -150px;visibility: hidden;}

/* SEVERAL - FULL - FULL */
.one_col_to_full_to_full {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_full_to_full {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_full_to_full {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_full_to_full {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_full_to_full {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_full_to_full {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_full_to_full {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_full_to_full {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_full_to_full {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_full_to_full {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_full_to_full {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_full_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - FULL - HALF */
.one_col_to_full_to_half {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_full_to_half {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_full_to_half {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_full_to_half {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_full_to_half {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_full_to_half {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_full_to_half {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_full_to_half {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_full_to_half {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_full_to_half {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_full_to_half {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_full_to_half {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - HALF - FULL */
.one_col_to_half_to_full {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_half_to_full {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_half_to_full {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_half_to_full {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_half_to_full {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_half_to_full {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_half_to_full {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_half_to_full {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_half_to_full {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_half_to_full {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_half_to_full {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_half_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - HALF - HALF */
.one_col_to_half_to_half {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_half_to_half {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_half_to_half {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_half_to_half {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_half_to_half {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_half_to_half {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_half_to_half {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_half_to_half {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_half_to_half {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_half_to_half {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_half_to_half {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_half_to_half {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - THIRD - FULL */
.one_col_to_third_to_full {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_third_to_full {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_third_to_full {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_third_to_full {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_third_to_full {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_third_to_full {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_third_to_full {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_third_to_full {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_third_to_full {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_third_to_full {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_third_to_full {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_third_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - THIRD - HALF */
.one_col_to_third_to_half {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_third_to_half {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_third_to_half {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_third_to_half {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_third_to_half {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_third_to_half {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_third_to_half {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_third_to_half {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_third_to_half {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_third_to_half {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_third_to_half {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_third_to_half {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - TWOTHIRDS - FULL */
.one_col_to_twothirds_to_full {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_twothirds_to_full {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_twothirds_to_full {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_twothirds_to_full {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_twothirds_to_full {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_twothirds_to_full {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_twothirds_to_full {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_twothirds_to_full {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_twothirds_to_full {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_twothirds_to_full {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_twothirds_to_full {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_twothirds_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

/* SEVERAL - TWOTHIRDS - HALF */
.one_col_to_twothirds_to_half {width:6.653%; float:left; margin-left:0.84%; margin-right:0.84%;}
.two_col_to_twothirds_to_half {width:14.986%; float:left; margin-left:0.84%; margin-right:0.84%;}
.three_col_to_twothirds_to_half {width:23.319%; float:left; margin-left:0.84%; margin-right:0.84%;}
.four_col_to_twothirds_to_half {width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
.five_col_to_twothirds_to_half {width:39.985%; float:left; margin-left:0.84%; margin-right:0.84%;}
.six_col_to_twothirds_to_half {width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
.seven_col_to_twothirds_to_half {width:56.651%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eight_col_to_twothirds_to_half {width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}
.nine_col_to_twothirds_to_half {width:73.317%; float:left; margin-left:0.84%; margin-right:0.84%;}
.ten_col_to_twothirds_to_half {width:81.65%; float:left; margin-left:0.84%; margin-right:0.84%;}
.eleven_col_twothirds_to_half {width:89.983%; float:left; margin-left:0.84%; margin-right:0.84%;}
.full_size_twothirds_to_half {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

.align_center { text-align: center; }
.align_left { text-align: left; }
.align_right { text-align: right; }
.align_justify { text-align: justify; }

.align_left_to_center { text-align: left; }
.align_right_to_center{ text-align: right; }
.align_center_to_left { text-align: center; }

.padding_to_none { padding: 2%;}
.padding_left_to_none { padding-left: 2%;}
.padding_right_to_none { padding-right: 2%;}
.xl_padding_right_to_none { padding-right: 6%;}
/************************/
/* 5) TITLES */
/************************/

h1 {
    font-size: 66px;
    line-height: 66px;
    letter-spacing: 0px;
    color: #312a40;
    font-weight: 800;
    display: block;
    width: 100%;
    margin: 0px auto 0;
    padding: 0;
    text-transform: uppercase;
    text-shadow: none;
    text-align: center;
}

h1 strong {
    display: block;
    font-size: 100px;
    line-height: 100px;
    font-weight: 800;
}

h1.outline {
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: #fff;
    margin: 0 0 -173px -7px;
    color: transparent;
    /* position: relative;*/
}

h1.outline._02 {
    margin: 0 0 -107px -7px;
}

h1 span {
    color: #efc139;
}

h2 {
    font-size: 26px;
    line-height: 26px;
    letter-spacing: 0px;
    font-weight: 800;
    display: inline-block;
    margin: 0 0 25px;
    text-transform: uppercase;
    color: #312a40;
}

.contact_box h2 {
    font-size: 32px;
    line-height: 32px;
    display: inline-block;
    margin: 0 0 15px;
}

h3 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 2px;
    color: #1e4d77;
    font-weight: 600;
    display: inline-block;
    margin: 0 auto 30px;
    text-transform: uppercase;
}

h4 {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: inline-block;
}

/************************/
/* 6) TAGS */
/************************/
#intro_area img {
    margin: 30px 0 0;
}

.grid {
    display: grid;
}

.grid.paquetes {
    grid-template-columns: 49% 49%;
    grid-gap: 25px 2%;
    padding: 0px;
    margin: 50px 0;
    float: left;
    width: 100%;
}

.grid.paquetes .col {
    padding: 5px 60px 65px;
    border: solid 1px #dddddd;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    position: relative;
    text-align: center;
    border-radius: 5px;
    box-shadow: none;
}

.grid.paquetes .cell {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 3px 5px 2px rgb(0 0 0 / 15%);
    padding: 15px;
}

.grid.paquetes .dotted_box {
    border: dotted 2px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 30px 21px;
    height: 100%;
}

.grid.paquetes .cell p {
    color: #545454;
    font-size: 18px;
    line-height: 22px;
    font-family: 'Merriweather', serif;
    margin: 0 10% 25px;
    width: 80%;
    display: none;
}

.grid.paquetes .cell ul {
    text-align: left;
    color: #545454;
    font-size: 18px;
    line-height: 22px;
    margin: 0 5% 0 5%;
    padding: 0;
    width: 90%;
}

.grid.paquetes .cell ul li {
    list-style-image: url(imgs/bullet.gif);
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0px 15px 15px;
    padding: 0px 0px 0px 10px;
}

.phone_area {
    width: 100%;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 50px;
}

.phone_area strong {
    display: block;
    font-size: 28px;
    line-height: 74px;
}

.phone_area a {
    display: block;
    font-size: 40px;
    line-height: 40px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    color: #312a40;
    display: none;
}

.phone_area a img {
    margin: 0 10px -10px 0;
}

.contact_box {
    background: url(imgs/contact_bg.jpg) center center;
    padding: 50px 40px;
    border-radius: 15px;
    color: #434343;
    margin: 0px 0 -30px;
    position: relative;
    display: inline-block;
} 

footer img.cat_sign {
    width: 100%;
    height: auto;
    max-width: 310px;
    margin: -30px 0 0;
}

/************************/
/* 7) BUTTONS */
/************************/

.btn {
    display: inline-block;
    margin: 0px;
}

.btn.atn_cl a{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    padding: 25px 20px 15px;
    margin: 0px 0 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0px;
    font-weight: 600;
    background: #a72626;
    border: none;
    width: auto;
    text-align: center;
    border-radius: 0px 0px 15px 15px;
}

.btn.atn_cl a:hover{
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #731a1a;
    color: #fff;
    text-decoration: none;
}

/************************/
/* 8) LISTS */
/************************/

ul {
    margin: 5px 0 0 -10px;
}

ul.bullet {
	margin:0;
	padding: 0;
    list-style: none;
}

ul.bullet li {
	margin:0px 0 15px 0px;
}

ul.bullet li:before {
    content: '';
    display: inline-block;
    float: left;
    width: 4px;
    height: 4px;
    background: #4a78a1;
    margin: 6px 10px 30px 0;
    border-radius: 0%;
}

/***********************/
/* 9) FORMS */
/***********************/

form {
    margin: 0px 0 0;
}

.form {
    width: 100%;
    margin: 0 0 20px;
    font-size: 20px;
    line-height: 20px;
    padding: 10px 0px;
    outline: none;
    border: none;
    background-color: rgba(0,0,0,.0);
    color: #312a40;
    border-radius: 2px;
    border-bottom: solid 2px #312a40;
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    text-align:left;
    letter-spacing:0px;
}

.form.half {
    width: 49.25%;
    float: left;
}

.form.half:nth-child(odd) {
	margin-left:1.5%;
}

.antispam {
	display:none !important;
}

input.btn_form, button.btn_form {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    padding: 25px 20px;
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: #fc671a;
    border: none;
    text-align: center;
    cursor: pointer;
    width: 100%;
    border-radius: 15px;
}

input.btn_form:hover, button.btn_form:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #ba4c13;
    color: #fff;
    text-decoration: none;
}

.form::-webkit-input-placeholder {
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    color: #312a40;
    font-size: 20px;
    line-height: 20px;
	text-align:left;
	letter-spacing:0px;
}

.form:-moz-placeholder { /* Firefox 18- */
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    color: #312a40;
    font-size: 20px;
    line-height: 20px;
    text-align:left;
    letter-spacing:0px;
}

.form::-moz-placeholder {  /* Firefox 19+ */
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    color: #312a40;
    font-size: 20px;
    line-height: 20px;
    text-align:left;
    letter-spacing:0px;
}

.form:-ms-input-placeholder {
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    color: #312a40;
    font-size: 20px;
    line-height: 20px;
    text-align:left;
    letter-spacing:0px;
}

select {
    font-family: 'Rubik', sans-serif;
    font-weight:700;
    color: #312a40;
    font-size: 20px;
    line-height: 20px;
    text-align:left;
    letter-spacing:0px;
}

/***********************/
/* 10) BACKGROUNDS */
/***********************/

.bg {
	background:url(imgs/bg.jpg) center center;
    background-repeat:no-repeat;
    background-size:cover;
    -webkit-background-size: cover;
    -moz-background-size:cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='http://rlv.zcache.com/foo_bar_white_tshirt-p235877025284960249a9t5r_325.jpg',sizingMethod='scale');
    -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://rlv.zcache.com/foo_bar_white_tshirt-p235877025284960249a9t5r_325.jpg', sizingMethod='scale')";
}
/***********************/
/* 11) STANDARD */
/***********************/
html {
	margin:0;
	padding:0;
}

body {
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding:0;
    font-family: 'Rubik', sans-serif;
	font-weight:400;
    word-wrap: break-word;
}

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.clearfix { display: inline-table; }

/* Hides from IE-mac \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* End hide from IE-mac */

img.responsive {
	width:100%;
	height:auto;
}

A:link  
{
   	text-decoration: none;
}

A:visited   
{
	text-decoration: none;
}

A:active    
{
	text-decoration: none;
}

A:hover 
{
	text-decoration: underline;
}

table {
	width: 100%;
	border-spacing: 0px;
}

th, td {
	width: 33.33%;
	text-align:center;
	padding: 15px 10px;
	background: none;
	color: #4a4a4a;
	background-color: #fff;
}

.table-headers {
	font-weight: 600;
	color: #fff;
	background: #1ebdcc ; /* Old browsers */
	background: -moz-linear-gradient(left,  #1ebdcc  0%, #40bea7  100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  #1ebdcc  0%,#40bea7  100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  #1ebdcc  0%,#40bea7  100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1ebdcc ', endColorstr='#40bea7 ',GradientType=1 ); /* IE6-9 */
	padding: 10px 0;
}

/* --- Selection Color --- */
::-moz-selection { 
	background: #000;
	color: white; 
	text-shadow: none; 
}

::selection { 
	background: #000;
	color: white; 
	text-shadow: none; 
}

/***********************/
/* 12) MEDIA */
/***********************/

/* UNDER-WRAP */
@media screen and (max-width:1245px) {
	.wrap {width:90%; margin:0px 5%; float:left;}

}

/* TABLET */
@media all and (max-width:800px) {
	/* 1) HEADER / FOOTER / SECTIONS */
	header {
		overflow: inherit;
	}
	
	header #logo_area {
        margin: -110px auto 0px;
        padding: 25px 160px 60px;
	}

	header #logo_area img {
        max-width: 225px;
        margin: 100px 0 -40px;
	}

	header.smaller {
	}

    header.smaller #logo_area {
        text-align: center;
        transition: all 0.3s;
        padding: 20px 120px 60px;
    }
	
	header.smaller #logo_area img {
        transition: all 0.3s;
        max-width: 175px;
        margin: 100px 0 -38px;
	}
			
	#banner_area {
        padding: 300px 0 115px;
        position: relative;
	}

    #intro_area {
        padding: 60px 0 10px;
        font-size: 24px;
        line-height: 30px;
    }

    #intro_area:before {
        /* border-top: solid 55px #8dd0c700; */
        /* border-left: solid 50vw #fc671a; */
        /* border-right: solid 50vw #fc671a; */
        top: -60px;
        height: 60px;
    }
	
	#content_area {
        padding: 70px 0 0;
        font-size: 16px;
	}

    #content_area:before {
        /* border-top: solid 55px #fc671a; */
        /* border-left: solid 50vw #fdebdc00; */
        /* border-right: solid 50vw #fdebdc00; */
        top: 0;
        height: 60px;
    }
	
	footer {
		padding: 0px 0;
	}

    #copyright {
        padding: 60px 5% 30px;
    }

	/*2) MENU*/

	/*3) SLIDER*/

	
	/*4) COLUMNS / MARGINS*/

	a.anchor {top: -130px;}
	
	.desktop_only {display:none;}
	.desktop_tablet_only {display:;}
	.tablet_only {display:block;}
	.tablet_mobile_only {display:block;}
	.mobile_only {display:none;}
	
	/* SEVERAL - FULL - FULL */
	.one_col_to_full_to_full, .two_col_to_full_to_full, .three_col_to_full_to_full, .four_col_to_full_to_full, .five_col_to_full_to_full, .six_col_to_full_to_full, .seven_col_to_full_to_full, .eight_col_to_full_to_full, .nine_col_to_full_to_full, .ten_col_to_full_to_full, .eleven_col_full_to_full, .full_size_full_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}
	
	/* SEVERAL - FULL - HALF */
	.one_col_to_full_to_half, .two_col_to_full_to_half, .three_col_to_full_to_half, .four_col_to_full_to_half, .five_col_to_full_to_half, .six_col_to_full_to_half, .seven_col_to_full_to_half, .eight_col_to_full_to_half, .nine_col_to_full_to_half, .ten_col_to_full_to_half, .eleven_col_full_to_half, .full_size_full_to_half {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - HALF - FULL */
	.one_col_to_half_to_full, .two_col_to_half_to_full, .three_col_to_half_to_full, .four_col_to_half_to_full, .five_col_to_half_to_full, .six_col_to_half_to_full, .seven_col_to_half_to_full, .eight_col_to_half_to_full, .nine_col_to_half_to_full, .ten_col_to_half_to_full, .eleven_col_half_to_full, .full_size_half_to_full {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - HALF - HALF */
	.one_col_to_half_to_half, .two_col_to_half_to_half, .three_col_to_half_to_half, .four_col_to_half_to_half, .five_col_to_half_to_half, .six_col_to_half_to_half, .seven_col_to_half_to_half, .eight_col_to_half_to_half, .nine_col_to_half_to_half, .ten_col_to_half_to_half, .eleven_col_half_to_half, .full_size_half_to_half {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - THIRD - FULL */
	.one_col_to_third_to_full, .two_col_to_third_to_full, .three_col_to_third_to_full, .four_col_to_third_to_full, .five_col_to_third_to_full, .six_col_to_third_to_full, .seven_col_to_third_to_full, .eight_col_to_third_to_full, .nine_col_to_third_to_full, .ten_col_to_third_to_full, .eleven_col_third_to_full, .full_size_third_to_full {margin:0px auto; width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - THIRD - HALF */
	.one_col_to_third_to_half, .two_col_to_third_to_half, .three_col_to_third_to_half, .four_col_to_third_to_half, .five_col_to_third_to_half, .six_col_to_third_to_half, .seven_col_to_third_to_half, .eight_col_to_third_to_half, .nine_col_to_third_to_half, .ten_col_to_third_to_half, .eleven_col_third_to_half, .full_size_third_to_half {margin:0px auto; width:31.652%; float:left; margin-left:0.84%; margin-right:0.84%;}
	
	/* SEVERAL - TWOTHIRDS - FULL */
	.one_col_to_twothirds_to_full, .two_col_to_twothirds_to_full, .three_col_to_twothirds_to_full, .four_col_to_twothirds_to_full, .five_col_to_twothirds_to_full, .six_col_to_twothirds_to_full, .seven_col_to_twothirds_to_full, .eight_col_to_twothirds_to_full, .nine_col_to_twothirds_to_full, .ten_col_to_twothirds_to_full, .eleven_col_twothirds_to_full, .full_size_twothirds_to_full {margin:0px auto; width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - TWOTHIRDS - HALF */
	.one_col_to_twothirds_to_half, .two_col_to_twothirds_to_half, .three_col_to_twothirds_to_half, .four_col_to_twothirds_to_half, .five_col_to_twothirds_to_half, .six_col_to_twothirds_to_half, .seven_col_to_twothirds_to_half, .eight_col_to_twothirds_to_half, .nine_col_to_twothirds_to_half, .ten_col_to_twothirds_to_half, .eleven_col_twothirds_to_half, .full_size_twothirds_to_half {margin:0px auto; width:64.984%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/*5) TITLES*/
	
	h1 {
        font-size: 42px;
        line-height: 42px;
    }

    h1 strong {
        font-size: 70px;
        line-height: 70px;
    }

    h1.outline {
        -webkit-text-stroke-width: 3px;
        margin: 0 0 -118px -3px;
    }

    h1.outline._02 {
        margin: 0 0 -77px -7px;
    }
	
	h2 {
        font-size: 24px;
        line-height: 24px;
        margin: 0px 0 25px;
	}
	
	h3 {
		font-size: 22px;
		line-height: 22px;
		margin: 0 auto 25px;
	}
		
	h4 {
		font-size: 16px;
		line-height: 16px;
	}

	/*6) TAGS*/

    .grid.paquetes {
        grid-template-columns: 49% 49%;
        grid-gap: 15px 2%;
        margin: 40px 0;
    }

    .phone_area {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 50px;
        display: inline-block;
    }
    .phone_area strong {
        display: block;
        font-size: 26px;
        line-height: 34px;
        margin: 15px 0;
    }

    .contact_box {
        padding: 30px 30px;
        margin: 0 0 -20px;
    }

    footer img.cat_sign {
        width: 100%;
        height: auto;
        max-width: 280px;
        margin: 30px auto 20px;
    }

	/*7) BUTTONS*/

	.btn.slider a {
		padding: 15px 60px;
		margin: 60px 0 0;
	}

	/*8) LISTS*/

	/*9) FORMS*/
	
	form {
    	margin: 0px 0 0;
	}

    .form {
        width: 100%;
        margin: 0 0 15px;
    }
	
    input.btn_form, button.btn_form {
        padding: 20px 20px;
        font-size: 20px;
        line-height: 20px;
        letter-spacing: 0px;
    }
	
	/*10) BACKGROUNDS*/
	
	/*11) STANDARD*/

	img.responsive {
		/*width: 90%;*/
	}
}

/* SMARTPHONE */
@media all and (max-width:420px) {
	.wrap {width:90%; margin:0px 5%; float:left;}
	/* 1) HEADER / FOOTER / SECTIONS */
	header {
		overflow: inherit;
	}
	
	header #logo_area {
        margin: -110px auto 0px;
        padding: 25px 70px 50px;
	}

	header #logo_area img {
        max-width: 155px;
        margin: 80px 0 -30px;
	}

	header.smaller {
	}
    
    header.smaller #logo_area {
        transition: all 0.3s;
        padding: 20px 50px 40px;
    }
	
	header.smaller #logo_area img {
        max-width: 125px;
        margin: 100px 0 -19px;
	}
			
    #banner_area {
        padding: 230px 0 100px;
        position: relative;
    }

    #intro_area {
        padding: 40px 0 10px;
        font-size: 20px;
        line-height: 26px;
    }

    #intro_area:before {
        /* border-top: solid 40px #8dd0c700; */
        top: -40px;
        height: 40px;
        background-size: 110% 100%;
    }
	
	#content_area {
		padding: 40px 0 0;
	}

    #content_area:before {
        /* border-top: solid 40px #fc671a; */
        /* border-left: solid 50vw #fdebdc00; */
        /* border-right: solid 50vw #fdebdc00; */
        top: 0;
        height: 40px;
        background-size: 110% 100%;
    }
	
	footer {
		padding: 0px 0;
	}
	
	#copyright {
		padding: 50px 5% 20px;
		margin: 0 auto;
	}
	
	/*2) MENU*/
	
	header nav {
    	top: 94px;
	}
	
	header.smaller nav {
		top: 74px;
	}

	/*3) SLIDER*/
	

	/*4) COLUMNS / MARGINS*/

	a.anchor {top: -70px;}

	.desktop_only {display:none !important;}
	.desktop_tablet_only {display:none !important;}
	.tablet_only {display:none !important;}
	.tablet_mobile_only {display:block;}
	.mobile_only {display:block !important;}	

	.align_left_to_center { text-align: center; }
	.align_right_to_center{ text-align: center; }
	.align_center_to_left { text-align: left; }

	.padding_left_to_none { padding-left: 0%;}
	
	/* SEVERAL - FULL - FULL */
	.one_col_to_full_to_full, .two_col_to_full_to_full, .three_col_to_full_to_full, .four_col_to_full_to_full, .five_col_to_full_to_full, .six_col_to_full_to_full, .seven_col_to_full_to_full, .eight_col_to_full_to_full, .nine_col_to_full_to_full, .ten_col_to_full_to_full, .eleven_col_full_to_full, .full_size_full_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}
	
	.third_to_third_full {width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - FULL - HALF */
	.one_col_to_full_to_half, .two_col_to_full_to_half, .three_col_to_full_to_half, .four_col_to_full_to_half, .five_col_to_full_to_half, .six_col_to_full_to_half, .seven_col_to_full_to_half, .eight_col_to_full_to_half, .nine_col_to_full_to_half, .ten_col_to_full_to_half, .eleven_col_full_to_half, .full_size_full_to_half {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - HALF - FULL */
	.one_col_to_half_to_full, .two_col_to_half_to_full, .three_col_to_half_to_full, .four_col_to_half_to_full, .five_col_to_half_to_full, .six_col_to_half_to_full, .seven_col_to_half_to_full, .eight_col_to_half_to_full, .nine_col_to_half_to_full, .ten_col_to_half_to_full, .eleven_col_half_to_full, .full_size_half_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - HALF - HALF */
	.one_col_to_half_to_half, .two_col_to_half_to_half, .three_col_to_half_to_half, .four_col_to_half_to_half, .five_col_to_half_to_half, .six_col_to_half_to_half, .seven_col_to_half_to_half, .eight_col_to_half_to_half, .nine_col_to_half_to_half, .ten_col_to_half_to_half, .eleven_col_half_to_half, .full_size_half_to_half {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - THIRD - FULL */
	.one_col_to_third_to_full, .two_col_to_third_to_full, .three_col_to_third_to_full, .four_col_to_third_to_full, .five_col_to_third_to_full, .six_col_to_third_to_full, .seven_col_to_third_to_full, .eight_col_to_third_to_full, .nine_col_to_third_to_full, .ten_col_to_third_to_full, .eleven_col_third_to_full, .full_size_third_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - THIRD - HALF */
	.one_col_to_third_to_half, .two_col_to_third_to_half, .three_col_to_third_to_half, .four_col_to_third_to_half, .five_col_to_third_to_half, .six_col_to_third_to_half, .seven_col_to_third_to_half, .eight_col_to_third_to_half, .nine_col_to_third_to_half, .ten_col_to_third_to_half, .eleven_col_third_to_half, .full_size_third_to_half {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - TWOTHIRDS - FULL */
	.one_col_to_twothirds_to_full, .two_col_to_twothirds_to_full, .three_col_to_twothirds_to_full, .four_col_to_twothirds_to_full, .five_col_to_twothirds_to_full, .six_col_to_twothirds_to_full, .seven_col_to_twothirds_to_full, .eight_col_to_twothirds_to_full, .nine_col_to_twothirds_to_full, .ten_col_to_twothirds_to_full, .eleven_col_twothirds_to_full, .full_size_twothirds_to_full {margin:0px auto; width:98.316%; float:left; margin-left:0.84%; margin-right:0.84%;}

	/* SEVERAL - TWOTHIRDS - HALF */
	.one_col_to_twothirds_to_half, .two_col_to_twothirds_to_half, .three_col_to_twothirds_to_half, .four_col_to_twothirds_to_half, .five_col_to_twothirds_to_half, .six_col_to_twothirds_to_half, .seven_col_to_twothirds_to_half, .eight_col_to_twothirds_to_half, .nine_col_to_twothirds_to_half, .ten_col_to_twothirds_to_half, .eleven_col_twothirds_to_half, .full_size_twothirds_to_half {margin:0px auto; width:48.318%; float:left; margin-left:0.84%; margin-right:0.84%;}
	
	.padding_right_to_none, .xl_padding_right_to_none {
		padding-right: 0%;
	}

	/*5) TITLES*/
	
	h1 {
        font-size: 32px;
        line-height: 32px;
	}
	
    h1 strong {
        font-size: 48px;
        line-height: 48px;
    }

    h1.outline._02 {
        margin: 0 0 -54px -4px;
    }
	
	h2 {
        font-size: 22px;
        line-height: 22px;
        margin: 0px auto 20px;
	}
	
	h3 {
		font-size: 20px;
		line-height: 20px;
		margin: 0 auto 20px;
	}

	/*6) TAGS*/
	
    .grid.paquetes {
        grid-template-columns: 100%;
        grid-gap: 20px 2%;
        margin: 30px 0;
    }

    .grid.paquetes .dotted_box {
        padding: 25px 15px;
    }

    .grid.paquetes .cell p {
        font-size: 16px;
        line-height: 20px;
        margin: 0 5% 20px;
        width: 90%;
    }

    .phone_area {
        font-size: 18px;
        line-height: 26px;
        margin: 0px 0 30px;
        display: inline-block;
    }

    .phone_area strong {
        font-size: 24px;
        line-height: 30px;
    }

    .phone_area a {
        font-size: 32px;
        line-height: 32px;
    }

    .phone_area a img {
        margin: 0 5px -8px 0;
        width: 38px;
    }

    .contact_box {
        padding: 20px 20px;
        margin: 0 0 -30px;
    }

	/*7) BUTTONS*/

	.btn.blue a {
		padding: 16px 40px;
		margin: 25px 0 0;
		font-size: 16px;
		line-height: 16px;
		letter-spacing: 1px;
		text-align: center;
	}

	/*8) LISTS*/
	
	/*9) FORMS*/
	
	.form {
        margin: 0 0 10px;
        font-size: 16px;
        line-height: 16px;
        padding: 10px 0;
	}
	
	.form.half {
		width: 100%;
		float: left;
	}
	
	.form.half:nth-child(even) {
		margin-left: 0%;
	}
	
	input.btn_form, button.btn_form {
        width: 100%;
        margin: 0 0 0px;
        padding: 20px 10px;
        font-size: 18px;
        line-height: 18px;
	}

    .form::-webkit-input-placeholder {
        font-family: 'Rubik', sans-serif;
        font-weight:700;
        color: #312a40;
        font-size: 16px;
        line-height: 16px;
        text-align:left;
        letter-spacing:0px;
    }

    .form:-moz-placeholder { /* Firefox 18- */
        font-family: 'Rubik', sans-serif;
        font-weight:700;
        color: #312a40;
        font-size: 16px;
        line-height: 16px;
        text-align:left;
        letter-spacing:0px;
    }

    .form::-moz-placeholder {  /* Firefox 19+ */
        font-family: 'Rubik', sans-serif;
        font-weight:700;
        color: #312a40;
        font-size: 16px;
        line-height: 16px;
        text-align:left;
        letter-spacing:0px;
    }

    .form:-ms-input-placeholder {
        font-family: 'Rubik', sans-serif;
        font-weight:700;
        color: #312a40;
        font-size: 16px;
        line-height: 16px;
        text-align:left;
        letter-spacing:0px;
    }

	/*10) BACKGROUNDS*/

}