/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Hanlding Updates
-----------------------------------------------------------------*/

.nota {
    font-size: 20px!important;
    color: #ff0000!important;
    text-align: center!important;
}


#header.full-header #primary-menu > ul {
    float: left;
    padding-right: 0px;
    margin-right: 0px;
    border-right: 1px solid #FFF!important;
}
.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
    color: #EEE;
    text-shadow: 0 2px 1px #000!important;
}
.testi-content p:before, .testi-content p:after {
    content: ''!important;
}

#footer .footer-widgets-wrap {
    position: relative;
    padding: 25px 0!important;
}

#copyrights {
    padding: 15px 0!important;
    background-color: #DDD;
    font-size: 14px;
    line-height: 1.8;
}

#footer {
    background-image: url(/images/footer-bg.jpg);
}

#page-title h1 {
	padding: 0;
	margin: 0;
	line-height: 1;
	font-weight: 600;
	letter-spacing: 1px;
	color: #FFFFFF!important;
	font-size: 28px;
	text-transform: uppercase;
    text-shadow: 0 2px 1px #000!important;
    text-align: center;
}

#page-title span {
	display: block;
	margin-top: 10px;
	font-weight: 300;
	color: #FFFFFF!important;
	font-size: 18px;
}

.feature-box h3 span.subtitle {
    display: block;
    margin-top: 5px;
    color: #FFFFFF!important;
    text-align: left!important;
    font-weight: 300;
    text-transform: none;
}

.content-wrap {
    position: relative;
    padding: 25px 0!important;
}

#content r {
    line-height: 1.8;
    font-size: 24px;
    font-weight: bold!important;
    text-shadow: 0 2px 1px #000!important;
}

.section {
    position: relative;
    margin: 0px 0!important;
    padding: 60px 0;
    background-color: #F9F9F9;
    overflow: hidden;
}

.feature-box.fbox-plain.fbox-small .fbox-icon i {
    font-size: 40px!important;
}

.pricing-box {
    padding: 30px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.075);
    border-radius: 3px;
    text-align: left;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    background-color: #F5F5F5;
}

.pricing-title span {
    display: block;
    color: #000;
    font-weight: 300;
    font-size: 14px;
    margin-top: 3px;
    text-transform: uppercase;
}



.modalpa {
    width: 100%;
    height: 130%;
    background: rgba(0,0,0,0.8);
    
    position: absolute;
    top: 0;
    left: 0;
    
    display: flex;
    
    animation: modalpa 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
    z-index: 999999999
        
}
.contenido {
    margin: auto;
    width: 40%;
    height: 100%;
    background: white;
    border-radius: 10px;
}

#cerrar {
    display: none;
}

#cerrar + label {
    position: fixed;
    color: #fff;
    font-size: 25px;
    z-index: 9999999999;
    background: darkred;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 10px;
    cursor: pointer;
    
    animation: modalpa 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
        
}

#cerrar:checked + label, #cerrar:checked ~ .modalpa {
    display: none;
}

@keyframes modalpa {
    100% {
        visibility: visible;
        opacity: 1;
    }
}