/*--
Author: W3layouts
Author URL: http://w3layouts.com
License: Creative Commons Attribution 3.0 Unported
License URL: http://creativecommons.org/licenses/by/3.0/
--*/
html,
body {
    margin: 0;
    font-size: 100%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}
body a {
    text-decoration: none;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    font-family: 'Poppins', sans-serif;
cursor: pointer !important;
}
.btn,
button {
    cursor: pointer !important;
}



body img {
    max-width: 90%;

    
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 2;
	color: #323648;
}
li {
    list-style-type: none;
}

p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8em;
    letter-spacing: 0.8px;
    color: #575757;
	font-family: 'Source Sans Pro', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}


/*-- header --*/

header {
    position: absolute;
    z-index: 9;
    width: 100%;
}

.toggle,
[id^=drop] {
	display: none;
}

/* Giving a background-color to the nav container. */
nav { 
	margin:0;
	padding: 0;
}


#logo a {
	float: left;
    font-size: .85em;
    display: initial;
    margin: 0;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 600;
    padding: 0px 0;
    border: none;
}
#logo a span.fa {
    color: #da9d40;
    display: block;
    text-align: center;
}


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
	content:"";
	display:table;
	clear:both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
	float: right;
	padding:0;
	margin:0;
	list-style: none;
	position: relative;
	}
	
/* Positioning the navigation items inline */
nav ul li {
	margin: 0px;
	display:inline-block;
	float: left;
	}

/* Styling the links */
nav a {
    color: #ddd;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
	padding: 10px 13px;
    font-weight: 400;
    font-size: 16px;
    float: none;
}


nav ul li ul li:hover { background: #f8f9fa; }

/* Background color change on Hover */
nav a:hover { 
	color: #ddd;
}
.menu li.active  a{ 
	color: #fff;
}

/* Hide Dropdowns by Default
 * and giving it a position of absolute */
nav ul ul {
	display: none;
	position: absolute; 
	/* has to be the same number as the "line-height" of "nav a" */
	top: 30px; 
    background: #fff;
    padding: 10px;
}
	
/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}
	
/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}
nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}
nav ul li span {
    color: #ddd;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
}
ul.menu li span.fa {
    color: #da9d40;
}
/* Second, Third and more Tiers	
 * We move the 2nd and 3rd etc tier dropdowns to the left
 * by the amount of the width of the first tier.
*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	/* has to be the same number as the "width" of "nav ul ul li" */ 
	left:170px; 
}

/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after { content: ''; }


/* Media Queries
--------------------------------------------- */

@media all and (max-width : 992px) {

	#logo {
		display: block;
		padding: 0;
		width: 100%;
		text-align: center;
		float: none;
	}
	.menu li.active a {
		color: #da9d40;
	}
	nav ul li span {
		color: #333;
	}
	nav {
		margin: 0;
	}
	nav a {
		color: #333;
	}

	/* Hide the navigation menu by default */
	/* Also hide the  */
	.toggle + a,
	.menu {
		display: none;
	}

	/* Stylinf the toggle lable */
	.toggle {
		display: block;
		padding: 5px 15px;
		font-size: 17px;
		text-decoration: none;
		border: none;
		float: right;
		background-color: #afafaf78;
		color: #fff;
		margin-bottom: 0;
		margin-top: 0em;
		    cursor: pointer;
	}
	.menu .toggle {
		float: none;
		text-align: center;
		margin: auto;
		width: 30%;
		padding: 5px;
		font-weight: normal;
		font-size: 15px;
        letter-spacing: 1px;
        
	}

	.toggle:hover {
		color:#333;
		background-color: #fff;
	}

	/* Display Dropdown when clicked on Parent Lable */
	[id^=drop]:checked + ul {
		display: block;
		background: #fff;
		padding: 15px 0;
		width:100%;
		text-align: center;
	}

	/* Change menu item's width to 100% */
	nav ul li {
		display: block;
		width: 100%;
		padding: 7px 0;
		}
	nav a{
		padding: 5px 0;
	}
	nav a:hover {
		color: #333;
	}
	.login-icon {
		text-align: center;
	}
	nav ul ul .toggle,
	nav ul ul a {
		padding: 0 40px;
	}

	nav ul ul ul a {
		padding: 0 80px;
	}

	nav a:hover,
 	nav ul ul ul a {
		background-color: transparent;
	}
  
	nav ul li ul li .toggle,
	nav ul ul a,
	nav ul ul ul a{
		padding:14px 20px;	
		color:#FFF;
		font-size:17px; 
	}
  
  
	nav ul li ul li .toggle,
	nav ul ul a {
		background-color: #fff; 
	}
	nav ul ul li a {
		font-size: 15px;
	}
	ul.inner-ul{
		padding: 0!important;
	}
	/* Hide Dropdowns by Default */
	nav ul ul {
		float: none;
		position:static;
		color: #ffffff;
		/* has to be the same number as the "line-height" of "nav a" */
	}
		
	/* Hide menus on hover */
	nav ul ul li:hover > ul,
	nav ul li:hover > ul {
		display: none;
	}
		
	/* Fisrt Tier Dropdown */
	nav ul ul li {
		display: block;
		width: 100%;
		padding: 0;
	}

	nav ul ul ul li {
		position: static;
		/* has to be the same number as the "width" of "nav ul ul li" */ 

	}

}

@media all and (max-width : 330px) {

	nav ul li {
		display:block;
		width: 94%;
	}

}
.user span.fa {
    font-size: 25px;
    color: #fff;
}
/*-- //header --*/

/* banner style */
.banner_w3lspvt {
    position: relative;
    z-index: 1;
   
}

    
    

.banner-top {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
   
}

