/*------------------------------------------------------------------
[Master Stylesheet]

Project:  Professional Web Site
Version:	2.0
Last change:	2020 Update [No touch]
Assigned to:	Client PAPCE
Primary use:	3D Animatics www.3danimatics.com.mx
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[LAYOUT]

* body
    + Header / header
	+ Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
	+ Footer / footer

-------------------------------------------------------------------*/


/*------------------------------------------------------------------
# [Color codes]

# Text Color (text): #555555
# Text Color Deep (Text, title): #333333

------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Typography]

Body copy:		15px/1.5 'Roboto', Arial, "Helvetica Neue", sans-serif;
Heading Section:	30px/1.5 'Roboto', Arial, "Helvetica Neue", sans-serif;
Input, textarea:	15px/1.5 'Roboto', Arial, "Helvetica Neue", sans-serif;
Title:	24px/1.5 'Roboto', Arial, "Helvetica Neue", sans-serif;

Notes:	decreasing heading by 0.4em with every subsequent heading level
-------------------------------------------------------------------*/


/*-----------------------------------------------------*/


/*                   INCLUDE FILE                      */


/*-----------------------------------------------------*/


/*    Init variables and mixins    */


/* clearFix */


/* Detect variable screen */


/*    Include all sass of components general    */


/* #Basic Styles
================================================== */

@import 'css/nabvar.css';
@import url('https://fonts.googleapis.com/css?family=Philosopher:400,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif:400i&display=swap');

/* CSS
================================*/

@import url('https://fonts.googleapis.com/css?family=Montserrat|Open+Sans&display=swap');
body {
    font-family: "Roboto", Arial, "Helvetica Neue", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: -webkit-calc(25/15);
    line-height: -moz-calc(25/15);
    line-height: calc(25/15);
    color: #555555;
    -webkit-font-smoothing: antialiased;
    /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

html {
    overflow-x: hidden;
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

.float-center {
    float: center;
    text-align: center;
}


/* Testimonials
============================ */

.owl-carousel-1 {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    margin: 10px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.owl-carousel-1 p {
    color: #333;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

#img-testimonial {
    padding: 20px;
}

#img-testimonial img {
    width: 50%;
    position: relative;
    left: 4em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.simbol-testimonial {
    color: #0052ec;
    font-size: 15em;
    opacity: .1;
    top: .3em;
    position: absolute;
    left: .1em;
    font-family: 'Noto Serif', serif;
}

.testimonial-box-1 {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    margin: 10px 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-box-1 p {
    font-size: 12px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.testimonial-box-1 h4 {
    color: #333;
    font-size: 18px;
    text-align: center;
    font-family: 'roboto';
}

.folio-box {
    position: absolute;
    background-color: rgb(253, 209, 11);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: #fff;
    padding: 10px 10px;
    top: -1em;
    font-size: 16px;
    font-family: 'roboto';
    font-weight: 900;
}


/* Progress Bar
============================ */

.clear {
    clear: both;
}

.progress_bar {
    max-width: 820px;
    width: 80%;
    margin: 115px auto 0;
    position: relative;
    height: 50px;
    z-index: 10;
}

.progress_bar hr.all_steps {
    width: 80%;
    height: 7px;
    border: none;
    background: #DDDDDD;
    border-bottom: 1px solid #fff;
    position: absolute;
    bottom: 10px;
    left: 10%;
    z-index: 1;
}

.progress_bar hr.current_steps {
    width: 0%;
    border: 0;
    height: 5px;
    background: #ea463d;
    position: absolute;
    bottom: 12px;
    left: 10%;
    z-index: 3;
}

.progress_bar div.step {
    float: left;
    width: 20%;
    height: 50px;
    text-align: center;
    font-size: 12px;
    color: #ccc;
    top: -1em;
    position: relative;
    text-shadow: 1px 1px #fff;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.progress_bar div.step:before {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 20px;
    border: 2px solid transparent;
    background: #ea463d;
    bottom: 14px;
    left: 50%;
    margin-left: -6px;
    content: "";
    z-index: 4;
    display: none;
}

.progress_bar div.step:after {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 20px;
    border: 2px solid #DDDDDD;
    background: #DDDDDD;
    bottom: 12px;
    left: 50%;
    margin-left: -8px;
    content: "";
    z-index: 2;
}

.progress_bar div.step.current {
    color: #222;
}

.progress_bar div.step.current:before {
    display: block;
}

.progress_bar div.step.complete {
    color: #888;
    cursor: pointer;
}

.progress_bar div.step.complete:before {
    display: block;
}

.progress_bar div.step.complete:hover {
    color: #555;
}

#blocks {
    width: 100%;
    position: relative;
    height: 200px;
}

#blocks .block {
    position: absolute;
    width: 100%;
    left: 100%;
    height: 200px;
}

#blocks .block .wrap {
    width: 80%;
    margin: 0 auto;
}


/* CSS BUTTON By https://codepen.io/daneden/pen/rcFJE*/

.butt {
    /* Additions */
    cursor: pointer;
    margin-right: 5px;
    /* End Additions */
    font-size: 0.825em;
    text-decoration: none;
    font-weight: 700;
    padding: 0.35em 1em;
    background-color: #eaeef1;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
    border-radius: 3px;
    color: rgba(0, 0, 0, 0.6);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

.butt:hover,
.butt.hover {
    background-color: #fff;
}

.butt:active,
.butt.active {
    background-color: #d0d3d6;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.2);
}


/* Count
============================ */

#shiva {
    font-size: 3em;
    font-family: 'Montserrat', sans-serif;
    color: #005eed;
}

.shiva-box span {
    color: #005eed;
    text-transform: uppercase;
    text-align: center;
}

.shiva-box h1 {
    color: #005eed;
    text-align: center;
}

.shiva-box {
    border: 1px solid #0052ec;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    text-align: center;
}


/* Clients 1
============================ */

.clients-1 {
    padding: 10px;
}


/* header
============================ */

.bg-header-2 {
    background: url(../images/landing-bg-3.jpg);
    background-position: center center;
    background-size: cover;
    height: 800px;
    clip-path: polygon(100% 0, 100% 59%, 39% 100%, 0 63%, 0 0);
    border-radius: 1px;
    z-index: -9;
    padding-top: -2em;
}

.bg-header-2 h1 {
    color: #fff;
    padding-top: 20px;
}

.bg-header-2 p {
    color: #fff;
    padding-top: 20px;
}

.bg-header-2 span {
    color: #fff;
    padding-top: 20px;
}

.img-section-2 {
    position: absolute;
    left: 70em;
}


/* Section 2
============================ */

.card-section-2-general {
    position: absolute;
    top: 35em;
    left: 22em;
}

.card-section-2 {
    border-radius: 10px;
    padding-top: 10em;
    z-index: 20;
    margin: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card-section-2 img {
    position: absolute;
    top: -3em;
    left: 4em;
    width: 150px;
}


/* Maps
============================ */

.maps {
    overflow: hidden;
    position: relative;
    height: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.maps-1 {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* pre code
============================ */

xmp {
    background: #051e44;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    overflow: scroll;
    font-family: courier;
    color: #fff;
    border-radius: 5px;
}


/* images
============================ */

.img-1 h4 {
    color: #333;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}

.img-1 span {
    color: #12269E;
    font-family: 'Open Sans', sans-serif;
}

.img-1 img {
    width: 50%;
}

.img-2 h4 {
    color: #333;
    line-height: 30px;
    font-family: 'Open Sans', sans-serif;
}

.img-2 span {
    color: #12269E;
    font-family: 'Open Sans', sans-serif;
}

#img-main {
    padding-left: 15em;
}

#img-1 {
    position: absolute;
    top: 0em;
    left: 5em;
    font-size: 10px;
}

#img-2 {
    position: absolute;
    top: 10em;
    left: 95em;
    font-size: 10px;
}

#img-3 {
    position: absolute;
    top: 35em;
    left: 15em;
    font-size: 10px;
}


/*==== LightBox ============= */

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    padding: 30px 50px;
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}


/* Override bootstrap column paddings */

#gallery {
    padding-top: 40px;
}

@media screen and (min-width: 991px) {
    #gallery {
        padding: 60px 30px 0 30px;
    }
}

.img-wrapper {
    position: relative;
    margin-top: 15px;
}

.img-wrapper img {
    width: 100;
    border-radius: 10px;
}

.img-overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.img-overlay i {
    color: #fff;
    font-size: 3em;
}

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#overlay img {
    margin: 0;
    width: 0%;
    height: auto;
    object-fit: contain;
    padding: 5%;
}

@media screen and (min-width: 768px) {
    #overlay img {
        width: 60%;
    }
    .bg-clinica {
        background: url(../images/bg-papce.jpg);
        background-position: center center;
        background-size: cover;
        z-index: -9;
        padding-top: -2em;
    }
}

@media screen and (min-width: 1200px) {
    #overlay img {
        width: 50%;
    }
}

#nextButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#nextButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #nextButton {
        font-size: 3em;
    }
}

#prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
}

#prevButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #prevButton {
        font-size: 3em;
    }
}

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

#exitButton:hover {
    opacity: 0.7;
}

@media screen and (min-width: 768px) {
    #exitButton {
        font-size: 3em;
    }
}


/* Services 
============================ */

.serv-1 i {
    padding-left: 100px;
}

.serv-1 i:hover {
    padding-left: 100px;
    color: #0052ec;
    transition: .5s;
    width: 150px;
}

.serv-1 p {
    text-align: center;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    padding-top: 20px;
}

.serv-2 {
    border: 1px solid #0052ec;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
}

.serv-2:hover {
    background-color: #0052ec;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: .2s;
    padding: 50px 50px;
}

.serv-2 h1 {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    padding-top: 5px;
}

.serv-2 p {
    text-align: center;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    padding-top: 5px;
}

.serv-2 i {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

.serv-3 {
    /* padding: 30px;
    margin: 20px; */
}

.serv-3-active {
    background-color: #0052ec;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.363), 0 4px 6px -2px rgba(0, 0, 0, 0.363);
    padding: 20px 20px;
    border-radius: 10px;
    z-index: 1;
}

.serv-3-box {
    background-color: #040F44;
    color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    position: absolute;
    margin-left: 70em;
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.363), 0 4px 6px -2px rgba(0, 0, 0, 0.363);
}

