body {
    padding: 0;
    margin: 0;
    background: #fff;
    position: relative;
    font-family: 'Montserrat';
}
 
body a {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

a:hover {
    text-decoration: none;
}

input[type="button"],
input[type="submit"],
.contact-form input[type="submit"] {
    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: 0;
    color: #323648;
}

p {
    margin: 0;
    line-height: 1.8;
    color: #11100F;
    letter-spacing: .5px;
}

ul {
    margin: 0;
    padding: 0;
}

label {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}


/* header */

.header-agile {
    margin-right: 1em;
}

a.navbar-brand {
    font-size: 1em;
    color: #fff;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
}

a.navbar-brand.logo span.fa {
    color: #fff;
}

.buttons a {
    background: #00BCD4;
    padding: 10px 25px;
    color: #fff;
    display: block;
    border-radius: 0px;
    letter-spacing: .5px;
    border: 2px solid #00BCD4;
}


/* CSS Document */
header {
    position: absolute;
    z-index: 9;
    width: 100%;
    padding: 1rem 0;
}

.toggle,
[id^=drop] {
    display: none;
}

/* Giving a background-color to the nav container. */
nav {
    margin: 0;
    padding: 0;
}


/* 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 {
    text-transform: capitalize;
    color: #fff;
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 400;
    display: block;
    padding: 10px 17px;
}

@media only screen and (max-width: 1200px) {
    nav a {
        font-size: 16px;
        padding: 10px 14px;
    }

}

@media only screen and (max-width: 1100px) {
    nav a {
        font-size: 14px;
        padding: 10px 10px;
    }
}


nav ul li ul li:hover {
    background: #f8f9fa;
}

nav a:hover {
    color: #fff;
}

.menu li.active a {
    color: #00BCD4;
    background: transparent;
}

.inner-dropdown li a {
    color: #333 !important;
}

.inner-dropdown li a:hover {
    color: #00BCD4 !important;
}

.inner-dropdown li.active a {
    color: #00BCD4 !important;
}

/* 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;
}

ul.inner-dropdown a:hover {
    color: #333;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 160px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
    font-size: 16px;
}

/* 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 : 991px) {

    #logo {
        display: block;
        padding: 0;
        width: 100%;
        text-align: center;
        float: none;
    }

    nav {
        margin: 0;
    }

    .header-agile {
        left: -100px;
    }

    nav ul {
        width: 100%;
    }

    /* Hide the navigation menu by default */
    /* Also hide the  */
    .toggle + a,
    .menu {
        display: none;
    }

    /* Stylinf the toggle lable */
    .toggle {
        display: block;
        padding: 4px 18px;
        font-size: 20px;
        text-decoration: none;
        border: none;
        float: right;
        background-color: #fff;
        color: #00BCD4;
    }

    .menu .toggle {
        float: none;
        text-align: center;
        margin: auto;
        width: 25%;
        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;
        text-align: center;
    }

    /* Change menu item's width to 100% */
    nav ul li {
        display: block;
        width: 100%;
        padding: 0px 0;
    }

    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: 2px;
    }

    /* 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" */

    }

    nav a {
        color: #333;
    }

    nav a:hover {
        color: #333;
    }

    .menu li.active a {
        color: #333;
    }

    nav ul ul li a {
        display: inline-block;
        font-size: 15px;
    }

    ul.inner-dropdown {
        padding-bottom: 0 !important;
        padding-top: 8px !important;
    }

    .buttons {
        text-align: center;
        position: absolute;
        right: 21%;
        top: 0%;
    }
}

@media all and (max-width : 330px) {

    nav ul li {
        display: block;
        width: 94%;
    }

}

/*-- //header --*/

/*-- banner --*/
.banner_w3lspvt {
    background: url(../images/banner.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
}

.banner_w3lspvt:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

.banner-tops-style {
    padding-top: 16em;
}


.style-banner h2 {
    font-size: 35px;
    letter-spacing: 1px;
    text-transform: none;
    color: #fff;
    line-height: 1.3;
    position: relative;
    font-family: 'Montserrat';
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
}

.style-banner h3 {
    font-size: 45px;
    letter-spacing: 1px;
    text-transform: none;
    color: #fff;
    line-height: 1.3;
    position: relative;
    font-family: 'Montserrat';
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
}

@media (max-width:1280px) {
    .style-banner h3 {
        font-size: 39px;
    }
}

@media (max-width:1024px) {
    .style-banner h3 {
        font-size: 39px;
    }
}

.text-wh {
    color: #fff;
}

.bg-li {
    background: #f8f9fa;
}

.style-banner h2 span {
    color: #fff;
    display: block;
}

.style-banner h3 span {
    color: #fff;
    display: block;
}

.style-banner h3 span.color {
    display: inline-block;
    color: #00BCD4;
    font-family: 'Montserrat';
}

.style-banner h2 span.color {
    display: inline-block;
    color: #00BCD4;
    font-family: 'Montserrat';
}

.button-style {
    padding: 14px 40px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 2px solid #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    position: relative;
}

.button-style:hover {
    color: #fff;
}

.main-w3pvt {
    position: relative;
}

/*-- //banner --*/

/*-- about --*/
.about-left h3 {
    text-transform: capitalize;
    line-height: 36px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-left h5 {
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Montserrat';
    font-style: Mon;
    margin-top: 15px;
    line-height: 28px;
}

.img-position {
    position: absolute;
    right: 0%;
    top: -15%;
    z-index: -1;
}

.img-border {
    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
}

/*-- //about --*/

/*-- features --*/
.heading-grid h5 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    font-size: 16px;
}

.heading-grid h4,
.heading-grid h2 {
    text-transform: capitalize;
    max-width: 800px;
    line-height: 36px;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 10px auto;
    position: relative;
}

.heading-grid h4:after {
    position: absolute;
    content: '';
    width: 14%;
    height: 2px;
    background: #333;
    bottom: -30%;
    left: 43%;
}

.heading-grid {
    margin-bottom: 6em;
}

.banner-bottom span.fa {
    font-size: 30px;
    color: #00BCD4;
}

.inner-info h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}