.banner-top1 {
    background: url(../images/banner2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    
}

.banner-top2 {
    background: url(../images/banner6.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    
}

.banner-top3 {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    
}


.w3layouts-banner-info {
    padding-top: 17em;
	text-align: center
}


.w3layouts-banner-info h3 {
    text-shadow: 3px 4px 6px rgba(45, 45, 45, 0.15);
    font-size: 3.3em;
    letter-spacing: 3px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 68px;
}
.w3layouts-banner-info h1 span {
    display: block;
   
}

.w3layouts-banner-info h3 span {
    display: block;
}
.w3layouts-banner-info h3 span.clr {
    display: inline-block;
    color: #da9d40;
}
.w3layouts-banner-info h4 {
    color: #eee;
    margin: 1em 0;
    letter-spacing: 4px;
    text-transform: capitalize;
    font-weight: 200;
}

.w3layouts-banner-info i {
    vertical-align: middle;
}

.banner-top,
.banner-top1,
.banner-top2,
.banner-top3 {
    min-height: 750px;
}
.overlay {
    min-height: 750px;
    background: rgba(0, 0, 0, 0.6);
}
.overlay1 {
    min-height: 750px;
    background: rgba(0, 0, 0, 0.5);
}

.button-style {
    padding: 13px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    display: inline-block;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.1);
}

.button-style:hover {
    color: #fff;
}

/*-- //banner style --*/

/*-- about --*/
.about-grids h2 {
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 50px;
}
.form-style-agile input[type="text"], .form-style-agile input[type="email"], .form-style-agile input[type="password"], select {
    outline: none;
    font-size: 15px;
    border: none;
    color: #666;
    letter-spacing: 0.5px;
    padding: 13px 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
	text-transform: capitalize;
    background: #f6f6f6;
}
.about-grids .padding {
    background: #fff;
	border: 6px solid #f6f6f6;
    padding: 3em 2em;
	position: relative;
}
.padding img {
    width: 30%;
    margin: 0 auto 1em;
    display: block;
    position: absolute;
    top: -7%;
    left: 35%;
    background: #fff;
    padding: 0 15px;
}
button.book-btn {
    color: #da9d40;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: 15px;
    border-radius: 0;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: 1px;
    -webkit-transition: 1.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    transition: 0.5s all;
}
h5.plane {
    margin: .5em 0;
    letter-spacing: 4px;
    text-transform: capitalize;
    font-weight: 200;
    font-size: 30px;
}

/*-- //about --*/

/*-- about bottom --*/
.banner-about {
    padding: 3em 4em;
    background: #f6f6f6;
}
.banner-about h4 {
    font-size: 28px;
    letter-spacing: 2px;
    text-transform: capitalize;
}
h5.bottom {
    margin: .5em 0;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 24px;
}
.bottom-left {
    background: url(../images/left.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
}
.banner-about span.fa{
	font-size: 40px;
	color: #da9d40;
}
.bg-image-left {
    background: url(../images/p1.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 450px;
	margin: 5px;
}
.bg-image-right {
    background: url(../images/p2.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 250px;
	margin: 5px;
}
.bg-image-bottom1 {
    background: url(../images/p3.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
	margin: 5px;
}
.bg-image-bottom2 {
    background: url(../images/p4.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    min-height: 190px;
	margin: 5px;
}

.bg-image-left h4 {
    padding-top: 350px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 27px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 450px;
}
.bg-image-right h4 {
    padding-top: 170px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 250px;
}
.bg-image-bottom1 h4,.bg-image-bottom2 h4 {
    padding-top:120px;
    text-align: center;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0px;
    background: rgba(0, 0, 0, 0.4);
    min-height: 190px;
}
/*-- //about bottom --*/


/*-- services --*/

.service-icon span.fa{
    font-size:40px;
    color: #da9d40;
}
.service-grid h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 2px;
}
/*-- //services --*/


/*-- facts --*/
.facts{
	background: #f6f6f6;
}
.facts span.fa {
    display: block;
    font-size: 40px;
    color: #da9d40;
	margin: 0;
    font-weight: normal;
}
.facts span {
    font-size: 30px;
    margin: .5em 0;
    display: block;
    font-weight: 600;
}
.facts h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 28px;
    color: #666;
    font-weight: 400;
}
.stats-grid {
    background: #fff;
    padding: 1.5em 2em;
    text-align: center;
    border-right: 6px solid #f6f6f6;
}
/*-- //facts --*/

/*-- team --*/


/*********************** Demo - 13 *******************/
.box13 {
    position: relative;
    transition: all .2s ease-out 0s;
    text-align: center;
}

.box13 .box-content,
.box13:after {
    position: absolute;
    left: 20px;
    right: 20px
}

.box13:after {
    content: "";
    display: block;
    background: #000;
    top: 20px;
    bottom: 20px;
    opacity: 0;
    transform: rotate3d(-1, 1, 0, 100deg);
    transition: all .4s ease-in-out 0s
}

.box13:hover:after {
    opacity: .9;
    transform: rotate3d(0, 0, 0, 0deg)
}

.box13 img {
    width: 100%;
    height: auto
}

.box13 .box-content {
    top: 45%;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translate(10%, -30%);
    transform: translate(10%, -30%);
    transition: all .2s ease-out 0s
}

.box13:hover .box-content {
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: .2s
}

.box13 .title {
    display: block;
    font-size: 22px;
    color: #da9d40;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.box13 .post {
    display: block;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.box13 .social {
    padding: 0;
    margin: 0;
    list-style: none
}

.box13 .social li {
    display: inline-block
}

.box13 .social li a {
    display: block;
    width: 35px;
    height: 35px;
    background: #da9d40;
    border-radius: 50%;
    font-size: 15px;
    color: #fff;
    line-height: 35px;
    margin-right: 5px;
    transition: all .4s ease-in-out 0s
}

.box14 .icon li,
.box14 .post {
    display: inline-block
}

@media only screen and (max-width:990px) {
    .box13 {
        margin-bottom: 30px
    }
}

/*-- //team  --*/


/*-- inner page banner --*/

.inner-banner {
    background: url(../images/banner1.jpg) no-repeat center;
    background-size: cover;
    min-height: 250px;
}
.inner-banner-overlay {
    min-height: 250px;
    background: rgba(0, 0, 0, 0.6);
}
/*-- inner page banner --*/


/*-- page details --*/

.inner-banner h3 {
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 40px;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-weight: 600;
}
li.breadcrumb-item a {
    color: #da9d40;
}
.breadcrumb-agile {
    background-color: #e9ecef;
    margin-bottom: -15px;
}
/*-- //page details --*/


/*-- inner page about secttion --*/

.inner-about h4 {
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.inner-about span.fa {
    font-size: 40px;
    color: #da9d40;
}
/*-- //inner page about secttion --*/


/*-- discount section --*/
.overlay-all {
    background: rgba(0, 0, 0, 0.6);
}
.discount-grid {
    background: url(../images/banner4.jpg) no-repeat center;
    background-size: cover;
}
.discount-grid p {
    color: #bbb;
}
.discount-grid h2 {
    font-size: 3em;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.4em;
    font-weight: 200;
}
.discount-grid a {
    font-size: 15px;
    letter-spacing: 9px;
    color: #fff;
    padding: 20px 28px;
    border-radius: 0px;
    background: #da9c4100;
    display: inline-block;
    margin-top: 20px;
}
.offer-grid {
    max-width: 750px;
    margin: auto;
}
/*-- //discount section --*/

/* testimonials */
.testi {
    background: #f6f6f6;
}

h6.b-w3ltxt {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
h6.b-w3ltxt span {
    font-weight: normal;
    color: #777;
    text-transform: capitalize;
    font-size: 16px;
}
.testi-cgrid p {
	line-height: 1.8em;
}
.testi-cgrid p span.fa {
	color: #da9d40;
}

.testi-icon img{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 5px solid #f6f6f6;
    background: #eee;
}

.testi-icon span.fa {
    font-size: 1.4em;
}
.testi-cgrid {
    background: #fff;
    padding: 2em 1em;
}
.border-right-grid{
	 border-right: 8px solid #f6f6f6;
}
.border-left-grid{
	 border-left: 8px solid #f6f6f6;
}
/* //testimonials */


/*-- pricing grids --*/
.pricing-grids .padding {
    background: #fff;
    border: 6px solid #f6f6f6;
    padding: 3em 2em;
    position: relative;
}
.border-dot {
    padding-bottom: 10px;
    border-bottom: 2px dotted #555;
}
.menu-item-name h6 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.menu-item-price h6 {
    font-size: 18px;
    color: #da9d40;
    letter-spacing: 1px;
}
.menu-item-description p {
    font-size: 15px;
}

/*-- //pricing grids --*/



/* gallery page */

.gal-img {
    padding: 5px;
    margin-bottom: 2em;
}
.gal-img img,.popup img {
    width: 100%;
}
.gal-img p {
    line-height: 28px;
    margin-top: 15px;
}
.popup p {
    line-height: 25px;
    margin-top: 15px;
}
.gal-img h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 20px;
    margin-top: 15px;
}
/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.787);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: rgba(0, 0, 0, 0.76);
    border-radius: 2px;
    max-width: 500px;
    position: relative;
    margin: 2em auto;
    padding: 3em 2em;
    z-index: 999;
}


.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: rgb(255, 255, 255)
}

/* //popup */
/* //gallery page */


/*-- contact page --*/
.contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px 20px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    background: #f6f6f6;
    text-transform: capitalize;
    background-image: none;
    letter-spacing: 1px;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: none;
    border-bottom: 1px solid #ccc;
}
.contact textarea {
    height: 180px;
}
.contact button.btn {
    background: #da9d40;
    font-size: 15px;
    display: inline-block;
    color: #fff;
    border: 2px solid;
    padding: 13px 40px;
    letter-spacing: 2px;
    margin-top: 0px;
    cursor: pointer;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.contact label{
	text-transform: uppercase;
	letter-spacing: 1px;
}
.contact label span.fa {
	color: #da9d40;
}
.map iframe {
    border: none;
    outline: none;
    height: 350px;
    width: 100%;
}
/*-- //contact page --*/
/*-- features --*/
.events-info .sub-tittle {
    font-size: 0.7em;
}


.feature-grids h3,
.bottom-gd.fea h3 {
    color: #05c46b;
    letter-spacing: 1px;
    margin-top: 0em;
    font-size: 1.4em;
}

.feature-grids p {
    margin: 0;
    color: #666;
    line-height: 28px;
    letter-spacing: .5px;
}

.feature-grids span {
    font-size: 2em;
    vertical-align: middle;
    color: #2e3840;
}

.bottom-gd,
.bottom-gd2-active {
    background: #ffffff;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
    box-shadow: 7px 7px 10px 0 rgba(76, 110, 245, .1);
    
}

.bottom-gd2-active {
    background: #ff3f34 !important;
    transition: 2s all;
    -webkit-transition: 2s all;
    -moz-transition: 2s all;
    -ms-transition: 2s all;
    -o-transition: 2s all;
}

.bottom-gd:hover.f1 i,
.bottom-gd2-active span {
    color: #fff;
}

.bottom-gd2-active p {
    color: #fff;
}

.bottom-gd2-active h3 {
    color: #fff;
}

.feature-grids h3,
.bottom-gd.fea h3 {
    font-size: 1.2em;
    color: #1e272e;
}


.serv_bottom {
    position: relative;
}

.fea span {
    color: #da9d40;
    font-size: 3em;
}

.fea {
    margin-bottom: 1.5em !important;
    padding: 3em 0.5em;
}

.bottom-gd.fea h3 {
    font-size: 1.2em;
}

.fea.active {
    background: #ff3f34;
}

.fea.active p,
.fea.active h3 {
    color: #fff;
}

.fetured-sec img {
    box-shadow: 14px 14px 50px -20px rgba(0, 0, 0, .1);
}

/* //fetures */
/* banner-image-two */
.banner-image-two{
background: url(../images/im1.jpg) no-repeat center;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
-ms-background-size: cover;}

.banner-image-two h2 ,.blog-left-wthree h4 a,.banner-image-two h5{
    font-size: 40px;
    color: #fff;
}
.view-buttn a {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    letter-spacing: 1px;
    outline: none;
    font-weight: 400;
    border-radius: 0px;
    background-color: #000000ad;
    padding: 8px 15px;
    border: 2px solid #ffffff4a;
}
.view-buttn a:hover {
    opacity: .8;
}
	/*--// blog-- */
.testi-img-res img {
    border-radius: 50%;
}
/*-- move top --*/
a.move-top {
    width: 34px;
    height: 34px;
    background: url(../images/move-top.png) no-repeat;
    display: inline-block;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 0;
}
/*-- //move top --*/
/*-- stats --*/
.stats h3.heading {
    color: #f8f9fa;
}

.stats p {
    color: #ccc;
}

.stats-left h4 span {
    font-size: 50px;
    font-weight: 600;
    color: #da9d40;
}

.stats-left h4 {
    color: #fff;
}

.stats-right h4 {
    font-size: 2.4em;
    font-weight: 700;
    margin: 15px 0;
    color: #fff;
}


.stats-right span.fa {
    color: #212529;
    font-size: 20px;
    background: rgb(248, 249, 250);
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.stats {
    background: url(../images/banner4.jpg) center;
    background-size: cover;
    position: relative;
}
.sal {
    background: url(../images/banner5.jpg) center;
    background-size: cover;
    position: relative;
    height: 30%;
}
.cam{
    
    background-size: cover;
    position: relative;
}

.brands a span.fa {
    font-size: 3em;
    color: #333;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

/*-- //stats --*/
h3.heading {
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 700;
    letter-spacing: 1px;
}
/* testimonials */

.testimonials {
    background: #f5f5f5;
}

.testimonials .bg-white.rounded {
    box-shadow: 0px 0px 18.69px 2.31px rgba(204, 204, 223, 0.5);
}

p.sub-test {
    color: #262631;
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
    
}

p.sub-test span {
    color: rgb(0, 0, 0);
    font-size: 1.7em;   
    margin-right: 0.3em;
}

.testi_grid h5 {
    color: #000000;
    letter-spacing: 1px;
    font-size: 1em;
}

.testi_grid p {
    font-size: 13px;
    line-height: 2em;
}

section.hand-crafted p {
    color: #6e7275;
}

/* //testimonials */
/*-- newsletter --*/
.subscribe-main{
	background: #f8f9fa;
}
.subscribe-main .heading-grid h4:after {
    content: none;
}
.newsletter-info input[type="email"] {
    padding: 10px 5px;
    font-size: 15px;
    color: #666;
    outline: none;
    letter-spacing: 2px;
    border: none;
    border-bottom: 1px solid #333;
    flex-basis: 70%;
    margin-right: 3%;
    font-style: italic;
    font-weight: 600;
    background: none;
}

.newsletter-info button[type="submit"] {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 13px 0;
    border: transparent;
    background: #da9d40;
    border: 2px solid #da9d40;
    flex-basis: 35%;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
}
/*-- //newsletter --*/
/*-- footer --*/
ul.bottom-links-w3_pvt {
    border-top: 1px solid #1a1d1d;
    border-bottom: 1px solid #1a1d1d;
    padding: 1.5em 0;
    margin: 3em 0;
}

ul.bottom-links-w3_pvt li {
    display: inline-block;
    margin: 0 2em;
}

ul.bottom-links-w3_pvt li:last-child {
    float: right;
}

ul.bottom-links-w3_pvt li a.active,
ul.bottom-links-w3_pvt li a:hover {
    color: #34c663;
}

ul.bottom-links-w3_pvt li a {
    font-size: 14px;
    color: #606161;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footv4-left h2 a {
    font-size: 0.9em;
    letter-spacing: 0.5px;
    color: #fff !important;
    display: block;
    position: relative;
    margin-bottom: 1em;
    font-weight: 800;
    text-transform: uppercase;
}

ul.d-flex.header-agile li span {
    margin-right: 1em;
    color: #0cc5b7;
}

.footv4-left ul.v4-rel li {
    display: block;
    list-style-type: none;
    margin-bottom: 10px;
}

ul.footer-link li {
    display: inline-block;
    line-height: 2;
    padding: 0 .5em;
}

ul.footer-link li a {
    color: #666;
    text-transform: capitalize;
    font-size: 17px;
    letter-spacing: 1px;
}
footer {
    background: #000;
}
.copy-right p {
    color: #444;
}
.copy-right p a {
	color: #666;
}
.footer-left h3 {
    font-size: 2.8em;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ccc;
}
ul.social-icons li {
    display: inline-block;
}
ul.social-icons li a span {
    color: #777;
    margin: 0 12px;
    font-size: 20px;
}
.footer-nav-wthree{
    text-align: right;
}
.copy-right {
    background: #000;
    padding: 1.5em 0;
    border-top: 1px solid #222;
}
/*-- //footer --*/
/*-- Responsive design --*/

@media(max-width:1366px) {
	.banner-top, .banner-top1, .banner-top2, .banner-top3,.overlay,.overlay1 {
		min-height: 750px;
	}
}
@media(max-width:1280px) {
	.banner-top, .banner-top1, .banner-top2, .banner-top3,.overlay,.overlay1 {
		min-height: 720px;
	}
	.banner-about {
		padding: 3em 3em;
	}
	h5.bottom {
		letter-spacing: 4px;
	}
	h5.plane {
		letter-spacing: 3px;
		font-size: 28px;
	}
	.about-grids h2 {
		font-size: 36px;
		letter-spacing: 1px;
		line-height: 40px;
	}
	h4.footer-top-text {
		font-size: 1.9em;
	}
}
@media(max-width:1080px) {
	.w3layouts-banner-info h3 {
		font-size: 3em;
	}
	.w3layouts-banner-info {
		padding-top: 14em;
	}
	.banner-top, .banner-top1, .banner-top2, .banner-top3,.overlay,.overlay1 {
		min-height: 650px;
	}
	h4.footer-top-text {
		font-size: 1.8em;
		letter-spacing: 1px;
	}
	h5.plane {
		letter-spacing: 2px;
		font-size: 26px;
	}
	.about-grids h2 {
		font-size: 32px;
		letter-spacing: 1px;
		line-height: 27px;
	}
	.banner-about {
		padding: 3em 2em;
	}
	.banner-about h4 {
		font-size: 24px;
		letter-spacing: 1px;
		text-transform: capitalize;
	}
	h5.bottom {
		letter-spacing: 2px;
		font-size: 22px;
	}
	.service-grid h4 {
		font-size: 20px;
		letter-spacing: 1px;
	}
	p {
		font-size: 16px;
	}
	.bg-image-right h4,.bg-image-left h4,.bg-image-bottom1 h4, .bg-image-bottom2 h4 {
		letter-spacing: 3px;
		font-size: 21px;
	}
	h3.heading, h2.heading {
		font-size: 35px;
		letter-spacing: 1px;
	}
	.inner-about h4 {
		font-size: 22px;
		letter-spacing: 0px;
	}
	.footer-left h3 {
    font-size: 2.5em;
}
}
@media(max-width:1024px) {
	nav a {
		font-size: 15px;
	}
	#logo a {
		font-size: .65em;
	}
	.facts h4 {
		font-size: 16px;
	}
	.facts span {
		font-size: 25px;
	}
	.footer-logo a.navbar-brand {
		font-size: 27px;
	}
	.inner-banner,.inner-banner-overlay {
		min-height: 200px;
	}
	.discount-grid h2 {
		font-size: 2.8em;
	}
	.offer-grid {
		max-width: 700px;
	}
	h6.b-w3ltxt {
		font-size: 18px;
		letter-spacing: 1px;
	}
}
@media(max-width:992px) {
	.w3layouts-banner-info {
		padding-top: 12em;
	}
	h3.heading {
		font-size: 36px;
	}
	.banner-top, .banner-top1, .banner-top2, .banner-top3,.overlay,.overlay1 {
		min-height: 600px;
	}
	.w3layouts-banner-info h3 {
		font-size: 2.8em;
	}
	.bottom-left {
		min-height: 350px;
	}
	.banner-about {
		padding: 3em 4em;
	}
	.bg-image-right h4, .bg-image-left h4, .bg-image-bottom1 h4, .bg-image-bottom2 h4 {
		letter-spacing: 2px;
		font-size: 19px;
	}
	.address p {
		max-width: 100%;
		font-size: 15px;
	}
	.footer-icon span.fa {
		font-size: 50px;
	}
	.stats-grid {
		padding: 1.5em 1em;
	}
	.footer-top a.serv_link {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.map iframe {
		height: 300px;
	}
}

@media(max-width:800px) {
	.w3layouts-banner-info h3 {
		font-size: 2.6em;
		line-height: 60px;
	}
	.w3layouts-banner-info h4 {
		letter-spacing: 2px;
	}
	.button-style {
		padding: 11px 30px;
	}
	.discount-grid h2 {
		font-size: 2.5em;
	}
	.inner-banner,.inner-banner-overlay {
		min-height: 180px;
	}
	.map iframe {
		height: 260px;
	}
}
@media(max-width:736px) {
	.w3layouts-banner-info h3 {
		font-size: 2.5em;
		line-height: 55px;
		letter-spacing: 2px;
	}
	.w3layouts-banner-info h4 {
		letter-spacing: 2px;
		font-size: 22px;
	}
	.banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
		min-height: 560px;
	}
	h5.plane {
		letter-spacing: 1px;
		font-size: 24px;
	}
	.about-grids h2 {
		font-size: 30px;
	}
	.bg-image-left h4 {
		padding-top: 170px;
		min-height: 250px;
	}
	.bg-image-left {
		min-height: 250px;
	}
	.footer-icon span.fa {
		font-size: 40px;
	}
	.address, .footer-icon,.phone {
		text-align: center;
	}
	.discount-grid h2 {
		font-size: 2em;
	}
	.footer-left h3 {
    font-size: 2em;
    text-align: center;
}
.footer-nav-wthree {
    text-align: center;
}
.banner-image-two h2, .blog-left-wthree h4 a, .banner-image-two h5 {
    font-size: 32px;
}
}
@media(max-width:600px) {
	.w3layouts-banner-info h3 {
		font-size: 2.3em;
		line-height: 50px;
		letter-spacing: 1px;
	}
	.w3layouts-banner-info {
		padding-top: 11em;
	}
	.w3layouts-banner-info h4 {
		letter-spacing: 1px;
		font-size: 20px;
	}
	.banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
		min-height: 500px;
	}
	.about-grids h2 {
		font-size: 26px;
	}
	h5.plane {
		letter-spacing: 1px;
		font-size: 21px;
	}
	.banner-about {
		padding: 3em 2em;
	}
	.copyright p {
		font-size: 15px;
	}
	.inner-banner,.inner-banner-overlay {
		min-height: 150px;
	}
	.contact label {
		font-size: 15px;
	}
	.contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
		padding: 13px 20px;
		font-size: 14px;
	}
}
@media(max-width:568px) {
	.stats-grid {
		padding: 1.5em 1em;
		border-right: none;
		border-bottom: 6px solid #f6f6f6;
	}
	.button-style {
		font-size: 14px;
	}
	.inner-heading {
		margin: 0;
	}
	.fact-grid-main {
		margin: 0;
	}
	.team-grid {
		margin: 0 4em;
	}
	.box13 {
		margin-bottom: 0px;
	}
	h3.heading {
		font-size: 32px;
	}
	.testi-icon img {
		width: 25%;
	}
	.news-grids.gal {
		width: 90%;
		margin: auto;
	}
}
@media(max-width:480px) {
	.w3layouts-banner-info h3 {
		font-size: 2em;
		line-height: 45px;
	}
	.w3layouts-banner-info h4 {
		letter-spacing: 1px;
		font-size: 18px;
		margin: .5em 0 0;
	}
	.banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
		min-height: 450px;
	}
	#logo a {
		font-size: .6em;
	}
	.social ul li a {
		width: 35px;
		height: 35px;
		line-height: 35px;
	}
	.social ul li span.fa {
		font-size: 12px;
		line-height: 35px;
	}
	h4.footer-top-text {
		font-size: 1.5em;
	}
	.inner-banner,.inner-banner-overlay {
		min-height: 130px;
	}
	.discount-grid h2 {
		font-size: 1.8em;
	}
	.testi-icon img {
		width: 30%;
	}
	.popup {
		margin: 8em 1em;
		padding: 3em 1em 2em;
	}
	.contact button.btn {
		font-size: 14px;
		padding: 11px 35px;
		letter-spacing: 1px;
	}
}
@media(max-width:415px) {
	.copyright {
		padding: 0 15px;
	}
	.footer-icon span.fa {
		font-size: 30px;
	}
	.footer-logo a.navbar-brand {
		font-size: 24px;
	}
	h4.footer-top-text {
		font-size: 1.4em;
		letter-spacing: 0px;
	}
	.footer-top a.serv_link {
		font-size: 14px;
		letter-spacing: 1px;
		padding: 12px 20px;
	}
	.team-grid {
		margin: 0 1em;
	}
	h3.heading, h2.heading {
		font-size: 30px;
		letter-spacing: 1px;
	}
	h5.bottom {
		letter-spacing: 1px;
		font-size: 20px;
	}
	.about-grids h2 {
		font-size: 22px;
	}
	.csslider>.arrows {
        width: 99% !important;
        animation: slide 20s infinite alternate;
        


	}
	.w3layouts-banner-info h3 {
		font-size: 1.8em;
	}
	.w3layouts-banner-info h4 {
		font-size: 17px;
	}
	.banner-about span.fa {
		font-size: 30px;
	}
	.banner-about {
		padding: 2em 1em;
	}
	.inner-about span.fa {
		font-size: 30px;
	}
	.inner-about h4 {
		font-size: 22px;
		line-height: 30px;
	}
	.discount-grid a {
		font-size: 14px;
		letter-spacing: 1px;
	}
	.discount-grid h2 {
		font-size: 1.6em;
	}	
	.testi-icon img {
		width: 35%;
	}
	li.breadcrumb-item a,.breadcrumb-item.active {
		font-size: 14px;
	}
	.heading-grid.mb-0 h4 {
    font-size: 19px;
    line-height: 1.6em;
}
}
@media(max-width:384px) {
	.team-grid {
		margin: 0 0em;
	}
	.w3layouts-banner-info h3 {
		font-size: 1.6em;
		line-height: 40px;
		letter-spacing: 0px;
	}
	.w3layouts-banner-info {
		padding-top: 10em;
	}
	.about-grids h2 {
		font-size: 20px;
	}
	.inner-about h4 {
		font-size: 20px;
		line-height: 28px;
	}
	.testi-icon img {
		width: 40%;
	}
	.copyright p {
		font-size: 14px;
	}
	.address p, .footer-icon p, .phone p, .phone p a {
		font-size: 14px;
	}
	.menu-item-name h6 {
		font-size: 15px;
	}
	.menu-item-price h6 {
		font-size: 17px;
	}
	.contact label {
		font-size: 14px;
	}
	.contact input[type="text"], .contact input[type="email"], .contact select, .contact textarea {
		padding: 12px 20px;
		font-size: 14px;
	}
	.footer-left h3 {
    font-size: 1.7em;
}
}
@media(max-width:375px) {
	
}
@media(max-width:320px) {
	.w3layouts-banner-info h3 {
    font-size: 1.4em;
    line-height: 34px;
}
.w3layouts-banner-info h4 {
    font-size: 14px;
}
.footer-left h3 {
    font-size: 1.5em;
}
ul.footer-link li a {
    font-size: 15px;
}
h3.heading, h2.heading {
    font-size: 28px;
}
.banner-image-two h2, .blog-left-wthree h4 a, .banner-image-two h5 {
    font-size: 28px;
}
.newsletter-info input[type="email"] {
    margin-right: -7%;
}
.banner-top, .banner-top1, .banner-top2, .banner-top3, .overlay, .overlay1 {
    min-height: 420px;
}
}