.serv-3 h1 {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.serv-3 span {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #0052ec;
}

.serv-3 p {
    text-align: left;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.serv-3 i {
    color: #333;
}

.serv-4 {
    /* padding: 30px;
    margin: 20px; */
}

.serv-4-active {
    background-color: #0052ec;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.363), 0 4px 6px -2px rgba(0, 0, 0, 0.363);
    padding: 20px 20px;
    border-radius: 10px;
    z-index: 1;
}

.serv-4-box {
    background-color: #040F44;
    color: #fff;
    padding: 20px 20px;
    border-radius: 5px;
    position: absolute;
    margin-left: 70em;
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.363), 0 4px 6px -2px rgba(0, 0, 0, 0.363);
}

.serv-4 h1 {
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding-bottom: 20px;
}

.serv-4 p {
    text-align: left;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    text-align: justify;
    padding-bottom: 10px;
}

.serv-4 i {
    color: #12269E;
}

.serv-4 small {
    padding: 0 0;
    text-transform: uppercase;
    color: rgb(196, 196, 196);
}

.serv-4 h2 {
    color: #12269E;
    font-size: 10em;
    padding-left: 4em;
    padding-top: 1.7em;
    opacity: .1;
    position: absolute;
    text-transform: uppercase;
}

.serv-5 p {
    text-align: left;
}

.serv-6 p {
    text-align: right;
}

.serv-6 h1 {
    text-align: right;
}

.serv-6 small {
    text-transform: uppercase;
}

.serv-7 i {
    position: absolute;
    top: 1em;
    left: -2em;
}

.serv-8 i {
    position: absolute;
    top: 1em;
    left: -.1em;
}


/* padding pl pr pt pb py px
============================ */

.pl-5 {
    padding-left: 50px;
}

.pl-10 {
    padding-left: 100px;
}


/* center object*/

.center-object {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}


/*
==== Princing Table 1 ======== */

.pricing-1 {
    background-color: #fff;
    position: relative;
    border-radius: 25px;
    margin: 20px;
    padding: 0 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-1 .bg-gradient-princing {
    height: 100px;
    width: 100%;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    font-family: 'Open Sans', sans-serif;
    background: rgb(2, 0, 36);
    background: linear-gradient(35deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}

.pricing-1 h1 {
    color: #0052ec;
    font-size: 5em;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.money-sign {
    font-size: 20px;
    position: absolute;
    top: 7.5em;
    left: 4.6em;
}

.pricing-1 small {
    color: #0052ec;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.pricing-1 p {
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0px 30px;
}

.pricing-1 i {
    color: #0052ec;
    position: absolute;
    left: 3em;
}

.pricing-1 p:hover {
    color: #0052ec;
}

.pricing-1 .pricing-btn-1 {
    text-align: center;
    padding-bottom: 40px;
}

.pricing-btn-1 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 12px 80px;
    background: rgb(2, 0, 36);
    background: linear-gradient(35deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    border-radius: 15px;
    border-width: 0px;
    text-transform: uppercase;
}

.pricing-btn-1 span:hover {
    color: #fff;
    transition: .3s;
    background: rgb(2, 0, 36);
    background: linear-gradient(227deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}


/*
==== Princing Table 2 ======== */

.pricing-2 {
    background-color: #fff;
    position: relative;
    border-radius: 25px;
    margin: 20px;
    padding: 0 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-2 .bg-gradient-princing-2 {
    height: 100px;
    width: 100%;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    font-family: 'Open Sans', sans-serif;
    background: rgb(33, 204, 168);
    background: linear-gradient(49deg, rgba(33, 204, 168, 1) 0%, rgba(0, 255, 235, 1) 50%, rgba(0, 206, 255, 1) 100%);
}

.pricing-2 h1 {
    color: #01ee88;
    font-size: 5em;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.money-sign-2 {
    font-size: 20px;
    position: absolute;
    top: 7.5em;
    left: 5.6em;
}

.pricing-2 small {
    color: #01ee88;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.pricing-2 p {
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0px 30px;
}

.pricing-2 i {
    color: #01ee88;
    position: absolute;
    left: 3em;
}

.pricing-2 p:hover {
    color: #01ee88;
}

.pricing-2 .pricing-btn-2 {
    text-align: center;
    padding-bottom: 40px;
}

.pricing-btn-2 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 12px 80px;
    background: rgb(1, 238, 136);
    background: linear-gradient(54deg, rgba(1, 238, 136, 1) 0%, rgba(0, 255, 239, 1) 50%, rgba(0, 212, 255, 1) 100%);
    border-radius: 15px;
    border-width: 0px;
    text-transform: uppercase;
}

.pricing-btn-2 span:hover {
    color: #fff;
    transition: .3s;
    background: rgb(1, 238, 136);
    background: linear-gradient(177deg, rgba(1, 238, 136, 1) 0%, rgba(0, 255, 239, 1) 50%, rgba(0, 212, 255, 1) 100%);
}


/*
==== Princing Table 3 ======== */

.pricing-3 {
    background-color: #fff;
    position: relative;
    border-radius: 25px;
    margin: 20px;
    padding: 0 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-3 .bg-gradient-princing-3 {
    height: 100px;
    width: 100%;
    padding-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    font-family: 'Open Sans', sans-serif;
    background: rgb(168, 1, 238);
    background: linear-gradient(11deg, rgba(168, 1, 238, 1) 0%, rgba(171, 0, 255, 1) 50%, rgba(255, 0, 224, 1) 100%);
}

.pricing-3 h1 {
    color: #a801ee;
    font-size: 5em;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.money-sign-3 {
    font-size: 20px;
    position: absolute;
    top: 7.5em;
    left: 3.6em;
}

.pricing-3 small {
    color: #a801ee;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.pricing-3 p {
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0px 30px;
}

.pricing-3 i {
    color: #a801ee;
    ;
    position: absolute;
    left: 3em;
}

.pricing-3 p:hover {
    color: #a801ee;
}

.pricing-3 .pricing-btn-3 {
    text-align: center;
    padding-bottom: 40px;
}

.pricing-btn-3 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 12px 80px;
    background: rgb(168, 1, 238);
    background: linear-gradient(11deg, rgba(168, 1, 238, 1) 0%, rgba(171, 0, 255, 1) 50%, rgba(255, 0, 224, 1) 100%);
    border-radius: 15px;
    border-width: 0px;
    text-transform: uppercase;
}

.pricing-btn-3 span:hover {
    color: #fff;
    transition: .3s;
    background: rgb(168, 1, 238);
    background: linear-gradient(252deg, rgba(168, 1, 238, 1) 0%, rgba(171, 0, 255, 1) 50%, rgba(255, 0, 224, 1) 100%);
}


/*
==== Princing Table 4 ======== */

.card-4 {
    background-color: #fff;
    position: relative;
    border-radius: 5px;
    margin: 10px;
    padding: 30px 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.card-4 span {
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}

.card-4 small {
    text-transform: uppercase;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.card-4 p {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}

.active-4 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    border-radius: 15px;
    background: rgb(187, 14, 14);
    text-transform: uppercase;
}

.money-sign-5 {
    font-size: 20px;
    position: absolute;
    top: 4.1em;
    left: 4.5em;
}

.money-sign-6 {
    font-size: 20px;
    position: absolute;
    top: 4.1em;
    left: 4.1em;
}

.money-sign-7 {
    font-size: 20px;
    position: absolute;
    top: 4.1em;
    left: 3.6em;
}

.promotion {
    background: rgb(255, 187, 0);
    color: #fff;
    position: absolute;
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 10px;
    left: 22em;
}

.pricing-btn-4 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #333;
    padding: 12px 30px;
    border-radius: 15px;
    border-style: solid;
    border-color: #333;
    border-width: 1px;
    text-transform: uppercase;
}

.pricing-btn-4 span:hover {
    color: #fff;
    transition: .3s;
    background: rgb(168, 1, 238);
    background: linear-gradient(252deg, rgba(168, 1, 238, 1) 0%, rgba(171, 0, 255, 1) 50%, rgba(255, 0, 224, 1) 100%);
}


/* Cards
============================ */

.card-1 {
    background-color: #fff;
    position: relative;
    border-radius: 15px;
    margin: 20px;
    padding: 0 0;
}

.card-1 img {
    border-radius: 3px;
    height: 50%;
}

.card-1 h1 {
    color: #010217;
    font-size: 30px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.card-1 p {
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0px 30px;
}

.card-1 .btn-form-4 {
    text-align: center;
    padding-bottom: 40px;
}


/*==================================*/

.card-2 {
    background-color: #fff;
    position: relative;
    border-radius: 15px;
    margin: 20px;
    padding: 0 0;
}

.card-2 img {
    border-radius: 3px;
    clip-path: polygon(0 0, 100% 0%, 100% 86%, 0% 100%);
}

.card-2 h1 {
    color: #010217;
    font-size: 30px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 20px;
}

.card-2 p {
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    padding: 0px 30px;
}

.card-2 .btn-form-4 {
    text-align: center;
    padding-bottom: 40px;
}


/*=======HR Colors===========*/

.hr-blue {
    border-color: #040F44;
}

.hr-white {
    border-color: #fff;
}


/* Icons
==================================================*/

.a-color-b {
    color: #333;
    font-size: 14px;
}

.a-color-b i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
}

.a-color-b i::before {
    background-color: #FFC107;
    ;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding: 14px;
}

.a-color-b span {
    padding-left: 10px;
}

.a-color-b:hover {
    color: #258CC7;
}


/*=========Alerts Icons =============*/

.color-success span {
    color: #061366;
    font-size: 14px;
}

.color-success {
    color: #228B22;
}

.color-danger span {
    color: #061366;
    font-size: 14px;
}

.color-danger {
    color: rgb(139, 34, 34);
}


/*==============ICONS===============*/

.a-icons-facebook i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
}

.a-icons-facebook i::before {
    background-color: #4267B2;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 17px;
}

.a-icons-facebook i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.a-icons-twitter i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
    r
}

.a-icons-twitter i::before {
    background-color: #1DA1F2;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 12px;
}

.a-icons-twitter i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.a-icons-whatsapp i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
    r
}

.a-icons-whatsapp i::before {
    background-color: #25D366;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 12px;
}

.a-icons-whatsapp i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.a-icons-pinterest i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
    r
}

.a-icons-pinterest i::before {
    background-color: #E60023;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 15px;
}

.a-icons-pinterest i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.a-icons-grey i {
    font-size: 20px;
    padding: 0px;
    color: #fff;
    r
}

.a-icons-grey i::before {
    background-color: #333;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 14px;
}

.a-icons-grey i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.a-icons-light i {
    font-size: 20px;
    padding: 0px;
    color: #FFC107;
}

.a-icons-light i::before {
    background-color: rgb(255, 255, 255);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    padding-top: 12px;
    padding-left: 14px;
}

.a-icons-light i:hover {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* Tipography
==================================================*/

.text-b-hard {
    color: #090F49;
}

.text-b-soft {
    color: #CFE6ED;
}

.text-b {
    color: #006CF1;
}

.text-black {
    color: #333;
}

.text-white {
    color: #fff;
}

.text-blue-soft {
    color: #00E4E1;
}

.text-blue-very-soft {
    color: #CFE6ED;
}

.roboto {
    font-family: 'roboto';
}

.opensans {
    font-family: 'Open Sans', sans-serif;
}

.monserrat {
    font-family: 'Montserrat', sans-serif;
}

.philosopher {
    font-family: 'Philosopher', sans-serif;
}


/*===Titles=====*/

.roboto-title {
    font-family: 'roboto';
    font-size: 2em;
    color: #0052ec;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.opensans-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    color: #0052ec;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.monserrat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    color: #0052ec;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/*===Paragraph=====*/

.monserrat-left {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: left;
}

.monserrat-center {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: center;
}

.monserrat-right {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: right;
}

.monserrat-justify {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: justify;
}

.opensans-left {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: left;
}

.opensans-center {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: center;
}

.opensans-right {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: right;
}

.opensans-justify {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: justify;
}

.roboto-left {
    font-family: 'roboto';
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: left;
}

.roboto-center {
    font-family: 'roboto';
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: center;
}

.roboto-right {
    font-family: 'roboto';
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: right;
}

.roboto-justify {
    font-family: 'roboto';
    font-size: 16px;
    line-height: 24px;
    color: #333;
    text-align: justify;
}


/* Navbar
===================================================*/

.navbar-section-1 {
    margin: auto;
    width: 100%;
    text-align: center;
}

.logo-ideas-1 {
    padding-top: 0px;
}

.navar-5 .drop-menu {
    background-color: #333;
}


/* jQuery effects
==================================================*/

#panel {
    position: relative;
    top: 1em;
    padding: 5px;
    display: none;
    background: rgb(220, 255, 231);
    border-radius: 5px;
    color: rgb(123, 160, 135);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

#panel-1 {
    position: relative;
    top: 1em;
    padding: 5px;
    display: none;
    background: rgb(220, 255, 231);
    border-radius: 5px;
    color: rgb(123, 160, 135);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

#panel-2 {
    position: relative;
    top: 1em;
    padding: 5px;
    display: none;
    background: rgb(220, 255, 231);
    border-radius: 5px;
    color: rgb(123, 160, 135);
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}


/* Effect Buttons 
===================================================*/

#wrap {
    margin: 20px auto;
    text-align: center;
}

.btn-slide,
.btn-slide2 {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 200px;
    line-height: 50px;
    padding: 0;
    border-radius: 50px;
    background: #fdfdfd;
    border: 2px solid #0099cc;
    margin: 10px;
    transition: .5s;
}

.btn-slide2 {
    border: 2px solid #efa666;
}

.btn-slide:hover {
    background-color: #0099cc;
}

.btn-slide2:hover {
    background-color: #efa666;
}

.btn-slide:hover span.circle,
.btn-slide2:hover span.circle2 {
    left: 100%;
    margin-left: -45px;
    background-color: #fdfdfd;
    color: #0099cc;
}

.btn-slide2:hover span.circle2 {
    color: #efa666;
}

.btn-slide:hover span.title,
.btn-slide2:hover span.title2 {
    left: 40px;
    opacity: 0;
}

.btn-slide:hover span.title-hover,
.btn-slide2:hover span.title-hover2 {
    opacity: 1;
    left: 40px;
}

.btn-slide span.circle,
.btn-slide2 span.circle2 {
    display: block;
    background-color: #0099cc;
    color: #fff;
    position: absolute;
    float: left;
    margin: 5px;
    line-height: 42px;
    height: 40px;
    width: 40px;
    top: 0;
    left: 0;
    transition: .5s;
    border-radius: 50%;
}

.btn-slide2 span.circle2 {
    background-color: #efa666;
}

.btn-slide span.title,
.btn-slide span.title-hover,
.btn-slide2 span.title2,
.btn-slide2 span.title-hover2 {
    position: absolute;
    left: 90px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    color: #30abd5;
    transition: .5s;
}

.btn-slide2 span.title2,
.btn-slide2 span.title-hover2 {
    color: #efa666;
    left: 80px;
}

.btn-slide span.title-hover,
.btn-slide2 span.title-hover2 {
    left: 80px;
    opacity: 0;
}

.btn-slide span.title-hover,
.btn-slide2 span.title-hover2 {
    color: #fff;
}


/* Effect Buttons 1
===================================================*/

.button-effects {
    position: relative;
    min-width: 80px;
    text-align: center;
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
    transition: all 500ms;
    border: 2px solid transparent;
    margin: 10px 15px;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.button-effects::after {
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 500ms;
    border-radius: 5px;
}

.button-effects:hover {
    box-shadow: none!important;
}

.button-effects.button-purple {
    color: #fff;
    background-color: #673ab7;
    box-shadow: 0 3px 20px rgba(103, 58, 183, 0.3);
}

.button-effects.button-purple::after {
    background-color: #fff;
}

.button-effects.button-purple:hover {
    color: #673ab7;
    border-color: #673ab7;
}

.button-effects.button-red {
    color: #fff;
    background-color: #ff1744;
    box-shadow: 0 5px 20px rgba(255, 23, 68, 0.3);
}

.button-effects.button-red::after {
    background-color: #fff;
}

.button-effects.button-red:hover {
    color: #ff1744;
    border-color: #ff1744;
}

.button-effects.button-left::after {
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
}

.button-effects.button-left:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.button-effects.button-right::after {
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
}

.button-effects.button-right:hover::after {
    width: 100%;
    right: 0;
    left: auto;
}

.button-effects.button-top::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.button-effects.button-top:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}

.button-effects.button-bottom::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
}

.button-effects.button-bottom:hover::after {
    height: 100%;
    bottom: auto;
    top: 0;
}


/* Effect Buttons 2
===================================================*/

.btn-icon-1 {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 20px;
}

.btn-icon-bg {
    position: relative;
    display: block;
    background: #fff;
    padding: 0;
    float: left;
    line-height: 50px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
}


/* Efeitos */

.btn-effect-1 {
    color: #fff;
    background: #0052ec;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-1:hover {
    color: #0052ec;
    background: #fff;
}

.btn-icon-bg.btn-effect-2 {
    color: #0052ec;
    height: 45px;
    line-height: 45px;
    box-shadow: 0px 5px 0px 0px #0052ec;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.btn-effect-2:hover {
    box-shadow: 0px 0px 0px 0px #0052ec;
}

.btn-icon-bg.btn-effect-2:hover {
    margin-top: 5px;
    margin-bottom: 5px;
}

.btn-effect-3 {
    color: #fff;
    background: #0052ec;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-3:hover {
    color: tranparent;
    text-shadow: 0px 0px 15px #fff;
}

.btn-effect-4 {
    color: #0052ec;
    border: solid 2px #fff;
    line-height: 40px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-4:hover {
    border: solid 2px #0052ec;
}

.btn-effect-5 {
    color: #fff;
    background: #0052ec;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-5:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.btn-effect-6 {
    color: #0052ec;
    background: #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-6:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}

.btn-effect-7 {
    color: #0052ec;
    background: #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.btn-effect-7:hover {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
}


/* Buttons
===================================================*/

.btn-color-blue {
    background-color: #0052ec;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
    border-width: 0px;
}

.btn-color-green {
    background-color: #2c7722;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
    border-width: 0px;
}

.btn-color-dark {
    background-color: #272727;
    color: #fff;
    border-radius: 25px;
    padding: 10px 30px;
    border-width: 0px;
}

.btn-form input[type=submit] {
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 5px 50px;
    background-color: #0052ec;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 0px;
}

.btn-form input[type=submit]:hover {
    background-color: #090F49;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}

.btn-form-1 input[type=submit] {
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 5px 50px;
    background-color: #4bcaff;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 0px;
}

.btn-form-1 input[type=submit]:hover {
    border-color: #090F49;
    ;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}

.btn-form-2 input[type=submit] {
    margin-top: 0px;
    margin-bottom: 30px;
    padding: 5px 50px;
    border-color: #090F49;
    background-color: transparent;
    color: #090F49;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 1px;
}

.btn-form-2 input[type=submit]:hover {
    background-color: #090F49;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}

.btn-form-3 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #090F49;
    padding: 5px 20px;
    border-color: #090F49;
    background-color: transparent;
    border-radius: 15px;
    border-width: 0px;
}

.btn-form-3 span:hover {
    background-color: #090F49;
    color: #fff;
}

.btn-form-4 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 10px 40px;
    border-color: #090F49;
    background-color: #00D8D7;
    border-radius: 15px;
    border-width: 0px;
}

.btn-form-4 span:hover {
    background-color: transparent;
    color: #00D8D7;
}

.btn-form-5 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 10px 40px;
    border-color: #00D8D7;
    background-color: #090F49;
    border-radius: 15px;
    border-width: 1px;
    border-style: solid;
}

.btn-form-5 span:hover {
    background-color: transparent;
    color: #00D8D7;
}

.btn-form-6 span {
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: #fff;
    padding: 10px 40px;
    background-color: #090F49;
    border-radius: 15px;
}

.btn-form-6 span:hover {
    background-color: #006CF1;
    color: #fff;
}

.tech-ul {
    margin: 0px;
    padding: 0px;
}

.tech-ul li {
    list-style: circle;
    padding: 10px 0px;
}

.tech-ul li:hover {
    background-color: rgba(255, 230, 0, 0.404);
}

.footer-ul {
    margin: 0px;
    padding: 0px;
}

.footer-ul li {
    list-style: none;
    padding: 3px 0px;
}

.footer-ul li:hover {}


/* Background Parallax rgb(255, 195, 17);
================================================== */

.bg-parallax-1 {
    /* background: url(../images/happy.jpg); */
    background-image: linear-gradient(to bottom, rgba(255, 195, 17, 0.849), rgb(197, 154, 26)), url(../images/papce_001.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -10;
    padding: 80px 0px;
    background-size: cover;
    background-attachment: fixed;
}

.bg-parallax-2 {
    /* background: url(../images/happy.jpg); */
    background-image: linear-gradient(to bottom, rgba(255, 195, 17, 0.849), rgb(197, 154, 26)), url(../images/papce_technology2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -10;
    padding: 0px;
    background-size: cover;
    background-attachment: fixed;
}

.bg-parallax-3 {
    background: url(../images/landing-bg-3.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
    background-attachment: fixed;
}


/* #Backgroud
================================================== */

.bg-black {
    background: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
    background-attachment: fixed;
}

.bg-grey {
    background: #006CF1;
}


/*Susbcribe Form
===================================================*/

.form-subscribe {}

.form-subscribe-email {
    border-radius: 25px;
    border-color: transparent;
    padding: 10px 40px 10px;
    border: #0052ec;
}

.form-subscribe-email::placeholder {
    color: #adadad;
    font-family: 'Montserrat', sans-serif;
}

.form-subscribe-email-1 {
    border-radius: 25px;
    border-color: transparent;
    padding: 10px 40px 10px;
    border: #0052ec;
}

.form-subscribe-email-1::placeholder {
    color: #adadad;
    font-family: 'Montserrat', sans-serif;
}

.form-subscribe-send {
    border-radius: 25px;
    background-color: #005fce;
    padding: 10px 40px 10px;
    border-color: transparent;
    color: #fff;
}

.form-subscribe-send:hover {
    border-radius: 25px;
    background-color: #090F49;
    transition: .9s;
    padding: 10px 40px 10px;
    color: #fff;
}

.form-subscribe-send-1 {
    border-radius: 25px;
    background-color: #005fce;
    padding: 10px 20px 10px;
    border-color: transparent;
    color: #fff;
}

.form-subscribe-send-1:hover {
    border-radius: 25px;
    background-color: #090F49;
    transition: .9s;
    padding: 10px 40px 10px;
    color: #fff;
}

.form-subscribe-1 input[type=email] {
    border-radius: 25px;
    padding: 10px 40px 10px;
    border: #4bcaff;
    border-radius: 25px;
    background-color: #fff;
    border-color: #fff;
    padding: 10px 40px 10px;
    color: #333;
}

.form-subscribe-1 input[type=button] {
    border-radius: 25px;
    background-color: #4bcaff;
    border-color: transparent;
    padding: 10px 40px 10px;
    color: #fff;
}

.form-subscribe-1 input[type=button]::placeholder {
    color: #adadad;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.form-subscribe-1 input[type=button]:hover {
    border-radius: 25px;
    background-color: #005fce;
    transition: .9s;
    padding: 10px 40px 10px;
    color: #fff;
}

.form-subscribe-2 input[type=email] {
    border-radius: 25px;
    padding: 10px 40px 10px;
    border: #4bcaff;
    border-radius: 25px;
    background-color: #fff;
    border-color: #fff;
    padding: 10px 40px 10px;
    color: #333;
}

.form-subscribe-2 i {
    position: absolute;
    top: 15px;
    padding-left: 15px;
    color: #fff;
}

.form-subscribe-2 input[type=button] {
    border-radius: 25px;
    background-color: #090F49;
    border-color: transparent;
    padding: 10px 40px 10px;
    color: #fff;
}

.form-subscribe-2 input[type=button]::placeholder {
    color: #adadad;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

.form-subscribe-2 input[type=button]:hover {
    border-radius: 25px;
    background-color: #4bcaff;
    transition: .9s;
    padding: 10px 40px 10px;
    color: #fff;
}


/* form-contact-1
 =================================================*/

.form-contact-1 {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-contact-1 input {
    background-color: #fafafa;
    border-radius: 15px;
}

.form-contact-1 textarea {
    border-radius: 10px;
    color: #333;
    max-width: 100%;
}

.form-contact-1 i {
    color: #0052ec;
}

.form-contact-1 small {
    color: #0e2b61;
}

.rotate {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(90deg);
}

.form-contact-1 input[type=submit] {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 5px 50px;
    background-color: #FFC107;
    color: #fff;
    border-radius: 15px;
}

.alert-form-success-1 {
    text-align: center;
    color: rgb(10, 63, 13);
    font-family: 'Montserrat', sans-serif;
    background: #e0ffeb;
    padding: 10px 30px;
    border-radius: 10px;
}

.alert-form-error-1 {
    text-align: center;
    color: rgb(255, 7, 7)252, 14, 14);
    font-family: 'Montserrat', sans-serif;
    background: #ffcdd2;
    padding: 10px 30px;
    border-radius: 10px;
}


/* form-contact-2
 =================================================*/

.form-contact-2 {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-contact-2 h1 {
    text-align: center;
}

.form-contact-2 input {
    background-color: #fafafa;
    border-radius: 15px;
}

.form-contact-2 i {
    color: #0052ec;
}

.form-contact-2 small {
    color: #0052ec;
}

.form-contact-2 input[type=submit] {
    margin: 30px 90px;
    padding: 5px 50px;
    background-color: #0052ec;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
}

.form-contact-2 input[type=submit]:hover {
    background-color: #090F49;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}


/* form-contact-3
 =================================================*/

.form-contact-3 {
    /* background-color: #010217; */
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-contact-3 h1 {
    text-align: center;
    color: #4bcaff;
}

.form-contact-3 input {
    background-color: rgba(250, 250, 250, 0.062);
    color: #fff;
    border-radius: 15px;
}

.form-contact-3 input:focus,
input:active {
    border-radius: 15px;
}

.form-contact-3 select {
    background: transparent;
    color: #fff;
    border-radius: 15px;
}

.form-contact-3 option {
    background: transparent;
    color: #fff;
    border-radius: 15px;
}

.form-contact-3 i {
    color: #4bcaff;
}

.form-contact-3 small {
    color: #4bcaff;
}

.form-contact-3 textarea {
    background-color: rgba(250, 250, 250, 0.062);
    border-radius: 10px;
    max-width: 100%;
    color: #fff;
    border-radius: 15px;
}

.form-contact-3 input[type=submit] {
    margin: 30px 90px;
    padding: 5px 50px;
    background-color: #4bcaff;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 0px;
}

.form-contact-3 input[type=submit]:hover {
    background-color: #0052ec;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}


/* form-contact-4
 =================================================*/

.form-contact-4 {
    background: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-contact-4 h1 {
    text-align: center;
    color: #4bcaff;
}

.form-contact-4 input {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 0px;
    border-bottom-color: #fff;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #fff;
}

.alert-form-success-4 {
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    background: #4bcaff;
    padding: 10px 30px;
    border-radius: 10px;
}

.alert-form-error-4 {
    text-align: center;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    background: #ff4b4b;
    padding: 10px 30px;
    border-radius: 10px;
}

.form-contact-4 input::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.form-contact-4 input:focus,
input:active {
    border-color: transparent;
    border-bottom: 2px solid #4bcaff;
    border-radius: 0px;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-contact-4 i {
    color: #4bcaff;
}

.form-contact-4 small {
    color: #4bcaff;
}

.form-contact-1 textarea {
    border-radius: 10px;
    max-width: 100%;
}

.form-contact-4 input[type=submit] {
    margin: 30px 90px;
    padding: 5px 50px;
    background-color: #4bcaff;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 0px;
}

.form-contact-4 input[type=submit]:hover {
    background-color: #0052ec;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}


/* form-contact-5
 =================================================*/

.form-contact-5 {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.form-contact-5 input {
    background-color: transparent;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #333;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-contact-5 input:focus,
input:active {
    border-color: transparent;
    border-bottom: 2px solid #0052ec;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-contact-5 textarea {
    border-radius: 10px;
    color: #333;
    max-width: 100%;
}

.form-contact-5 i {
    color: #0052ec;
}

.form-contact-5 small {
    color: #0052ec;
}

.rotate {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(90deg);
}

.form-contact-5 input[type=submit] {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 5px 50px;
    background-color: #0052ec;
    color: #fff;
    border-radius: 15px;
    padding: 5px 50px;
    border-width: 0px;
}

.form-contact-5 input[type=submit]:hover {
    background-color: #090F49;
    color: #fff;
    box-shadow: 0 15px 10px -10px rgba(31, 31, 31, 0.5);
}


/* Form Search
  ================================================*/

.form-search {
    width: 59%;
    border-radius: 10px;
}

.form-search-submit {
    background-color: #0052ec;
    color: #fff;
    width: 40px;
    height: 36px;
    text-align: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-1 {
    width: 50%;
    border-radius: 10px;
}

.form-search-1::placeholder {
    padding: 3px;
}

.form-search-submit-1 {
    background: transparent;
    border: #fff;
    width: 70px;
    height: 36px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-2 input {
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #333;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-search-2 input:focus,
input:active {
    border-color: transparent;
    border-bottom: 2px solid #0052ec;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-search-submit-2 {
    background: transparent;
    border: #fff;
    width: 70px;
    height: 36px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-submit-2:hover {
    color: #0052ec;
}

#form4 input {
    margin-left: 10px;
}

#form5 input {
    margin-left: 10px;
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #333;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#form6 input {
    margin-left: 10px;
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #0052ec;
    border-bottom-style: groove;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #333;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* Form Search Dark Mode
  ================================================*/

.form-search-dark {
    width: 59%;
    border-radius: 10px;
}

.form-search-dark input {
    background-color: transparent;
    color: #fff;
    border-color: #4bcaff;
}

.form-search-submit-dark {
    background-color: #4bcaff;
    color: #fff;
    width: 40px;
    height: 36px;
    text-align: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-3 input {
    width: 50%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #4bcaff;
}

.form-search-3 i {
    color: #4bcaff;
}

.form-search-3::placeholder {
    padding: 3px;
}

.form-search-submit-3 {
    background: transparent;
    border: #fff;
    width: 70px;
    height: 36px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-4 input {
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    background-color: transparent;
    border-color: #4bcaff;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #fff;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-search-4 input:focus,
input:active {
    border-color: transparent;
    border-bottom: 2px solid #4bcaff;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-search-submit-4 {
    background: transparent;
    border: #fff;
    width: 70px;
    height: 36px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 60%;
    left: 60%;
    transform: translate(-60%, -60%);
}

.form-search-submit-4 i {
    color: #4bcaff;
}

.form-search-submit-4:hover {
    color: #4bcaff;
}

#form7 input {
    margin-left: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-color: #4bcaff;
}

#form7 i {
    color: #4bcaff;
}

#form8 i {
    color: #4bcaff;
}

#form8 input {
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    background-color: transparent;
    border-color: #4bcaff;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #fff;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#form9 i {
    color: #4bcaff;
}

#form9 input {
    width: 50%;
    border-radius: 10px;
    border-radius: 0px;
    border-bottom-color: #333;
    border-bottom-style: groove;
    background-color: transparent;
    border-color: #4bcaff;
    border-top: hidden;
    border-right: hidden;
    border-left: hidden;
    color: #fff;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/* Inputs Fields
  ================================================*/

.check-1 input[type=radio] {
    position: relative;
    cursor: pointer;
}


/* background contact
  ================================================*/

.bg-form-1 {
    background: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.bg-form-1 {
    background: url(../images/bg-contact-4.jpg);
    background-repeat: no-repeat;
    background-position: auto;
    background-size: cover;
    border-radius: 15px;
    padding: 30px 10px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


/* #footer
 ==================================================*/


/*========== Clipping Mask Background ==================*/

.bg-diagonal-1 {
    background-color: #524aea;
    height: 700px;
}

.bg-curve-1 {
    background-color: #090F49;
    clip-path: circle(90% at 0% 50%);
    /* set the reference box of the Shape to be the same as the clip-path's for this example */
    shape-outside: circle(70% at 0% 50%) border-box;
}

.bg-curve {
    position: relative;
    height: 800px;
    background-image: linear-gradient(#090F49, #00C8EE);
    border-bottom-left-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
}

.bg-curve-img {
    position: relative;
    height: 800px;
    background: url(../images/landing-bg-2.jpg);
    background-position: center center;
    border-bottom-left-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
}

.bg-diagonal-2 {
    position: relative;
    padding-top: 50px;
    height: 300px;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#ff9d2f, #ff6126);
    transform: skewY(-2deg);
    transform-origin: top left;
    z-index: 9;
}


/*============= Div Diagonal ================*/

.bg-diagonal-3 {
    position: relative;
    padding-top: 190px;
    overflow: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: skewY(-4deg);
    transform-origin: top left;
    z-index: 9;
}


/* BG light mode
 #ebf7ff #00D8D7 #00C8EE #FFC107 #00538B
===================================================*/

.bg-b3-very-soft {
    background: #ebf7ff;
}

.bg-b3-soft {
    background: #00D8D7;
}

.bg-b3-medium {
    background: #00C8EE;
}

.bg-b3-hard {
    background: #FFC107;
}

.bg-b3-very-hard {
    background: #00538B;
}

.text-black-soft {
    color: #4d4d4d;
}

.text-black-medium {
    color: #333333;
}

.text-black-hard {
    color: #000000;
}


/* Dark hard mode
 #4bcaff #005eed #005fce #090F49 #010217
===================================================*/

.bg-b2-very-soft {
    background: #4bcaff;
}

.bg-b2-soft {
    background: #005eed;
}

.bg-b2-medium {
    background: #005fce;
}

.bg-b2-hard {
    background: #090F49;
}

.bg-b2-very-hard {
    background: #010217;
}

.text-b2-soft {
    color: #4bcaff;
}

.text-b2-very-soft {
    color: #CFE6ED;
}

.bg-b2-dark-img {
    background: url(../images/careers009.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
}


/* Dark mode
 #CFE6ED #00E4E1 #12269E #061366 #040F44
===================================================*/

.bg-blue-very-soft {
    background: #CFE6ED;
}

.bg-blue-soft {
    background: #00E4E1;
}

.bg-blue-medium-dark {
    background: #12269E;
}

.bg-blue-dark {
    background: #061366;
}

.bg-blue-hard-dark {
    background: #040F44;
}

.bg-blue-dark-img {
    background: url(../images/careers008.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
}

.bg-blue-services {
    color: #040F44;
}

.bg-blue-services i {
    color: #CFE6ED;
}


/* End Dark mode
 #CFE6ED #00E4E1 #12269E #061366 #040F44
===================================================*/

.bg-grey-light {
    background: #f5f5f5;
}

.bg-grey-dark {
    background: #999999;
}

.bg-white {
    background: #fff;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-overlay.dark {
    background: rgba(0, 0, 0, 0.5);
}

.bg-overlay.dark-2 {
    background: rgba(0, 0, 0, 0.8);
}

.bg-parallax {
    background-attachment: fixed !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

@media (max-width: 991px) {
    .bg-parallax {
        -webkit-background-size: auto auto !important;
        -moz-background-size: auto !important;
        -o-background-size: auto !important;
        background-size: auto !important;
    }
}

.bg-gradient {
    background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(black));
    background: -webkit-linear-gradient(bottom, transparent 0%, black 100%);
    background: -moz-linear-gradient(bottom, transparent 0%, black 100%);
    background: -o-linear-gradient(bottom, transparent 0%, black 100%);
    background: linear-gradient(to top, transparent 0%, black 100%);
}

.bg-gradient-light {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 100%);
}


/* #Typography
================================================== */

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-weight: inherit;
}

p img {
    margin: 0;
}

em {
    font-style: italic;
}

strong {
    font-weight: 600;
}

small {
    font-size: 80%;
}

.text-small {
    font-size: 13px;
}


/*	Blockquotes  */


/* #Links
================================================== */

a,
a:visited {
    text-decoration: none;
}

a:hover,
a:focus {
    color: #DDDDDD;
    text-decoration: none;
}

p a,
p a:visited {
    line-height: inherit;
    text-decoration: none;
}

a:focus {
    outline: none;
}

a:hover {
    cursor: pointer;
}


/* #Lists
================================================== */

ul {
    list-style: none outside;
}

ol {
    list-style: decimal;
}

ul ul,
ul ol,
ol ol,
ol ul {
    font-size: 90%;
}

li p {
    line-height: 21px;
}


/* Fix for odd Mozilla border & padding issues */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


/* #Transition
================================================== */

a,
button {
    -webkit-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease !important;
    -o-transition: all 0.3s ease !important;
    -moz-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}


/* #Social icon item
================================================== */

.social-item-1 {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: table;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-item-1 a {
    display: table-cell;
    vertical-align: middle;
    color: #e5e5e5;
    font-size: 12px;
}

.social-item-1:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-item-2 {
    width: 36px;
    height: 36px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.social-item-3 {
    width: 36px;
    height: 36px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #808080;
    margin-left: 5px;
}

.social-item-3 .fa-facebook {
    background: #3b5998;
}

.social-item-3 .fa-twitter {
    background: #006CF1;
}

.social-item-3 .fa-google-plus {
    background: #dd4b39;
}

.social-item-3 .fa-linkedin {
    background: #007bb6;
}

.social-item-3 a {
    color: #fff;
}

.social-item-3.text {
    background: none;
    height: 36px;
    width: 70px;
}

.social-item-3.text span {
    font-size: 13px;
    display: table-cell;
    vertical-align: middle;
}

.social-item-4 {
    margin-right: 5px;
}

.social-item-4 a {
    font-size: 24px;
}

.social-item-4 .fa-facebook-square {
    color: #3b5998;
}

.social-item-4 .fa-twitter {
    color: #006CF1;
}

.social-item-4 .fa-linkedin-square {
    color: #007bb6;
}

.social-item-4.text {
    background: none;
    height: 26px;
    width: 100px;
    text-align: left;
}

.social-item-4.text span {
    color: #808080;
    font-size: 13px;
    display: table-cell;
    vertical-align: middle;
}


/* #List style
================================================== */

.horizontal-list {
    padding: 5px;
    margin: 0;
}

.horizontal-list:after {
    content: "";
    display: table;
    clear: both;
}

.horizontal-list li {
    float: left;
}


/* BG PAPCE
================================================== */

.bg-yellow {
    background-color: #FFC107;
}


/* #Chosen Select
================================================== */

@media (min-width: 0px) {
    .chosen-container .chosen-single div b {
        background: none !important;
    }
}


/*No active*/

.chosen-container {
    vertical-align: baseline;
}

.chosen-container .chosen-single {
    background: none;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.chosen-container .chosen-single span {
    color: #888;
}

.chosen-container .chosen-single div b {
    background: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
}

.chosen-container .chosen-single div b:after {
    content: '\f107';
    font-family: FontAwesome, sans-serif;
    color: #888;
}

.chosen-container .chosen-drop {
    background: #111;
    border: none;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    clip: auto;
}

.chosen-container .chosen-drop ul li {
    color: #888;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.chosen-container .chosen-drop ul li:hover,
.chosen-container .chosen-drop ul li.result-selected {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/*Active*/

.chosen-container-active.chosen-with-drop .chosen-single {
    background: #111;
    border: none;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.chosen-container-active.chosen-with-drop .chosen-drop {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* #Hamburger Button
================================================== */

.hamburger {
    padding: 20px 15px 10px 15px;
}

.hamburger:focus {
    outline: none;
}

.hamburger:hover {
    opacity: 1;
}


/* #Progress Bar
================================================== */

.progress-box-1 .progress-label {
    font-size: 13px;
    margin-bottom: 9px;
}

.au-progress-1 {
    border-top: 1px solid #d9d9d9;
}

.au-progress-1 .au-progress-bar {
    position: relative;
    height: 10px;
    width: 0;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    -moz-transition: 1s all;
    transition: 1s all;
}

.au-progress-1 .au-progress-bar span {
    font-size: 13px;
    position: absolute;
    top: -20px;
    right: -15px;
}

.progress-box-2 {
    text-align: center;
    margin-bottom: 30px;
}

.progress-box-2 .au-progress-bar {
    background: none;
    position: relative;
    width: 100% !important;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    -moz-transition: 1s all;
    transition: 1s all;
}

.progress-box-2 .au-progress-bar svg {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.progress-box-2 .au-progress-bar circle {
    stroke-width: 4px;
}

.progress-box-2 .au-progress-bar .bar-color {
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    -moz-transition: 1s all;
    transition: 1s all;
}

.progress-box-2 .au-progress-bar span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
}

.progress-box-2 .progress-label {
    font-weight: 400;
    margin: 15px 0 0 0;
    color: #fff;
    font-size: 18px;
}

.progress-box-3 {
    display: inline-block;
    vertical-align: top;
}

.progress-box-3 .progress-label {
    font-size: 15px;
    color: #888888;
    margin-top: 5px;
}

.progress-box-3 .au-progress-3 {
    width: 110px;
    background: #e6e6e6;
    height: 216px;
    position: relative;
}

.progress-box-3 .au-progress-3 .au-progress-bar {
    position: absolute;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
    left: 0;
    bottom: 0;
    width: 100% !important;
    height: 0%;
    background: #00ae25;
    text-align: center;
}

.progress-box-3 .au-progress-3 .au-progress-bar span {
    color: #fff;
    display: inline-block;
    margin-top: 3px;
}


/* #Number box
================================================== */

.number-box {
    text-align: center;
    margin-bottom: 30px;
}

.number-box.light {
    color: #fff;
}

.number-box.dark {
    color: #333333;
}

.number-box.dark .title {
    color: #999999;
}

.number-box .number {
    line-height: 1;
    margin-bottom: 15px;
    font-size: 70px;
    font-weight: 700;
    display: block;
}

.number-box .number .sub {
    content: "%";
    font-size: 40px;
    margin-left: -15px;
}

.number-box .title {
    display: block;
    font-weight: 700;
}


/* #Text block
================================================== */

.text-inline {
    display: inline-block;
}

.text-block {
    font-size: 15px;
    margin-bottom: 0;
    display: block;
    font-weight: 400;
}

@media (max-width: 991px) {
    .text-block {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.text-lead {
    font-size: 39px;
    font-weight: 300;
}

.text-black {
    color: #333;
}

.text-grey {
    color: #cccccc;
}

.text-grey-1 {
    color: #808080;
}

.text-large {
    font-size: 36px;
}

.text-med-large {
    font-size: 30px;
}

.text-med {
    font-size: 24px;
}

.text-bold {
    font-weight: 700;
}

.text-med-sm {
    font-size: 20px;
}

.text-underline {
    text-decoration: underline;
}

.post-list li {
    list-style: none;
    margin-bottom: 10px;
}

.post-list li:before {
    content: '';
    background: #555;
    vertical-align: middle;
    margin-right: 10px;
    display: inline-block;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 8px;
    height: 8px;
}

.post-blockquote {
    padding: 10px 50px;
}

.post-blockquote p {
    font-size: 18px;
}

.post-blockquote .text-grey {
    color: #808080;
}

.image.image-border {
    border: 1px solid #e6e6e6;
}


/* #Accordion-box
  ================================================== */

.accordion-box-1 .accordion {
    background: #fff;
}

.accordion-box-1 .accordion .accordion-title {
    cursor: pointer;
    padding: 10px 20px 10px 30px;
    border: 1px solid #e6e6e6;
    margin: 0;
    font-size: 18px;
    color: #333333;
}

.accordion-box-1 .accordion .accordion-title span {
    width: 30px;
    position: relative;
    height: 30px;
    float: right;
    vertical-align: bottom;
}

.accordion-box-1 .accordion .accordion-title span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    display: inline-block;
    width: 2px;
    height: 12px;
    background: #aaaaaa;
}

.accordion-box-1 .accordion .accordion-title span:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: "";
    display: inline-block;
    width: 12px;
    height: 2px;
    background: #aaaaaa;
}

.accordion-box-1 .accordion .accordion-title p {
    margin: 0;
}

.accordion-box-1 .accordion.open .accordion-title span:before {
    display: none;
}

.accordion-box-1 .content-inner {
    border: 1px solid #ededed;
    padding: 25px 30px 20px 30px;
}

.accordion-box-2 .accordion.open .accordion-title {
    background: #ac907f;
}

.accordion-box-2 .accordion .accordion-title {
    border: none;
    background: #292929;
}

.accordion-box-2 .accordion .accordion-title p {
    color: #fff;
}

.accordion-box-2 .accordion .accordion-content .content-inner {
    background: #111;
    border: none;
}

.accordion-box-2 .accordion .accordion-content .content-inner p {
    color: #999999;
    padding-left: 20px;
    border-left: 1px solid #292929;
}


/* #Au Tabs
================================================== */

.au-tabs {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    border-left: 1px solid #e6e6e6;
}

.au-tabs:after {
    content: "";
    display: table;
    clear: both;
}

.au-tabs li {
    float: left;
}

.au-tabs li.active a {
    color: #333;
    background: #f2f2f2;
}

.au-tabs li a {
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 20px 80px;
}

.au-tabs li a:hover {
    color: #333;
    background: #f2f2f2;
}

@media (max-width: 991px) {
    .au-tabs li {
        width: 100%;
    }
    .au-tabs li a {
        display: block;
    }
}

.au-tabs-1 {
    display: block;
    border: 1px solid #e6e6e6;
}

.au-tabs-1 li.active a {
    border-top: 2px solid #999999;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    margin-bottom: -1px;
    background: #fff;
}

.au-tabs-1 li a {
    padding: 15px 30px;
    border: none;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
}

@media (max-width: 767px) {
    .au-tabs-1 li {
        width: 100%;
    }
    .au-tabs-1 li.active a {
        border: none;
        margin-bottom: 0;
        background: #e6e6e6;
    }
    .au-tabs-1 li a {
        display: block;
    }
}

.au-tab-content-1 {
    padding: 30px 30px 40px 30px;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.au-tab-content-1 p {
    margin: 0;
}

.post-tabs-1 {
    padding: 0;
    margin: 0;
    border-left: 1px solid #e6e6e6;
}

.post-tabs-1 li {
    margin-bottom: 10px;
}

.post-tabs-1 li a {
    display: block;
    padding: 1px 0 0 20px;
    color: #555;
    font-weight: 700;
    border-left: 3px solid transparent;
}

.project-tabs {
    margin: 0;
    padding: 0;
}

.project-tabs:after {
    content: "";
    display: table;
    clear: both;
}

.project-tabs li {
    margin-right: 40px;
    float: left;
}

.project-tabs li span {
    cursor: pointer;
    color: #888888;
}


/* #au-paginations
================================================== */

.au-paginations {
    padding: 0;
    margin: 0;
}

.au-paginations:after {
    content: "";
    display: table;
    clear: both;
}

.au-paginations li:not(.next) {
    margin-right: 10px;
    float: left;
    width: 36px;
    height: 36px;
    border: 1px solid #e6e6e6;
    display: table;
    text-align: center;
}

.au-paginations li:not(.next) a {
    display: table-cell;
    vertical-align: middle;
    font-weight: 700;
    color: #808080;
}

.au-paginations .next {
    display: table;
    text-align: center;
    float: left;
    width: 50px;
    height: 36px;
    margin-left: 10px;
}

.au-paginations .next a {
    font-weight: 700;
    color: #808080;
    display: table-cell;
    vertical-align: middle;
}

.au-paginations .next a i {
    margin-left: 5px;
}


/* #Lists
================================================== */

.sidebar-lists-1 {
    padding: 0;
    margin: 0;
}

.sidebar-lists-1 li:last-child a {
    border-bottom: 1px solid #e6e6e6;
}

.sidebar-lists-1 li a {
    border-top: 1px solid #e6e6e6;
    display: block;
    padding: 8px 0;
    color: #555555;
}

.sidebar-lists-2 li:last-child a {
    border-bottom: none;
}

.sidebar-lists-2 li:after {
    content: "";
    display: table;
    clear: both;
}

.sidebar-lists-2 li a {
    float: left;
    border: none;
}

.sidebar-lists-2 li span {
    float: right;
}


/* #Other
================================================== */

.banner-contact {
    padding: 30px;
}

.banner-contact h4 {
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 20px;
}

.plyr-video {
    cursor: pointer;
    position: relative;
}

.plyr-video .poster {
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.plyr-video .sprite {
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.plyr-video-2 {
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.19);
    border: 5px solid #fff;
}

.gallery-box {
    position: relative;
}

.gallery-box:hover .gallery-overlay {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
}

.gallery-box .gallery-overlay {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
}

.gallery-box .gallery-overlay a {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    color: #fff;
}

.gallery-box .gallery-overlay a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mfp-bg {
    z-index: 100000;
}

.mfp-gallery {
    z-index: 1000000;
}

.mfp-content {
    width: 800px;
}

.tags {
    padding: 0;
    margin: 0;
}

.tags .tag {
    display: inline-block;
    vertical-align: top;
}

.tags .tag a {
    border: 1px solid #e6e6e6;
    display: inline-block;
    padding: 6px 20px;
    color: #999999;
}

.au-timeline {
    position: relative;
    padding: 0;
    margin: 0;
}

.au-timeline:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    height: 100%;
    width: 4px;
    background: #d7e4ed;
}

.au-timeline .date {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.au-timeline .timeline-block {
    z-index: 10;
    position: relative;
}

.au-timeline .timeline-block .icon-dot {
    top: 0;
    left: 44px;
    width: 10px;
    background: #ccc;
    height: 10px;
    border: 3px solid #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.au-timeline .timeline-block .content {
    margin-left: 180px;
}


/* Resposive 480 and 414 */

@media (max-width: 480px) {
    .au-timeline .timeline-block .content {
        margin-left: 100px;
    }
    .flex-li ul {
        display: flex;
        margin: 0;
        padding: 0px 0px;
    }
    .flex-li li {
        margin: 0 0px;
    }
    .clinica {
        text-align: center;
    }
    .title-1 {
        font-size: 2em;
        color: white;
        font-family: 'roboto';
    }
    .title-2 h2 {
        padding-bottom: 20px;
        font-family: 'roboto';
    }
    .bg-clinica {
        /* background: url(../images/bg-papce.jpg); */
        background-color: #fafafa;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .bg-clinica p {
        margin: 0px 20px;
    }
    #dolores p,
    #section0001 p,
    #emilia p,
    #emilia h3,
    #emilia a,
    #contacto h1,
    #contacto p,
    form,
    #consultorios h3,
    #sect001 h3,
    #sect001 p,
    #sect002 h3,
    #sect002 p,
    #sect003 h3,
    #sect003 p,
    #sect004 h3,
    #sect004 p,
    #sect005 h3,
    #sect005 p,
    #causas h3,
    #causas p,
    .footer-nosotros {
        margin: 0px 20px;
    }
    .carousel-2 h3 {
        text-align: center;
    }
    .servi-position {
        position: relative;
        top: 0px;
    }
    .bg-header-2 {
        background: url(../images/landing-bg-2.jpg);
        height: 100%;
        padding-bottom: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .bg-curve {
        position: relative;
        height: 800px;
        background-image: linear-gradient(#090F49, #00C8EE);
        border-bottom-left-radius: 50% 20%;
        border-bottom-right-radius: 50% 20%;
    }
    .r-none {
        display: none;
    }
    .r-block {
        display: block;
    }
    .serv-3-box {
        background-color: #040F44;
        color: #fff;
        padding: 20px 20px;
        border-radius: 5px;
        position: absolute;
        margin-left: 18em;
        margin-top: -213px;
        z-index: 2;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.363), 0 4px 6px -2px rgba(0, 0, 0, 0.363);
    }
    .serv-5 img {
        width: 100%;
        height: auto;
    }
    .serv-6 img {
        width: 100%;
        height: auto;
    }
    .contacto {
        padding-top: 2em;
    }
    .footer-description {
        margin: 0px 40px;
    }
    .footer-design {
        margin: 0px 10px;
        font-size: 8px;
    }
}

.au-toggle .btn-toggle {
    cursor: pointer;
}


/*-------------------------------------
              Base Button
--------------------------------------*/


/* #Button Styles
================================================== */

.au-btn {
    background: #808080;
    font-size: 18px;
    padding: 15px 30px;
    line-height: 1;
    display: inline-block;
    vertical-align: top;
    border: 1px solid #808080;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.au-btn:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.au-btn-large {
    padding: 20px 40px;
}

.au-btn-border {
    border: 2px solid #fff;
    background: transparent;
}

.au-btn-border-light {
    border: 2px solid #fff;
    color: #fff;
}

.au-btn-block {
    text-align: center;
    width: 100%;
}

.au-btn-grey {
    background: #808080;
    color: #fff;
}

.au-btn.disabled {
    cursor: not-allowed;
}

.footer-1 .title {
    margin-bottom: 25px;
}

.footer-1 .title h3 {
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-size: 24px;
}

.bot-footer .block-inner {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bot-footer .block-inner:after {
    content: "";
    display: table;
    clear: both;
}

.bot-footer .block-left span {
    color: #ffffff;
}

.bot-footer .quick-link ul {
    padding: 0;
    margin: 0;
}

.bot-footer .quick-link ul:after {
    content: "";
    display: table;
    clear: both;
}

.bot-footer .quick-link ul li {
    float: left;
    margin-left: 20px;
}

.bot-footer .quick-link ul li a {
    color: #a01c1c;
}

.footer-block-1 {
    padding-right: 20px;
}

.footer-block-1 .logo {
    margin-bottom: 10px;
}

.footer-block-1 .quick-link {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 10px;
}

.footer-block-1 .quick-link ul {
    margin: 0;
    padding: 0;
}

.footer-block-1 .quick-link ul li {
    line-height: 30px;
}

.footer-block-1 .quick-link ul li a {
    color: #e5e5e5;
    font-size: 14px;
}

.footer-block-2 .contact-list {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding-right: 20px;
}

.footer-block-2 .contact-list ul {
    padding: 0;
    margin: 0;
}

.footer-block-2 .contact-list ul li {
    font-size: 14px;
    line-height: 30px;
    color: #aaaaaa;
}

.footer-block-3 {
    padding-left: 20px;
}

.footer-block-3 .social-list ul li {
    margin-right: 5px;
}


/* iPad Pro */

@media (max-width: 1199px) {
    .footer-block-3 {
        padding: 0;
    }
}

@media (max-width: 991px) {
    .footer-block-1 {
        margin-bottom: 30px;
    }
    .footer-block-1 .quick-link {
        border: none;
    }
    .footer-block-2 {
        margin-bottom: 30px;
    }
    .footer-block-2 .contact-list {
        border: none;
    }
    .footer-block-3 {
        padding: 0;
    }
    .bot-footer .block-left,
    .bot-footer .block-right {
        float: none;
    }
    .bot-footer .block-left {
        margin-bottom: 10px;
    }
    .bot-footer .quick-link {
        display: inline-block;
    }
    .bot-footer .quick-link ul li {
        margin-left: 0;
        margin-right: 15px;
    }
}


/* #Form styles
================================================== */

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

.au-select .chosen-container {
    background: #fff;
    vertical-align: top;
}

.au-select .chosen-container .chosen-single {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 20px;
    background: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    height: auto;
}

.au-select .chosen-container .chosen-single span {
    font-size: 15px;
    color: #555;
    line-height: 22px;
}

.au-select .chosen-container .chosen-single div b {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -8px;
}

.au-select .chosen-container .chosen-single div b:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: '\f0d7';
}

.au-select .chosen-container .chosen-drop {
    border-top: 1px solid #cccccc;
    background: #fff;
    left: 0;
}

.au-select .chosen-container .chosen-drop .chosen-results {
    background: #fff;
    padding: 0;
    margin: 0;
}

.au-select .chosen-container .chosen-drop .chosen-results li {
    padding: 10px 20px;
    color: #555;
    font-size: 15px;
}

.au-select .chosen-container .chosen-drop .chosen-results .disabled-result {
    display: none;
}

.au-select .chosen-container.chosen-container-active .chosen-single,
.au-select .chosen-container.chosen-container-active .chosen-drop {
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.au-select-2 .chosen-container .chosen-single {
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
}

.au-select-2 .chosen-container .chosen-single span {
    font-weight: 700;
}

.au-select-2 .chosen-container .chosen-single div b:after {
    content: "\f107";
}

.au-select-2 .chosen-drop {
    border: 1px solid #e1e1e1;
}

.au-input {
    width: 100%;
    border: none;
    padding: 20px;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 22px;
}

.au-input:focus {
    border: none;
}

.au-input-2 {
    border: 1px solid #e1e1e1;
    padding: 10px 15px;
}

.au-input-submit {
    margin-bottom: 10px;
    line-height: 20px;
}

.au-select {
    margin-bottom: 10px;
}

.au-textarea {
    width: 100%;
    min-width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    margin-bottom: 10px;
    border: 1px solid #e1e1e1;
}

.au-form-group {
    margin: 0 -5px;
}

.au-form-group:after {
    content: "";
    display: table;
    clear: both;
}

.au-form-col-3,
.au-form-col-4 {
    float: left;
    padding: 0 5px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .au-form-group .au-form-col-3,
    .au-form-group .au-form-col-4 {
        width: 100%;
    }
}

.help-block {
    display: block !important;
    margin: 0;
    height: 25px;
}

.help-block ul {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.help-block ul li {
    font-size: 13px;
}

.au-form-col-3 {
    width: 25%;
}

.au-form-col-4 {
    width: 33.33%;
}

.float-left {
    float: left;
}

.floating-right {
    float: right;
    position: relative;
    top: -3em;
}


/* #Header Styles
================================================== */

.topbar {
    padding: 13px 0 5px 0;
}

.topbar .block-left {
    float: left;
}

.topbar .block-right {
    float: right;
}

.topbar .text-block {
    color: #888888;
    margin-bottom: 0;
    line-height: 25px;
}

.topbar .chosen-lang {
    display: inline-block;
    height: 25px;
    width: 90px;
    font-size: 13px;
}

.topbar .horizontal-list {
    display: inline-block;
}

.topbar .horizontal-list li {
    margin-left: 5px;
}

.topbar .chosen-container .chosen-single span {
    text-align: right;
    margin-right: 20px;
}

.topbar .chosen-container .chosen-results li {
    text-align: left;
}

.topbar-2 {
    padding: 0;
}


/*header 1*/

.header-1 {
    padding: 25px 0 25px;
    background: #fff;
}

.header-1 .block-left {
    float: left;
}

.header-1 .block-right {
    float: right;
}


/*Responsive*/


/*< 1200*/

@media (max-width: 1199px) {
    .header-1 {
        padding: 20px 0;
    }
    .header-1 .block-left {
        margin-bottom: 15px;
    }
    .header-1 .block-right,
    .header-1 .block-left {
        float: none;
    }
}


/*< 992*/

@media (max-width: 991px) {
    .header-mobile-1 {
        background: #fff;
        padding: 0;
    }
    .header-mobile-1 .top-header {
        padding: 10px 0;
        margin-bottom: 0;
        -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    }
    .header-mobile-1 .top-header:after {
        content: "";
        display: table;
        clear: both;
    }
    .header-mobile-1 .top-header .logo {
        padding-left: 15px;
        float: left;
        margin-top: 5px;
    }
    .header-mobile-1 .top-header .hamburger {
        float: right;
    }
    .header-mobile-1 .top-header .search-widget {
        float: right;
    }
    .header-mobile-1 .contact-widget {
        padding-left: 15px;
        margin-top: 20px;
        float: left;
        width: 100%;
    }
    .header-mobile-2 {
        padding: 0;
    }
    .header-mobile-2 .top-header {
        padding: 10px 0;
        margin-bottom: 0;
        -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    }
    .header-mobile-2 .top-header:after {
        content: "";
        display: table;
        clear: both;
    }
    .header-mobile-2 .top-header .logo {
        padding-left: 15px;
        float: left;
        margin-top: 5px;
    }
    .header-mobile-2 .top-header .hamburger {
        float: right;
    }
    .header-mobile-2 .top-header .search-widget {
        float: right;
    }
    .header-mobile-2 .contact-widget {
        padding-left: 15px;
        margin-top: 20px;
        float: left;
        width: 100%;
    }
}


/*< 768*/

@media (max-width: 767px) {
    .topbar {
        text-align: center;
    }
    .topbar .block-left {
        float: none;
        margin-bottom: 5px;
    }
    .topbar .block-right {
        float: none;
    }
    .header-1 .au-btn {
        display: block;
        text-align: center;
    }
    .header-mobile-1 .top-header .logo {
        margin-top: 15px;
    }
    .header-mobile-1 .top-header .logo img {
        width: 190;
    }
    .header-mobile-2 .top-header .logo {
        margin-top: 15px;
    }
    .header-mobile-2 .top-header .logo img {
        width: 190;
    }
}

.header-fixed {
    background: rgba(0, 0, 0, 0.84);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.header-fixed.bg-gradient {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.8)));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.header-2 {
    /*< 992*/
}

.header-2:after {
    content: "";
    display: table;
    clear: both;
}

.header-2 .contact-widget {
    margin-bottom: 5px;
}

.header-2 .logo {
    margin-top: 25px;
}

.header-2.light .contact-widget .icon-box span,
.header-2.light .navbar-1 ul li a {
    color: #999999;
}

@media (max-width: 1199px) {
    .header-2 .logo {
        margin-top: 30px;
    }
    .header-2 .logo img {
        width: 100px;
    }
}


/*Header 3*/

.header-3 {
    padding: 35px 30px;
}

.header-3:after {
    content: "";
    display: table;
    clear: both;
}

.header-3 .block-left {
    width: 250px;
    float: left;
}

.header-3 .block-left .logo {
    margin-top: 0;
}

.header-3 .contact-widget {
    margin-bottom: 0;
    margin-top: 10px;
}

.header-3 .block-center {
    text-align: center;
    float: left;
    width: -webkit-calc(100% - 250px - 340px);
    width: -moz-calc(100% - 250px - 340px);
    width: calc(100% - 250px - 340px);
}

.header-3 .block-right {
    width: 340px;
    float: left;
}

.header-3.light .contact-widget .icon-box span,
.header-3.light .navbar-1 ul li a {
    color: #ccc;
    text-align: left;
}

@media (max-width: 1599px) {
    .header-3 .block-left {
        width: auto;
    }
    .header-3 .block-center {
        float: right;
        width: auto;
    }
}

@media (max-width: 1199px) {
    .header-3 {
        padding-left: 0;
        padding-right: 0;
    }
    .header-3 .block-left .logo {
        margin-top: 5px;
    }
}


/*< 480*/

@media (max-width: 479px) {
    .header-mobile-1 .top-header .logo {
        margin-top: 20px;
    }
    .header-mobile-1 .top-header .logo img {}
    .header-mobile-2 .top-header .logo {
        margin-top: 20px;
    }
    .header-mobile-2 .top-header .logo img {
        width: 100px;
    }
    .servi-position {
        position: relative;
        top: 1em;
    }
    .floating-right {
        display: none;
    }
    .section-2 {
        display: block;
        text-align: center;
        margin: 0px 20px;
    }
    .section-2 h1 {
        font-size: 30px
    }
    .floating {
        padding-bottom: 30px;
    }
    .text-lead {
        font-size: 10px;
    }
}


/* #Heading Styles
================================================== */

.heading-section-1 {
    padding-bottom: 30px;
}

.heading-section-1 h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #222222;
}

.heading-section-1.light h3 {
    color: #fff;
}

.heading-section-1.dark h3 {
    color: #222;
}


/* .heading-section-3
=================================*/

.heading-section-3 {
    padding-bottom: 40px;
    text-align: center;
}

.heading-section-3 h3 {
    margin-top: 0;
    font-size: 30px;
    font-weight: 700;
    color: #222222;
    position: relative;
    margin-bottom: 15px;
}

.heading-section-3 h3:after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    content: "";
    width: 50px;
    height: 5px;
    display: inline-block;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    border-radius: 2.5px;
    background: #333333;
}

.heading-section-3.light h3 {
    color: #00E4E1;
}

.heading-section-3.dark h3 {
    color: #00E4E1;
}

.heading-section-3.left {
    text-align: left;
}

.heading-section-3.left h3:after {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}


/*heading-section-2
=================================*/

.heading-section-2 {
    padding-bottom: 40px;
    text-align: center;
}

.heading-section-2 p {
    color: #00538B;
}

.heading-section-2 h3 {
    margin-top: 0;
    font-size: 30px;
    font-weight: 700;
    color: #222222;
    position: relative;
    margin-bottom: 15px;
}

.heading-section-2 h3:after {
    position: absolute;
    bottom: -15px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    content: "";
    width: 50px;
    height: 5px;
    display: inline-block;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    border-radius: 2.5px;
    background: #333333;
}

.heading-section-2.light h3 {
    color: #fff;
}

.heading-section-2.dark h3 {
    color: #222;
}

.heading-section-2.left {
    text-align: left;
}

.heading-section-2.left h3:after {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.heading-page-1 {
    color: #fff;
    padding: 70px 0;
}

.heading-page-1 .breadcrumbs {
    padding: 0;
    margin: 0;
}

.heading-page-1 .breadcrumbs:after {
    content: "";
    display: table;
    clear: both;
}

.heading-page-1 .breadcrumbs li {
    float: left;
}

.heading-page-1 .breadcrumbs li:after {
    content: "/";
    margin: 0 5px;
}

.heading-page-1 .breadcrumbs li:last-child {
    pointer-events: none;
}

.heading-page-1 .breadcrumbs li:last-child:after {
    display: none;
}

.heading-page-1 .breadcrumbs li a {
    font-size: 13px;
    color: #fff;
}

.heading-page-1 .title {
    font-weight: 700;
    font-size: 39px;
    margin: 5px 0 0;
}

.heading-page-1.center {
    text-align: center;
}

.heading-page-1.center .breadcrumbs {
    display: inline-block;
}

.heading-page-2 {
    background: #fff;
    padding: 30px 0;
    color: #888888;
}

.heading-page-2 .breadcrumbs li a {
    color: #888;
}


/* #iconbox
================================================== */


/*----green box ---*/

.icon-box-8 {
    display: inline-block;
}

.icon-box-8:after {
    content: "";
    display: table;
    clear: both;
}

.icon-box-8 .icon {
    float: left;
    width: 50px;
    height: 50px;
    border: 1px solid #cccccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: table;
    text-align: center;
}

.icon-box-8 .icon i {
    font-size: 20px;
    color: #25D366;
    display: table-cell;
    vertical-align: middle;
}

.icon-box-8 .content {
    margin-left: 50px;
    padding-left: 10px;
}

.icon-box-8 .content p {
    margin-bottom: 2px;
}

.icon-box-8 .content p:last-child {
    font-size: 16px;
}


/*-----end green box------------*/


/*icon box 1*/

.icon-box-1 {
    margin-bottom: 30px;
    text-align: center;
}

.icon-box-1 .icon {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    background-color: #006CF1;
}

.icon-box-1 .icon i {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 24px;
}

.icon-box-1 .title {
    margin-bottom: 15px;
}

.icon-box-1 .title h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.icon-box-1 .content {
    padding: 0 15px;
}

.icon-box-1 .content p {
    margin: 0;
    color: #666;
}


/*icon box 2*/

.icon-box-2 {
    margin-bottom: 20px;
    float: left;
    display: flex;
}

.icon-box-2 .icon {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
    background-color: #006CF1;
}

.icon-box-2 .icon i {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 24px;
}

.icon-box-2 .title {
    margin-bottom: 15px;
}

.icon-box-2 .title h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.icon-box-2 .content {
    padding: 0 15px;
}

.icon-box-2 .content p {
    margin: 0;
    color: #666;
}

@media (max-width: 767px) {
    .icon-box-2 .content {
        padding: 0 100px;
    }
}

@media (max-width: 479px) {
    .icon-box-2 .content {
        padding: 0;
    }
}


/*icon box 3*/

.icon-box-3 .icon img {
    width: 50%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.icon-box-3 .icon img:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.icon-box-6 {
    text-align: left;
}


/* .icon-box-6 img{
  width: 50px;
} */

.icon-box-6 span {
    color: #333333;
    vertical-align: middle;
}

.icon-box-6 .icon {
    vertical-align: middle;
    padding-right: 5px;
    font-size: 20px;
}

.icon-box-4 {
    text-align: left;
}


/* .icon-box-4 img{
  width: 50px;
} */

.icon-box-4 span {
    color: #fff;
    vertical-align: middle;
}

.icon-box-4 .icon {
    vertical-align: middle;
    padding-right: 5px;
    font-size: 20px;
}

.icon-box-5 {
    margin-bottom: 55px;
}

.icon-box-5 .icon {
    width: 50px;
    height: 50px;
    background: #333;
    display: table;
    text-align: center;
    float: left;
}

.icon-box-5 .icon a {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    font-size: 26px;
}

.icon-box-5 .content {
    margin-left: 50px;
    padding-left: 20px;
}

.icon-box-5 .content .title {
    margin: 0 0 15px;
}

.icon-box-5 .content .title a {
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.icon-box-5 .content p {
    margin: 0;
}

@media (max-width: 767px) {
    .icon-box-5 {
        text-align: center;
    }
    .icon-box-5 .icon {
        margin: 0 auto;
        float: none;
    }
    .icon-box-5 .content {
        margin: 15px 0 0;
        padding: 0;
    }
    .icon-box-5 .content p {
        padding: 0 100px;
    }
}

@media (max-width: 479px) {
    .icon-box-5 .content p {
        padding: 0;
    }
}

.icon-box-6 {
    text-align: center;
    margin-bottom: 60px;
}

.icon-box-6 .icon {
    width: 106px;
    height: 90px;
    display: inline-block;
    margin-bottom: 25px;
}

.icon-box-6 .icon img {
    width: 100%;
}

.icon-box-6 .title {
    margin: 0 0 15px;
}

.icon-box-6 .title a {
    color: #333333;
    font-weight: 700;
    font-size: 20px;
}

.icon-box-6 .content {
    margin: 0;
    padding: 0 20px;
}

.icon-box-7 {
    margin-bottom: 30px;
}

.icon-box-7:after {
    content: "";
    display: table;
    clear: both;
}

.icon-box-7 .icon {
    width: 77px;
    height: 92px;
    float: left;
}

.icon-box-7 .icon img {
    width: 100%;
}

.icon-box-7 .content {
    padding-left: 10px;
    margin-left: 77px;
}

.icon-box-7 .content .top-title {
    margin-bottom: 15px;
    display: inline-block;
    color: #999999;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.icon-box-7 .content .title {
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 20px;
    color: #333333;
    font-weight: 700;
}

.icon-box-7 .content .content {
    margin-bottom: 0;
}


/* #Image Card
================================================== */

.image-card-1 {
    margin-bottom: 35px;
}

.image-card-1 .image {
    margin-bottom: 18px;
    overflow: hidden;
}

.image-card-1 .image img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.image-card-1 .image img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.image-card-1 .title {
    margin-bottom: 15px;
    margin-top: 0;
}

.image-card-1 .title a {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.image-card-1 .content {
    margin-bottom: 15px;
}

.image-card-1 .content p {
    margin: 0;
}

.image-card-1 .link i {
    margin: 0 5px 0 1px;
}

.image-card-1 .link a:hover {
    padding-left: 10px;
}

.image-card-1.dark a {
    color: #333;
}

.image-card-1.light {
    color: #fff;
}

.image-card-1.light .link a {
    color: #e5e5e5;
}

.image-card-1.light .content p {
    color: #e5e5e5;
}

.image-card-2 {
    padding: 45px 30px;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.image-card-2 .card-top {
    margin-bottom: 20px;
}

.image-card-2 .card-top:after {
    content: "";
    display: table;
    clear: both;
}

.image-card-2 .card-top .avatar {
    float: left;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
}

.image-card-2 .card-top .avatar img {
    width: 100%;
}

.image-card-2 .card-top .info {
    margin-left: 50px;
    padding-left: 15px;
}

.image-card-2 .card-top .info .name {
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 5px;
    padding-top: 1px;
}

.image-card-2 .card-top .info .job-title {
    display: block;
    font-size: 13px;
    color: #808080;
}

.image-card-2 .card-body .content p {
    color: #555;
    margin-bottom: 0;
}

.image-card-2:hover {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 2px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 2px rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 2px 2px rgba(0, 0, 0, 0.06);
}

.image-card-2.card-border {
    border: 1px solid #e6e6e6;
}

.image-card-3 {
    margin-bottom: 30px;
}

.image-card-3 .image img {
    width: 100%;
}

.image-card-3 .title {
    margin-bottom: 0;
    width: 100%;
    margin-top: 10px;
}

.image-card-3 .title a {
    background: #e6e6e6;
    display: block;
    padding: 18px;
    font-size: 15px;
    color: #333333;
}

.image-card-3 .title a:after {
    content: "";
    display: table;
    clear: both;
}

.image-card-3 .title span {
    float: left;
}

.image-card-3 .title i {
    float: right;
}

.image-card-4 {
    margin-bottom: 40px;
}

.image-card-4 .image {
    margin-bottom: 15px;
    overflow: hidden;
}

.image-card-4 .image img {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
}

.image-card-4 .image img:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.image-card-4 .date {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e1e1e1;
}

.image-card-4 .date span {
    font-size: 13px;
    color: #808080;
}

.image-card-4 .title {
    margin-bottom: 15px;
    margin-top: 0;
}

.image-card-4 .title a {
    margin: 0;
    color: #333333;
    font-size: 20px;
    font-weight: 700;
}

.image-card-4 .content {
    margin-bottom: 13px;
}

.image-card-4 .content p {
    margin: 0;
}

.image-card-4 .link a:before {
    opacity: 0;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    padding-right: 0;
    margin-left: -5px;
    content: "\f0da";
    font-family: FontAwesome, sans-serif;
}

.image-card-4 .link a:hover {
    padding-left: 10px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

.image-card-4 .link a:hover:before {
    opacity: 1;
    padding-right: 8px;
}

.image-card-5 {
    margin-bottom: 30px;
}

.image-card-5.light {
    color: #fff;
}

.image-card-5.dark .card-bot .info .name {
    color: #222;
}

.image-card-5.dark .card-bot .info .job-title {
    color: #808080;
}

.image-card-5.center {
    text-align: center;
}

.image-card-5 .card-body {
    margin-bottom: 45px;
    padding: 0 150px;
}

.image-card-5 .card-body p {
    margin: 0;
}

.image-card-5 .card-bot {
    display: inline-block;
}

.image-card-5 .card-bot:after {
    content: "";
    display: table;
    clear: both;
}

.image-card-5 .card-bot .avatar {
    float: left;
    width: 80px;
    height: 80px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    border: 2px solid #fff;
}

.image-card-5 .card-bot .avatar img {
    width: 100%;
}

.image-card-5 .card-bot .info {
    text-align: left;
    margin-left: 80px;
    padding-left: 20px;
    padding-top: 10px;
}

.image-card-5 .card-bot .info .name {
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.image-card-5 .card-bot .info .job-title {
    display: block;
    font-size: 13px;
}

@media (max-width: 479px) {
    .image-card-5 .card-body {
        padding: 0 50px;
    }
}

.image-card-6 {
    margin-bottom: 30px;
}

.image-card-6 .image {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
}

.image-card-6 .image img {
    width: 100%;
}

.image-card-6 .name {
    margin: 0 0 10px;
}

.image-card-6 .name a {
    font-size: 18px;
    color: #333333;
    font-weight: 700;
}

.image-card-6 .job-title {
    margin-bottom: 15px;
}

.image-card-6 .job-title span {
    color: #ac907f;
}

.image-card-6 .content {
    margin-bottom: 25px;
}

.image-card-6 .content p {
    margin-bottom: 0;
}

.image-card-6 .socials {
    padding: 0;
    margin: 0 0 10px;
}

.image-card-6 .socials:after {
    content: "";
    display: table;
    clear: both;
}

.image-card-6 .socials li {
    margin-right: 15px;
    float: left;
}

.image-card-6 .socials li a {
    color: #333;
}

.image-card-6 .socials li a:hover.fa-facebook-square {
    color: #3b5998;
}

.image-card-6 .socials li a:hover.fa-twitter {
    color: #006CF1;
}

.image-card-6 .socials li a:hover.fa-linkedin-square {
    color: #007bb6;
}

.image-card-6 .phone span {
    color: #333333;
}

.image-card-7 .image {
    padding-right: 30px;
}

.image-card-7 .image img {
    width: 100%;
}

.image-card-7 .title {
    margin: 60px 0 40px;
}

.image-card-7 .title a {
    font-weight: 700;
    color: #333333;
}

@media (max-width: 1199px) {
    .image-card-7 .image {
        padding-right: 0;
    }
    .image-card-7 .title {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

.image-card-8 {
    margin-bottom: 40px;
}

.image-card-8 .image {
    overflow: hidden;
}

.image-card-8 .image img {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.image-card-8 .image img:hover {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.image-card-8 .title {
    margin: 10px 0 15px;
}

.image-card-8 .title a {
    font-weight: 700;
    color: #333;
    font-size: 20px;
}

.image-card-8 .subject {
    color: #888888;
}

.image-card-9 {
    margin-bottom: 30px;
}

.image-card-9 .image {
    width: 70px;
    height: 70px;
    float: left;
}

.image-card-9 .image img {
    width: 100%;
}

.image-card-9 .content {
    margin-left: 70px;
    padding-left: 15px;
}

.image-card-9 .content .title {
    margin: 0 0 15px;
}

.image-card-9 .content .title a {
    font-size: 15px;
    font-weight: 700;
    color: #555;
    display: inline-block;
    vertical-align: top;
}

.image-card-9 .content .subtitle {
    color: #808080;
    font-size: 13px;
}


/* #Au Navbar
================================================== */

.au-navbar {
    display: inline-block;
    vertical-align: top;
}

.au-navbar .au-navbar-menu {
    padding: 0;
    margin: 0;
}

.au-navbar .au-navbar-menu:after {
    content: "";
    display: table;
    clear: both;
}

.au-navbar .au-navbar-menu li {
    float: left;
}

.au-navbar .au-navbar-menu li a {
    display: inline-block;
}

.au-navbar .au-navbar-menu li.drop {
    position: relative;
    z-index: 10000;
}

.au-navbar .au-navbar-menu li.drop .drop-menu {
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    margin: 0;
    padding: 0;
}

.au-navbar .au-navbar-menu li.drop .drop-menu.bottom-right {
    top: 110%;
    left: 0;
}

.au-navbar .au-navbar-menu li.drop .drop-menu.bottom-left {
    top: 110%;
    right: 0;
}

.au-navbar .au-navbar-menu li.drop .drop-menu.top-left {
    top: 0;
    right: 110%;
}

.au-navbar .au-navbar-menu li.drop .drop-menu.top-right {
    top: 0;
    margin-left: 1px;
    left: 110%;
}

.au-navbar .au-navbar-menu li.drop .drop-menu li {
    float: none;
}

.au-navbar .au-navbar-menu li.drop .drop-menu li a {
    display: block;
}

.au-navbar .au-navbar-menu li.drop:hover>.drop-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.au-navbar .au-navbar-menu li.drop:hover>.drop-menu.bottom-right,
.au-navbar .au-navbar-menu li.drop:hover>.drop-menu.bottom-left {
    top: 100%;
}

.au-navbar .au-navbar-menu li.drop:hover>.drop-menu.top-left {
    right: 100%;
}

.au-navbar .au-navbar-menu li.drop:hover>.drop-menu.top-right {
    left: 100%;
}

.navbar-1>ul>li {
    margin-right: 35px;
}

.navbar-1 ul li {
    line-height: 20px;
}

.navbar-1 ul li a {
    color: #333;
    font-size: 16px;
    padding: 20px 0;
    text-align: left;
}

.navbar-1 ul li.drop>a:after {
    font-family: FontAwesome, sans-serif;
    content: '\f107';
    margin-left: 3px;
    line-height: 1;
}

.navbar-1 ul li.drop .drop-menu {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 260px;
}

.navbar-1 ul li.drop .drop-menu li:last-child>a {
    border-bottom: none;
}

.navbar-1 ul li.drop .drop-menu li a {
    font-size: 15px;
    padding: 13px 20px;
}

.navbar-1 ul li.drop .drop-menu li.drop>a:after {
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    float: right;
    line-height: 1;
}


/* Timeline
========================================*/

.history-tl-container {
    font-family: "Roboto", sans-serif;
    width: 50%;
    margin: auto;
    display: block;
    position: relative;
}

.history-tl-container ul.tl {
    margin: 20px 0;
    padding: 0;
    display: inline-block;
}

.history-tl-container ul.tl li {
    list-style: none;
    margin: auto;
    margin-left: 200px;
    min-height: 50px;
    /*background: rgba(255,255,0,0.1);*/
    border-left: 1px dashed #86D6FF;
    padding: 0 0 50px 30px;
    position: relative;
}

.history-tl-container ul.tl li:last-child {
    border-left: 0;
}

.history-tl-container ul.tl li::before {
    position: absolute;
    left: -18px;
    top: -5px;
    content: " ";
    border: 8px solid rgba(255, 255, 255, 0.74);
    border-radius: 500%;
    background: #258CC7;
    height: 20px;
    width: 20px;
    transition: all 500ms ease-in-out;
}

.history-tl-container ul.tl li:hover::before {
    border-color: #0052ec;
    transition: all 1000ms ease-in-out;
}

ul.tl li .item-title {}

ul.tl li .item-detail {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
}

ul.tl li .timestamp {
    color: #8D8D8D;
    position: absolute;
    width: 100px;
    left: -50%;
    text-align: right;
    font-size: 12px;
}


/* navbar 7
==========================================
*/

.logo-ideas {
    width: 190px;
    padding-top: 20px;
}

.btn-border {
    background-color: rgba(255, 255, 255, 0);
    border-color: #FFC107;
    border-radius: 25px;
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
}

.btn-border span {
    color: #FFC107;
    font-family: 'roboto';
}

.btn-border:hover {
    background-color: #FFC107;
    border-radius: 25px;
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
    transition: .9s;
}

.btn-border span:hover {
    color: #fff;
    font-family: 'roboto';
}

.btn-head {
    background-color: rgba(255, 255, 255, 0);
    background-color: #FFC107;
    border-radius: 25px;
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
}

.btn-head span {
    color: rgb(255, 255, 255);
    font-family: 'roboto';
}

.btn-head:hover {
    background-color: #FFC107;
    border-radius: 25px;
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
    transition: .9s;
}

.btn-head span:hover {
    color: #fff;
    font-family: 'roboto';
}

.navbar-7 {
    padding-bottom: 0px;
}

.navbar-7>ul>li {
    margin-right: 35px;
}

.navbar-7 ul li {
    line-height: 0px;
}

.navbar-7 ul li a {
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    /* padding: 20px 0; */
    text-align: left;
}

.navbar-7 ul li.drop>a:after {
    font-family: FontAwesome, 'Montserrat';
    content: '\f107';
    margin-left: 3px;
    line-height: 1;
}

.navbar-7 ul li.drop .drop-menu {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 260px;
}

.navbar-7 ul li.drop .drop-menu li:last-child>a {
    border-bottom: none;
}

.navbar-7 ul li.drop .drop-menu li a {
    font-size: 15px;
    padding: 13px 20px;
}

.navbar-7 ul li.drop .drop-menu li.drop>a:after {
    content: '\f105';
    font-family: FontAwesome, 'Montserrat';
    float: right;
    line-height: 1;
}


/* navbar 5*/

.navbar-5>ul>li {
    margin-right: 35px;
}

.navbar-5 ul li {
    line-height: 20px;
}

.navbar-5 ul li a {
    color: #fff;
    font-size: 16px;
    padding: 20px 0;
    text-align: left;
}

.navbar-5 ul li.drop>a:after {
    font-family: FontAwesome, sans-serif;
    content: '\f107';
    margin-left: 3px;
    line-height: 1;
}

.navbar-5 ul li.drop .drop-menu {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 260px;
}

.navbar-5 ul li.drop .drop-menu li:last-child>a {
    border-bottom: none;
}

.navbar-5 ul li.drop .drop-menu li a {
    font-size: 15px;
    padding: 13px 20px;
}

.navbar-5 ul li.drop .drop-menu li.drop>a:after {
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    float: right;
    line-height: 1;
}


/* end navbar 5*/

.navbar-2>ul>li {
    margin-left: 15px;
    margin-right: 0;
}

.navbar-2 {
    margin-top: 40px;
}

.navbar-2 ul li {
    line-height: 0px;
}

.navbar-2 ul li a {
    color: #333;
    font-size: 12px;
    text-transform: uppercase;
    /* padding: 20px 0; */
    text-align: left;
}

.navbar-2 ul li a:hover {
    color: #FFC107;
}

.navbar-2 ul li.drop .drop-menu {
    background: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    width: 260px;
}

.navbar-2 ul li.drop .drop-menu li:last-child>a {
    border-bottom: none;
}

.navbar-2 ul li.drop .drop-menu li a {
    font-size: 15px;
    padding: 13px 20px;
}

.navbar-2 ul li.drop .drop-menu li.drop>a:after {
    content: '\f105';
    font-family: FontAwesome, 'Montserrat';
    float: right;
    line-height: 1;
}

.responsive {
    width: 100%;
    position: relative;
    height: auto;
}


/*Navbar menu mobile*/

.au-navbar-mobile {
    z-index: 10000;
    width: 100%;
    float: left;
    display: none;
}

.au-navbar-mobile .au-navbar-menu {
    padding: 0;
    margin: 0;
}

.au-navbar-mobile .au-navbar-menu li a {
    display: block;
}

.au-navbar-mobile .au-navbar-menu li.drop .drop-menu {
    display: none;
    padding: 0;
}

.navbar-mobile-1 ul.au-navbar-menu li {
    position: relative;
}

.navbar-mobile-1 ul.au-navbar-menu li a {
    color: #fff;
    font-size: 16px;
    padding: 14px 30px;
    font-weight: 700;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop>.arrow {
    width: 50px;
    height: 50px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop>.arrow i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop>.arrow i:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 11px;
    height: 3px;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop>.arrow i:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 3px;
    height: 11px;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop>.clicked {
    color: #f1c40f;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-mobile-1 ul.au-navbar-menu li.drop .drop-menu {
    background: #fff;
    width: 100%;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop .drop-menu li a {
    font-size: 15px;
    font-weight: 400;
    padding: 15px 40px;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop .drop-menu .drop .drop-menu {
    display: block;
}

.navbar-mobile-1 ul.au-navbar-menu li.drop .drop-menu .drop li a {
    padding: 15px 50px;
}


/* navbar-mobile-5
===================================================*/

.navbar-mobile-5 ul.au-navbar-menu li {
    position: relative;
}

.navbar-mobile-5 ul.au-navbar-menu li a {
    color: #061366;
    font-size: 16px;
    padding: 14px 30px;
    font-weight: 700;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop>.arrow {
    width: 50px;
    height: 50px;
    color: #333;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop>.arrow i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop>.arrow i:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 11px;
    height: 3px;
    background: #061366;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop>.arrow i:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    width: 3px;
    height: 11px;
    background: #061366;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop>.clicked {
    color: #f1c40f;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.navbar-mobile-5 ul.au-navbar-menu li.drop .drop-menu {
    background: #061366;
    width: 100%;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop .drop-menu li a {
    font-size: 15px;
    font-weight: 400;
    padding: 15px 40px;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop .drop-menu .drop .drop-menu {
    display: block;
}

.navbar-mobile-5 ul.au-navbar-menu li.drop .drop-menu .drop li a {
    padding: 15px 50px;
}


/* #Slider
================================================== */

.slider-1 {
    background: #fff;
}

.slider-1 .tp-shapewrapper {
    z-index: 0 !important;
}

.slider-1 .tparrows {
    width: 40px;
    height: 90px;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    /* margin-top: -45px; */
    background: rgba(0, 0, 0, 0.2);
}

.slider-1 .tparrows:before {
    font-size: 18px;
    font-family: FontAwesome, sans-serif;
    width: 40px;
    height: 90px;
    line-height: 90px;
}

.slider-1 .tparrows.tp-leftarrow:before {
    content: '\f053';
    z-index: 0;
}

.slider-1 .tparrows.tp-rightarrow {
    left: auto !important;
    right: 0;
}

.slider-1 .tparrows.tp-rightarrow:before {
    content: '\f054';
}

.slider-1 .caption-1 {
    line-height: 1;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    text-transform: none;
    text-align: center!important;
    white-space: normal;
}

.slider-1 .caption-2 {
    white-space: normal;
    line-height: 1.5;
    font-size: 24px;
    padding-top: 20px;
    text-align: center !important;
    color: #e5e5e5;
}

.slider-1 .caption-3 {
    text-align: center !important;
}

.slider-1 .caption-3 .au-btn-white:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
}

.slider-1 .item-1.dark .caption-1,
.slider-1 .item-1.dark .caption-2 {
    color: #222222;
}

.slider-1 .item-1.left .caption-1,
.slider-1 .item-1.left .caption-2,
.slider-1 .item-1.left .caption-3 {
    text-align: left !important;
}

.slider-2 .item-1 .caption-1 {
    font-size: 60px;
}


/* #Slider 2
================================================== */

.slider-2 {
    background: #fff;
}

.slider-2 .tp-shapewrapper {
    z-index: 0 !important;
}

.slider-2 .tparrows {
    width: 40px;
    height: 90px;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
    transform: none !important;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.slider-2 .tparrows:before {
    font-size: 18px;
    font-family: FontAwesome, sans-serif;
    width: 40px;
    height: 90px;
    line-height: 90px;
}

.slider-2 .tparrows.tp-leftarrow:before {
    content: '\f053';
    z-index: 0;
}

.slider-2 .tparrows.tp-rightarrow {
    left: auto !important;
    right: 0;
}

.slider-2 .tparrows.tp-rightarrow:before {
    content: '\f054';
}

.slider-2 .caption-1 {
    line-height: 1;
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    text-transform: none;
    text-align: center!important;
    white-space: normal;
}

.slider-2 .caption-2 {
    white-space: normal;
    line-height: 1.5;
    font-size: 24px;
    padding-top: 20px;
    text-align: center !important;
    color: #e5e5e5;
}

.slider-2 .caption-3 {
    text-align: center !important;
}

.slider-2 .caption-3 .au-btn-white:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
}

.slider-2 .item-1.dark .caption-1,
.slider-2 .item-1.dark .caption-2 {
    color: #222222;
}

.slider-2 .item-1.left .caption-1,
.slider-2 .item-1.left .caption-2,
.slider-2 .item-1.left .caption-3 {
    text-align: left !important;
}


/* #Widget
================================================== */


/*Search widget*/

.search-widget-1 {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.search-widget-1.search-widget-open .icon-search i {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.search-widget-1.search-widget-open .icon-search:after {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}

.search-widget-1.search-widget-open input {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    visibility: visible;
}

.search-widget-1 .icon-search {
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.05);
    display: table;
    text-align: center;
}

.search-widget-1 .icon-search i {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: table-cell;
    vertical-align: middle;
    font-size: 20px;
    opacity: 1;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.search-widget-1 .icon-search:after {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    font-family: FontAwesome, sans-serif;
    content: '\f00d';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.search-widget-1 input {
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    height: 60px;
    padding: 20px;
    background: #fff;
    z-index: 1000;
}

.search-widget-1 input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #999;
}

.search-widget-1 input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999;
    opacity: 1;
}

.search-widget-1 input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999;
    opacity: 1;
}

.search-widget-1 input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999;
}

.search-widget-1 input:-ms-input-placeholder {
    /* Microsoft Edge */
    color: #999;
}

.search-widget-2 {
    position: relative;
}

.search-widget-2 .icon-search {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    display: table;
    text-align: center;
    background: #333;
}

.search-widget-2 .icon-search a {
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}

.search-widget-2 input {
    width: 100%;
    padding: 13px 20px;
    border: 1px solid #e6e6e6;
}


/* #Contact Widget*/

.contact-widget-1 {
    /*< 992*/
}

.contact-widget-1 .icon-box {
    margin-right: 30px;
}

@media (max-width: 991px) {
    .contact-widget-1 .icon-box {
        margin-bottom: 15px;
    }
}

.contact-widget-2:after {
    content: "";
    display: table;
    clear: both;
}

.contact-widget-2 .block-left {
    margin-top: 13px;
}

.contact-widget-2 .block-right .horizontal-list {
    margin-top: 13px;
    margin-bottom: 3px;
}

.contact-widget-2 .icon-box {
    display: inline-block;
    margin-right: 40px;
}

.contact-widget-3 {
    text-align: right;
}

.contact-widget-3 .icon-box {
    margin-top: 15px;
}

.contact-widget-3 .icon-box span {
    color: #555555;
}


/* #Helper class
================================================== */

.show {
    display: block !important;
}

.hidden {
    display: none !important;
}

.relative {
    position: relative;
}

.clear-list-style {
    padding: 0;
    margin: 0;
    list-style: none;
}

.b-t-0 {
    border-top: none;
}

.b-b-0 {
    border-bottom: none;
}

.b-r-0 {
    border-right: none;
}

.b-l-0 {
    border-left: none;
}

.b-0 {
    border: none;
}

.p-b-0 {
    padding-bottom: 0px;
}

.p-t-0 {
    padding-top: 0px;
}

.p-r-0 {
    padding-right: 0px;
}

.p-l-0 {
    padding-left: 0px;
}

.m-b-0 {
    margin-bottom: 0px;
}

.m-t-0 {
    margin-top: 0px;
}

.m-r-0 {
    margin-right: 0px;
}

.m-l-0 {
    margin-left: 0px;
}

.m-0 {
    margin: 0px;
}

.p-0 {
    padding: 0px;
}

.p-b-5 {
    padding-bottom: 5px;
}

.p-t-5 {
    padding-top: 5px;
}

.p-r-5 {
    padding-right: 5px;
}

.p-l-5 {
    padding-left: 5px;
}

.m-b-5 {
    margin-bottom: 5px;
}

.m-t-5 {
    margin-top: 5px;
}

.m-r-5 {
    margin-right: 5px;
}

.m-l-5 {
    margin-left: 5px;
}

.m-5 {
    margin: 5px;
}

.p-5 {
    padding: 5px;
}

.p-b-10 {
    padding-bottom: 10px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-r-10 {
    padding-right: 10px;
}

.p-l-10 {
    padding-left: 10px;
}

.m-b-10 {
    margin-bottom: 10px;
}

.m-t-10 {
    margin-top: 10px;
}

.m-r-10 {
    margin-right: 10px;
}

.m-l-10 {
    margin-left: 10px;
}

.m-10 {
    margin: 10px;
}

.p-10 {
    padding: 10px;
}

.p-b-15 {
    padding-bottom: 15px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-r-15 {
    padding-right: 15px;
}

.p-l-15 {
    padding-left: 15px;
}

.m-b-15 {
    margin-bottom: 15px;
}

.m-t-15 {
    margin-top: 15px;
}

.m-r-15 {
    margin-right: 15px;
}

.m-l-15 {
    margin-left: 15px;
}

.m-15 {
    margin: 15px;
}

.p-15 {
    padding: 15px;
}

.p-b-20 {
    padding-bottom: 20px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-r-20 {
    padding-right: 20px;
}

.p-l-20 {
    padding-left: 20px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-t-20 {
    margin-top: 20px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-l-20 {
    margin-left: 20px;
}

.m-20 {
    margin: 20px;
}

.p-20 {
    padding: 20px;
}

.p-b-25 {
    padding-bottom: 25px;
}

.p-t-25 {
    padding-top: 25px;
}

.p-r-25 {
    padding-right: 25px;
}

.p-l-25 {
    padding-left: 25px;
}

.m-b-25 {
    margin-bottom: 25px;
}

.m-t-25 {
    margin-top: 25px;
}

.m-r-25 {
    margin-right: 25px;
}

.m-l-25 {
    margin-left: 25px;
}

.m-25 {
    margin: 25px;
}

.p-25 {
    padding: 25px;
}

.p-b-30 {
    padding-bottom: 30px;
}

.p-t-30 {
    padding-top: 30px;
}

.p-r-30 {
    padding-right: 30px;
}

.p-l-30 {
    padding-left: 30px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-t-30 {
    margin-top: 30px;
}

.m-r-30 {
    margin-right: 30px;
}

.m-l-30 {
    margin-left: 30px;
}

.m-30 {
    margin: 30px;
}

.p-30 {
    padding: 30px;
}

.p-b-35 {
    padding-bottom: 35px;
}

.p-t-35 {
    padding-top: 35px;
}

.p-r-35 {
    padding-right: 35px;
}

.p-l-35 {
    padding-left: 35px;
}

.m-b-35 {
    margin-bottom: 35px;
}

.m-t-35 {
    margin-top: 35px;
}

.m-r-35 {
    margin-right: 35px;
}

.m-l-35 {
    margin-left: 35px;
}

.m-35 {
    margin: 35px;
}

.p-35 {
    padding: 35px;
}

.p-b-40 {
    padding-bottom: 60px;
}

.p-t-40 {
    padding-top: 40px;
}

.p-r-40 {
    padding-right: 40px;
}

.p-l-40 {
    padding-left: 40px;
}

.m-b-40 {
    margin-bottom: 40px;
}

.m-t-40 {
    margin-top: 40px;
}

.m-r-40 {
    margin-right: 40px;
}

.m-l-40 {
    margin-left: 40px;
}

.m-40 {
    margin: 40px;
}

.p-40 {
    padding: 40px;
}

.p-b-45 {
    padding-bottom: 45px;
}

.p-t-45 {
    padding-top: 45px;
}

.p-r-45 {
    padding-right: 45px;
}

.p-l-45 {
    padding-left: 45px;
}

.m-b-45 {
    margin-bottom: 45px;
}

.m-t-45 {
    margin-top: 45px;
}

.m-r-45 {
    margin-right: 45px;
}

.m-l-45 {
    margin-left: 45px;
}

.m-45 {
    margin: 45px;
}

.p-45 {
    padding: 45px;
}

.p-b-50 {
    padding-bottom: 50px;
}

.p-t-50 {
    padding-top: 50px;
}

.p-r-50 {
    padding-right: 50px;
}

.p-l-50 {
    padding-left: 50px;
}

.m-b-50 {
    margin-bottom: 50px;
}

.m-t-50 {
    margin-top: 50px;
}

.m-r-50 {
    margin-right: 50px;
}

.m-l-50 {
    margin-left: 50px;
}

.m-50 {
    margin: 50px;
}

.p-50 {
    padding: 50px;
}

.p-b-55 {
    padding-bottom: 55px;
}

.p-t-55 {
    padding-top: 55px;
}

.p-r-55 {
    padding-right: 55px;
}

.p-l-55 {
    padding-left: 55px;
}

.m-b-55 {
    margin-bottom: 55px;
}

.m-t-55 {
    margin-top: 55px;
}

.m-r-55 {
    margin-right: 55px;
}

.m-l-55 {
    margin-left: 55px;
}

.m-55 {
    margin: 55px;
}

.p-55 {
    padding: 55px;
}

.p-b-60 {
    padding-bottom: 60px;
}

.p-t-60 {
    padding-top: 60px;
}

.p-r-60 {
    padding-right: 60px;
}

.p-l-60 {
    padding-left: 60px;
}

.m-b-60 {
    margin-bottom: 60px;
}

.m-t-60 {
    margin-top: 60px;
}

.m-r-60 {
    margin-right: 60px;
}

.m-l-60 {
    margin-left: 60px;
}

.m-60 {
    margin: 60px;
}

.p-60 {
    padding: 60px;
}

.p-b-65 {
    padding-bottom: 65px;
}

.p-t-65 {
    padding-top: 65px;
}

.p-r-65 {
    padding-right: 65px;
}

.p-l-65 {
    padding-left: 65px;
}

.m-b-65 {
    margin-bottom: 65px;
}

.m-t-65 {
    margin-top: 65px;
}

.m-r-65 {
    margin-right: 65px;
}

.m-l-65 {
    margin-left: 65px;
}

.m-65 {
    margin: 65px;
}

.p-65 {
    padding: 65px;
}

.p-b-70 {
    padding-bottom: 70px;
}

.p-t-70 {
    padding-top: 70px;
}

.p-r-70 {
    padding-right: 70px;
}

.p-l-70 {
    padding-left: 70px;
}

.m-b-70 {
    margin-bottom: 70px;
}

.m-t-70 {
    margin-top: 70px;
}

.m-r-70 {
    margin-right: 70px;
}

.m-l-70 {
    margin-left: 70px;
}

.m-70 {
    margin: 70px;
}

.p-70 {
    padding: 70px;
}

.p-b-75 {
    padding-bottom: 75px;
}

.p-t-75 {
    padding-top: 75px;
}

.p-r-75 {
    padding-right: 75px;
}

.p-l-75 {
    padding-left: 75px;
}

.m-b-75 {
    margin-bottom: 75px;
}

.m-t-75 {
    margin-top: 75px;
}

.m-r-75 {
    margin-right: 75px;
}

.m-l-75 {
    margin-left: 75px;
}

.m-75 {
    margin: 75px;
}

.p-75 {
    padding: 75px;
}

.p-b-80 {
    padding-bottom: 80px;
}

.p-t-80 {
    padding-top: 80px;
}

.p-r-80 {
    padding-right: 80px;
}

.p-l-80 {
    padding-left: 80px;
}

.m-b-80 {
    margin-bottom: 80px;
}

.m-t-80 {
    margin-top: 80px;
}

.m-r-80 {
    margin-right: 80px;
}

.m-l-80 {
    margin-left: 80px;
}

.m-80 {
    margin: 80px;
}

.p-80 {
    padding: 80px;
}

.p-b-85 {
    padding-bottom: 85px;
}

.p-t-85 {
    padding-top: 85px;
}

.p-r-85 {
    padding-right: 85px;
}

.p-l-85 {
    padding-left: 85px;
}

.m-b-85 {
    margin-bottom: 85px;
}

.m-t-85 {
    margin-top: 85px;
}

.m-r-85 {
    margin-right: 85px;
}

.m-l-85 {
    margin-left: 85px;
}

.m-85 {
    margin: 85px;
}

.p-85 {
    padding: 85px;
}

.p-b-90 {
    padding-bottom: 90px;
}

.p-t-90 {
    padding-top: 90px;
}

.p-r-90 {
    padding-right: 90px;
}

.p-l-90 {
    padding-left: 90px;
}

.m-b-90 {
    margin-bottom: 90px;
}

.m-t-90 {
    margin-top: 90px;
}

.m-r-90 {
    margin-right: 90px;
}

.m-l-90 {
    margin-left: 90px;
}

.m-90 {
    margin: 90px;
}

.p-90 {
    padding: 90px;
}

.p-b-95 {
    padding-bottom: 95px;
}

.p-t-95 {
    padding-top: 95px;
}

.p-r-95 {
    padding-right: 95px;
}

.p-l-95 {
    padding-left: 95px;
}

.m-b-95 {
    margin-bottom: 95px;
}

.m-t-95 {
    margin-top: 95px;
}

.m-r-95 {
    margin-right: 95px;
}

.m-l-95 {
    margin-left: 95px;
}

.m-95 {
    margin: 95px;
}

.p-95 {
    padding: 95px;
}

.p-b-100 {
    padding-bottom: 100px;
}

.p-t-100 {
    padding-top: 100px;
}

.p-r-100 {
    padding-right: 100px;
}

.p-l-100 {
    padding-left: 100px;
}

.m-b-100 {
    margin-bottom: 100px;
}

.m-t-100 {
    margin-top: 100px;
}

.m-r-100 {
    margin-right: 100px;
}

.m-l-100 {
    margin-left: 100px;
}

.m-100 {
    margin: 100px;
}

.p-100 {
    padding: 100px;
}

.p-b-105 {
    padding-bottom: 105px;
}

.p-t-105 {
    padding-top: 105px;
}

.p-r-105 {
    padding-right: 105px;
}

.p-l-105 {
    padding-left: 105px;
}

.m-b-105 {
    margin-bottom: 105px;
}

.m-t-105 {
    margin-top: 105px;
}

.m-r-105 {
    margin-right: 105px;
}

.m-l-105 {
    margin-left: 105px;
}

.m-105 {
    margin: 105px;
}

.p-105 {
    padding: 105px;
}

.p-b-110 {
    padding-bottom: 110px;
}

.p-t-110 {
    padding-top: 110px;
}

.p-r-110 {
    padding-right: 110px;
}

.p-l-110 {
    padding-left: 110px;
}

.m-b-110 {
    margin-bottom: 110px;
}

.m-t-110 {
    margin-top: 110px;
}

.m-r-110 {
    margin-right: 110px;
}

.m-l-110 {
    margin-left: 110px;
}

.m-110 {
    margin: 110px;
}

.p-110 {
    padding: 110px;
}

.p-b-115 {
    padding-bottom: 115px;
}

.p-t-115 {
    padding-top: 115px;
}

.p-r-115 {
    padding-right: 115px;
}

.p-l-115 {
    padding-left: 115px;
}

.m-b-115 {
    margin-bottom: 115px;
}

.m-t-115 {
    margin-top: 115px;
}

.m-r-115 {
    margin-right: 115px;
}

.m-l-115 {
    margin-left: 115px;
}

.m-115 {
    margin: 115px;
}

.p-115 {
    padding: 115px;
}

.p-b-120 {
    padding-bottom: 120px;
}

.p-t-120 {
    padding-top: 120px;
}

.p-r-120 {
    padding-right: 120px;
}

.p-l-120 {
    padding-left: 120px;
}

.m-b-120 {
    margin-bottom: 120px;
}

.m-t-120 {
    margin-top: 120px;
}

.m-r-120 {
    margin-right: 120px;
}

.m-l-120 {
    margin-left: 120px;
}

.m-120 {
    margin: 120px;
}

.p-120 {
    padding: 120px;
}

.p-b-125 {
    padding-bottom: 125px;
}

.p-t-125 {
    padding-top: 125px;
}

.p-r-125 {
    padding-right: 125px;
}

.p-l-125 {
    padding-left: 125px;
}

.m-b-125 {
    margin-bottom: 125px;
}

.m-t-125 {
    margin-top: 125px;
}

.m-r-125 {
    margin-right: 125px;
}

.m-l-125 {
    margin-left: 125px;
}

.m-125 {
    margin: 125px;
}

.p-125 {
    padding: 125px;
}

.p-b-130 {
    padding-bottom: 130px;
}

.p-t-130 {
    padding-top: 130px;
}

.p-r-130 {
    padding-right: 130px;
}

.p-l-130 {
    padding-left: 130px;
}

.m-b-130 {
    margin-bottom: 130px;
}

.m-t-130 {
    margin-top: 130px;
}

.m-r-130 {
    margin-right: 130px;
}

.m-l-130 {
    margin-left: 130px;
}

.m-130 {
    margin: 130px;
}

.p-130 {
    padding: 130px;
}

.p-b-135 {
    padding-bottom: 135px;
}

.p-t-135 {
    padding-top: 135px;
}

.p-r-135 {
    padding-right: 135px;
}

.p-l-135 {
    padding-left: 135px;
}

.m-b-135 {
    margin-bottom: 135px;
}

.m-t-135 {
    margin-top: 135px;
}

.m-r-135 {
    margin-right: 135px;
}

.m-l-135 {
    margin-left: 135px;
}

.m-135 {
    margin: 135px;
}

.p-135 {
    padding: 135px;
}

.p-b-140 {
    padding-bottom: 140px;
}

.p-t-140 {
    padding-top: 140px;
}

.p-r-140 {
    padding-right: 140px;
}

.p-l-140 {
    padding-left: 140px;
}

.m-b-140 {
    margin-bottom: 140px;
}

.m-t-140 {
    margin-top: 140px;
}

.m-r-140 {
    margin-right: 140px;
}

.m-l-140 {
    margin-left: 140px;
}

.m-140 {
    margin: 140px;
}

.p-140 {
    padding: 140px;
}

.p-b-145 {
    padding-bottom: 145px;
}

.p-t-145 {
    padding-top: 145px;
}

.p-r-145 {
    padding-right: 145px;
}

.p-l-145 {
    padding-left: 145px;
}

.m-b-145 {
    margin-bottom: 145px;
}

.m-t-145 {
    margin-top: 145px;
}

.m-r-145 {
    margin-right: 145px;
}

.m-l-145 {
    margin-left: 145px;
}

.m-145 {
    margin: 145px;
}

.p-145 {
    padding: 145px;
}

.p-b-150 {
    padding-bottom: 150px;
}

.p-t-150 {
    padding-top: 150px;
}

.p-r-150 {
    padding-right: 150px;
}

.p-l-150 {
    padding-left: 150px;
}

.m-b-150 {
    margin-bottom: 150px;
}

.m-t-150 {
    margin-top: 150px;
}

.m-r-150 {
    margin-right: 150px;
}

.m-l-150 {
    margin-left: 150px;
}

.m-150 {
    margin: 150px;
}

.p-150 {
    padding: 150px;
}

.p-b-155 {
    padding-bottom: 155px;
}

.p-t-155 {
    padding-top: 155px;
}

.p-r-155 {
    padding-right: 155px;
}

.p-l-155 {
    padding-left: 155px;
}

.m-b-155 {
    margin-bottom: 155px;
}

.m-t-155 {
    margin-top: 155px;
}

.m-r-155 {
    margin-right: 155px;
}

.m-l-155 {
    margin-left: 155px;
}

.m-155 {
    margin: 155px;
}

.p-155 {
    padding: 155px;
}

.p-b-160 {
    padding-bottom: 160px;
}

.p-t-160 {
    padding-top: 160px;
}

.p-r-160 {
    padding-right: 160px;
}

.p-l-160 {
    padding-left: 160px;
}

.m-b-160 {
    margin-bottom: 160px;
}

.m-t-160 {
    margin-top: 160px;
}

.m-r-160 {
    margin-right: 160px;
}

.m-l-160 {
    margin-left: 160px;
}

.m-160 {
    margin: 160px;
}

.p-160 {
    padding: 160px;
}

.p-b-165 {
    padding-bottom: 165px;
}

.p-t-165 {
    padding-top: 165px;
}

.p-r-165 {
    padding-right: 165px;
}

.p-l-165 {
    padding-left: 165px;
}

.m-b-165 {
    margin-bottom: 165px;
}

.m-t-165 {
    margin-top: 165px;
}

.m-r-165 {
    margin-right: 165px;
}

.m-l-165 {
    margin-left: 165px;
}

.m-165 {
    margin: 165px;
}

.p-165 {
    padding: 165px;
}

.p-b-170 {
    padding-bottom: 170px;
}

.p-t-170 {
    padding-top: 170px;
}

.p-r-170 {
    padding-right: 170px;
}

.p-l-170 {
    padding-left: 170px;
}

.m-b-170 {
    margin-bottom: 170px;
}

.m-t-170 {
    margin-top: 170px;
}

.m-r-170 {
    margin-right: 170px;
}

.m-l-170 {
    margin-left: 170px;
}

.m-170 {
    margin: 170px;
}

.p-170 {
    padding: 170px;
}

.p-b-175 {
    padding-bottom: 175px;
}

.p-t-175 {
    padding-top: 175px;
}

.p-r-175 {
    padding-right: 175px;
}

.p-l-175 {
    padding-left: 175px;
}

.m-b-175 {
    margin-bottom: 175px;
}

.m-t-175 {
    margin-top: 175px;
}

.m-r-175 {
    margin-right: 175px;
}

.m-l-175 {
    margin-left: 175px;
}

.m-175 {
    margin: 175px;
}

.p-175 {
    padding: 175px;
}

.p-b-180 {
    padding-bottom: 180px;
}

.p-t-180 {
    padding-top: 180px;
}

.p-r-180 {
    padding-right: 180px;
}

.p-l-180 {
    padding-left: 180px;
}

.m-b-180 {
    margin-bottom: 180px;
}

.m-t-180 {
    margin-top: 180px;
}

.m-r-180 {
    margin-right: 180px;
}

.m-l-180 {
    margin-left: 180px;
}

.m-180 {
    margin: 180px;
}

.p-180 {
    padding: 180px;
}

.p-b-185 {
    padding-bottom: 185px;
}

.p-t-185 {
    padding-top: 185px;
}

.p-r-185 {
    padding-right: 185px;
}

.p-l-185 {
    padding-left: 185px;
}

.m-b-185 {
    margin-bottom: 185px;
}

.m-t-185 {
    margin-top: 185px;
}

.m-r-185 {
    margin-right: 185px;
}

.m-l-185 {
    margin-left: 185px;
}

.m-185 {
    margin: 185px;
}

.p-185 {
    padding: 185px;
}

.p-b-190 {
    padding-bottom: 190px;
}

.p-t-190 {
    padding-top: 190px;
}

.p-r-190 {
    padding-right: 190px;
}

.p-l-190 {
    padding-left: 190px;
}

.m-b-190 {
    margin-bottom: 190px;
}

.m-t-190 {
    margin-top: 190px;
}

.m-r-190 {
    margin-right: 190px;
}

.m-l-190 {
    margin-left: 190px;
}

.m-190 {
    margin: 190px;
}

.p-190 {
    padding: 190px;
}

.p-b-195 {
    padding-bottom: 195px;
}

.p-t-195 {
    padding-top: 195px;
}

.p-r-195 {
    padding-right: 195px;
}

.p-l-195 {
    padding-left: 195px;
}

.m-b-195 {
    margin-bottom: 195px;
}

.m-t-195 {
    margin-top: 195px;
}

.m-r-195 {
    margin-right: 195px;
}

.m-l-195 {
    margin-left: 195px;
}

.m-195 {
    margin: 195px;
}

.p-195 {
    padding: 195px;
}

.p-b-200 {
    padding-bottom: 200px;
}

.p-t-200 {
    padding-top: 200px;
}

.p-r-200 {
    padding-right: 200px;
}

.p-l-200 {
    padding-left: 200px;
}

.m-b-200 {
    margin-bottom: 200px;
}

.m-t-200 {
    margin-top: 200px;
}

.m-r-200 {
    margin-right: 200px;
}

.m-l-200 {
    margin-left: 200px;
}

.m-200 {
    margin: 200px;
}

.p-200 {
    padding: 200px;
}

.p-b-205 {
    padding-bottom: 205px;
}

.p-t-205 {
    padding-top: 205px;
}

.p-r-205 {
    padding-right: 205px;
}

.p-l-205 {
    padding-left: 205px;
}

.m-b-205 {
    margin-bottom: 205px;
}

.m-t-205 {
    margin-top: 205px;
}

.m-r-205 {
    margin-right: 205px;
}

.m-l-205 {
    margin-left: 205px;
}

.m-205 {
    margin: 205px;
}

.p-205 {
    padding: 205px;
}

.p-b-210 {
    padding-bottom: 210px;
}

.p-t-210 {
    padding-top: 210px;
}

.p-r-210 {
    padding-right: 210px;
}

.p-l-210 {
    padding-left: 210px;
}

.m-b-210 {
    margin-bottom: 210px;
}

.m-t-210 {
    margin-top: 210px;
}

.m-r-210 {
    margin-right: 210px;
}

.m-l-210 {
    margin-left: 210px;
}

.m-210 {
    margin: 210px;
}

.p-210 {
    padding: 210px;
}

.p-b-215 {
    padding-bottom: 215px;
}

.p-t-215 {
    padding-top: 215px;
}

.p-r-215 {
    padding-right: 215px;
}

.p-l-215 {
    padding-left: 215px;
}

.m-b-215 {
    margin-bottom: 215px;
}

.m-t-215 {
    margin-top: 215px;
}

.m-r-215 {
    margin-right: 215px;
}

.m-l-215 {
    margin-left: 215px;
}

.m-215 {
    margin: 215px;
}

.p-215 {
    padding: 215px;
}

.p-b-220 {
    padding-bottom: 220px;
}

.p-t-220 {
    padding-top: 220px;
}

.p-r-220 {
    padding-right: 220px;
}

.p-l-220 {
    padding-left: 220px;
}

.m-b-220 {
    margin-bottom: 220px;
}

.m-t-220 {
    margin-top: 220px;
}

.m-r-220 {
    margin-right: 220px;
}

.m-l-220 {
    margin-left: 220px;
}

.m-220 {
    margin: 220px;
}

.p-220 {
    padding: 220px;
}

.p-b-225 {
    padding-bottom: 225px;
}

.p-t-225 {
    padding-top: 225px;
}

.p-r-225 {
    padding-right: 225px;
}

.p-l-225 {
    padding-left: 225px;
}

.m-b-225 {
    margin-bottom: 225px;
}

.m-t-225 {
    margin-top: 225px;
}

.m-r-225 {
    margin-right: 225px;
}

.m-l-225 {
    margin-left: 225px;
}

.m-225 {
    margin: 225px;
}

.p-225 {
    padding: 225px;
}

.p-b-230 {
    padding-bottom: 230px;
}

.p-t-230 {
    padding-top: 230px;
}

.p-r-230 {
    padding-right: 230px;
}

.p-l-230 {
    padding-left: 230px;
}

.m-b-230 {
    margin-bottom: 230px;
}

.m-t-230 {
    margin-top: 230px;
}

.m-r-230 {
    margin-right: 230px;
}

.m-l-230 {
    margin-left: 230px;
}

.m-230 {
    margin: 230px;
}

.p-230 {
    padding: 230px;
}

.p-b-235 {
    padding-bottom: 235px;
}

.p-t-235 {
    padding-top: 235px;
}

.p-r-235 {
    padding-right: 235px;
}

.p-l-235 {
    padding-left: 235px;
}

.m-b-235 {
    margin-bottom: 235px;
}

.m-t-235 {
    margin-top: 235px;
}

.m-r-235 {
    margin-right: 235px;
}

.m-l-235 {
    margin-left: 235px;
}

.m-235 {
    margin: 235px;
}

.p-235 {
    padding: 235px;
}

.p-b-240 {
    padding-bottom: 240px;
}

.p-t-240 {
    padding-top: 240px;
}

.p-r-240 {
    padding-right: 240px;
}

.p-l-240 {
    padding-left: 240px;
}

.m-b-240 {
    margin-bottom: 240px;
}

.m-t-240 {
    margin-top: 240px;
}

.m-r-240 {
    margin-right: 240px;
}

.m-l-240 {
    margin-left: 240px;
}

.m-240 {
    margin: 240px;
}

.p-240 {
    padding: 240px;
}

.p-b-245 {
    padding-bottom: 245px;
}

.p-t-245 {
    padding-top: 245px;
}

.p-r-245 {
    padding-right: 245px;
}

.p-l-245 {
    padding-left: 245px;
}

.m-b-245 {
    margin-bottom: 245px;
}

.m-t-245 {
    margin-top: 245px;
}

.m-r-245 {
    margin-right: 245px;
}

.m-l-245 {
    margin-left: 245px;
}

.m-245 {
    margin: 245px;
}

.p-245 {
    padding: 245px;
}

.p-b-250 {
    padding-bottom: 250px;
}

.p-t-250 {
    padding-top: 250px;
}

.p-r-250 {
    padding-right: 250px;
}

.p-l-250 {
    padding-left: 250px;
}

.p-l-260 {
    padding-left: 400px;
}

.m-b-250 {
    margin-bottom: 250px;
}

.m-t-250 {
    margin-top: 250px;
}

.m-r-250 {
    margin-right: 250px;
}

.m-l-250 {
    margin-left: 250px;
}

.m-250 {
    margin: 250px;
}

.p-250 {
    padding: 250px;
}

.box-10 {
    width: 10%;
    float: left;
}

.box-20 {
    width: 20%;
    float: left;
}

.box-30 {
    width: 30%;
    float: left;
}

.box-40 {
    width: 40%;
    float: left;
}

.box-50 {
    width: 50%;
    float: left;
}

.box-60 {
    width: 60%;
    float: left;
}

.box-70 {
    width: 70%;
    float: left;
}

.box-80 {
    width: 80%;
    float: left;
}

.box-90 {
    width: 90%;
    float: left;
}

.box-100 {
    width: 100%;
    float: left;
}

@media (max-width: 319px) {
    .hidden-phone-small {
        display: none !important;
    }
}

@media (max-width: 479px) {
    .hidden-phone-med {
        display: none !important;
    }
    /*Timeline movil responsive
  =====================================*/
    .history-tl-container {
        font-family: "Roboto", sans-serif;
        width: 100%;
        margin: auto;
        display: block;
        position: relative;
    }
    .history-tl-container ul.tl {
        margin: 20px 0;
        padding: 0;
        display: inline-block;
    }
    .history-tl-container ul.tl li {
        list-style: none;
        margin: auto;
        margin-left: 120px;
        min-height: 50px;
        /*background: rgba(255,255,0,0.1);*/
        border-left: 1px dashed #86D6FF;
        padding: 0 0 50px 30px;
        position: relative;
    }
    .history-tl-container ul.tl li:last-child {
        border-left: 0;
    }
    .history-tl-container ul.tl li::before {
        position: absolute;
        left: -18px;
        top: -5px;
        content: " ";
        border: 8px solid rgba(255, 255, 255, 0.74);
        border-radius: 500%;
        background: #258CC7;
        height: 20px;
        width: 20px;
        transition: all 500ms ease-in-out;
    }
    .history-tl-container ul.tl li:hover::before {
        border-color: #0052ec;
        transition: all 1000ms ease-in-out;
    }
    ul.tl li .item-title {}
    ul.tl li .item-detail {
        color: rgba(0, 0, 0, 0.5);
        font-size: 12px;
    }
    ul.tl li .timestamp {
        color: #8D8D8D;
        position: absolute;
        width: 100px;
        left: -50%;
        text-align: right;
        font-size: 12px;
    }
    /* End Timeline movil responsive
  =====================================*/
}

@media (max-width: 767px) {
    .hidden-tablet-portrait {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hidden-tablet-landscape {
        display: none !important;
    }
}

@media (min-width: 320px) {
    .hidden-phone-small-up {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hidden-phone-med-up {
        display: none !important;
    }
    .servi-position {
        position: relative;
    }
}

@media (min-width: 768px) {
    .hidden-tablet-portrait-up {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hidden-tablet-landscape-up {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-desktop-med {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-desktop-med-up {
        display: none !important;
    }
}

@media (max-width: 1599px) {
    .hidden-desktop-large {
        display: none !important;
    }
}

@media (min-width: 1600px) {
    .hidden-desktop-large-up {
        display: none !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .hidden-phone-med-tablet-portrait {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-tablet-portrait-tablet-landscape {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-tablet-landscape-desktop-med {
        display: none !important;
    }
}


/* #Section styles
================================================== */

.block-left {
    float: left;
}

.block-right {
    float: right;
}

.section {
    position: relative;
}

.page-content {
    background: #fff;
}

.section-split {
    width: 100%;
}

.section-split:after {
    content: "";
    display: table;
    clear: both;
}

.section-split .section-split-left {
    float: left;
    width: 50%;
}

.section-split .section-split-right {
    float: left;
    width: 50%;
}

@media (max-width: 767px) {
    .section-split .section-split-left,
    .section-split .section-split-right {
        float: none;
        width: 100%;
    }
}


/* #Owl styles
================================================== */

.owl-carousel.nav-style-1 {
    position: static;
}

.owl-carousel.nav-style-1 .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
}

.owl-carousel.nav-style-1 .owl-nav .owl-next {
    margin-left: 3px;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev {
    margin-right: 3px;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev,
.owl-carousel.nav-style-1 .owl-nav .owl-next {
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    position: relative;
    display: inline-block;
    opacity: .5;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-1 .owl-nav .owl-next:hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-1 .owl-nav .owl-prev i,
.owl-carousel.nav-style-1 .owl-nav .owl-next i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.owl-carousel.nav-style-1.dark .owl-nav .owl-prev,
.owl-carousel.nav-style-1.dark .owl-nav .owl-next {
    border: 1px solid #999999;
    opacity: 1;
}

.owl-carousel.nav-style-1.dark .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-1.dark .owl-nav .owl-next:hover {
    border-color: #000;
}

.owl-carousel.nav-style-1.dark .owl-nav .owl-prev:hover i,
.owl-carousel.nav-style-1.dark .owl-nav .owl-next:hover i {
    color: #000;
}

.owl-carousel.nav-style-2 {
    position: relative;
}

.owl-carousel.nav-style-2 .owl-nav .owl-next {
    right: -110px;
    margin-left: 3px;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev {
    left: -110px;
    margin-right: 3px;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev,
.owl-carousel.nav-style-2 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: inline-block;
    opacity: .5;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-2 .owl-nav .owl-next:hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-2 .owl-nav .owl-prev i,
.owl-carousel.nav-style-2 .owl-nav .owl-next i {
    color: #999999;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 36px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.owl-carousel.nav-style-2.dark .owl-nav .owl-prev,
.owl-carousel.nav-style-2.dark .owl-nav .owl-next {
    border: 1px solid #999999;
    opacity: 1;
}

.owl-carousel.nav-style-2.dark .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-2.dark .owl-nav .owl-next:hover {
    border-color: #000;
}

.owl-carousel.nav-style-2.dark .owl-nav .owl-prev:hover i,
.owl-carousel.nav-style-2.dark .owl-nav .owl-next:hover i {
    color: #000;
}

@media (max-width: 1390px) {
    .owl-carousel.nav-style-2 {
        position: static;
    }
    .owl-carousel.nav-style-2 .owl-nav {
        position: absolute;
        top: 35px;
        right: 0;
    }
    .owl-carousel.nav-style-2 .owl-nav .owl-prev,
    .owl-carousel.nav-style-2 .owl-nav .owl-next {
        position: static;
        width: 30px;
        height: 30px;
    }
    .owl-carousel.nav-style-2 .owl-nav .owl-prev i,
    .owl-carousel.nav-style-2 .owl-nav .owl-next i {
        font-size: 24px;
    }
    #section1 {
        margin-bottom: 150px;
    }
}

@media (max-width: 479px) {
    .owl-carousel.nav-style-2 .owl-nav {
        display: none;
    }
}

.owl-carousel.nav-style-3 {
    position: relative;
}

.owl-carousel.nav-style-3 .owl-nav .owl-next {
    right: 10px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev {
    left: 10px;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev,
.owl-carousel.nav-style-3 .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    /* cambiar a inline-block */
    display: none;
    opacity: .5;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev:hover,
.owl-carousel.nav-style-3 .owl-nav .owl-next:hover {
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.owl-carousel.nav-style-3 .owl-nav .owl-prev i,
.owl-carousel.nav-style-3 .owl-nav .owl-next i {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.owl-carousel.dots-style-1 {
    position: relative;
}

.owl-carousel.dots-style-1 .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.owl-carousel.dots-style-1 .owl-dots:after {
    content: "";
    display: table;
    clear: both;
}

.owl-carousel.dots-style-1 .owl-dots .owl-dot {
    margin: 0 5px;
    float: left;
    width: 10px;
    height: 10px;
    background: #faf8f7;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}


/* #Section Navbar
================================================== */

.section-navbar-1 {
    z-index: 10000;
}

.section-navbar-1 .logo-mobile {
    display: none;
}

.section-navbar-1.fixed {
    -webkit-animation: fadeInDown 0.3s ease-out forwards;
    -moz-animation: fadeInDown 0.3s ease-out forwards;
    -o-animation: fadeInDown 0.3s ease-out forwards;
    animation: fadeInDown 0.3s ease-out forwards;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 6px 13px 1px rgba(168, 168, 168, 0.64);
}

.section-navbar-1.fixed .logo-mobile {
    display: inline-block;
    margin-right: 50px;
    vertical-align: top;
    margin-top: 13px;
}

.section-navbar-1.fixed .logo-mobile img {
    width: 120px;
}

.section-navbar-1.fixed nav {
    vertical-align: top;
    display: inline-block;
}

@media (max-width: 1199px) {
    .section-navbar-1 .navbar-1>ul>li {
        margin-right: 20px;
    }
    .section-navbar-1.fixed .navbar-1>ul>li {
        margin-left: 20px;
        margin-right: 0;
    }
    .section-navbar-1.fixed .logo-mobile {
        margin-right: 10px;
        margin-top: 13px;
    }
    .section-navbar-1.fixed .logo-mobile img {
        width: 180px;
    }
    .section-navbar-1.fixed .block-right {
        display: none;
    }
}

.section-navbar-2 {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* position: fixed;	si no se requiere el menú flotante entonces quitar */
    /* background: #fff !important; */
    width: 100%;
    height: 130px;
    margin-top: -2em;
}

.section-navbar-2 .logo {
    padding-top: 5px;
}

.section-navbar-2 .logo img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 255px;
}

@media (max-width: 1199px) {
    .section-navbar-2 .navbar-1>ul>li {
        margin-left: 20px;
        margin-right: 0;
    }
    .section-navbar-2 .logo {
        padding-top: 15px;
    }
    .section-navbar-2 .logo img {
        width: 180px;
    }
}

.section-navbar-2.fixed {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0;
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
}

.section-navbar-2.fixed .logo {
    padding-top: 13px;
    margin-top: 0;
}

.section-navbar-2.fixed .logo img {
    width: 180px;
}

.section-navbar-2.fixed .navbar-1>ul>li>a {
    padding: 20px 0;
}

.section-navbar-2.fixed .block-right {
    display: block;
}

.section-navbar-3 {
    padding: 20px 0 0 0;
}

.section-navbar-3 .logo img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 255px;
}

.section-navbar-3 .logo {
    padding-top: 0;
}

.section-navbar-3 .navbar-1 ul li>a {
    padding: 20px 0;
}

.section-navbar-3.fixed .block-right {
    display: block;
}

.section-navbar-3.fixed .header-2 {
    padding-top: 0;
}

.section-navbar-3.fixed .contact-widget {
    display: none;
}

.section-navbar-3.fixed .logo img {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    width: 180px;
}

@media (max-width: 1199px) {
    .section-navbar-3 .logo img {
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        transition: all 0.3s ease;
        width: 200px;
    }
}

.section-navbar-4 {
    background: rgba(0, 0, 0, 0.84);
}

.section-navbar-4.unfixed {
    position: fixed;
    width: 100%;
}

.section-navbar-4.fixed {
    background: rgba(0, 0, 0, 0.95);
}


/* js-navbar-fixed || Section Navbar 7 White
==================================================*/


/*===========Section Navbar 5 ================*/

.section-navbar-5 {
    padding-top: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.section-navbar-5 .header {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.section-navbar-5.fixed {
    background: -webkit-gradient(linear, left bottom, left top, from(black), to(black));
    background: -webkit-linear-gradient(bottom, black 0%, black 100%);
    background: -moz-linear-gradient(bottom, black 0%, black 100%);
    background: -o-linear-gradient(bottom, black 0%, black 100%);
    background: linear-gradient(to top, black 0%, black 100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.section-navbar-5.fixed .logo {
    padding-top: 13px;
}

.section-navbar-5.fixed .header {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 0;
}

.section-navbar-5.fixed .contact-widget {
    margin-bottom: 0;
    margin-top: 5px;
    display: block;
}

.section-navbar-6 {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(white));
    background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, white 100%);
}

.section-navbar-6.unfixed {
    position: fixed;
    width: 100%;
}

.section-navbar-6.fixed {
    background: -webkit-gradient(linear, left bottom, left top, from(white), to(white));
    background: -webkit-linear-gradient(bottom, white 0%, white 100%);
    background: -moz-linear-gradient(bottom, white 0%, white 100%);
    background: -o-linear-gradient(bottom, white 0%, white 100%);
    background: linear-gradient(to top, white 0%, white 100%);
}


/* #Section Standard
================================================== */

.section-testimonials-1 .owl-stage-outer {
    padding: 15px;
    margin: -15px;
}

@media (max-width: 991px) {
    .why-choose-us-section-1 {
        background: none !important;
        background-color: #fff !important;
    }
}

.contact-form-section {
    padding: 30px 40px 40px 40px;
    border: 3px solid #e6e6e6;
}

@media (max-width: 991px) {
    .contact-form-section {
        margin-right: 0;
    }
}

.contact-form-section-2 .au-select-2 .chosen-container .chosen-single span {
    font-weight: 400;
}

.contact-form-section-2 .au-input-submit {
    padding: 12px 30px;
}

.cta-section-1 {
    margin-top: -1px;
    z-index: 99;
}

.cta-section-1:after {
    content: "";
    display: table;
    clear: both;
}

.cta-section-1 p {
    margin-top: 8px;
}

@media (max-width: 767px) {
    .cta-section-1 .block-left {
        float: none;
        margin-bottom: 15px;
    }
    .cta-section-1 .block-right {
        float: none;
    }
}

.cta-section-2 {
    margin-top: 0;
}

.cta-section-3 {
    text-align: center;
}

.cta-section-3 p,
.cta-section-3 h3 {
    line-height: 1.4;
}

.cta-section-3.left {
    text-align: left;
}

.we-work-section {
    width: 535px;
    padding: 65px 0 65px 50px;
}

@media (max-width: 1199px) {
    .we-work-section {
        width: 100%;
        padding: 65px 30px 65px 30px;
    }
}

.financial-tabs-section {
    text-align: center;
}

.financial-tabs-section .tab-content {
    text-align: left;
}

.post-section-2 .post-info {
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.post-section-2 .post-info p {
    color: #808080;
}

.post-section-2 .post-info p span {
    margin: 0 5px;
}

.post-section-2 .post-info p a {
    color: #808080;
}

.post-author {
    padding: 30px 30px 40px 30px;
}

.post-author:after {
    content: "";
    display: table;
    clear: both;
}

.post-author .avatar {
    float: left;
    width: 80px;
    height: 80px;
}

.post-author .avatar img {
    width: 100%;
}

.post-author .content {
    margin-left: 80px;
    padding-left: 25px;
}

.post-author .content h4 {
    margin-top: 0;
    margin-bottom: 15px;
}


/*comments 1*/

.post-comments .title {
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 20px;
    color: #333;
}

.post-comments .comments-list {
    margin: 0;
    padding: 0;
}

.post-comments .comments-has-child .comments-child-list {
    padding-left: 90px;
}

.post-comments .comments-has-child .comments-child-list .comments-item {
    border-bottom: 1px solid #e6e6e6;
}

.post-comments .comments-has-child .comments-child-list .comments-item .comment-content {
    border-bottom: none;
}

.post-comments .comments-item {
    margin-bottom: 25px;
}

.post-comments .comments-item .author-image {
    width: 70px;
    overflow: hidden;
    float: left;
}

.post-comments .comments-item .author-image img {
    width: 100%;
}

.post-comments .comments-item .comment-content {
    margin-left: 90px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
    min-height: 100px;
}

.post-comments .comments-item .comment-content .author-info {
    font-size: 13px;
    margin-right: 15px;
    margin-bottom: 0;
    color: #808080;
}

.post-comments .comments-item .comment-content .author-info a {
    color: #808080;
}

.post-comments .comments-item .comment-content .author-info .reply-link {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
    margin-left: 15px;
    color: #555555;
    font-size: 13px;
}

.post-comments .comments-item .comment-content .content {
    font-size: 14px;
}

.post-comments .comments-item .comment-content .reply-link {
    color: #888;
    font-size: 14px;
}

.post-comments .comments-item:hover .comment-content .author-info .reply-link {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-section-2 {
    margin-bottom: -120px;
}

.about-section-2 .video-about-section {
    z-index: 1000;
    position: relative;
}

.partnerships {
    margin: 0;
    padding: 0;
}

.partnerships .partnership {
    margin-bottom: 60px;
}

.partnerships .partnership:after {
    content: "";
    display: table;
    clear: both;
}

.partnerships .partnership .partnership-logo {
    border: 1px solid #e6e6e6;
    width: 220px;
    height: 140px;
    float: left;
    position: relative;
}

.partnerships .partnership .partnership-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.partnerships .partnership .partnership-content {
    margin-left: 220px;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .partnerships .partnership .partnership-logo {
        float: none;
    }
    .partnerships .partnership .partnership-content {
        margin-left: 0;
        padding-left: 0;
        margin-top: 30px;
    }
}

.leaderships {
    margin: 0;
    padding-left: 0;
}

.leaderships .leadership {
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 60px;
}

.leaderships .leadership:after {
    content: "";
    display: table;
    clear: both;
}

.leaderships .leadership:last-child {
    border-bottom: none;
}

.leaderships .leadership .leadership-logo {
    border: 1px solid #e6e6e6;
    width: 200px;
    height: 200px;
    float: left;
    position: relative;
}

.leaderships .leadership .leadership-logo img {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.leaderships .leadership .leadership-content {
    margin-left: 220px;
    padding-left: 30px;
}

.leaderships .leadership .leadership-content .text-grey {
    color: #808080;
}

@media (max-width: 767px) {
    .leaderships .leadership .partnership-logo {
        float: none;
    }
    .leaderships .leadership .leadership-content {
        margin-left: 0;
        padding-left: 0;
        margin-top: 30px;
    }
}

.careers {
    margin: 0;
    padding-left: 0;
}

.careers .career {
    margin-bottom: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e6e6e6;
}

.careers .career .text-grey {
    color: #808080;
}

.post-section-1 .accordion-box-1 .accordion .accordion-title span {
    width: 23px;
    height: 23px;
}

@media (max-width: 991px) {
    .post-section-1,
    .post-section-2 {
        padding-left: 0;
        padding-right: 0;
    }
}

.contact-form-section-3 .au-form-group {
    margin: 0 -15px;
}

.contact-form-section-3 .au-form-group .au-form-col-4 {
    margin-bottom: 20px;
    padding: 0 15px;
}

.contact-form-section-3 .au-textarea {
    margin-bottom: 20px;
}

.contact-map-section-1 .controls-map {
    background: #e6e6e6;
}

.contact-map-section-1 .google-map .gm-style-iw {
    padding: 20px 30px;
}

.contact-map-section-1 .google-map .gm-style-iw h3 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.contact-map-section-1 .google-map .gm-style-iw p {
    font-size: 15px;
    font-weight: 400;
}

.contact-map-section-1 .google-map .gm-style-iw ul {
    padding: 0;
    margin: 0;
}

.contact-map-section-1 .google-map .gm-style-iw ul li {
    line-height: 2;
    font-size: 15px;
    font-weight: 400;
}

.contact-map-section-1 .controls:after {
    content: "";
    display: table;
    clear: both;
}

.contact-map-section-1 .controls li:last-child a {
    border-right: 2px solid #cccccc;
}

.contact-map-section-1 .controls li {
    float: left;
    width: 25%;
    text-align: center;
}

.contact-map-section-1 .controls li a {
    border-left: 2px solid #cccccc;
    font-weight: 700;
    display: inline-block;
    padding: 20px 0 !important;
    color: #333333 !important;
    font-size: 18px !important;
}

@media (max-width: 767px) {
    .contact-map-section-1 .row {
        margin: 0;
    }
    .contact-map-section-1 .container {
        padding: 0;
    }
    .contact-map-section-1 .heading-section {
        padding-left: 15px;
    }
    .contact-map-section-1 .controls li {
        width: 100%;
    }
    .contact-map-section-1 .controls li a {
        border: none;
        border-bottom: 2px solid #cccccc;
    }
    .contact-map-section-1 .controls li:last-child a {
        border: none;
    }
}

#up-to-top {
    position: fixed;
    text-align: center;
    right: 30px;
    bottom: 30px;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    z-index: 10000;
    height: 40px;
    width: 40px;
    line-height: 40px;
    background: rgba(0, 0, 0, 0.4) no-repeat center;
    -webkit-transition: background-color 0.1s linear;
    -o-transition: background-color 0.1s linear;
    -moz-transition: background-color 0.1s linear;
    transition: background-color 0.1s linear;
}

#up-to-top:hover {
    background: black no-repeat center;
}

.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000000;
}

.loader {
    width: 20px;
    height: 20px;
    position: relative;
    -webkit-animation: loader08 1s ease infinite;
    -moz-animation: loader08 1s ease infinite;
    -o-animation: loader08 1s ease infinite;
    animation: loader08 1s ease infinite;
    top: 50%;
    margin: -46px auto 0;
}

@-webkit-keyframes loader08 {
    0%,
    100% {
        -webkit-box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    25% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    50% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    75% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
    }
}

@-moz-keyframes loader08 {
    0%,
    100% {
        -moz-box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    25% {
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    50% {
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    75% {
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
    }
}

@-o-keyframes loader08 {
    0%,
    100% {
        box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    25% {
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    50% {
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    75% {
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
    }
}

@keyframes loader08 {
    0%,
    100% {
        -webkit-box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        -moz-box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 #0052ec, 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    25% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 #0052ec, 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    50% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 #0052ec, -13px 46px 0 rgba(0, 82, 236, 0.2);
    }
    75% {
        -webkit-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
        -moz-box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
        box-shadow: -13px 20px 0 rgba(0, 82, 236, 0.2), 13px 20px 0 rgba(0, 82, 236, 0.2), 13px 46px 0 rgba(0, 82, 236, 0.2), -13px 46px 0 #0052ec;
    }
}

.empresa {
    color: white;
    padding-bottom: 30px;
    font-family: 'roboto';
}

#loader-4 span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #3498db;
    margin: 35px 5px;
    opacity: 0;
}

#loader-4 span:nth-child(1) {
    animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2) {
    animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3) {
    animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {
    0%,
    100% {
        opacity: 0;
    }
    60% {
        opacity: 1;
    }
}

.bg-color-blue-1 {
    background-color: #006CF1;
    z-index: 0;
}

.bg-color-soft-gray {
    color: #DFDFDF;
}


/* Justify text*/

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

#banner1 ul {
    color: #fff;
}

#form-contact li {
    color: #fff;
}

.blanco {
    color: #fff;
}

.blanco-6 {
    color: #fff;
    opacity: 0.6;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-blue-1 {
    background-color: #FFC107;
    border-radius: 5px;
    color: #fff;
}

.btn-blue-1:hover {
    border: 1px solid #FFC107;
    color: rgb(20, 20, 20);
    background-color: rgb(255, 255, 255);
}

.btn-white-1 {
    background-color: rgb(255, 255, 255);
    font-size: 12px;
    color: #FFC107;
    border-radius: 15px;
}

.text-blue {
    color: #006CF1;
}

.img-doctor {
    width: 100px;
}

.merriweather¨ {
    font-family: 'Merriweather', serif;
}

.questrial {
    font-family: 'Questrial', sans-serif;
}

.caveat {
    font-family: 'Caveat', cursive;
    letter-spacing: 8px;
}

.f-questrial {
    font-family: 'Questrial', sans-serif;
    /* font-style: italic; */
    font-size: 1.6em;
    color: #006CF1;
    letter-spacing: 2px;
}

#contacto a {
    color: #006CF1;
}

.btn-slide-blue span:before {
    background-color: #006CF1;
}

#contacto a:hover {
    color: #333;
}

#nosotros p {
    font-size: 18px;
}

#about p {
    font-size: 18px;
}

.bg-imga {
    background: url(../images/bg_img.jpg);
    /*  background-color: #006CF1;*/
    background-size: cover;
    z-index: 0;
}

.f-16 {
    font-size: 1em;
}

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.t-24 {
    font-size: 24px;
}

.t-28 {
    font-size: 28px;
}

.t-34 {
    font-size: 34px;
}

.marg-10 {
    margin-right: 10px;
    margin-left: 10px;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.dr-border {
    border-style: solid;
    border-width: 1px;
    border-color: #006CF1;
}

.bg-blanco {
    background-color: #fff;
}

.bg-blanco:hover {
    background-color: #006CF1;
    transition: .8s;
}

.bg-banner1 .icon {
    margin-top: 30px;
}

.bg-banner1 h4 {
    color: #00E4E1;
}

.bg-banner1 p {
    color: #CFE6ED;
}

.bg-banner1:hover {
    background-color: #040F44;
    border-radius: 10px;
    transition: .9s;
}

.bg-banner .icon {
    margin-top: 30px;
}

.bg-banner:hover {
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
    transition: .9s;
}

.bg-img {
    background: url(../images/bg_siescc_001.jpg);
}

.bg-white-opacity {
    background-color: #fff;
    opacity: 0.5;
}

#lorem .icon-box-2 {
    padding-top: 30px;
}

#lorem {
    color: #fff;
}

#lorem:hover {
    background-color: rgb(245, 245, 245);
    color: #333;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    transition: 1s;
}

.border-10 {
    border-radius: 10px;
}

.border-10 p,
h4 {
    color: #006CF1;
}

.border-10 h4 {
    color: #006CF1;
}

.border-10:hover p {
    color: #fff;
}

.border-10:hover h4 {
    color: #fff;
}

.border-10 span {
    color: #006CF1;
    padding: 10%;
}

.border-10:hover span {
    color: #fff;
    padding: 10%;
}


/* contacto */

#carta h1,
input::-webkit-input-placeholder,
button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#carta h1,
textarea::-webkit-textarea-placeholder,
button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#carta h1 {
    height: 50px;
    width: 100%;
    font-size: 20px;
    background: #006CF1;
    color: #ffffff;
    line-height: 150%;
    border-radius: 3px 3px 0 0;
}

#carta form {
    /* background: #ffffff; */
    box-sizing: border-box;
    width: 350px;
    margin: 30px auto;
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
    padding-bottom: 40px;
    border-radius: 3px;
}

#carta form h1 {
    box-sizing: border-box;
    padding: 10px;
}

#carta input {
    margin: 40px 25px;
    width: 300px;
    display: block;
    border: none;
    padding: 5px 0;
    border-bottom: solid 1px#006CF1;
    -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #006CF1 4%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #006CF1 4%);
    background-position: -300px 0;
    background-size: 300px 100%;
    background-repeat: no-repeat;
    color: #006CF1;
}

#carta input:focus,
input:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
}

#carta input:focus::-webkit-input-placeholder,
input:valid::-webkit-input-placeholder {
    color: #006CF1;
    font-size: 15px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    visibility: visible !important;
}

#carta textarea {
    margin: 40px 25px;
    width: 300px;
    display: block;
    border: none;
    padding: 5px 0;
    border-bottom: solid 1px#006CF1;
    -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #006CF1 4%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #006CF1 4%);
    background-position: -300px 0;
    background-size: 300px 100%;
    background-repeat: no-repeat;
    color: #006CF1;
}

#carta textarea:focus,
textarea:valid {
    box-shadow: none;
    outline: none;
    background-position: 0 0;
}

#carta textarea:focus::-webkit-textarea-placeholder,
textarea:valid::-webkit-textarea-placeholder {
    color: #006CF1;
    font-size: 15px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    visibility: visible !important;
}

#carta button {
    border: none;
    background: #006CF1;
    cursor: pointer;
    border-radius: 3px;
    padding: 12px;
    width: 150px;
    color: #ffffff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}

#carta button:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.13), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.p-5 {
    padding: 20px;
}

.py-5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.py-2 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.px-5 {
    padding-right: 50px;
    padding-left: 50px;
}

.services-padding {
    text-align: center;
    width: 100%;
    border: 3px;
}

.offer-dark-active {
    padding: 20px 5px;
    margin: 18px;
    background-color: #061366;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: .4s;
}

.offer {
    padding: 20px 5px;
    margin: 18px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
}

.offer a {
    color: #474747;
}

.offer-active {
    padding: 20px 5px;
    margin: 18px;
    background-color: #006CF1;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: .4s;
}

.offset {
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
}

.offset-active {
    background-color: #006CF1;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: .0s;
}

.offet {
    background-color: #fff;
    color: #FFC107;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}

.offet-active {
    background-color: #FFC107;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: .0s;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(255, 239, 9, 0.801);
}

.offet:hover {
    background-color: #FFC107;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    transition: 0.1s ease-in-out;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(255, 239, 9, 0.801);
}

.copyright-animatics,
.copyright-animatics a {
    color: rgb(230, 198, 103);
    font-size: 12px;
    font-family: 'Roboto';
}

.btn-cg {
    background-color: #FFC107;
    border-radius: 15px;
    color: #fff;
    margin: 0px 5px;
    font-size: 14px;
}

.btn-cg:hover {
    border: #FFC107 solid 1px;
    background-color: transparent;
    border-radius: 25px;
    color: #FFC107;
}

.btn-cg:focus {
    border: #5b7a7c solid 1px;
    background-color: transparent;
    border-radius: 25px;
    color: #5b7a7c;
}

.service-1 {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: 0.5s;
}

.s1img {
    position: relative;
    /* top: -2em; */
    transform: translateY(-30px);
    transition: 0.3s ease-in-out;
}

.s1 {
    color: #FFC107;
    transition: 0.5s;
}

.consultorio-title {
    font-size: 12px;
    font-weight: 600;
}

.rouder-15 {
    border-radius: 15px;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

#servis001 i:hover {
    color: #006CF1;
    transition: .4s;
}

#servis002 i:hover {
    color: #006CF1;
    transition: .4s;
}

#servis003 i:hover {
    color: #006CF1;
    transition: .4s;
}

#servis004 i:hover {
    color: #006CF1;
    transition: .4s;
}

#servis005 i:hover {
    color: #006CF1;
    transition: .4s;
}

.contact-dark {
    padding: 10px 30px 50px 40px;
    background: url(../images/careers008.jpg);
    background-repeat: no-repeat;
    background-position: 0px, 0px;
    background-size: cover;
    border-radius: 15px;
    box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.5);
}

.contact-dark input {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.contact-dark textarea {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
}

.responsiveCal {
    position: relative;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
}

.responsiveCal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating {
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from {
        transform: translate(0, 0px);
    }
    65% {
        transform: translate(0, 10px);
    }
    to {
        transform: translate(0, -0px);
    }
}

.content-center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    text-align: center;
}

.services-padding {
    padding: 100px 0;
}

.service-2 {
    background-color: #fff;
    border-radius: 5px;
    padding-top: 30px;
    position: relative;
    text-align: left;
    top: 50px;
    transition: all 0.5s ease 0s;
    margin: 20px 0px;
}

.single-service {
    padding: 20px 10px;
    background-color: #fff;
    border-radius: 10px;
    height: 250px;
    margin: 20px 0;
    text-align: left;
}

.single-service-active {
    padding: 20px 10px;
    background-color: #0052ec;
    color: #fff;
    border-radius: 10px;
    height: 250px;
    margin: 20px 0;
    text-align: left;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.single-services :hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.servi-1 {
    background-color: #061366;
    padding: 30px 30px;
    color: #fff;
}

.servi-1 p {
    text-align: justify;
}

.servi-2 {
    background-color: #0052ec;
    padding: 30px 20px;
    color: #fff;
}

.servi-3 {
    background-color: rgb(22, 216, 223);
    padding: 30px 20px;
    color: #fff;
}

.servi-position {
    position: relative;
    top: -5em;
}

.map-3 {}

.banner-1 {
    color: #fff;
    padding: 50px 0px;
}


/* Bg Clinica Dolor 
#97D8D9
#00D8D7
#00C8EE
#FFC107
#00538B
*/

.color-blue-color-1 {
    color: #97D8D9;
}

.color-blue-color-2 {
    color: #00D8D7;
}

.color-blue-color-3 {
    color: #00C8EE;
}

.color-blue-color-4 {
    color: #FFC107;
}

.color-blue-color-5 {
    color: #00538B;
}

.bg-blue-color-1 {
    background-color: #97D8D9;
}

.bg-blue-color-2 {
    background-color: #00D8D7;
}

.bg-blue-color-3 {
    background-color: #00C8EE;
}

.bg-blue-color-4 {
    background-color: #FFC107;
}

.bg-blue-color-5 {
    background-color: #00538B;
}

.contacto {
    color: #fff;
}

.contacto h3 {
    padding-left: 30px;
}

.contacto li {
    padding-top: 10px;
}

#footer2 {
    color: #fff;
    font-family: 'Roboto';
}

#footer2 hr {
    border: .7px solid #fff;
}

.clinica {
    color: #FFC107;
    font-size: 3em;
    font-weight: 900;
}

.text-paralax p {
    font-family: 'Roboto';
    font-size: 4em;
    font-style: italic;
}

.accesos h3 {
    padding-left: 34px;
}

.accesos a {
    color: #fff;
}

.carousel-2 h3 {
    color: #FFC107;
    font-family: 'Roboto';
}

.title-1 {
    font-size: 4em;
    color: white;
    font-family: 'roboto';
}

.title-2 h2 {
    padding-bottom: 20px;
    font-family: 'roboto';
}

.title-2 h6 {
    text-transform: uppercase;
    font-family: 'roboto';
}

.title-3 h2 {
    padding-bottom: 20px;
    font-family: 'roboto';
}

.title-3 h6 {
    text-transform: uppercase;
    font-family: 'roboto';
}


/* about-active
================================== */

.about-1 a:hover {
    transition: 0.3s;
    border-bottom: 1px solid #FFC107;
    padding-bottom: 3px;
    width: 100%;
    left: 0;
}

.about-1-active {
    background-color: #FFC107;
    border-radius: 2px;
    padding: 5px;
    width: 100%;
    left: 0;
    color: #ffffff;
}

.about-2 a:hover {
    border-bottom: 1px solid #FFC107;
    padding-bottom: 3px;
    width: 100%;
    left: 0;
}

.about-2-active {
    background-color: #FFC107;
    border-radius: 2px;
    padding: 5px;
    width: 100%;
    left: 0;
    color: #ffffff;
}

.mision-li {
    margin: 0px;
    padding: 10px 0px;
}

.mision-li li:hover {
    color: #FFC107;
}

.mision-li li {
    margin: 10px 0px;
    padding: 0px;
    display: block;
    position: relative;
    font-size: 1.2em;
}

.btn-yellow {
    color: #FFC107;
    border: 1px solid #FFC107;
    ;
}

.flex-li ul {
    display: flex;
}

.flex-li li {
    margin: 0 20px;
}

.flex-ul ul {
    display: flex;
    margin: 0;
    padding: 10px 0px;
}

.flex-ul li {
    margin: 0 10px;
}