/*-- //features --*/

/*-- pricing --*/
.pricing-grid h3 {
    font-size: 40px;
    font-weight: 800;
}

.pricing-grid h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 18px;
    margin-top: 10px;
}

.pricing-grid span {
    width: 2px;
    height: 40px;
    background: #333;
    display: block;
    margin: 20px auto;
}

.pricing-grid p {
    margin: 6px 0;
    text-transform: capitalize;
}

.pricing-grid a {
    color: #292929;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 10px 30px;
    border: transparent;
    background: none;
    border: 2px solid #292929;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.pricing-grid {
    background: #f6f6f6;
}

.pricing-grid {
    background: #f6f6f6;
    padding: 3em 1em;
}

/*-- //pricing --*/

/*-- blog --*/
.blog-info {
    background: #f6f6f6;
    padding: 20px;
}

.blog-info h4 {
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 28px;
}

.blog-info li {
    display: inline-block;
}

.blog-info li a {
    color: #555;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/*-- //blog --*/

/*-- team --*/
.team-grids {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.team-grids h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grids h6 {
    font-size: 17px;
    color: #ccc;
    letter-spacing: 1px;
    font-family: initial;
    font-style: italic;
}

.social-icons-section a {
    color: #eee;
    padding: 10px 0;
    display: block;
    font-size: 15px;
}


.team-info {
    position: absolute;
    bottom: -227px;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 2em 0;
    -webkit-transition: .5s all;
    transition: .5s all;
    -moz-transition: .5s all;
    width: 82%;
    text-align: center;
}

.team-grids:hover div.team-info {
    bottom: 0;
}

.social-icons-section,
.team-grids h6 {
    margin-top: 0.5em;
}

.caption {
    padding: 0px;
}

.team-info .social-icons-section a {
    margin: 0em .5em;
}

.social-icons-section {
    background: #333;
    padding: 10px 0px;
    margin-top: 0;
    display: inline-block;
    width: 18%;
    float: left;
}

.team-grids img {
    width: 82%;
    float: left;
}

/* team responsive */
@media(max-width:1080px) {
    .team-grids h4 {
        font-size: 1em;
    }

    .about_grids h3 {
        font-size: 22px;
    }

    .about-in .card {
        padding: 1.5em .5em;
    }
}

@media(max-width:1024px) {}

@media(max-width:991px) {}

@media(max-width:736px) {}

@media(max-width:480px) {}

@media(max-width:440px) {}

@media(max-width:414px) {}

@media(max-width:384px) {}

@media(max-width:320px) {}

/* //team responsive */
/* //team */

/*-- 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 #f8f9fa;
    flex-basis: 70%;
    margin-right: 3%;
    font-style: italic;
    font-weight: 600;
    background: none;
}

.newsletter-info input[type="button"] {
    color: #292929;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 13px 0;
    border: transparent;
    background: none;
    border: 2px solid #292929;
    flex-basis: 35%;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
    width: inherit;
    position: absolute;
    right: 0;
    top: -15px;
}

/*-- //newsletter --*/

/*-- footer --*/
footer {
    background: #222;
}

.footer {
    background: #222;
    position: relative;
    z-index: 6;
}

.footer:before {
    background: #222;
    position: relative;
    z-index: 6;
}

.copyright {
    background: #191919;
    position: relative;
    z-index: 6;
}

.footer_left p {
    font-size: 16px;
    line-height: 28px;
    color: #8b8e96;
    letter-spacing: 1px;
    margin-top: 1.5em;
}

.footer_grids h3 {
    font-size: 22px;
    color: #eee;
    letter-spacing: 1px;
}

.footer_right p,
.footer_right p a {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: .5em;
    color: #8b8e96;
    letter-spacing: .5px;
}

.footer_right p span.fa {
    color: #666;
}

.footer_middle p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: .5em;
    color: #8b8e96;
    letter-spacing: .5px;
}




.footer_middle ul li,
.footer_left ul li {
    display: inline-block;
    color: #8b8e96;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: .5px;
}

.footer_middle ul li a {
    text-decoration: underline;
    color: #666;
}

.footer_middle ul li a:hover {
    text-decoration: none;
}

.footer_left ul li a {
    text-decoration: none;
    color: #8b8e96;
}

.copyright p {
    color: #8a8a8a;
    letter-spacing: 1px;
    font-size: 16px;
    z-index: 6;
}

.copyright p a {
    color: #ccc;
    z-index: 6;
}

.copyright p a:before {
    color: #fff;
    position: relative;
    z-index: 6;
}

/*-- //footer --*/


/*-- inner page banner --*/

.inner-banner {
    background: url(../images/banner.jpg) no-repeat center;
    background-size: cover;
    min-height: 250px;
    position: relative;
}

.inner-banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/*-- //inner page banner --*/


/*-- advantages --*/

.advantages-right span.fa {
    font-size: 24px;
    color: #00BCD4;
}

.inner-info-left {
    padding-left: 2em;
}

.inner-info-right {
    padding-right: 2em;
}

/*-- advantages --*/


/*-- /ceo quote --*/
.testimonials_grid {
    width: 70%;
    position: relative;
}

.quote {
    background: #f6f6f6;
}

.testi_grid h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    color: #333;
    font-weight: 600;
    margin: 2em 0 0;
    letter-spacing: 1px;
}