/*-- //Responsive design --*/


.about,.gallery{
	padding:0em 0;
}
.about h2,.footer-top h3,.team-top h3,.gallery h2,h2.top{
    font-size: 2.3em;
    color: #000000;
    font-family: 'TitilliumWeb-Bold';
	text-align:center;
}
.about-top-sec h3 {
    color: #fd7364;
    font-family: 'TitilliumWeb-Regular';
    margin-top: 1em;
    font-size: 2em;
}
.about-top-sec h4 {
    font-size: 1.1em;
    text-transform: uppercase;
    color: #333;
    margin: 0.85em 0;
    line-height: 1.6em;
    font-family: 'TitilliumWeb-Regular';
}
.about-top-sec p{
	 color:rgb(85, 85, 85);
	 font-size:0.9em;
	 line-height:1.7em;
}
.about-grids{
	margin-top:3em;
}
.about-pic {
    padding-right: 6em;
}

.about-list ul li a {
    color: #9A9598;
    font-size: 0.9em;
    text-decoration: none;
}
.about-list ul li a:hover {
    color: #fd7364;
    padding-left: 1em;
}
.about-top-sec p,.guide-grid p{
    font-size: 0.8em;

    }
    .about-top-sec h3 {
        margin-top: 0.6em;
        font-size: 1.5em;
    }
    .about-top-sec h4 {
        font-size: 0.9em;
        margin: 0.75em 0;
    }
    .about-list ul li a {
        font-size: 0.8em;
    }
    .about-list {
        float: left;
        width: 50%;
    }



    .about-pic{
        float: left;
        width: 50%;
        padding-right: 0em;
    }
    .about-list li:nth-child(2){
        display:none;
    }
    .about, .gallery {
        padding: 0em 0em;
    }
    .about, .gallery {
        padding: 0em 0em;
    }
    .about h2, .footer-top h3, .team-top h3, .gallery h2, h2.top {
        font-size: 1.7em;
    }
    .about, .gallery {
        padding: 0em 0;
    }
    .about-top-sec h3 {
        font-size: 1.3em;
    }
    .about-top-sec h4 {
        font-size: 0.8em;
    }
    .about-list li:nth-child(4) {
        display: none;
    }
    .wel-info p, .choos-grid p, .testi-top p, .destination-top p, .subscrib-top p, .desti-info p, .ftr-grid1 p, .news-ltr p, .about-top-sec p, .guide-grid p {
        font-size: 0.85em;
    }
    .about-grids {
        margin-top: 0em;
    }
    .about-list {
        width: 100%;
        margin:1.52em 0;
    }
    .about-pic {
        width: 100%;
        padding: 0em;
    }
    .about h2, .footer-top h3, .team-top h3, .gallery h2, h2.top {
        font-size: 1.5em;
    }
    .about-top-sec h3 {
        font-size: 1.1em;
    }
    .about-top-sec h4 {
        font-size: 0.75em;
        margin: 0.5em 0;
    }
    .about-list {
        width: 100%;
        margin: 1em 0;
        padding: 0 0 0 10px;
    }
    .about-list ul li a {
        font-size: 0.75em;
    }
    .about-list li {
        margin-bottom: 6px;
    }
    .about, .gallery {
        padding: 1em 0;
    }

    



    .gallery-img-grid,.pricing-grid,.team-grid-list {
        width: 50%;
        }


        .gallery-img-grid, .pricing-grid, .team-grid-list {
            width: 61%;
            margin: 0px auto;
            }

            .gallery-img-grid, .pricing-grid, .team-grid-list {
                width: 68%
                }

                .gallery-img-grid, .pricing-grid, .team-grid-list {
                    width: 81%;
                    }

                    .gallery-img-grid, .pricing-grid, .team-grid-list {
                        width: 100%;
                        }











                    div.ver{
                            width:180px;
                            height:20%;
                            background-color:rgb(255, 255, 255);
                           margin:10px;
                            -webkit-transition-duration-:1s;
                            transition-duration: 0.4s;
                            padding:0px;
                            position: relative;
                          top: 10px;
                          left: 60px;
                          max-width:100% ;
                          
                          
                          
                          display:inline-block;
                          
                            }
                            div.ver:hover{
                            background-color: rgba(255, 255, 255, 0.493)93);
                            }
                            div.text{
                            font-family: comic sans ms;
                            }
                                

                            


