/*
Theme Name: TJ - Inflables
Author: SC Studio
Author URI: http://www.scstudio.com.ar
Description: Theme desarrollado a medida para TJ Inflables
Version: 1.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
a, em, img, strong, sub,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #444;
}

html, body {
    overflow-x: hidden;
}

ol, ul {
	list-style: none;
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none !important;
}

a,
button{
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.form-control:focus,
.form-control:active {
    box-shadow: none;
    outline: none;
}

.container {
	position: relative;
}

.aligner {
    align-items: center;
    justify-content: center;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Baloo Paaji 2', cursive;
}

.button {
    background: #BB046D;
    padding: 5px 20px;
    color: #FFF;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Baloo Paaji 2', cursive;
    border-radius: 10px;
}

.button:hover {
    background: #136bb1;
    color: #FFF;
}

/*############################# HEADER #############################*/

#header {
    position: relative;
    background: #FFF;
    border-top: 10px solid #BB046D;
    padding: 15px 0;
    z-index: 3;
}

#header.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 0;
    box-shadow: 1px 0px 4px #AAA;
}

#header .logo {
    max-height: 93px;
    -webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

#header.active .logo {
    transform: scale(0.7);
    transform-origin: 0 center;
}

#main-menu {
    width: 100%;
    text-align: right;
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    padding: 0 22px;
    font-family: 'Baloo Paaji 2', cursive;
}

#main-menu li:last-child {
    padding-right: 0;
}

#main-menu li a {
    color: #136bb1;
    padding: 0;
}

#main-menu li a:hover {
    color: #BB046D;
}

#main-menu li:nth-child(odd) a {
    color: #BB046D;
}

#main-menu li:nth-child(odd) a:hover {
    color: #136bb1;
}

#main-menu li .sub-menu {
    position: absolute;
    left: 22px;
    width: 250px;
    top: 33px;
    background: #BB046D;
    text-align: left;
    padding: 10px 0;
    border: none;
}

#main-menu li .sub-menu li {
    display: block;
    padding: 0;
}

#main-menu li .sub-menu a {
    color: #FFF;
    font-size: 15px;
    display: block;
    padding: 7px 15px;
}

#main-menu li .sub-menu a:hover {
    background: #136bb1;
    color: #FFF;
}

#header .dropdown-toggle::after {
    vertical-align: 2px;
}

#header .navbar-toggler {
    position: absolute;
    left: auto;
    right: 0;
    top: 35px;
    width: 32px;
    outline: none;
    padding: 0;
    display: none;
    z-index: 999;
}

.navbar-toggler span {
    background: #FFF;
    display: block;
    width: 100%;
    height: 2px;
    margin: 0 0 4px;
    width: 20px;
}

#header .navbar-toggler span:last-child {
    margin: 0;
}

#header .animated-icon {
    width: 25px;
    height: 26px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

#header .animated-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 0px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#header .animated-icon span {
    background: #BB046D;
}

#header .animated-icon span:nth-child(1) {
    top: 5px;
}

#header .animated-icon span:nth-child(2) {
    top: 12px;
}

#header .animated-icon span:nth-child(3) {
    top: 19px;
}

#header .animated-icon.open span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#header .animated-icon.open span:nth-child(2) {
    opacity: 0;
    left: 50px;
}

#header .animated-icon.open span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}





/*############################# CONTENT #############################*/

#content {
    position: relative;
    z-index: 1;
}

section.section {
    position: relative;
    padding: 90px 0;
}

section.bg1 {
    background: #EDF7FD;
}

section.section h2 {
    font-size: 40px;
    color: #136bb1;
}

section.section h2.style1 {
    color: #BB046D;
}

section.section span.price {
    font-size: 35px;
    color: #BB046D;
    font-family: 'Baloo Paaji 2', cursive;
}

#main-slider {
    border-bottom: 20px solid #394054;
}

#main-slider .owl-item .owl-lazy {
    max-height: none;
    background-size: cover;
    background-position: center;
    height: 700px;
    display: flex;
    flex-direction: column;
}

#main-slider p {
    color: #FFF;
    font-weight: 400;
    font-size: 66px;
    line-height: 74px;
    text-shadow: 5px 4px 5px #BBB;
    text-align: center;
    font-family: 'Baloo Paaji 2', cursive;
}

#main-slider .button {
    margin-top: 25px;
}

#about p {
    font-size: 18px;
    line-height: 28px;
}

.products-grid .box {
    background: #FFF;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 2px 2px 10px #AAA;
}

.products-grid .box figure {
    overflow: hidden;
}