.testi_grid h5 span {
    font-size: 16px;
    font-weight: normal;
}

p.sub-test {
    color: #eee;
    color: #707579;
    letter-spacing: 1px;
}

p.sub-test span.fa {
    color: #00BCD4;
    margin-right: 5px;
}

/*-- //ceo quote --*/
.aumento span.fa {
    color: #00BCD4;
    margin-right: 5px;
}

/*-- what we do --*/

.what-we-do {
    background: #f6f6f6;
}

.what-we-do-grid h4 {
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
}

.bg-grid-clr {
    background: #fff;
    padding: 2em;
}

/*-- //what we do --*/


/*-- error content --*/

.error-content span.fa {
    font-size: 80px;
    color: #333;
}

.error-content h2 {
    font-size: 160px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #00BCD4;
}

.error-content h4 {
    font-size: 30px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
}

.error-content h5 {
    font-size: 22px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.error-content a {
    color: #292929;
    font-size: 15px;
    text-transform: capitalize;
    letter-spacing: 1px;
    padding: 10px 30px;
    border: transparent;
    background: none;
    border: 2px solid #292929;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
    display: inline-block;
    margin-top: 30px;
}

/*-- //error content --*/


/*-- portfolio --*/

section#gallery {
    position: relative;
}

.gal-img img {
    padding: 6px;
    background: #f0f0f1;
}

h5.gal-info {
    text-align: left;
    font-size: 1.2em;
    margin: 1em 0 0 0;
    color: #3a4045;
    font-weight: 600;
    text-transform: capitalize;
}

span.decription {
    text-transform: uppercase;
    display: block;
    font-size: 0.7em;
    color: #888;
    letter-spacing: 2px;
    margin-top: 0.5em;
}

/*-- popup --*/

.pop-overlay {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.pop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 5px;
    max-width: 480px;
    position: relative;
    margin: 8em auto;
    padding: 3em 1em;
}

.popup p {
    font-size: 15px;
    color: #666;
    letter-spacing: .5px;
    line-height: 30px;
}

.popup h2 {
    margin-top: 0;
    color: #fff;

}