.cel .new-block {
  background-size: cover;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.33)), url(../images/im1.jpg);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: calc(100vh - 0px);
  display: grid;
  align-items: center;
  padding: 2rem 0;
  margin: 3em 0 0 0;

  
  
  min-height: 730px;
  padding-top: 2em;
  


}

.cel .middle-section {
  max-width: 850px;
  margin: 0 auto; }

.cel .middle-section h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 65px;
  font-weight: 600; }

  

.cel span.fa.fa-play {
  line-height: 80px; }

@media (max-width: 800px) {
  .cel .middle-section a {
    margin-top: 40px; }
  .cel .middle-section h2 {
    font-size: 50px;
    line-height: 40px; } }

@media (max-width: 667px) {
  .cel .middle-section a {
    margin-top: 30px; }
  .cel .middle-section h2 {
    font-size: 42px;
    line-height: 52px; } }

@media (max-width: 480px) {
  .cel .middle-section h2 {
    font-size: 35px;
    line-height: 40px; } }

@media (max-width: 440px) {
  .cel .middle-section h2 {
    font-size: 30px;
    line-height: 40px; } }

@media (max-width: 384px) {
  .cel .middle-section a {
    margin-top: 25px; } }

    .cel .middle-section h3 {
        color: #00ecd8;
        font-size: 30px;
        line-height: 40px;
        font-weight: 600; }
      





        @media (max-width: 575.98px) {
            .table-responsive-sm {
              display: block;
              width: 100%;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch; }
              .table-responsive-sm > .table-bordered {
                border: 0; } }
          
          @media (max-width: 767.98px) {
            .table-responsive-md {
              display: block;
              width: 100%;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch; }
              .table-responsive-md > .table-bordered {
                border: 0; } }
          
          @media (max-width: 991.98px) {
            .table-responsive-lg {
              display: block;
              width: 100%;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch; }
              .table-responsive-lg > .table-bordered {
                border: 0; } }
          
          @media (max-width: 1199.98px) {
            .table-responsive-xl {
              display: block;
              width: 100%;
              overflow-x: auto;
              -webkit-overflow-scrolling: touch; }
              .table-responsive-xl > .table-bordered {
                border: 0; } }
          
          .table-responsive {
            display: block;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; }
            .table-responsive > .table-bordered {
              border: 0; }

              .row-content>.row {
                margin-bottom: 0;
            }





            .cel .new-block {
                background-size: cover;
                background-image: linear-gradient(to right, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.33)), url(../images/im1.jpg);
                background-repeat: no-repeat, no-repeat, no-repeat;
                background-position: center;
                background-attachment: fixed;
                min-height: calc(100vh - 0px);
                display: grid;
                align-items: center;
                padding: 2rem 0;
                margin: 3em 0 0 0;
              
                
                
                min-height: 300px;
                padding-top: 2em;
                
              
              
              }
              
              .cel .middle-section {
                max-width: 850px;
                margin: 0 auto; }
              
              .cel .middle-section h2 {
                color: #ffffff;
                font-size: 30px;
                line-height: 65px;
                font-weight: 600; }
              
                
              
              .cel span.fa.fa-play {
                line-height: 80px; }
              
              @media (max-width: 800px) {
                .cel .middle-section a {
                  margin-top: 40px; }
                .cel .middle-section h2 {
                  font-size: 50px;
                  line-height: 40px; } }
              
              @media (max-width: 667px) {
                .cel .middle-section a {
                  margin-top: 30px; }
                .cel .middle-section h2 {
                  font-size: 42px;
                  line-height: 52px; } }
              
              @media (max-width: 480px) {
                .cel .middle-section h2 {
                  font-size: 35px;
                  line-height: 40px; } }
              
              @media (max-width: 440px) {
                .cel .middle-section h2 {
                  font-size: 30px;
                  line-height: 40px; } }
              
              @media (max-width: 384px) {
                .cel .middle-section a {
                  margin-top: 25px; } }
              
                  .cel .middle-section h3 {
                      color: #00ecd8;
                      font-size: 30px;
                      line-height: 40px;
                      font-weight: 600; }
                    
              
              
              
              
              
                      @media (max-width: 575.98px) {
                          .table-responsive-sm {
                            display: block;
                            width: 100%;
                            overflow-x: auto;
                            -webkit-overflow-scrolling: touch; }
                            .table-responsive-sm > .table-bordered {
                              border: 0; } }
                        
                        @media (max-width: 767.98px) {
                          .table-responsive-md {
                            display: block;
                            width: 100%;
                            overflow-x: auto;
                            -webkit-overflow-scrolling: touch; }
                            .table-responsive-md > .table-bordered {
                              border: 0; } }
                        
                        @media (max-width: 991.98px) {
                          .table-responsive-lg {
                            display: block;
                            width: 100%;
                            overflow-x: auto;
                            -webkit-overflow-scrolling: touch; }
                            .table-responsive-lg > .table-bordered {
                              border: 0; } }
                        
                        @media (max-width: 1199.98px) {
                          .table-responsive-xl {
                            display: block;
                            width: 100%;
                            overflow-x: auto;
                            -webkit-overflow-scrolling: touch; }
                            .table-responsive-xl > .table-bordered {
                              border: 0; } }
                        
                        .table-responsive {
                          display: block;
                          width: 100%;
                          overflow-x: auto;
                          -webkit-overflow-scrolling: touch; }
                          .table-responsive > .table-bordered {
                            border: 0; }
              
                            .row-content>.row {
                              margin-bottom: 0;
                          }
              
              
                          


                          .sol .new-block {
                            background-size: cover;
                            background-image: linear-gradient(to right, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.33)), url(../images/banner5.jpg);
                            background-repeat: no-repeat, no-repeat, no-repeat;
                            background-position: center;
                            background-attachment: fixed;
                            min-height: calc(100vh - 0px);
                            display: grid;
                            align-items: center;
                            padding: 2rem 0;
                            margin: 3em 0 0 0;
                          
                            
                            
                            min-height: 300px;
                            padding-top: 2em;
                            
                          
                          
                          }
                          
                          .sol .middle-section {
                            max-width: 850px;
                            margin: 0 auto; }
                          
                          .sol .middle-section h2 {
                            color: #ffffff;
                            font-size: 30px;
                            line-height: 65px;
                            font-weight: 600; }
                          
                            
                          
                          .sol span.fa.fa-play {
                            line-height: 80px; }
                          
                          @media (max-width: 800px) {
                            .sol .middle-section a {
                              margin-top: 40px; }
                            .sol .middle-section h2 {
                              font-size: 50px;
                              line-height: 40px; } }
                          
                          @media (max-width: 667px) {
                            .sol .middle-section a {
                              margin-top: 30px; }
                            .sol .middle-section h2 {
                              font-size: 42px;
                              line-height: 52px; } }
                          
                          @media (max-width: 480px) {
                            .sol .middle-section h2 {
                              font-size: 35px;
                              line-height: 40px; } }
                          
                          @media (max-width: 440px) {
                            .sol .middle-section h2 {
                              font-size: 30px;
                              line-height: 40px; } }
                          
                          @media (max-width: 384px) {
                            .sol .middle-section a {
                              margin-top: 25px; } }
                          
                              .sol .middle-section h3 {
                                  color: #00ecd8;
                                  font-size: 30px;
                                  line-height: 40px;
                                  font-weight: 600; }






                                  .libro .new-block {
                                    background-size: cover;
                                    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.33)), url(../images/banner4.jpg);
                                    background-repeat: no-repeat, no-repeat, no-repeat;
                                    background-position: center;
                                    background-attachment: fixed;
                                    min-height: calc(100vh - 0px);
                                    display: grid;
                                    align-items: center;
                                    padding: 2rem 0;
                                    margin: 0em 0 0 0;
                                  
                                    
                                    
                                    min-height: 0px;
                                    padding-top: 0em;
                                    
                                  
                                  
                                  }
                                  
                                  .libro .middle-section {
                                    max-width: 850px;
                                    margin: 0 auto; }
                                  
                                  .libro .middle-section h2 {
                                    color: #ffffff;
                                    font-size: 30px;
                                    line-height: 65px;
                                    font-weight: 600; }
                                  
                                    
                                  
                                  .libro span.fa.fa-play {
                                    line-height: 80px; }
                                  
                                  @media (max-width: 800px) {
                                    .libro .middle-section a {
                                      margin-top: 40px; }
                                    .libro .middle-section h2 {
                                      
                                        font-size: 50px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 667px) {
                                    .libro .middle-section a {
                                      margin-top: 30px; }
                                    .libro .middle-section h2 {
                                      font-size: 42px;
                                      line-height: 52px; } }
                                  
                                  @media (max-width: 480px) {
                                    .libro .middle-section h2 {
                                      font-size: 35px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 440px) {
                                    .libro .middle-section h2 {
                                      font-size: 30px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 384px) {
                                    .libro .middle-section a {
                                      margin-top: 25px; } }
                                  
                                      .libro .middle-section h3 {
                                          color: #00ecd8;
                                          font-size: 30px;
                                          line-height: 40px;
                                          font-weight: 600; }



                                          
                                  .medios .new-block {
                                    background-size: cover;
                                    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.57), rgba(0, 0, 0, 0.33)), url(../images/banner8.jpg);
                                    background-repeat: no-repeat, no-repeat, no-repeat;
                                    background-position: center;
                                    background-attachment: fixed;
                                    min-height: calc(100vh - 0px);
                                    display: grid;
                                    align-items: center;
                                    padding: 2rem 0;
                                    margin: 0em 0 0 0;
                                  
                                    
                                    
                                    min-height: 0px;
                                    padding-top: 0em;
                                    
                                  
                                  
                                  }
                                  
                                  .medios .middle-section {
                                    max-width: 850px;
                                    margin: 0 auto; }
                                  
                                  .libro .middle-section h2 {
                                    color: #ffffff;
                                    font-size: 30px;
                                    line-height: 65px;
                                    font-weight: 600; }
                                  
                                    
                                  
                                  .medios span.fa.fa-play {
                                    line-height: 80px; }
                                  
                                  @media (max-width: 800px) {
                                    .medios .middle-section a {
                                      margin-top: 40px; }
                                    .medios .middle-section h2 {
                                      
                                        font-size: 50px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 667px) {
                                    .medios .middle-section a {
                                      margin-top: 30px; }
                                    .medios .middle-section h2 {
                                      font-size: 42px;
                                      line-height: 52px; } }
                                  
                                  @media (max-width: 480px) {
                                    .medios .middle-section h2 {
                                      font-size: 35px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 440px) {
                                    .medios .middle-section h2 {
                                      font-size: 30px;
                                      line-height: 40px; } }
                                  
                                  @media (max-width: 384px) {
                                    .medios .middle-section a {
                                      margin-top: 25px; } }
                                  
                                      .medios .middle-section h3 {
                                          color: #00ecd8;
                                          font-size: 30px;
                                          line-height: 40px;
                                          font-weight: 600; }
                                          


.slid-img{position:absolute;}
#flexiselDemo1 {
	display: none;
}
.agileinfo_port_grid:hover .agileit-folio_grid:after {
    opacity: 1;
}
.agileinfo_port_grid:hover .agileit-folio_grid:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1,1);
    -moz-transform: translateX(-50%) translateY(-50%) scale(1,1);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1,1);
    transform: translateX(-50%) translateY(-50%) scale(1,1);
    -webkit-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -moz-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -ms-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -o-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
}
.agileit-folio_grid:before {
	content: "";
    font-size: 1.5em;
    width: 60px;
    height: 60px;
    line-height: 2.9em;
	font-family: FontAwesome;
    color: #fff;
	text-align: center;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
    transform: translateX(-50%) translateY(-50%) scale(0.3,0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
    -moz-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
    -ms-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
    -o-transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
    transition: all .3s cubic-bezier(0.6,-0.28,0.735,0.045) 0s;
    opacity: 0;
    filter: alpha(opacity=0);
}
.agileit-folio_grid:after {
    background-color: rgba(94, 192, 93, 0.44);
	content: ' ';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
.agileinfo_port_grid:hover .agileit-folio_grid:after {
    opacity: 1;
}
.agileinfo_port_grid:hover .agileit-folio_grid:before {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1,1);
    -moz-transform: translateX(-50%) translateY(-50%) scale(1,1);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1,1);
    transform: translateX(-50%) translateY(-50%) scale(1,1);
    -webkit-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -moz-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -ms-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    -o-transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
    transition: all .3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1ms;
}