.products-grid .box img {
    -webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.products-grid .box:hover img {
    transform: scale(1.05);
}

.products-grid .box figure.default {
    border-bottom: 1px solid #136bb1;
}

.products-grid .text {
    padding: 10px 20px;
}

.products-grid .text h4 {
    color: #136bb1;
    font-size: 25px;
}

.products-grid .text span {
    font-size: 35px;
    color: #BB046D;
    font-family: 'Baloo Paaji 2', cursive;
}

.action {
    background: #BB046D;
    padding: 50px 0;
    text-align: center;
}

.action h3 {
    color: #FFF;
    font-size: 35px;
}

.info .box {
    text-align: center;
    padding: 20px 10px;
    border: 4px solid #136bb1;
    min-height: 186px;
    border-radius: 12px;
}

.info i {
    font-size: 60px;
    color: #BB046D;
    padding-bottom: 30px;
}

.info p {
    font-size: 19px;
    line-height: 24px;
    color: #136bb1;
}

.info p a {
    color: #136bb1;
}

.info p a:hover {
    color: #BB046D;
}

#main-banner {
    background: #136bb5;
    padding: 50px 0;
    text-align: center;
}

#main-banner.style1 {
    background: #AEC534;
}

#main-banner h1 {
    color: #FFF;
    font-size: 40px;
}

.main-filter {
    padding: 70px 0;
    text-align: center;
}

.main-filter li {
    display: inline-block;
    font-family: 'Baloo Paaji 2', cursive;
    margin: 0 10px;
}

.main-filter li a {
    color: #FFF;
    background: #AEC534;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 18px;
}

.main-filter li a:hover,
.main-filter li a.active {
    background: #136bb1;
}

.pagination {
    width: 100%;
    padding: 70px 0;
    justify-content: center;
}

.pagination li {
    display: inline-block;
    font-family: 'Baloo Paaji 2', cursive;
    margin: 0 10px;
}

.pagination li a {
    color: #FFF;
    background: #136bb1;
    padding: 7px 20px;
    border-radius: 8px;
    font-size: 15px;
}

.pagination li a:hover {
    background: #AEC534;
}

#single-product .image img {
    border-radius: 12px;
}

#single-product .image img.default {
    border: 1px solid #BB046D;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px #CCC;
}

#single-product .gallery {
    display: none;
}

#single-product .text p {
    font-size: 18px;
    padding: 15px 0 40px;
}

#single-product .text .button {
    background: #00bb2d;
    border: 2px solid #00bb2d;
}

#single-product .text .button:hover {
    background: #FFF;
    color: #00bb2d;
}

#contact h4 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    color: #444;
}

#contact h4:after {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background: #136bb5;
    content: "";
}

.contact-locations li {
    display: table;
    margin-top: 10px;
}

.contact-locations li p {
    display: inline-block;
}

.contact-locations li i {
    width: 49px;
    height: 49px;
    background-color: #BB046D;
    border-radius: 100%;
    text-align: center;
    line-height: 49px;
	margin-right: 15px;
    color: #fff;
    font-size: 20px;
}

.contact-locations li a {
    display: table-cell;
    vertical-align: middle;
    color: #444;
    transition: all 0.3s ease-in-out;
}

.contact-locations li a:hover {
    color: #136bb5;
}

#contact label span {
	color: #eb3e32;
	padding-left: 3px;
}

#contact label {
	text-transform: uppercase;
	font-weight: 600;
    font-size: 14px;
    padding-bottom: 5px;
}

#contact .form-control {
    border-radius: 0;
    border: 1px solid #cdcdcd;
    padding: 10px 15px;
    color: #000;
    margin-bottom: 20px;
    height: auto;
    font-size: 14px;
}

#contact textarea.form-control {
    height: 120px;
    width: 100%;
}

#contact .btn {
    padding: 10px 25px;
    background: #BB046D;
    border: none;
    outline: 0 !important;
    color: #FFF;
}

#contact .btn:hover {
    background: #136bb5;
}

#contact .btn:active,
#contact .btn:focus {
    outline: 0 !important;
    box-shadow: none;
}

.social li {
    display: inline-block;
    padding-right: 20px;
}

.social li i {
    background: #BB046D;
    border-radius: 100%;
    color: #FFF;
    font-size: 20px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
}

.social li i:hover {
    background: #136bb5;
}

#contact-form {
    position: relative;
}

#msgbox {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    font-size: 14px;
    color: #BB046D;
    background: #FFF;
    border: 1px solid #BB046D;
    padding: 5px 15px;
    border-radius: 5px;
    text-align: center;
}

#msgbox.messageboxok {
    color: #00bb2d;
    border: 1px solid #00bb2d;
    background: #FFF;
}

#msgbox.messageboxerror {
    background: #FFF;
    color:  #BB046D;
    border: 1px solid #BB046D;
}

/*.triangle {
    position: absolute;
    width: 0; 
    height: 0; 
    border-left: 100px solid #FEC3E4;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    transform: rotate(20deg);
}

.position1 {
    left: 5%;
    bottom: 5%;
}

.position1:after {
    left: 8%;
    top: 25%;
    position: absolute;
    width: 0; 
    height: 0; 
    border-left: 100px solid #FEC3E4;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    transform: rotate(20deg);
    content: '';
}

.position2 {
}

.position3 {
}

.position4 {
}*/


/*############################# FOOTER #############################*/


#map,
#map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

#footer .bottom {
    padding: 20px 0;
    background: #001B2E;
    text-align: center;
}

#footer .bottom p {
    color: #FFF;
    font-size: 15px;
}

#footer .bottom p a {
    color: #91CDF3;
}

#footer .bottom p a:hover {
    color: #FFF;
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
}