.popup .close {
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.popup .close:hover {
    color: #333;
}


/*-- //popup --*/
/*-- //portfolio --*/

/*-- contact --*/
.contact input[type="text"],
.contact input[type="number"],
.contact input[type="email"],
.contact select,
.contact textarea {
    display: block;
    width: 100%;
    margin-bottom: 25px;
    padding: 15px 15px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: #777;
    background-image: none;
    letter-spacing: 1px;
    -webkit-appearance: none;
    transition: .3s ease-in-out;
    border: none;
    border-bottom: 1px solid #ccc;
}

.contact textarea {
    height: 150px;
}

input[type="submit"] {
    background: #00BCD4;
    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;
}


input[type="submit"]:hover {
    background: red;
}


.map iframe {
    border: none;
    outline: none;
    height: 350px;
    width: 100%;
}

/*-- //contact --*/

/*-- move top --*/
a.move-top {
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #333;
    position: absolute;
    bottom: .3%;
    border-radius: 50%;
    right: 2%;
    z-index: 9;
}

a.move-top span.fa {
    font-size: 22px;
    color: #fff;
    line-height: 42px;
}

/*-- //move top --*/



/*-- Responsive Design --*/

@media(max-width:1440px) {}

@media(max-width:1366px) {}

@media(max-width:1280px) {
    .style-banner h2 {
        font-size: 42px;
    }

    .banner-tops-style {
        padding-top: 16em;
    }

    .banner_w3lspvt {
        min-height: 43em;
    }
}

@media(max-width:1080px) {
    .blog-info h4 {
        font-size: 18px;
    }
}

@media(max-width:1024px) {
    .style-banner h2 {
        font-size: 35px;
    }

    .banner_w3lspvt {
        min-height: 42em;
    }

    .testimonials_grid {
        width: 90%;
    }

    .pricing-grid h3 {
        font-size: 35px;
    }

    .pricing-grid span {
        height: 30px;
        margin: 15px auto;
    }
}

@media(max-width:991px) {
    header {
        padding: 0.8rem 0;
    }

    nav a {
        padding: 6px 15px;
    }

    .buttons a {
        padding: 8px 25px;
    }

    .img-position {
        position: static !important;
    }

    .testimonials_grid {
        width: 100%;
    }

    .inner-banner {
        min-height: 200px;
    }

    .error-content span.fa {
        font-size: 60px;
    }

    .error-content h2 {
        font-size: 130px;
    }

    .error-content h4 {
        font-size: 25px;
    }
}

@media(max-width:800px) {
    .buttons {
        right: 15%;
    }

    .heading-grid h4,
    .heading-grid h2 {
        line-height: 34px;
        font-size: 23px;
    }
}

@media(max-width:768px) {
    .banner-tops-style {
        padding-top: 12em;
    }

    .banner_w3lspvt {
        min-height: 37em;
    }

    .heading-grid {
        margin-bottom: 5em;
    }

    .about-left h3 {
        line-height: 34px;
        font-size: 22px;
    }

    .inner-info h4 {
        font-size: 17px;
    }

    .banner-bottom span.fa {
        font-size: 26px;
    }
}

@media(max-width:736px) {
    .buttons {
        right: 23%;
    }

    .style-banner h2 {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .banner-tops-style {
        padding-top: 10em;
    }

    .banner_w3lspvt {
        min-height: 33em;
    }

    .button-style {
        padding: 13px 30px;
        font-size: 14px;
    }

    .heading-grid h4,
    .heading-grid h2 {
        line-height: 34px;
        font-size: 21px;
    }

    .about-right img {
        width: 50%;
        float: left;
    }

    .blog img {
        width: 100%;
    }

    .footer_grids h3 {
        font-size: 20px;
    }

    .inner-banner {
        min-height: 180px;
    }

    .inner-info-left {
        padding-left: 0em;
    }

    .error-content h2 {
        font-size: 100px;
    }

    .map iframe {
        height: 300px;
    }
}

@media(max-width:568px) {
    .team-grids {
        width: 70%;
        margin: auto;
    }

    .inner-banner {
        min-height: 150px;
    }

    .what-we-do-grid {
        margin: 0 1em;
    }
}

@media(max-width:480px) {
    .style-banner h2 {
        font-size: 34px;
    }

    .banner_w3lspvt {
        min-height: 29em;
    }

    .heading-grid h4,
    .heading-grid h2 {
        line-height: 30px;
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .about-left h3 {
        line-height: 30px;
        font-size: 19px;
    }

    .heading-grid {
        margin-bottom: 3em;
    }

    .error-content h5 {
        font-size: 20px;
        letter-spacing: 0px;
    }

    .error-content span.fa {
        font-size: 50px;
    }

    .map iframe {
        height: 250px;
    }

    .contact input[type="text"],
    .contact input[type="number"],
    .contact input[type="email"],
    .contact select,
    .contact textarea {
        margin-bottom: 15px;
        padding: 10px 0px;
    }
}

@media(max-width:415px) {
    .copyright {
        padding: 0 10px;
    }

    .style-banner h2 {
        font-size: 33px;
    }

    .buttons a {
        padding: 8px 20px;
        margin-top: 2px;
        font-size: 15px;
    }

    .about-left h5 {
        font-size: 17px;
    }

    .error-content h5 {
        line-height: 30px;
    }

    .error-content span.fa {
        font-size: 40px;
    }
}

@media(max-width:384px) {
    .style-banner h2 {
        font-size: 29px;
    }

    .banner-tops-style {
        padding-top: 9em;
    }

    .button-style {
        padding: 11px 25px;
        font-size: 14px;
    }

    .team-grids {
        width: 80%;
    }

    .newsletter-info input[type="submit"] {
        padding: 9px 0;
    }

    .bg-grid-clr {
        padding: 1em;
    }

    .what-we-do-grid {
        margin: 0 .5em;
    }

    .error-content h2 {
        font-size: 80px;
    }
}

@media(max-width:375px) {
    .style-banner h2 {
        font-size: 29px;
    }

    .team-grids {
        width: 100%;
    }
}

@media(max-width:320px) {}

/*-- //Responsive Design --*/
/*
#owl-carousel .item{
  margin: 3px;
}
#owl-carousel .item img{
  display: block;
  width: 100%;
  height: auto;
}
#owl-carousel .title{
    text-align: center;
}

#owl-slider .item img{
    display: block;
    width: 100%;
    height: auto;
}
*/
#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-theme .owl-controls .owl-page {
    display: inline-block;
}

/* baner 1*/
.banner1 {
    background: url(../images/banners/banner-agc-01.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner1:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* baner 2*/
.banner2 {
    background: url(../images/banners/banner-agc-02.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner2:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* baner 3*/
.banner3 {
    background: url(../images/banners/banner-agc-03.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner3:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* baner 4*/
.banner4 {
    background: url(../images/banners/banner-agc-04.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: pointer;
    cursor: default;
}

.banner4:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* baner 5*/
.banner5 {
    background: url(../images/banners/banner-agc-05.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner5:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* banner 6*/
.banner6 {
    background: url(../images/banners/banner-agc-06.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner6:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

.banner7 {
    background: url(../images/banners/banner-agc-07.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner7:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

.banner8 {
    background: url(../images/banners/banner-agc-08.jpg) no-repeat center;
    background-size: cover;
    min-height: 46em;
    position: relative;
    cursor: default;
}

.banner8:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background: #000;
}

/* parrafo AGC*/

.azul {
    color: #0070C0;
}

/* css photo logo*/
.photoprue {
    height: 130px;
}

.photo {
    height: 140px;
    ;
}


/* letra */
.letra {
    font-size: 15px;
}

.mundo2 {
    padding-top: 0;
}

.mundo3 {
    margin-top: 45px;
}

.mundo2en {
    margin-top: -53px;
}

@media(max-width:1200px) {
    .letra {
        padding-left: 15px;
    }

    .mundo1 {
        padding-top: 30px;
    }

    .mundo2 {
        margin-top: -25px;
    }

    .mundo2en {
        margin-top: -40px;
    }

    .mundo3 {
        margin-top: 45px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .letra {
        padding-left: 0px;
    }

    .mundo1 {
        margin-top: -15px;
    }

    .mundo2 {
        margin-top: 0px;
    }

    .mundo2en {
        margin-top: -10px;
    }

    .mundo3 {
        margin-top: 0px;
    }
}

.tamanio {
    font-size: 18px;
}

.aumento {
    font-size: 25px;
}

.aumento2 {
    font-size: 25px;
    color: #0070C0;
    font-weight: bold;
}

/* About css*/
.val {
    font-size: 30px;
    font-weight: bold;
}

/* m y v*/
.mv {
    font-size: 45px;
    font-weight: bold;
}

.mv2 {
    font-size: 45px;
    color: #0070C0;
    font-weight: bold;
}

/* Letra services*/
.servi {
    font-size: 25px;
    margin-top: 10px;

}

.servi2 {
    font-size: 25px;
    margin-top: 30px;

}

/* blog-comentario*/
.comment {
    width: 100%;
    overflow: auto;
}

.comment {
    font-size: 25px;
    top: 19%;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .comment-autor {
        left: 50px;
    }
}

/* Letra Blog*/
.g {
    color: gray;
}

.blog-fecha {
    color: gray;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 1%;
}

.blog-post {
    font-size: 20px;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 1%;
    text-align: justify;
}

.ti {
    margin-top: -225px;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .ti {
        margin-top: -125px;
    }
}

.neg {
    font-weight: bolder;
    font-size: 20px;
    padding-left: 7%;
    padding-right: 7%;
    padding-top: 1%;
    text-align: justify;

}

/* //letra */
/* WhatsApp*/
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 0px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 2px;
}

/* ir abajo */
.page-down {
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #333;
    position: fixed;
    bottom: .3%;
    border-radius: 50%;
    right: 2%;
    z-index: 12;
}

a.page-down span.fa {
    font-size: 22px;
    color: #fff;
    line-height: 42px;
}

/* ///ir abajo */
/* boton brochure*/
.retenedor {
    margin-top: 3%;
}

.asd {
    position: relative;
    padding: 1em 1.5em;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    font-size: 18px;
    margin: 1em 0.8em;

}

@media only screen and (max-width: 1200px) {
    .asd {
        font-size: 15px;
    }

    .tamanio {
        font-size: 15px;
    }
}

.asd.type3 {
    color: #435a6b;
}

.asd.type3.type3::after,
.asd.type3.type3::before {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 20%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 2px;
}

.asd.type3.type3::after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: #435a6b;
    border-right-color: #435a6b;
}

.asd.type3.type3::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: #435a6b;
    border-left-color: #435a6b;
}

.asd.type3.type3:hover:after,
.asd.type3.type3:hover:before {
    border-bottom-color: #435a6b;
    border-right-color: #435a6b;
    border-top-color: #435a6b;
    border-left-color: #435a6b;
    width: 100%;
    height: 100%;
}

/* //boton brochure*/
/* iconos redes sociales*/
.ico {

    width: 30px;
    height: 30px;
    margin: 0 4px;
}

.icono-red {
    width: 45px;
    height: auto;
    margin: 5px 7px;
}

.img-blog {
    width: 415px;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .icono-red {
        width: 35px;
    }

    .img-blog {
        width: 315px;
    }
}

.centrado {
    text-align: center;
}

/* //iconos redes sociales */
/* imagen cotizar */
.cotizar {
    width: 50%;
    height: 50%;
    background: white;
}

/* --- */
/* top */
/* Porque Elegirnos*/

.mundo1 {
    margin-top: 46px;
}

/*---------------------------------*/
.su {
    margin-top: -130px;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .su {
        margin-top: -30px;
    }
}

.btnarco1 {
    height: auto;
    width: 245px;
    background-position: center;
    float: right;
}

.btnarco2 {
    height: auto;
    width: 195px;
    background-position: center;
}

.btnarco {
    height: auto;
    width: 195px;
    background-position: center;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .btnarco {
        width: 135px;
    }

    .btnarco1 {
        width: 175px;
    }

    .btnarco2 {
        width: 135px;
    }
}

.minfo {
    height: auto;
    width: 18%;
}

/*Boton Cotizar*/
.rainbow-button {
    width: calc(10vw + 6px);
    height: calc(4vw + 6px);
    background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 2vw;
    font-weight: bold;
}

.rainbow-button:after {
    content: normal;
    width: 5vw;
    height: 2vw;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rainbow-button:hover {
    animation: slidebg 2s linear infinite;
}

@keyframes slidebg {
    to {
        background-position: 20vw;
    }
}

/* Mensaje Agecosur*/
/* Ventana */
.dgcAlert {
    top: 0;
    position: absolute;
    width: 100%;
    display: block;
    height: 1000px;
    background: url(https://www.dgcmedia.es/recursosExternos/fondoAlert.png) repeat;
    text-align: left;
    opacity: 0;
    display: none;
    z-index: 999999999999999;
}

.dgcAlert .dgcVentana {
    width: 100%;
    background: white;
    min-height: 150px;
    position: relative;
    margin: 0 auto;
    color: black;
    padding: 10px;
    border-radius: 10px;
}

/* Cerrar */
.dgcAlert .dgcVentana .dgcCerrar {
    height: 25px;
    width: 25px;
    float: right;
    cursor: pointer;
    background: url(https://www.dgcmedia.es/recursosExternos/cerrarAlert.jpg) no-repeat center center;
}

/* Texto - Mensaje*/
.dgcAlert .dgcVentana .dgcMensaje {
    margin: 0 auto;
    padding-top: 45px;
    text-align: left;
    width: 800px;
    font-size: 20px;
}

/* Boton ir */
.dgcAlert .dgcVentana .dgcAceptar {
    background: #09C;
    bottom: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: bold;
    height: 24px;
    line-height: 24px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    text-transform: uppercase;
    width: 75px;
    cursor: pointer;
    color: #FFF;
    margin-top: 50px;
}

/* Comentarios*/
input:focus,
textarea:focus {
    outline: none;
}

textarea {
    height: 200px;
    margin-bottom: 30px;
}

input,
textarea {
    border: 1px solid #000000;
    padding: 0 4px 0 4px;
}

.txa {
    width: 100%;
}

.esp {
    top: 2%;

}

/* Buscador para blog*/
.container1 {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.search{
	width: 60%;
	max-width: 100%;
	margin: auto;
	background: #fff;
	padding:0 10px;
	padding-bottom: 5px;
	max-height: 85%;
	overflow-x: hidden;
	display: none;
}

.search-box input[type="text"] {
    border: none;
    background: none;
    z-index: 1;
    width: 25px;
    height: 25px;
    transition: all .25s ease-in .25s;
    color: transparent;
    font-size: .75rem;
    line-height: 25px;
}

.search-box input[type="text"]:hover {
    cursor: pointer;
}

.search-box input[type="text"]:hover:focus {
    cursor: text;
}

.search-box input[type="text"]:hover + span {
    background: rgba(255, 255, 255, 0.2);
}

.search-box input[type="text"]:focus {
    width: 200px;
    padding: 0 10px;
    outline: none;
    color: black;
    background: none;
    color: black;
}

.search-box input[type="text"]:focus + span {
    width: 200px;
}

.search-box input[type="text"]:focus + span::before {
    width: 2px;
    opacity: 0;
    transition: all .25s ease-in;
}

.search-box input[type="text"] + span {
    z-index: -1;
    position: absolute;
    border: 2px solid black;
    top: 0;
    width: 25px;
    height: 25px;
    transition: all .25s ease-in .25s;
    border-radius: 25px;
    left: 0;
}

.search-box input[type="text"] + span::before {
    transition: all .25s ease-in .5s;
    transform-origin: left top;
    content: '';
    position: absolute;
    width: 10px;
    height: 5px;
    border-radius: 5px;
    background: black;
    transform: rotate(45deg) translate(26px, -2px);
}

.search-tabla{
	width: 50%;
}

.body {
    padding: 0;
    margin: 0;
}

.down {
    position: fixed;
    bottom: .3%;
    right: 1%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #00567d;
    background: #04a9f5;
    box-shadow: 0 0 0 5px #fff, 0 5px 25px rgba(0, 0, 0, .8);
    overflow: hidden;
    z-index: 5;
}

.down :before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: 5;

}

.down .fa {
    font-size: 40px;
    position: absolute;
    left: 14.5%;
    transform: translate(-50%, -50%);
    color: #fff;
    transform: translate(-50%, -50%);
    animation: animate 1.5s linear infinite;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

/*
@keyframes animate
{
    100%{
        top: -50%;
    }
    10%{
        top: 20%;
    }
     0%{
        top: -20%;
    }
}
*/
/* Buscar 1*/
/* Esto es un buscador para las paginas de los blogs */
.button-b {
    margin: 10% auto;
    float: right;
}

.cf:before,
.cf:after {
    content: "";
    display: table;
}

.cf:after {
    clear: both;
}

.cf {
    zoom: 1;
}

/* Contenedor del Formulario*/
.form-buscar {
    justify-content: center;
    width: 330px;
    padding: 5px;
    background: #555;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
}

.form-buscar input {
    width: 210px;
    height: 25px;
    padding: 10px 5px;
    border: 0;
    background: #eee;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.form-buscar input:focus {
    outline: 0;
    background: #fff;
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
    box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
}

.form-buscar input::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar input:-moz-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar button {
    overflow: visible;
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 25px;
    width: 110px;
    font: bold 15px/25px 'Raleway', sans-serif;
    color: #fff;
    text-transform: uppercase;
    background: #00BCD4;
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
}

.form-buscar button:hover {
    background: #00BCD4;
}

.form-buscar button:active,
.form-buscar button:focus {
    background: #c42f2f;
}

.form-buscar button:before {
    content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent #00BCD4 transparent;
    top: 5px;
    left: -7px;
}

.form-buscar button:hover:before {
    border-right-color: #00BCD4;
}

.form-buscar button:focus:before {
    border-right-color: #c42f2f;
}

.form-buscar button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Contenedor del Formulario*/
/* Esto es un buscador para la pagina Buscar.php */
.button-c {
    margin: 0 auto;
    position: absolute;
    padding-left: 17%;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .button-c {
        padding-left: 1%;
    }
}

.form-buscar2 {
    justify-content: center;
    width: 330px;
    padding: 5px;
    background: #555;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .4) inset, 0 1px 0 rgba(255, 255, 255, .2);
}

.form-buscar2 input {
    width: 210px;
    height: 25px;
    padding: 10px 5px;
    border: 0;
    background: #eee;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}

.form-buscar2 input:focus {
    outline: 0;
    background: #fff;
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
    box-shadow: 0 0 2px rgba(0, 0, 0, .8) inset;
}

.form-buscar2 input::-webkit-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar2 input:-moz-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar2 input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}

.form-buscar2 button {
    overflow: visible;
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    padding: 0;
    cursor: pointer;
    height: 25px;
    width: 110px;
    font: bold 15px/25px 'Raleway', sans-serif;
    color: #fff;
    text-transform: uppercase;
    background: #00BCD4;
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
}

.form-buscar2 button:hover {
    background: #00BCD4;
}

.form-buscar2 button:active,
.form-buscar2 button:focus {
    background: #c42f2f;
}

.form-buscar2 button:before {
    content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent #00BCD4 transparent;
    top: 5px;
    left: -7px;
}

.form-buscar2 button:hover:before {
    border-right-color: #00BCD4;
}

.form-buscar2 button:focus:before {
    border-right-color: #c42f2f;
}

.form-buscar2 button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* responsive */

@media (min-width: 576px) {
    .form-buscar2 {
        width: 400px;
    }

    .form-buscar2 input {
        width: 280px;
    }
}

@media (min-width: 768px) {
    .form-buscar2 {
        width: 400px;
    }

    .form-buscar2 input {
        width: 280px;
    }
}

@media (min-width: 992px) {
    .form-buscar2 {
        width: 400px;
    }

    .form-buscar2 input {
        width: 280px;
    }
}

@media (min-width: 1200px) {
    .form-buscar2 {
        width: 600px;
    }

    .form-buscar2 input {
        width: 479px;
    }
}

/* margin*/
.tuu {
    margin-top: -115px;
}

/* Portafolio */
.cimagen {
    display: block;
    margin: auto;
    margin: 10px auto;
}

.fempresas {
    width: auto;
    height: 150px;
}

.aislagroup {
    width: auto;
    height: 105px;
}

.buffalosgr {
    width: 235px;
    height: 160px;
}

.corregir {
    text-align: center;
    color: #D03232;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    #text {
        font-size: 1em;
        top: 50px;
    }
}

/* ESP / ENG*/

.es {
    text-decoration: none;
    color: white;
}

.es:hover {
    color: #00BCD4;
}

.actives {
    color: #00BCD4;
}

.lang {
    float: right;
    margin-right: 50px;
}

.ww {
    margin-top: 21px;
}

/*--------------------------*/
@media only screen and (min-width: 320px) and (max-width: 736px) {
    .mundo1 {
        margin-top: -15px;
    }

    .notapubli2 {
        width: 150px;
    }
}

.notapubli {
    width: 750px;
    display: block;
    margin: auto;
}

.notapubli2 {
    width: 850px;
    display: block;
    margin: auto;
}

/*******************************************/
.webb {
    position: static;
    margin-left: 65%;
}

.correobtn {
    padding: 10px 20px;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    border: 2px solid #00BCD4;
    color: black;
    background-color: transparent;
}

@media only screen and (min-width: 320px) and (max-width: 736px) {
    .webb {
        margin-left: 5%;
    }

    .correobtn {
        margin-top: 12%;
        margin-left: 42%;
        margin-right: 1%;
        display:none;
    }

    .photoprue {
        height: 70px;
        width: 100px;
    }

}

@media(width: 768px) {
    .webb {
        margin-left: 10%;
    }

    .correobtn {
        margin-top: 0%;
        margin-left: 40%;
        margin-right: 1%;
    }
}

.correobtn a {
    font-style: none;
    color: white;
}

.efectohover span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-size: 15px;
    box-sizing: border-box;
    opacity: 0;
    color: white;
    transition: 0.35s ease;
}

.efectohover::before {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #00BCD4;
    transition: 0.5s ease;
}

.efectohover:hover span {
    opacity: 1;
}

.efectohover:hover:before {
    width: 100%;
}
.servtitle h1 {
    font-weight: 900;
    font-size: 45px;
}

.servtitle .bg-serv {
    height: 200px;
    float: right;
    display: block;
}

.colorPrim {
    color: #0871C3;
    font-weight: bolder;
}

.colorSecu {
    color: #00cdcd;
}

.comilla {
    display: inline;
}

.su p {
    font-weight: 700;
}

.servCirPrin {
    border-radius: 100%;
    color: #ffffff;
    background: #00cdcd;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.servCirOne {
    font-size: 15px;
    padding: 10px 15px 10px 15px;
}

.servCirTwo {
    font-size: 15px;
    padding: 10px 12px 10px 12px;
}


        
.contenido {
    width: 450px;
    overflow: hidden;
    margin-left: 15%;
    margin-top: 2em;
    -webkit-box-shadow: 10px 10px 5px 0px rgba(158, 158, 158, 1);
    -moz-box-shadow: 10px 10px 5px 0px rgba(158, 158, 158, 1);
    box-shadow: 10px 10px 5px 0px rgba(158, 158, 158, 1);
}

.contenido .psp {
    color: #00cdcd;
    padding-left: 20px;
}
.texto1 {
    background-color: white;
    padding: 30px 3px 30px 0px;
}

.texto1 p {
    font-size: 25px;
    padding: 0px 8px 0px 90px;
    line-height: 28px;
}

.texto2 {
    background-color: #00cdcd;
    text-align: right;
}

.texto2 p {
    margin-right: 5px;
    padding: 5px 5px;
    font-size: 20px;
    color: white;
}
.contenido a{
    color: white;
}
.contenido a:hover{
    color: #11396D;
}

@keyframes click-wave {
    0% {
      height: 10px;
      width: 10px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      height: 200px;
      width: 200px;
      margin-left: -80px;
      margin-top: -80px;
      opacity: 0;
    }
  }
  
  .option-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 4px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
  }
  .option-input:hover {
    background: #9faab7;
  }
  .option-input:checked {
    background: #40e0d0;
  }
  .option-input:checked::before {
    height: 25px;
    width: 25px;
    top: -9px;
    left: -3px;
    position: absolute;
    content: "✔";
    display: inline-block;
    font-size: 10px;
    text-align: center;
    line-height: 40px;
  }
  .option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #40e0d0;
    content: "";
    display: block;
    position: relative;
    z-index: 100;
  }
  .option-input.radio {
    border-radius: 50%;
  }
  .option-input.radio::after {
    border-radius: 50%;
  }
  
  .radiobtn {
      display: block;
      margin: 1em;
  }
  .radiobtn .lblbtnrad {
    width: 40%;
    line-height: 40px;
  }
  
@media only screen and (min-width: 320px) and (max-width: 736px) {
    .servtitle h1 {
        font-weight: 900;
        font-size: 25px;
        margin-left: -35px;
        margin-right: -35px;
    }

    .comilla {
        display: none;
    }

    .servtitle .bg-serv {
        height: 200px;
        float: none;
        display: block;
        margin: 0 auto;
    }

    .val {
        font-size: 20px;
        margin-left: -35px;
    }
    
    .contenido {
        margin-left: 0;
        width: 300px;
    }
    .radiobtn .lblbtnrad {
        width: 70%;
 }
      
}