.content p{
	float:left;
	line-height:1.5em;
	padding:20px 20px 0 0;
	font-size:13px;
	width:775px;
	color:#aaa;
}
.content h1{
	color:#aaa;
	font-size:28px;
	padding-bottom:12px;
	border-bottom:1px dashed #525151;
}
.pic{
	float:left;
	margin-top:30px;
	padding:10px;
	border:1px dashed #5550;
	/*-webkit-box-shadow:1px 0 5px #fff;
	   -moz-box-shadow:1px 0 5px #fff;
	        box-shadow:1px 0 5px #fff;*/
}
.sidebar{
	width:320px;
    float:right;
   
}
.sidebar h2{
	font-size:16px;
	padding:10px;
	color:#aaa;
	margin-top:45px;
	background:rgba(255,255,255,.1);
}
.sidebar ul{
	padding:0;
}
.sidebar li{
	font-size:14px;
	padding-bottom:12px;
	position:relative;
}
.sidebar li:after{
	background:rgba(255,255,255,.1);
	position:absolute;
	height:15px;
	width:15px;
	top:10%;
	right:5;
	content:"";
}
.sidebar li a{
	padding-right:30px;
	color:#777;
}
.sidebar li a:hover{
	color:#eee;
}
/**--footer--*/
.footer{
	margin-top:100px;
	border-top:10px solid rgba(255,255,255,.1)
}
.fmenu{
	float:left;
}
.fmenu ul{
	padding-left:0;
}
.fmenu li{
	display:inline-block;
	margin-right:9px;
}
.fmenu li a{
	font-size:14px;
	color:#777;
}
.fmenu li a:hover{
	color:#eee;
}

.copy{
	color:#555;
	float:right;
	font-size:14px;
	margin-top:20px;
}
.copy a{
	color:#aaa;
}
.copy a:hover{
	color:#fff;
}
/*---form--*/
form div{
	padding:20px;
}
form span{
	display:block;
}
form span{
	font-size:14px;
	padding-bottom:5px;
	color:#777;
}
form textarea,
form input[type=submit],
form input[type=text]{
	background:rgba(255,255,255,.1);
	border:none;
	padding:5px;
	width:400px;
	outline:none;
	color:#eee;
	font-size:16px;
}
form input[type=submit]{
	font-size:14px;
	padding:8px;
	width:410px;
	color:#777;
}
form input[type=submit]:hover{
	color:#eee;
	cursor:pointer;
	background:rgba(255,255,255,0.07);
}

form textarea{
	height:100px;
	font-size:16px;
}
/* -- Responsive code -- */
@media screen and (max-width: 1050px){
	.wrap {
		width: 75%;
	}
	.content{
		width:120%;
	}
	.sidebar {
		width:100%;
        float: left;
        height: 500px;
	}
	.content p {
		width: 468px;
	}
}
@media screen and (max-width: 1024px){
	.content p {
		width: 450px;
	}
	.footer {
		margin-top: 60px;
	}
}
@media screen and (max-width: 991px){
	.content p {
		width: 354px;
	}
	.header {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 900px){
	.wrap {
		width: 86%;
	}
	
		width: 96%;
	}
	.header {
		margin-bottom: 65px;
	}
}
@media screen and (max-width: 800px){
	.content p {
		width: 365px;
	}
	
		width: 100%;
	}
	.fmenu {
		float: none;
		text-align: center;
	}
	.copy {
		text-align: center;
		float: none;
		padding-bottom: 1em;
	}
	.logo img {
		width: 95%;
	}
	.header {
		margin-bottom: 60px;
	}
	
}
@media screen and (max-width: 768px){
	.header {
		margin-bottom: 50px;
	}
	.content p {
		width: 100%;
	}
	
}
@media screen and (max-width: 736px){
	.logo {
		width: 25%;
	}
	.footer {
		margin-top: 40px;
	}
	.header {
		margin-bottom: 45px;
	}
}
@media screen and (max-width: 667px){
	.header {
		margin-bottom: 35px;
	}
	form div {
		padding: 20px 20px 10px;
	}
}
@media screen and (max-width: 640px){
	.logo img {
		width: 92%;
	}
}
@media screen and (max-width: 600px){
	.nav li {
		margin-left: 4px;
	}
	.content h1 {
		font-size: 26px;
	}
}
@media screen and (max-width: 568px){
	.nav li a {
		font-size: 14px;
	}
	.logo img {
		width: 90%;
	}
}
@media screen and (max-width: 480px){
	.logo {
		width: 25%;
		float: none;
		margin: 10px auto 0;
	}
	.nav {
		float: none;
		margin-top: 10px;
	}
	.content h1 {
		font-size: 23px;
	}
	.copy {
		line-height: 1.7;
		padding-bottom: 1em;
		margin: 0;
	}
	form textarea, form input[type=text] {
		width: 345px;
	}
	form input[type=submit] {
		width: 355px;
	}
}
@media screen and (max-width: 414px){
	.nav ul {
		padding: 0;
	}
	.nav li {
		margin-left: 10px;
	}
	.logo img {
		width: 100%;
	}
	form textarea, form input[type=text] {
		width: 295px;
	}
	form input[type=submit] {
		width: 306px;
	}
} 
@media screen and (max-width: 384px){
	.nav li {
		margin-left: 6px;
	}
	.content h1 {
		font-size: 23px;
	}
	.logo {
		width: 30%;
	}
	.footer {
		margin-top: 25px;
	}
	.sidebar li {
		font-size: 13.5px;
	}
	form textarea, form input[type=text] {
		width: 260px;
	}
	form input[type=submit] {
		width: 270px;
	}
}
@media screen and (max-width: 375px){
	.nav li {
		margin-left: 4px;
	}
	.copy {
		font-size: 13px;
	}
	.fmenu ul {
		margin: 10px 0;
	}
	.content h1 {
		font-size: 22px;
	}
	form div {
		padding: 20px 20px 0px;
	}
}
@media screen and (max-width: 320px){
	.logo {
		width: 34%;
	}
	.nav li {
		margin-left: 0px;
	}
	.nav li a {
		font-size: 13px;
		padding: 10px 8px;
	}
	.sidebar li {
		font-size: 13px;
		line-height: 1.5;
	}
	.fmenu li a {
		font-size: 13px;
	}
	form div {
		padding: 20px 0px 0px;
	}
	form textarea, form input[type=text] {
		width: 250px;
	}
	form input[type=submit] {
		width: 260px;
	}

}
/* -- //Responsive code -- */

body .casos {
	font-family:Verdana, Arial, Helvetica, sans-serif;
    background:url(../images/bg.png);
    width: 100%;
    height: 100%;


   
}






.border-pos-wthree {
	position: absolute;
	width: 80%;
	height: 50%;
	border: 5px solid #c1bfbf;
	bottom: -50px;
	left: 50px;
	z-index: -1;
}

.about-w3pvt h3,
.about-w3pvt-bot h3 {
	font-weight: bold;
	text-transform: uppercase;
	color: rgba(241, 241, 241, 0.63);
	font-size: 4em;
	position: absolute;
	bottom: 20px;
}

.about-w3pvt h3 {
	right: 0;
}

.about-w3pvt-bot h3 {
	left: 0;
}

.abt-w3pvt-txt p,
.abt-w3pvt-txt-bot p {
	margin-top: 2em;
}

.abt-w3pvt-txt p {
	padding-left: 4em;
}

.abt-w3pvt-txt-bot p {
	padding-right: 4em;
	font-size: 15px;
}

.abt-w3pvt-txt-bot span.title-wthree {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	color: #000;
	letter-spacing: 1px;
}

h4.w3layouts_pvt-head {
	text-transform: capitalize;
	margin-top: 10px;
	font-size: 2em;
	font-weight: 1000;
	color: #da9d40;
}

a.bnr-btn {
	display: inline-block;
	margin: 1em 0;
	background: #da9d40;
	padding: 0.5em 1em;
	color: #fff;
	text-transform: capitalize;
}

a.bnr-btn:hover {
	padding: 0.5em 2em;
}

.about-row {
	padding: 0em 0 4em;
}

.clip-wthree:before {
	background: #36bdf1;
	clip-path: polygon(0% 0%, 60% 0, 40% 100%, 0% 100%);
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
}

.clip-wthree_bot:before {
	background: #36bdf1;
	clip-path: polygon(60% 0%, 100% 0, 100% 100%, 40% 100%);
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	z-index: -1;
}

section.about-w3pvt-bot.sec-space.position-relative.clip-wthree {
	background: #f1f1f1;
	z-index: 0;
}

section.about-w3pvt-bot.sec-space.position-relative.clip-wthree_bot {
	background: #f1f1f1;
	z-index: 0;
}

/* //about */
/* gallery */
.agile_gallery_grids {
	padding: 0 2em;
}

.demo>li {
	list-style-type: none;
}

/*jquery.picEyes*/
.picshade {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100% !important;
	background-color: #000;
	opacity: 0.91;
	filter: alpha(opacity=91);
	z-index: 99;
	display: none;
}

.pictures_eyes_close {
	position: fixed;
	top: 30px;
	right: 30px;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../images/close.png) no-repeat;
	z-index: 100;
	display: none;
}

.pictures_eyes {
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 199;
	display: none;
}

.pictures_eyes_in {
	position: relative;
	text-align: center;
}

.pictures_eyes_in img {
	max-height: 500px;
	max-width: 700px;
}

.pictures_eyes_in .prev,
.pictures_eyes_in .next {
	position: absolute;
	top: 50%;
	width: 51px;
	height: 51px;
	cursor: pointer;
}
.pictures_eyes_in .prev {
	left: 35px;
	background: url(../images/left1.png) no-repeat;
}

.pictures_eyes_in .next {
	right: 35px;
	background: url(../images/right1.png) no-repeat;
}

.pictures_eyes_indicators {
	position: fixed;
	left: 0;
	bottom: 15px;
	width: 100%;
	text-align: center;
	z-index: 299;
}

.pictures_eyes_indicators a {
	display: inline-block;
	width: 50px;
	height: 50px;
	margin: 6px 3px 0 3px;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 0 2px #000;
	filter: alpha(opacity=50);
	opacity: 0.5;
	overflow: hidden;
}

.pictures_eyes_indicators img {
	height: 50px;
}

.pictures_eyes_indicators .current {
	filter: alpha(opacity=100);
	opacity: 1;
}

.gallery-grid1 {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.about-left-grid-w3 {
	background: url(../images/casos.jpg) no-repeat center;
	background-size: cover;
	min-height: 440px;
}
.title-sec-w3layouts_pvt:before {
    content: '';
    position: absolute;
    width: 85%;
    height: 100%;
    border: 5px solid #f2f2f3;
    left: 20%;
    top: -26%;
    z-index: -1;
}


.title-sec-w3layouts_pvt, .title-sec-w3layouts_pvt_left {
    background: #eee;
    display: inline-block;
    padding: 1em;
    position: relative;
    margin-top: 2em;
    z-index: 0;
}


ul#menu input:checked ~ ul.submenu {
    max-height: 360px;
    transition: max-height 0.5s ease-in;
}

/*style for the second level menu*/

ul.submenu {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    background: #f7f7f7;
    transition: max-height 0.5s ease-out;
    position: absolute;
    min-width: 11em;
    right: 0;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgba(20, 21, 21, 0.37);
}

ul.submenu li a {
    display: block;
    padding: 12px;
    color: #141d24;
    text-decoration: none;
    transition: background .3s;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
}

ul.submenu li a:hover {
    background: #01a3a4;
}


ul#menu {
    position: fixed;
    top: 3%;
    width: 3em;
    height: 3em;
    margin: 0;
    /* padding: 0 1em; */
    background: #151e253d;
    color: #ffffff;
    z-index: 99;
    right: 2%;
}

ul#menu > li {
    float: left;
    list-style-type: none;
    position: relative;
    width: 100%;
}

ul#menu label {
    position: relative;
    display: block;
    padding: 0 18px 0 12px;
    line-height: 3em;
    transition: background 0.3s;
    cursor: pointer;
}

/*hide the inputs*
ul#menu label:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    right: 5px;
    width: 0;
    height: 0;
    border-top: 4px solid rgba(255, 255, 255, .5);
    border-bottom: 0 solid rgba(255, 255, 255, .5);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    transition: border-bottom .1s, border-top .1s .1s;
}

ul#menu label:hover,
ul#menu iul#menu nput:checked ~ label {
    background: rgba(0, 0, 0, .3);
}

ul#menu input:checked ~ label:after {
    border-top: 0 solid rgba(255, 255, 255, .5);
    border-bottom: 4px solid rgba(255, 255, 255, .5);
    transition: border-top .1s, border-bottom .1s .1s;
}

/*hide the inputs*/

ul#menu input {
    display: none
}

/*show the second levele menu of the selected voice*/

ul#menu input:checked ~ ul.submenu {
    max-height: 480px;
    transition: max-height 0.5s ease-in;
}

/*style for the second level menu*/

ul.submenu {
    max-height: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    background: #f7f7f7;
    transition: max-height 0.5s ease-out;
    position: absolute;
    min-width: 11em;
    right: 0;
    border-radius: 4px;
    box-shadow: 0 1px 8px rgba(20, 21, 21, 0.37);
}

ul.submenu li a {
    display: block;
    padding: 1px;
    color: #0a0b0c;
    text-decoration: none;
    transition: background .3s;
    text-align: center;
    font-size: 0.7em;
    font-weight: 700;
}

ul.submenu li a:hover {
    background: #da9d40;
}







/* The grid: Four equal columns that floats next to each other */
.six {
    float: left;
    width: 25%;
    padding: 10px;
  }
  
  /* Style the images inside the grid */
  .six img {
    opacity: 0.8;
    cursor: pointer;
    
  }
  
  .six img:hover {
    opacity: 1;
  }
  
  /* Clear floats after the columns */
  .publicidad:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* The expanding image container (positioning is needed to position the close button and the text) */
  .contenedor {
    position: relative;
    display: none;
  }
  
  /* Expanding image text */
  #six {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: white;
    font-size: 20px;
  }
  
  /* Closable button inside the image */
  .closebtn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
  }