@charset "utf-8";
/* CSS Document 

/* #########################################################################
   #########################################################################
   ####################                                 ####################
   ####################    START THEME CUSTOMIZATION    ####################
   ####################                                 ####################
   ##################################      #################################
   ###################################    ##################################
   ####################################  ###################################
   ######################################################################### */



/* ----- Base Colors ----- */

    {
    % set themecolor='#138EBF'%
}

/* Se cambia color de #7fba00 a #138ebf */
.hs_cos_flex-slider .superimpose .caption {
    % set footer_background='#06272E'%
}

/* Se cambia color de #262626 a #06272E */


/* ----- Sticky Menu ----- */

    {
    % set sticky_textcolor='#06272E'%
}

/* Se cambia al color #06272E */

/* ----- Scroll to top ----- */

/* ----- Buttons ----- */

/* ----- Buttons ----- */

/* Se hizo el cambio en el athea.css */


/* #########################################################################
   ####################################  ###################################
   ###################################    ##################################
   ##################################      #################################
   ####################                                 ####################
   ####################    END THEME CUSTOMIZATION      ####################
   ####################                                 ####################
   #########################################################################
   #########################################################################  */


@import url(//fonts.googleapis.com/css?family=Montserrat);
/* Se cambia Montserrat:400,700 por Montserrat); */


/* @import url('http://example.com/example_style.css'); */

/**
 * CSS @imports must be at the top of the file.
 * Add them above this section.
 */



/* ==========================================================================
   HS COS Boilerplate v1.3.0
   ========================================================================== */

/* This responsive framework is required for all styles. */

/* These includes are optional, but helpful. */


/* ==========================================================================

   Index:

  1. BASE STYLES
    - Variables
    - Macros
    - Base
    - Typography

  2. COS STRUCTURE
    - Structure
    - Header
    - Content
    - Footer

  3. MAIN NAVIGATION
    - Custom Menu Primary
    - Mobile Menu

  4. TEMPLATE MODULE CLASSES
    - Common Template Classes
    - Site Pages
    - Landing Pages
    - System Pages

  5. COS COMPONENTS
    - Blog
    - Forms
    - Buttons

  6. MISCELLANOUS

  7. MOBILE MEDIA QUERIES

   ========================================================================== */








/* ==========================================================================


   1. BASE STYLES


   ========================================================================== */





/* ==========================================================================
   Variables
   ========================================================================== */


/**
 * Find the most consistently used font styles, colors, and container widths
 * for your site and assign them to the jinja variables below for easy use
 * and reference.
 *
 * Apply the variable as shown below.  Ignore the jingja comment tags.
 *
 * 
 */

/* Colors */
    {
    % set accentColor1="#06272E"%
}

/*  */
/* Se cambio color #000 a #06272E */
    {
    % set accentColor4="#138ebf"%
}

/* Se cambio color: #64A602 a #138ebf */


/* Typography */
/*  */

/*  */

/* Well Colors */

/* Containers */


/* ==========================================================================
   Macros
   ========================================================================== */


/**
  * Create jinja macros for CSS3 properties that need browser prefixes.
  *
  * Apply the style as shown below.  Ignore the jinja comment tags.
  *
  * 
  */


/* Transition */
    {
    % macro transition(value) -%
}

-webkit-transition: {
        {
        value
    }
}

;

-moz-transition: {
        {
        value
    }
}

;

-o-transition: {
        {
        value
    }
}

;

-ms-transition: {
        {
        value
    }
}

;

transition: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* Animation Delay */
    {
    % macro animationDelay(value) -%
}

animation-delay: {
        {
        value
    }
}

;

-moz-animation-delay: {
        {
        value
    }
}

;

-webkit-animation-delay: {
        {
        value
    }
}

;

-o-animation-delay: {
        {
        value
    }
}

;

transition-delay: {
        {
        value
    }
}

;

-webkit-transition-delay: {
        {
        value
    }
}

;

-moz-transition-delay: {
        {
        value
    }
}

;

-o-transition-delay: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* Box Shadow */
    {
    % macro boxshadow(value) -%
}

-webkit-box-shadow: {
        {
        value
    }
}

;

-moz-box-shadow: {
        {
        value
    }
}

;

-o-box-shadow: {
        {
        value
    }
}

;

-ms-box-shadow: {
        {
        value
    }
}

;

box-shadow: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* Background Size */
    {
    % macro backgroundsize(value) -%
}

-webkit-background-size: {
        {
        value
    }
}

;

-moz-background-size: {
        {
        value
    }
}

;

-o-background-size: {
        {
        value
    }
}

;

background-size: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* Border Radius */
    {
    % macro borderradius(value) -%
}

-webkit-border-radius: {
        {
        value
    }
}

;

-moz-border-radius: {
        {
        value
    }
}

;

-o-border-radius: {
        {
        value
    }
}

;

-ms-border-radius: {
        {
        value
    }
}

;

border-radius: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* User Select */
    {
    % macro userselect(value) -%
}

-webkit-user-select: {
        {
        value
    }
}

;

-moz-user-select: {
        {
        value
    }
}

;

-ms-user-select: {
        {
        value
    }
}

;

user-select: {
        {
        value
    }
}

;

    {
    %- endmacro %
}

/* Opacity*/
    {
    % macro opacity(value) -%
}

-webkit-opacity: {
        {
        value
    }
}

;

-moz-opacity: {
        {
        value
    }
}

;

opacity: {
        {
        value
    }
}

;

    {
    %- endmacro %
}


/* ==========================================================================
   Base
   ========================================================================== */


/**
 * Box Sizing
 *
 * Applies a natural box layout model to all elements so that width and padding
 * are essentially combined, making responsive styles easier to manage.
 */


/* Website background color and default font styles */

/**
 * Page Center
 *
 * Apply .page-center to full-width modules.
 */

/* Highlighted Text */


/* ==========================================================================
   Typography
   ========================================================================== */


/* Basic text */

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: none;
    /* Se agrega estilo font weight */
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {}

h1 {
    font-size: 35px;
}

/* Se cambia de 55 a 35 px*/
h3 {
    font-size: 20px;
    color: #06272E;
}

/* Se cambia Tamaño de 24 20. Se cambia color de #138ebf a #06272E */
h4 {
    font-size: 14px;
    color: #06272E;
}

/* Se agrega color #06272E */

/* Lists */

/* Quotes */


/* ==========================================================================


   2. COS STRUCTURE


   ========================================================================== */





/* ==========================================================================
   Structure
   ========================================================================== */


/* The outer wrappers of your website */


/* The inner wrappers of your website */


/* ==========================================================================
   Header
   ========================================================================== */


/* Logo styling */

.header-container .hs_cos_wrapper_type_logo a img {
        {
            {
            transition("all .1s ease-in-out")
        }
    }

    /*background: ;*/
    max-height: 74px;
    width: auto;
    margin-top: 15px;
}

/* Header Small */



/* ==========================================================================
   Content
   ========================================================================== */



/* Unique Pages
   ========================================================================== */

/* Homepage */

#banner-background-image h3 {
    font-weight: none;
    /* Se cambia de normal a none */
}


/* Reusable Components
   ========================================================================== */

/* FAQ Module */


/* Page Title Background */


/* Blog Subscribe Module */


/* Hide blog subscribe label */

.widget-type-blog_subscribe label {
    display: none !important;
}

/* Team member Module */


/* Well Module */


/* Pricing Module */

/* Rich Editor Checkmark Lists */

.hs_cos_wrapper_type_rich_text ul li:before {
    content: "\f054";
    /* Se cambio f058 por f054 */
    color: #138EBF;
    /* Se cambio  a #138ebf */
}

/* Tabber Module */

.blog-tabber .hs-rss-item.hs-with-featured-image .hs-rss-featured-image {
    float: left;
    width: 40%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

/* Testimonial */

/* Flex Slider */
.hs_cos_flex-slider .caption {
    background: transparent !important;
    /* Se cambia de  a transparent */
}


/* Modular Selectors
   ========================================================================== */

/* Colors */

/* Delays */

/* Paddings */


/* ==========================================================================
   Footer
   ========================================================================== */

.footer-container-wrapper .more-links a:hover,
.footer-container-wrapper .contact-us a:hover,
.footer-container-wrapper .about-us a:hover {
    color: #138ebf !important;
    /* Se cambia de #fff a #138ebf */
}


/* Back to Top */

/* ==========================================================================


   3. MAIN NAVIGATION


   ========================================================================== */





/* ==========================================================================
   Custom Menu Primary
   ========================================================================== */


    {
    % set ulColor=""%
}

/* Set ul background color */
    {
    % set liColor=""%
}

/* Set li background Color */
    {
    % set aColor=""%
}

/* Set link Color */
    {
    % set aColorHover=""%
}

/* Set link Hover Color */

/* Parent List */

.custom-menu-primary .hs-menu-wrapper>ul>li {
    font-size: 16px !important;
    /* Se cambia de 14px por 16px */
}

.custom-menu-primary .hs-menu-wrapper>ul>li>a:hover {
    color: #138ebf !important;
    /* Se cambia  por #138ebf */
}

/* Child List */


/* 3rd Level menu */


.custom-menu-primary .hs-menu-wrapper>ul ul ul li a {
    /* color:; */
    color: #06272E !important;
    /* Se cambia #000 por #06272E se cambia #fffff */
}


/* Override max width on menu links */


/* Carret after Menu items with dropdown */


/* Carret after Menu items with dropdown */

/* Show menu and remove background color on desktop after toggling mobile menu */

/* Force header to trigger mobile layout on iPads */


/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */


/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can
 * use this for custom styling on any element when the menu is in the open position.
 */


@media (max-width: 768px) {


    /* Variables
     ========================================================================== */

        {
        % set menuColorMobile="#06272E"%
    }

    /* Set Mobile Menu Background Color */
    /* Se cambia color #000000 por #06272E */
        {
        % set aColorMobile="#ffffff"%
    }

    /* Set Link Color */
        {
        % set aColorHoverMobile="#ffffff"%
    }

    /* Set Link Hover Color */

    /*
    * Menu Reset
    *
    * Remove styling from desktop version of custom-menu-primary. Place any
    * additional CSS you want removed from the mobile menu in this reset
    */
    .custom-menu-primary,
    .custom-menu-primary .hs-menu-wrapper>ul,
    .custom-menu-primary .hs-menu-wrapper>ul li,
    .custom-menu-primary .hs-menu-wrapper>ul li a {
        color: {
                {
                aColorMobile
            }
        }

        ;
    }


    /* Toggle Button
     ========================================================================== */



    /* Change button when menu is open */


    /* Toggle Button Icon & Animations
     ========================================================================== */
    .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after {
        background-color: {
                {
                aColorMobile
            }
        }

        ;
        /* Icon color */
    }


    /* Child Toggle Button
     ========================================================================== */


    /* Child Toggle Button Icon & Animations
     ========================================================================== */
    .child-trigger i, .child-trigger i:after {
        background-color: {
                {
                aColorMobile
            }
        }

        ;
        /* Icon color */
    }


    /* Menu Styles on Mobile Devices
     ========================================================================== */

    /* Hide menu on mobile */


    /* Make child lists appear below parent items */

    /* Mobile Menu Styles */

    /* Level 1 Menu List Styles */


    /* Level 1 and Higher Menu List Styles */

    .custom-menu-primary .hs-menu-wrapper>ul li a {
        color: {
                {
                aColorMobile
            }
        }

         !important;
        /* link color set by global mobile-aColor variable */
    }

    /* Level 2 and Higher Menu List Styles */


    /* Level 3 and Higher Menu List Styles */


}


/* ==========================================================================


   4. TEMPLATE MODULE SELECTORS


   ========================================================================== */




/* Common Template Selectors
   ========================================================================== */


/* Common One Column Selectors */

/* Common Two Column Selectors */

/* Common Three Column Selectors */


/* Site Pages
   ========================================================================== */

/* One Column Template */


/* Two Column Template */


/* Three Column Template */



/* Landing Pages
   ========================================================================== */

/* One Column Template */


/* Two Column Template */


/* Three Column Template */


/* System Pages
   ========================================================================== */

/* Error Templates 404, 500 */


/* Password template */


/* Email Subscribition templates */



/* ==========================================================================


   5. COS COMPONENTS


   ========================================================================== */


/* ==========================================================================
   Blog
   ========================================================================== */


/* Blog Post and Listing Body Class */

/* Blog Post */

/* Blog Listing */

/* Blog Columns Wrapper */


/* Blog Content Column
   ========================================================================== */


/* Use this to style the main wrapper for the blog listing pages */


/* Use this to style the main wrapper for the blog post pages */


/* Blog Title */


/* Blog Post Title */


/* Blog Author and Avatar */


/* Use this to set up different styling for your blog posts */


/* Post Featured Image on Listings Page */


/* Read More Link */


/* Blog Topics List */

/**
 * Blog Social Sharing icons
 *
 * Overrides defaults to better align icons and prevent overlapping
 */


/**
 * Blog Commments
 *
 * Custom styles are listed below, as the COS does not provide default styles.
 */


/* Pagination */


/* Blog Author Page */



/* Blog Sidebar
   ========================================================================== */


/* Blog Modules */



/* ==========================================================================
   Forms
   ========================================================================== */


/* All Global Forms
   ========================================================================== */

/* Form Field */


/* Descriptions */


/* Labels */

/* One Line Inputs */


/* Separate Styles for Multiple Line Inputs */


/* Separate Styles for Drop Downs */


/* Multiple Selection Inputs */


/* Required */

/* Placeholder Text */



/* Form Module
   ========================================================================== */

/* Form Field */


/* Descriptions */


/* Labels */


/* One Line Inputs */


/* Separate Styles for Multiple Line Inputs */


/* Separate Styles for Drop Downs */


/* Multiple Selection Inputs */


/* Blog Comment Form
   ========================================================================== */

/* Label */


/* Inputs */


/* Error */


/* Blog Subscription Form
   ========================================================================== */

/* Label */
#hs_form_target_blog_subscription .hs-form-field>label {}

#hs_form_target_blog_subscription label {}

/* Inputs */
#hs_form_target_blog_subscription input[type="email"], .widget-type-blog_subscribe input[type="email"] {
    width: 70%;
    float: left;
    margin-top: 2px;
    height: 36px;
}

.blog-sidebar #hs_form_target_blog_subscription input[type="email"] {}

#hs_form_target_blog_subscription input[type="email"]:focus {}

#hs_form_target_blog_subscription input[type="radio"] {}


/* Google Search Form
   ========================================================================== */

/* Label */
.widget-type-google_search label {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    display: block;
    text-rendering: optimizelegibility;
    margin: 0px 0px 20px;
}

/* Input */
.widget-type-google_search input[type="text"] {
    width: 60%;
    float: left;
    margin-top: 0px;
    height: 36px;
}

.widget-type-google_search input[type="focus"] {}

.widget-type-google_search .hs-button.primary {
    float: left;
    margin-left: 2px;
}

/* Multi Column Form
   ========================================================================== */

body .hs-form fieldset.form-columns-1 {}

body .hs-form fieldset.form-columns-1 .hs-form-field {}

body .hs-form fieldset.form-columns-2 {}

body .hs-form fieldset.form-columns-2 .hs-form-field {}

body .hs-form fieldset.form-columns-3 {}

body .hs-form fieldset.form-columns-3 .hs-form-field {}

/* Multiple Selection Inputs */
body form.hs-form .hs-form-field ul.inputs-list li input {}

body input[type="radio"] {}

body input[type="checkbox"] {}

body form.hs-form fieldset {
    max-width: none;
}

body form.hs-form fieldset .hs-form-field {
    padding: 0 10px 0 0;
}

body form.hs-form fieldset[class*="form-columns"] .input {
    margin-right: 0;
}

body form.hs-form fieldset[class*="form-columns"] .hs-input {
    width: 100%;
}

body form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] {
    width: auto;
}

body form.hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.33%;
}

@media (max-width: 400px) {
    body form.hs-form fieldset .hs-form-field {
        padding: 0;
    }

    body form.hs-form fieldset.form-columns-3 .hs-form-field,
    body form.hs-form .form-columns-2 .hs-form-field .hs-input,
    body form.hs-form .form-columns-3 .hs-form-field .hs-input {
        width: 100%;
    }

    body form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] {
        width: auto;
    }
}

/* Form Error Selectors
   ========================================================================== */
.hsformerror {
    font-size: 12px !important;
    border: 0 !important;
    color: #FFF !important;
    background-image: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    z-index: 99999 !important;

    border-color: {
            {
            accentColor1
        }
    }

     !important;

    background: {
            {
            accentColor1
        }
    }

     !important;
}

.hsformerror .close-form-error {
    color: {
            {
            accentColor1
        }
    }

    ;
}

.hsformerror em {
    border-color: {
            {
            accentColor1
        }
    }

    transparent transparent !important;
}




/* ==========================================================================
   Buttons
   ========================================================================== */


/* All Global Buttons (Excluding CTAs)
   ========================================================================== */

body .hs-button.primary,
body input[type="submit"],
body input[type="button"] {
    background: #fff;
    border-style: solid;
    border-width: 2px;

        {
            {
            transition("all 0.4s ease-in-out")
        }
    }

    font-family: {
            {
            webfont1
        }
    }

    ;
    padding: 14px 18px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;

    border-radius: {
            {
            btnborderrad
        }
    }

    ;

        {
            {
            userselect("none")
        }
    }

    text-decoration: none;
    color: #FFF;

    border-color: {
            {
            themecolor
        }
    }

    ;

    background: {
            {
            themecolor
        }
    }

    ;
    -webkit-appearance: none;
}

body .hs-button.primary:hover,
body input[type="submit"]:hover,
body input[type="button"]:hover {

    border: 2px solid #FFF;

    border-color: {
            {
            themecolor
        }
    }

    ;
    background: #fff;

    color: {
            {
            themecolor
        }
    }

    ;
}

body .hs-button.primary:focus,
body input[type="submit"]:focus,
body input[type="button"]:focus {}


/* Form Module Button
   ========================================================================== */

.hs_cos_wrapper_type_form .hs-button.primary.large {}

.hs_cos_wrapper_type_form .hs-button.primary.large:hover {}

.hs_cos_wrapper_type_form .hs-button.primary.large:focus {}


/* Blog Comment Button
   ========================================================================== */
#add-comment-button.hs-button.primary {}

#add-comment-button.hs-button.primary:hover {}

#add-comment-button.hs-button.primary:focus {}

/* Blog comment "reply to" section */
.comment-reply-to {
    color: {
            {
            baseColor
        }
    }

     !important;
    background: none !important;
    padding-left: 0px !important;
}

.comment-reply-to:before {
    content: "\f112";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 7px;
    font-size: 15px;

    color: {
            {
            accentColor1
        }
    }

    ;
    vertical-align: top;
}

/* Blog Subscription Button
   ========================================================================== */
#hs_form_target_blog_subscription .hs-button.primary.large {}

#hs_form_target_blog_subscription .hs-button.primary.large:hover {}

#hs_form_target_blog_subscription .hs-button.primary.large:focus {}


/* Google Search Button
   ========================================================================== */
.widget-type-google_search .hs-button.primary {}

.widget-type-google_search .hs-button.primary:hover {}

.widget-type-google_search .hs-button.primary:focus {}


/* CTA Buttons
   ========================================================================== */

/**
 * Override global CTA styles by wrapping the CTA module in a module group
 * that has an ID, and use that ID to prefix your CTA selector. Example shown below.
 *
 * All overriding properties require !important tags.
*/

/* CTA button with border */
.cta_border_button {
    background: #fff;
    border-style: solid;
    border-width: 2px;

        {
            {
            transition("all 0.4s ease-in-out")
        }
    }

    font-family: {
            {
            webfont1
        }
    }

    ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;

        {
            {
            borderradius("4px")
        }
    }

        {
            {
            userselect("none")
        }
    }

    text-decoration: none;

    color: {
            {
            accentColor1
        }
    }

    ;

    border-color: {
            {
            accentColor1
        }
    }

    ;
    -webkit-appearance: none;
}

.cta_border_button:hover {
    border: 2px solid #FFF;

    color: {
            {
            accentColor1
        }
    }

    ;

    border-color: {
            {
            accentColor1
        }
    }

    ;

    background: {
            {
            accentColor1
        }
    }

    ;
    color: #FFF;
}

/* CTA button with Solid Background */
.cta_solid_button {
    background: #34495E;
    border-style: solid;
    border-width: 2px;
    color: #FFF;

        {
            {
            transition("all 0.4s ease-in-out")
        }
    }

    font-family: {
            {
            webfont1
        }
    }

    ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;

        {
            {
            borderradius("4px")
        }
    }

        {
            {
            userselect("none")
        }
    }

    text-decoration: none;
    text-transform: uppercase;

    border-color: {
            {
            accentColor1
        }
    }

    ;
    -webkit-appearance: none;
}

.cta_solid_button:hover {
    background: #FFF;
    border-style: solid;
    border-width: 2px;

    border-color: {
            {
            accentColor1
        }
    }

    ;

    background: {
            {
            accentColor1
        }
    }

    ;
    text-transform: uppercase;
}








/* CTA button with Solid Background */
.cta_corona_button {
    background: #4983C4;
    border-style: solid;
    border-width: 2px;
    color: #FFF;

        {
            {
            transition("all 0.4s ease-in-out")
        }
    }

    font-family: {
            {
            webfont1
        }
    }

    ;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;

        {
            {
            borderradius("4px")
        }
    }

        {
            {
            userselect("none")
        }
    }

    text-decoration: none;
    text-transform: uppercase;

    border-color: {
            {
            accentColor1
        }
    }

    ;
    -webkit-appearance: none;
}

.cta_corona_button:hover {
    background: #FFF;
    border-style: solid;
    border-width: 2px;

    border-color: {
            {
            accentColor1
        }
    }

    ;

    background: {
            {
            accentColor1
        }
    }

    ;
    text-transform: uppercase;
}

.themecolorcta, .themecolorctalight:hover {
    background: {
            {
            themecolor
        }
    }

    ;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
    color: #FFF;
    padding: 6px 18px;

    border-radius: {
            {
            btnborderrad
        }
    }

    ;
    margin-top:-10px;
}


.themecolorcta:hover, .themecolorctalight {
    background: #FFF;

    color: {
            {
            themecolor
        }
    }

    ;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
    padding: 6px 18px;

    border-radius: {
            {
            btnborderrad
        }
    }

    ;
}

.reveal-modal-bg {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #000;
    background: rgba(0, 0, 0, .8);
    z-index: 100;
    display: none;
    top: 0;
    left: 0;
}

.reveal-modal {
    visibility: hidden;
    top: 100px;
    left: 50%;
    margin-left: -300px;
    width: 520px;
    background: #eee url(modal-gloss.png) no-repeat -200px -80px;
    position: absolute;
    z-index: 101;
    padding: 30px 40px 34px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .4);
    -box-shadow: 0 0 10px rgba(0, 0, 0, .4);
}

.reveal-modal.small {
    width: 200px;
    margin-left: -140px;
}

.reveal-modal.medium {
    width: 400px;
    margin-left: -240px;
}

.reveal-modal.large {
    width: 600px;
    margin-left: -340px;
}

.reveal-modal.xlarge {
    width: 800px;
    margin-left: -440px;
}

.reveal-modal .close-reveal-modal {
    font-size: 22px;
    line-height: .5;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #aaa;
    text-shadow: 0 -1px 1px rbga(0, 0, 0, .6);
    font-weight: bold;
    cursor: pointer;
}




/* ==========================================================================


   6. MISCELLANOUS


   ========================================================================== */





/**
 * Styles that do not fit into available sections above can go here.
 * For example, one would place 3rd party plugin overriding styles here.
 *
 * This section is NOT for 'Custom' styles.  All custom styles must go in the
 * proper sections above.
 *
 * For instance, custom header and footer styles must go in the HEADER and
 * FOOTER sections.  Custom styles for anything in-between the header and footer
 * (such as, styles that are unique to the HOMEPAGE only), must go in the
 * CONTENT section.
*/








/* ==========================================================================


   7. MOBILE MEDIA QUERIES


   ========================================================================== */





/* Screen sizes smaller than site maxWidth (.page-center)
   ========================================================================== */

@media (max-width: {
            {
            maxWidth
        }
    }

) {
    .container-fluid .row-fluid .page-center {
        padding: 10px;
    }

    .container-fluid .footer-copyright .row-fluid .page-center {
        padding: 0 10px;
    }
}


/* Landscape tablet and smaller devices
   ========================================================================== */

@media (max-width: 768px) {
    .header-container-wrapper {
        position: relative;
    }

    .header-container {
        padding: 0;
    }

    .header-container-wrapper .container-fluid .row-fluid .page-center {
        padding: 0;
    }

    .header-container .hs_cos_wrapper_type_logo a img {
        max-width: 120px;
        margin: 5px 0 5px 10px;
    }

    .row-fluid [class*="span"].header-cta {
        display: none !important;
    }

    /* General */
    .body-container-wrapper {
        padding-top: 0;
    }

    .padding40tb {
        padding: 25px 0;
    }

    .sidebar.right,
    .main-content,
    .blog-sidebar {
        margin: 25px 0;
    }

    /* Team Member Social */
    .three-column .team-member-social a {
        display: inline-block;
    }

    .three-column .team-member-social i {
        padding-right: 5px;
    }

    .three-column .team-member-social a:last-child i {
        padding-right: 0;
    }

    .team-member-name,
    .team-member-title {
        text-align: center;
    }

    /* Footer */
    .footer-container-wrapper .more-links a i {
        display: inline-block;
        width: auto;
    }

    .footer-container .about-us,
    .footer-container .more-links {
        margin-bottom: 25px;
    }

    /* Se agrega estilo para alineación centrada en movil */

    .span3 .widget-span .widget-type-cell h5 {
        padding-left: 0px !important;
    }

    .cell-wrapper .layout-widget-wrapper p a {
        padding-left: 0px !important;
    }

    /* Homepage */
    .service-group h4,
    .service-group-icon,
    #offer-background-image h1,
    #banner-background-image {
        text-align: center;
    }

    .homepage .subscribe-form {
        padding-top: 10px;
    }

    .homepage .subscribe-form .hs_email {
        width: auto;
    }

    #banner-background-image h1 {
        font-size: 32px;
        margin-bottom: 15px;
        margin-top: 55px;
    }

    #banner-background-image h3 {
        display: none;
    }

    .homepage .subscribe-form {
        width: 100%;
    }

    .social-tagline {
        text-align: center;
        margin-bottom: 15px;
    }

    /* Blog */
    #comment-form {
        margin-bottom: 25px;
    }

    .four-column-wrapper .hs_cos_wrapper_widget {
        display: inline-block !important;
        max-width: 49% !important;
        padding: 0px 10px;
    }
}


/* Landscape phones and smaller devices
   ========================================================================== */

@media (max-width: 479px) {}


/* Custom styles - Akhil
   ========================================================================== */

.main-title {
    padding: 250px 0 220px 0;
}

.header-menu {
    padding-top: 20px;
}

.main-title p {
    font-size: 16px;
}



.grayscale {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 10+, Firefox on Android */
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    /* IE 6-9 */
}

.grayscale:hover {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    filter: none;
}


.slider-mode-lightbox.hs-cos-flex-slider-control-panel .hs_cos_flex-slides li {
    width: 24.8%;
    height: 300px;
    margin: 0px;


}

.font-awesome-icon {
    color {
            {
            secondaryColor
        }
    }

    ;
    height: 120px;
    width: 120px;
    font-size: 50px;

    vertical-align: middle;
    margin: 15px auto !important;
    float: none !important;
}

.parallax {
    padding: 60px 0 60px 0;
    /* Se cambia padding: 100px 0 200px 0; a padding: 60px 0 60px 0; */

}

.port {
    opacity: 0;
}

.port:hover {
    opacity: 1;
}



/*--------Image Thumbnail horizontal slider --------------------*/

/* 
    jQuery Logo Slider Ticker 
	by http://webdesignandsuch.com
	build with code from http://bxslider.com
*/


#slider {
    list-style: none;
    padding: 0px width:100% !important;
}

.slider-container {

    padding: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#slider img {
    width: 200px;
    height: 125px;
    margin: 0px;
    display: inline-block
}

#slider li {
    max-width: 210px;
}


.bx-window, .bx-wrapper {
    width: 100% !important;
}

.all-templates {

    float: none;
    margin: 0 auto;
    text-align: center;
    padding: 0px 0px 0px 0px;
    /* Se cambia padding: 50px 50px 0px 50px; por padding: 0px 0px 0px 0px; */
}



/* --------- End of Thumbnail slider ------- */


/* --------- Mobile Landscape ------- */

@media only screen and (max-width: 640px) and (min-width:400px) {

    .slider-mode-lightbox.hs-cos-flex-slider-control-panel .hs_cos_flex-slides li {
        width: 24%;
        height: 100px;

    }

    .hs_cos_flex-slider .hs_cos_flex-slides {
        text-align: center;
    }

    .icons {
        text-align: center;
        padding: 0 10px;
    }

    .font-awesome-icon {
        height: 30px;
    }

    .right-image {
        padding: 30px 0 0 0;
    }

    .main-title {
        padding: 0px;
    }

    h1 {
        font-size: 25px;
        /* Se cambia de 30px a 25px */

    }

    h3 {
        font-size: 17px;
    }

    .service-footicon {
        padding: 0 0 50px 0;
    }

    .headerlogo {
        margin-right: 300px;
    }

    .videologo {
        max-width: 120px !important;

    }

    .videocaption {
        margin-top: 10px !important;
        padding-bottom: 70px !important;

    }

    .gallery li {
        margin: 20px !important;

    }

    .logo-slider {
        display: none !important;
    }

    .hs-featured-image-wrapper {
        width: 100% !important;
    }

    .imgthumbsmall {
        max-width: 100% !important;
    }

    .hs-featured-image {
        height: auto !important;
        padding-right: 0px !important;
        padding-bottom: 10px;
    }

    .hs-featured-image-wrapper {
        height: auto !important;
    }

    .moresmallimg {
        text-align: center;
    }

    .single {
        background: #fff;
        padding-bottom: 20px;
    }

    .hubspot-author_data {
        padding: 10px;
    }

    .post-header h2 {

        text-align: center;
    }

    .abtideatext {
        text-align: center;
        padding-bottom: 10px;
    }

    .iconservice {
        padding-top: 20px;
    }

    .pwdheader {
        padding-bottom: 50px;
    }

    .blog2 .hs-featured-image, .blog2 .hs-featured-image-wrapper {
        height: auto !important;
    }

    .portfolioFilter a {
        padding: 3px 6px !important;
    }

    .whitemenulogo {
        min-width: 500px;
    }
}

/* --------- Mobile Potrait ------- */
@media only screen and (max-width: 415px) {

    h1 {
        font-size: 25px;
        /* Se cambio de 30ps por 25px */

    }

    h2 {
        font-size: 23px;
    }

    .slider-mode-lightbox.hs-cos-flex-slider-control-panel .hs_cos_flex-slides li {
        width: 24%;
        height: 100px;

    }

    .hs_cos_flex-slider .hs_cos_flex-slides {
        text-align: center;
    }

    .icons {
        text-align: center;
        padding: 0 10px;
    }

    .font-awesome-icon {
        height: 30px;
    }

    .right-image {
        padding: 30px 0 0 0;
    }

    .all-templates {

        padding: 20px 0;
    }

    .main-title {
        padding: 50px 0;
    }

    h3 {
        font-size: 17px;
    }

    .service-footicon {
        padding: 0 0 50px 0;
    }

    .menu-slider {
        margin-top: -100px !important;
    }

    .headerlogo {
        margin-right: 100px;
    }

    .videomenu {
        max-width: 150px;

    }


    .videologo {
        max-width: 100px !important;

    }

    .gallery li {
        margin: 20px !important;
        height: 150px !important;
        width: 200px !important;
    }


    .gallery img {
        width: 200px !important;
        height: 150px !important;

    }

    .logo-slider {
        display: none !important;
    }

    .hs-featured-image-wrapper {
        width: 100% !important;
    }

    .imgthumbsmall {
        max-width: 100% !important;
    }

    .hs-featured-image {
        height: auto !important;
        padding-right: 0px !important;
        padding-bottom: 10px;
    }

    .hs-featured-image-wrapper {
        height: auto !important;
    }

    .moresmallimg {
        text-align: center;
    }

    .single {
        background: #fff;
        padding-bottom: 20px;
    }

    .post-header h2 {
        font-size: 14px !important;
        text-align: center;
    }

    .hubspot-author_data {
        padding: 10px;
    }

    .authortext {
        width: auto !important;
    }

    .abtideatext {
        text-align: center;
        padding-bottom: 10px;
    }

    .iconservice {
        padding-top: 20px;
    }

    .lpv2text {
        font-size: 30px;
    }

    .portfolioFilter a {
        padding: 3px 6px !important;
        margin: 5px;
    }

    .three-column-wrapper .hs_cos_wrapper_widget {

        max-width: 100% !important;

    }

    .two-column-wrapper .hs_cos_wrapper_widget {

        max-width: 100% !important;
    }

    .four-column-wrapper .hs_cos_wrapper_widget {

        max-width: 100% !important;
    }

    .whitemenulogo {
        min-width: 280px;
    }
}



/* --------- Tablet Landscape ------- */
@media (max-width: 1139px) and (min-width: 768px) {

    .slider-mode-lightbox.hs-cos-flex-slider-control-panel .hs_cos_flex-slides li {
        width: 24.6%;
        height: 180px;
        text-align: center;

    }

    .menu-slider {
        margin-top: -600px !important;
    }

    .videocaption {
        margin-top: 50px !important;
        padding-bottom: 150px !important;

    }

    .gallery li {
        margin: 20px !important;

    }

    .pwdheader {
        padding-bottom: 50px;
    }

    .columnheading {
        padding: 130px 30px;
    }



}

/* --------- Tablet Potrait ------- */
@media (max-width: 768px) and (min-width: 640px) {

    .slider-mode-lightbox.hs-cos-flex-slider-control-panel .hs_cos_flex-slides li {
        width: 24.6%;
        height: 150px;
        text-align: center;

    }

    .menu-slider {
        margin-top: -400px !important;
    }

    .videocaption {
        margin-top: 30px !important;
        padding-bottom: 50px !important;

    }

    .gallery li {
        margin: 20px !important;

    }

    .hubspot-author_data {
        max-width: 1000px;
    }

    .post-header h2 {
        font-size: 16px !important;
    }

    .post-header {
        padding: 5px !important;
    }

    .contentsmallimg {
        padding: 5px !important;
    }

    .single {
        padding-bottom: 20px;
    }

    .lpv1body {
        padding-top: 10px;
    }

    .portfolioFilter a {
        padding: 3px 6px;
    }

    .whitemenulogo {
        min-width: 680px;
    }


}



.testimonial img {
    border-radius: 125px;
    overflow: none;
    border: 4px solid #DDDDDD !important;
    float: none;
    margin: 0 auto;

}

.footer a:link {
    text-decoration: none;
}

.inside-menu ul>li>a {
    color: #fff;
}

/* Se cambia color #fff al color #06272E - se regresa a blanco */



/* Skill bar */

.skillbar {
    position: relative;
    display: block;
    margin-bottom: 15px;
    width: 100%;
    background: #eee;
    height: 35px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -ms-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -ms-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
}

.skillbar-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    font-weight: bold;
    font-size: 13px;
    color: #ffffff;
    background: #6adcfa;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.skillbar-title span {
    display: block;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.skillbar-bar {
    height: 35px;
    width: 0px;
    background: #6adcfa;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.skill-bar-percent {
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 11px;
    height: 35px;
    line-height: 35px;
    color: #ffffff;
    color: rgba(0, 0, 0, 0.4);
}

/* End Skill bar */


/* Icon circle */

.iconcircle {

    background: #FFF;
    width: 150px !important;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    line-height: 100px;
    vertical-align: middle;
    padding: 5%;
    font-size: 14px;
    transition: background-color 0.5s ease;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
    float: none !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.iconcircle:hover {


    color: #FFF;
}




.service-circle {
    padding: 10px 10px;
}


.homeslider {
    font-size: 14px;

}

.homeslider {
    z-index: -1000;
    position: absolute;
    width: 100%;
}

.videocaption {
    margin-top: 150px;
    padding-bottom: 420px;

}

@media (max-width: 1139px) {
    .lpv6video {
        padding: 0 0px 60px;

    }
}

@media (min-width: 1139px) {

    .lpv6video {
        padding: 0 30px 30px;
    }

    .gallery li {
        margin: 20px !important;
        height: 225px !important;
    }


    .gallery img {
        width: 300px !important;
        height: 225px !important;

    }

    .columnheading {
        padding: 200px 30px;
    }

}

.gallery img {
    border: 5px solid #ddd;
    border-radius: 5px;
}

/* Testimonial Rating */

.review-wrapper {
    width: 370px;
    background: #fff;
    min-height: 375px;
    box-shadow: #ccc 0px 0px 5px 0px;
    padding: 30px;
    box-sizing: border-box;
}

.logo {
    max-width: 50%;
    padding: 0px 0 0 0;
}

.rating-wrapper {
    border-top: solid 1px #eee;
    border-bottom: solid 1px #eee;
    display: inline-block;
    padding: 5px 30px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.star-wrapper {
    width: 20%;
    float: left;
}

.star {
    width: 50%;
    float: left;
    margin-left: -1px;
    fill: #ccc;
}

.none {
    display: none;
}

/* Half Star*/
.half-star:nth-child(-n+1) svg:nth-child(1) {
    fill: #ffd203;
}

/* One Star*/
.one-star:nth-child(-n+1) polygon {
    fill: #ffd203 !important;
}

.one-star:nth-child(-n+1) #right {
    fill: #ffd203 !important;
}

/* One and a Half Star*/
.one-half-star:nth-child(1) svg {
    fill: #ffd203;
}

.one-half-star:nth-child(2) #left {
    fill: #ffd203;
}

/* Two Star*/
.two-star:nth-child(-n+2) svg:nth-child(1) {
    fill: #ffd203 !important;
}

.two-star:nth-child(-n+2) svg:nth-child(2) {
    fill: #ffd203 !important;
}

/* Two and a Half Star*/
.two-half-star:nth-child(1) svg, .two-half-star:nth-child(2) svg {
    fill: #ffd203;
}

.two-half-star:nth-child(3) #left {
    fill: #ffd203;
}

/* Three Star*/
.three-star:nth-child(-n+3) svg:nth-child(1) {
    fill: #ffd203 !important;
}

.three-star:nth-child(-n+3) svg:nth-child(2) {
    fill: #ffd203 !important;
}

/* Three and a Half Star*/
.three-half-star:nth-child(1) svg, .three-half-star:nth-child(2) svg, .three-half-star:nth-child(3) svg {
    fill: #ffd203;
}

.three-half-star:nth-child(4) #left {
    fill: #ffd203;
}

/* Four Star*/
.four-star:nth-child(-n+4) svg:nth-child(1) {
    fill: #ffd203 !important;
}

.four-star:nth-child(-n+4) svg:nth-child(2) {
    fill: #ffd203 !important;
}

/* Four and a Half Star*/
.four-half-star:nth-child(1) svg, .four-half-star:nth-child(2) svg, .four-half-star:nth-child(3) svg, .four-half-star:nth-child(4) svg {
    fill: #ffd203;
}

.four-half-star:nth-child(5) #left {
    fill: #ffd203;
}

/* Five Star*/
.five-star:nth-child(-n+5) svg:nth-child(1) {
    fill: #ffd203 !important;
}

.five-star:nth-child(-n+5) svg:nth-child(2) {
    fill: #ffd203 !important;
}

.testimonial-author {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-size: cover !important;
    border-radius: 50%;
    border: solid 5px #eee;
    float: left;
    margin-right: 24px;
}

.testimonial-info {
    width: 235px;
    float: left;
}

.testimonial-info p {
    display: inline-block;
    float: left;
    padding: 0px !important;
    margin: 0px;
}

.author {
    font-weight: 900;
}

.company {
    color: #828282;
    margin-bottom: 20px !important;
}

.single {
    float: right;
    display: inline-block;
    color: blue;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}

.pop-modal {
    display: block;
    position: absolute;
    width: 380px;
    margin: 0px auto 0px -190px;
    left: 50%;
    top: 50%;
    padding: 24px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    display: none;
    border-radius: 5px;
}

.pop-modal-inner {
    position: relative;
}

.closeBtn {
    position: absolute;
    right: -15px;
    top: -15px;
}

.glyphicon {
    background: #ccc;
    padding: 6px 6px 2px 6px;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
}




/* -------  Blog Style -------- */

.more-link {
    padding: 8px 12px;

    color: {
            {
            themecolor
        }
    }

     !important;
    border: 2px solid;
    font-weight: 700;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
    outline: 0;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;

    border-radius: {
            {
            btnborderrad
        }
    }

    ;
    font-size: 12px;
}

.more-link:hover {
    background: {
            {
            themecolor
        }
    }

    ;
    color:#fff !important;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
}

.post-body p {
    padding-top: 10px;
    font-size: 16px;
    /* Se cambia de 13 a 16px */
    line-height: 20px;
    color: #787878;
    text-align: justify;
    background: #FFF;
    padding-right: 10px;
    padding-left: 10px;

}

/* Se pone como comentario para que no se sobreescriba el estilo con los estilos de la css nuevas modificaciones */
/*
.hs-featured-image {
    max-width: 500px;
    padding-right: 20px;
    width: 550px;
    height: 300px;
    border: 2px solid #e0e0e0;
    margin: 0px;
    float: left;
}
*/

.post-header h2 {
    font-size: 20px;
}

/* Se pone como comentario para que no se sobreescriba con los estilos de la css nuevas-modificaciones */
/*
.hs-featured-image-wrapper{
    width: 550px;
    height: 300px;
    max-width: 500px;
}
*/

.singlepost {
    background: #fff;
    margin: 30px;
}

.paginationsmallimg {

    padding: 8px 12px;

    color: {
            {
            themecolor
        }
    }

     !important;
    border: 2px solid;
    font-weight: 700;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
    outline: 0;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    font-size: 12px;
    margin: 30px;
    margin-bottom: 100px;

}

.paginationsmallimg:hover {
    background: {
            {
            themecolor
        }
    }

    ;
    color:#fff !important;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
}

.contentsmallimg {

    font-size: 13px;
    line-height: 20px;
    color: #787878;
    text-align: justify;
    background: #FFF;
    padding-right: 10px;
    padding-left: 10px;
}

/* Se pone en comentario para que no se sobreescriba con e estilo de la css "nuevas-modificaciones"*/
/*.imgthumbsmall{
    max-width:50%;
    float:left;
}*/

.moresmallimg {
    padding: 20px;
}

.hs-social-facebook {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png") !important;
}

.authortext {
    display: inline !important;
    width: 380px;

}

.entry-colors {
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 0px;
}

.entry-colors .color_col_1, .entry-colors .color_col_2, .entry-colors .color_col_3 {
    width: 33.33%;
    height: 1px;
    float: left;
}

.color_col_1 {
    background: {
            {
            themecolor
        }
    }

    ;
    height: 1px;
}

.color_col_2 {
    background: {
            {
            themecolor
        }
    }

    ;
    height: 1px;
}

.color_col_3 {
    background: {
            {
            themecolor
        }
    }

    ;
    height: 1px;
}

.author-link, .vieo-author-web {
    color: {
            {
            themecolor
        }
    }

    ;
}

.authorbio {
    padding-bottom: 20px;
}

.new-comments .hs_firstname, .new-comments .hs_email {
    width: 50%;
    float: left;
    display: inline;
    padding-right: 10px;

}

.new-comments .hs_lastname, .new-comments .hs_website {
    width: 50%;
    display: inline;
    padding-left: 10px;
    float: right;
}

.no-comments {
    display: none;
}

.comment-from h4 {
    font-weight: lighter;
    text-transform: uppercase;
}

.blogbtn.hs-button {
    color: #ddd !important;
}



/***********************************************************************************************/
/* Button */
/***********************************************************************************************/

    {
    % if scroll_top=="show"%
}

.go-top {
    position: fixed;
    bottom: 2em;
    right: 2em;
    width: 64px;
    height: 64px;
    text-decoration: none;
    color: white;
    background: url("//cdn2.hubspot.net/hubfs/1823288/up-arrow_2.png") no-repeat center center;
    font-size: 12px;
    padding: 1em;
    display: none;
}

    {
    % endif %
}



/*******************************   END   ****************************/

.fa {
    color: #bcbcbc;


}

.fa:hover {

    color: {
            {
            themecolor
        }
    }

    ;
}

.lpv1 {

    color: #FFF;
    font-weight: normal;
}

.lpv1 input[type="submit"], .lpv1 .hs_email, .lpv1 .hs_firstname {
    width: 100%;
    padding-right: 0px;
}

.lpv1 label {
    font-weight: normal;
}

.lpv1 input[type="submit"] {
    font-size: 20px;
    font-weight: bold;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    letter-spacing: .5px;
}

.lpv1left h4 {
    margin: 0px;
}

.lpv1left .hs_cos_wrapper_type_rich_text ul li:before {
    color: #138ebf;
    /* Se cambia #7fba00 por #138ebf */
    font-size: 25px;
}

.lpv1left .hs_cos_wrapper_type_rich_text ul {
    padding: 0px;
    margin: 3px;
}

.lpv1left .hs_cos_wrapper_type_rich_text ul li {
    font-size: 16px;
    font-weight: bold;
}

.lpv1ul {
    padding-top: 20px;
}

@media only screen and (min-width:1139px) {
    .lpv1form {
        max-width: 35%;
        float: right;
    }

    .lpv1body {
        max-width: 75% !important;
    }

    .lpv1phn {

        padding: 30px 5px;
    }

    .lpmaintext {
        font-size: 40px;
    }

    .pwdheader {
        padding-bottom: 100px;
    }

}

@media (max-width: 1139px) and (min-width: 768px) {
    .lpv1form {

        float: right;
    }

    .lpv1body {
        max-width: 95% !important;
    }

    .lpv1phn {

        padding: 30px 5px;
    }

    .lpmaintext {
        font-size: 40px;
    }

    .lpv6video {
        text-align: center;
        float: none;
        margin: 0 auto;
    }
}

@media only screen and (max-width:768px) {

    .lpv1left {
        padding-top: 30px;
    }

    .lpv1logo {
        text-align: center;
    }

    .lpmaintext {
        font-size: 30px;
    }

    .lpv1phn {
        text-align: center;
        padding: 0px;
    }

    .lpv1text {
        text-align: center;
    }

    .lpv1copyright {
        font-size: 13px;
    }

}


.lpv2 input[type="email"], .lpv2 input[type="text"] {
    font-size: 1em;
    padding: 3%;
    padding-right: 13%;
    border: solid 1px #ddd;
    background: #f7f7f6;
    box-shadow: inset 0px 0px 4px 1px rgba(0, 0, 0, .1);
    -webkit-appearance: none;
}

.lpv2 .hs-form-field {
    margin-bottom: 10px;
}

.lpv2 .hs-form-required {
    display: none;
}

.lpv2 label {
    color: #000;
}

.faerror .fa {
    font-size: 100px !important;
    color: #C63427 !important;
    background: #FFF;
    padding: 5px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.faerrorsocial .fa {
    font-size: 22px !important;
    color: #C63427 !important;
    background: #FFF;
    padding: 9px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


#hs-pwd-widget-password {
    margin-bottom: 15px;
}

.confirmmain h2 {
    color: {
            {
            themecolor
        }
    }

    ;
    font-size: 20px;
    font-weight: bold;
}

.faunsuscrb .fa {
    font-size: 50px !important;

    color: {
            {
            themecolor
        }
    }

     !important;
    background: #FFF;
    padding: 15px 10px 20px 0px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.blog2 .hs-featured-image, .blog2 .hs-featured-image-wrapper {
    height: auto;
}

.blog2right h3 {
    font-size: 18px;
}

.blog2 p, .blog2 .contentsmallimg {
    /* padding-right:0px !important; */
    /* padding-left:0px !important; */
    font-size: 17px;
    line-height: 30px;

}

.blog2 .moresmallimg {
    padding: 0px;
}

.blog2 .more-link {
    float: right;
}

.blog2 .post-body {

    padding-bottom: 20px;
}

.blog2right .hs_email {
    width: 100%;
}

.blog2right a:link, .blog2right a:visited {
    color: #999;
}

.blog2 .singlepost {
    margin: 0px 30px;
}

.blog2right p {
    color: #999;
}

.blog2right ul {
    list-style-type: none;
    padding: 0px;
}

.blog2right ul li {
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0px;
}

.blog2right #hs_form_target_blog_subscription input[type="email"] {
    width: 100%;
    margin: 10px 0;
}

.blog2 #comment-form {
    padding: 30px !important;
    background: #f5f5f5;
    border-radius: 5px;
}

.blog2 h2 {
    font-size: 17px;
}





.blog3sidebar {
    margin-right: 0 !important;
    float: right !important;
}

.blog3main {
    margin-left: 0 !important;
}

@media (max-width: 767px) {
    .blog3main {
        margin-left: 0 !important;
    }

    .blog3main,
    .blog3sidebar {
        width: 100% !important;
        float: none !important;
    }


}


    {
    % if sticky_menu=="show"%
}

.fixedheader {
    position: fixed;
    top: 0;
    padding: 10px 20px;

    background: {
            {
            stickybg
        }
    }

    ;
    z-index:999;
    width: 100% !important;
    box-shadow: 4px 0 12px rgba(0, 0, 0, .25);
}

.fixedheader .hs-menu-wrapper>ul>li>a {
    color: {
            {
            sticky_textcolor
        }
    }

    ;
}


    {
    % endif %
}


.templatecolor {
    color: {
            {
            themecolor
        }
    }

    ;

}

.templatebgcolor {
    background: {
            {
            themecolor
        }
    }

    ;
}

.footerbg {
    background: {
            {
            footer_background
        }
    }

    ;
}



/* ---------FAQ Module Start----------------- */
.accordion {
    margin: 25px 0px;
}

.accordion_group {
    margin-bottom: 2px;

    border: 2px solid {
            {
            themecolor
        }
    }

    ;
    padding: 0px;
    background: #fff;
}

.accordion_header {
    cursor: pointer;
    font-size: 18px;
    line-height: 16px;
    width: 100%;
    padding: 10px 15px;
    color: #138ebf;
    /* Se cambia #7fba00 por #138ebf */
}

.accordion_icon {
    color: #34495e;
    padding-right: 16px;

    background-color: {
            {
            themecolor
        }
    }

    ;
    margin-right: 10px;
    font-size: 14px;
    border-radius: 3px;
}

.accordion_content {
    padding: 10px 15px;
    display: none;
    color: #fff;

    background: {
            {
            themecolor
        }
    }

    ;
}

.accordion_group .accordion_icon {
    position: relative;
}

.accordion_group .accordion_icon::before,
.accordion_group .accordion_icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 3px;
    width: 10px;
    height: 2px;
    margin-top: -1px;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .25s;
    transition: all .25s;
    background-color: #f0f0f0;
}

.accordion_group.expanded .accordion_icon::before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
}

.accordion_group .accordion_icon::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 1;
}

.accordion_group .accordion_icon::after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.accordion_group.expanded .accordion_icon::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

/* ---------FAQ Module End----------------- */

/* ---------Testimonial 2 Module Start----------------- */

.testimonial2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    color: #9e9e9e;
    display: inline-block;
    font-size: 16px;
    margin: 80px 7px;
    max-width: 310px;
    min-width: 250px;
    position: relative;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;

    border-top: 5px solid {
            {
            themecolor
        }
    }

    ;
    text-align:center;
}

.testimonial2:hover {}

.testimonial2 *,
.testimonial2 *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.testimonial2 figcaption {
    padding: 13% 10% 12%;
}

.testimonial2 figcaption:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);

    color: {
            {
            themecolor
        }
    }

    ;
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -30px;
    width: 60px;
}

.testimonial2 h3 {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
}

.testimonial2 h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
}

.testimonial2 blockquote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
}

/* ---------Testimonial 2 Module End----------------- */

/* ---------Testimonial 3 Module Start----------------- */

figure.testimonial3 {
    position: relative;
    float: left;
    margin: 10px 1% 40px;
    min-width: 400px;
    max-width: 480px;
    width: 100%;
    color: #333;
    text-align: left;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 8px;
}

figure.testimonial3 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

figure.testimonial3 img {
    float: right;
    max-width: 40%;
    vertical-align: middle;
    border-radius: 0 8px 8px 0;
}

figure.testimonial3 figcaption {
    top: 0;
    bottom: 0;
    left: 0;
    width: 60%;
    position: absolute;
    background-color: #ffffff;
    border-radius: 8px 0 0 8px;
}

figure.testimonial3 blockquote {
    position: relative;
    padding: 25px 50px 25px 50px;
    font-size: 0.8em;
    font-weight: 500;
    text-align: left;
    margin: 0;
    line-height: 1.6em;
    font-style: italic;
}

figure.testimonial3 blockquote:before,
figure.testimonial3 blockquote:after {
    font-family: 'FontAwesome';
    content: "\201C";
    position: absolute;
    font-size: 50px;
    opacity: 0.3;
    font-style: normal;
}

figure.testimonial3 blockquote:before {
    top: 25px;
    left: 20px;
}

figure.testimonial3 blockquote:after {
    content: "\201D";
    right: 20px;
    bottom: 0px;
}

figure.testimonial3 .arrow {
    top: 30px;
    left: 100%;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #ffffff;
    margin: 0;
    position: absolute;
}

figure.testimonial3 .author {
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 20px 15px;
    color: #7fba00;
    margin: 0;
    text-transform: uppercase;
}

figure.testimonial3 .author h5 {
    opacity: 0.8;
    margin: 0;
    font-weight: 800;
    font-size: 18px;
}

figure.testimonial3 .author h5 span {
    font-weight: 400;
    text-transform: none;
    padding-left: 5px;
}


@media (max-width: 400px) {

    figure.testimonial3 .author h5 {
        font-size: 10px;
    }

    figure.testimonial3 {
        min-width: 300px;

    }

    figure.testimonial3 blockquote {
        font-size: 7px;
    }
}

/* ---------Testimonial 3 Module End----------------- */

/* ---------Resources download Module Start ----------------- */



.portfolioFilter {
    padding: 15px 0;
    text-align: center;
}

.portfolioFilter a {
    margin-right: 6px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
}

.portfolioFilter a.current {
    background: {
            {
            themecolor
        }
    }

    ;

    border: 1px solid {
            {
            themecolor
        }
    }

    ;
    color: #f9f9f9;
}

.portfolioContainer {
    padding: 0px;
    border-radius: 3px;

}

.porttest {
    margin: 30px 30px 80px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid #ccc;
}

.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    pointer-events: none;
    z-index: 1;
}

.isotope,
.isotope .isotope-item {
    /* change duration value to whatever you like */
    -webkit-transition-duration: 0.8s;
    -moz-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.isotope {
    -webkit-transition-property: height, width;
    -moz-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform, opacity;
    transition-property: transform, opacity;
}



/* ---------Resources download Module End----------------- */


/* ---------------------- Team Member 2 Start  --------------------------------*/

.our-team2 .team-row2 {
    margin-left: -40px;
    margin-right: -40px;
}

.our-team2 .team-wrap2 {
    padding: 0 40px;
}

.our-team2 .container-fluid {
    padding: 0 50px;
}

.team-img2 img {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    overflow: hidden;
    width: 100%;
}

.team-member2,
.team-img2 {
    position: relative;
    overflow: hidden;
}

.team-title2 {
    margin: 30px 0 7px;
}

.overlay2 {
    background-color: rgba(20, 20, 20, .7);
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.team-details2 {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 5%;
    overflow: hidden;
    width: 100%;
    z-index: 2;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.team-details2 p {
    color: #fff;
}

.team-img2:hover .team-details2 {
    opacity: 1;
    margin-top: -80px;
}

.team-img2:hover .overlay2 {
    opacity: 1;
}

.socials2 a {
    display: inline-block;
    width: 37px;
    height: 37px;
    background-color: transparent;
}

.socials2 i {
    line-height: 37px;
    color: #616161;
    font-size: 14px;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.team-details2 .socials2 i {
    color: #fff;
}

.socials2 a:hover i {
    color: #fff;

    background-color: {
            {
            themecolor
        }
    }

    ;
}

/* ---------------------- Team Member 2 End  --------------------------------*/


.three-column-wrapper .hs_cos_wrapper_widget {
    display: inline-block !important;
    max-width: 33%;
    padding: 0px 10px;
}

.two-column-wrapper .hs_cos_wrapper_widget {
    display: inline-block !important;
    max-width: 48%;
    padding: 0px 10px;
}

.four-column-wrapper .hs_cos_wrapper_widget {
    display: inline-block !important;
    max-width: 24.7%;
    padding: 0px 10px;
}



/*######  Althea LP V3 start######*/

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700);

/* colors    */
    {
    % color "LP_V3themeColor"color="#138ebf", export_to_template_context=True %
}

/* Se cambia color="#7fba00" por color="#138ebf" */
    {
    % set LP_theme_Color=""%
}

    {
    % color "LP_V3footerColor"color="#424a56", export_to_template_context=True %
}

    {
    % set LP_footer_Color=""%
}

    {
    % color "LP_V3ClientBg"color="#f2f2f2", export_to_template_context=True %
}

    {
    % set LP_clientBG_Color=""%
}





.althea_lp_v3 .container-fluid .row-fluid .page-center {
    float: none !important;
    margin: 0 auto !important text-align:center;
}

.althea_lp_v3 a:link, .althea_lp_v3 a:visited {
    color: {
            {
            LP_theme_Color
        }
    }

    ;
    text-decoration: none;
}

.althea_lp_v3 a:hover, .althea_lp_v3 a:active {
    color: #444;
    text-decoration: underline;
}

.althea_lp_v3 p {
    font-family: "Lato", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75em;
    color: #444;
    padding: 10px 0;
    margin: 5px 0 10px;
}

.althea_lp_v3 div, .althea_lp_v3 span {
    font-family: "Lato", sans-serif;
}

/* Headings */
.althea_lp_v3 h1, .althea_lp_v3 h2, .althea_lp_v3 h3, .althea_lp_v3 h4, .althea_lp_v3 h5, .althea_lp_v3 h6 {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    /* Se cambia de 700 a normal */
    line-height: 1.25em;
    color: #333;
    margin: 5px 0;
}

.althea_lp_v3 h1 a, .althea_lp_v3 h2 a, .althea_lp_v3 h3 a, .althea_lp_v3 h4 a, .althea_lp_v3 h5 a, .althea_lp_v3 h6 a {
    color: {
            {
            LP_theme_Color
        }
    }

    ;
}

.althea_lp_v3 h1 {
    font-size: 42px;
    margin: 10px 0 5px 0;
}

.althea_lp_v3 h2 {
    font-size: 36px;
    margin: 5px 0 5px 0;
}

.althea_lp_v3 h3 {
    font-size: 28px;
    margin: 5px 0 5px 0;
}

.althea_lp_v3 h4 {
    font-size: 24px;
    margin: 5px 0 5px 0;
}

.althea_lp_v3 h5 {
    font-size: 22px;
    margin: 5px 0 5px 0;
}

.althea_lp_v3 h6 {
    font-size: 18px;
}


.padding5 {
    padding: 5px;
}

.padding10 {
    padding: 10px;
}

.padding20 {
    padding: 20px;
}

.padding_tp {
    padding: 50px 10px 50px 10px;
}

.althea_lp_v3 .logo {
    padding: 15px 5px 15px 5px;
}


.althea_lp_v3 .althea_lp_v3_banner .container {
    position: absolute;
    width: 100%;
    top: 49%;

}

.althea_lp_v3_banner {
    position: relative;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 650px;
    min-height: 650px;
    background: #000;
}


/*text content on banner*/
.althea_lp_v3 .content {
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    width: 100%;
    top: 5%;
    color: #fff;
}

.althea_lp_v3 .content h1, .althea_lp_v3 .content h2, .althea_lp_v3 .content h3, .althea_lp_v3 .content h4, .althea_lp_v3 .content h5, .althea_lp_v3 .content h6, .althea_lp_v3 .content p {
    color: #fff;
}

.althea_lp_v3 .content h1 {
    font-size: 60px;
    color: #fff;
    font-weight: 900;
    margin-top: 5%;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, .6);
}

.althea_lp_v3 .sub_heading {
    color: #fff !important;
    text-align: center;
    margin: 0 auto;
}

.althea_lp_v3 .sub_heading h1, .althea_lp_v3 .sub_heading h2, .althea_lp_v3 .sub_heading h3, .althea_lp_v3 .sub_heading h4, .althea_lp_v3 .sub_heading h5, .althea_lp_v3 .sub_heading h6 {
    color: #fff;
}



/* Highlight text section */

.althea_lp_v3 .section-title-wrap {
    padding: 60px 0 50px 0;
}

.althea_lp_v3 .section-title {
    text-align: center;
    position: relative;
    margin-bottom: 35px;
    margin-top: 10px;
}

.althea_lp_v3 .section-title:before, .althea_lp_v3 .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    height: 5px;
}

.althea_lp_v3 .section-title:before {
    width: 43%;
}

.althea_lp_v3 .section-title:after {
    background-color: #ff9a00 !important;
    width: 140px;
}

/* Se cambio  por #ff9a00 */

.althea_lp_v3 .section-title h1, .althea_lp_v3 .section-title h2, .althea_lp_v3 .section-title h3, .althea_lp_v3 .section-title h4, .althea_lp_v3 .section-title h5, .althea_lp_v3 .section-title h6 {
    padding-bottom: 35px;
    line-height: 1.3;
}


.althea_lp_v3 .section_highlight_wrapper {
    padding: 70px 0 70px 0;
}

.althea_lp_v3 .section1_image {
    float: right !important;
    padding: 20px 10px;
}

.althea_lp_v3 .section1_text {
    padding: 20px 10px;
}

.althea_lp_v3 .section1_text h1, .althea_lp_v3 .section1_text h2, .althea_lp_v3 .section1_text h3, .althea_lp_v3 .section1_text h4, .althea_lp_v3 .section1_text h5 {
    color: 333;
}

.althea_lp_v3 .section2_image {
    padding: 20px 10px;
}



/* Client Section */

.althea_lp_v3 .client-section {
    padding: 10px 0 50px 0;
    display: block;
    position: relative;

    background-color: {
            {
            LP_clientBG_Color
        }
    }

    ;
}

.althea_lp_v3 .client-section .hs_cos_wrapper_type_text {
    color: #333;
    padding: 0 0 20px 0;
    display: block;
}

.althea_lp_v3 .client-section .hs_cos_wrapper_type_linked_image {
    display: inline-block;
    text-align: center;
}



.althea_lp_v3 .testimonial_wrapper {
    padding: 10px 0 15px 0;
}

.althea_lp_v3 .form_wrapper {
    text-align: center;
    background-color: none;
    margin-top: 10px;
    padding: 10px 0px 10px 0px;
}

.althea_lp_v3_form {
    padding: 10px;
}

.althea_lp_v3_form form {
    display: block;
}
}

.althea_lp_v3_form .hs-form {
    text-align: center;
    margin: 0 auto;
    float: none;
    display: block;
}

/* Labels */
.althea_lp_v3_form .hs-form-required {
    display: none;
}

.althea_lp_v3_form .hs-form label {
    padding-top: 15px;
    color: #000;
    font-size: 16px;
    text-align: left;
    float: left;

}

.althea_lp_v3_form .hs_cos_wrapper_type_form label {
    text-align: left;
    float: none;
    display: block;

}

.althea_lp_v3_form .hs_cos_wrapper_type_form .hs-form-field>label {
    margin: 0px 0px 5px;

}

.althea_lp_v3_form .hs-form .hs-input {
    width: 98% !important;
    /* Se cambia de 100% a 98%*/
    padding: 0px !important;
    /*Se cambia de 20 a 0px*/
    border: none;
    border-radius: 2px;
    font-size: 16px;
    color: #ccc;
    margin: 10px;
}


/* One Line Inputs */
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="text"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="password"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="datetime"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="datetime-local"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="date"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="month"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="time"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="week"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="number"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="email"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="url"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="search"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="tel"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="color"],
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="file"],
.althea_lp_v3_form .hs_cos_wrapper_type_form textarea,
.althea_lp_v3_form .hs_cos_wrapper_type_form select {
    width: 100%;
    font-size: 18px;
    display: block;
    margin: 0 auto;
    height: 35px;
    /* Se cambia de 50 a 35px*/
    padding: 6px 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    transition("border-color ease-in-out .15s,box-shadow ease-in-out .15s");
}

.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="text"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="password"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="datetime"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="datetime-local"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="date"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="month"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="time"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="week"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="number"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="email"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="url"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="search"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="tel"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="color"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="file"]:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form textarea:focus,
.althea_lp_v3_form .hs_cos_wrapper_type_form select:focus {
    outline: 0;
    border-color: #ccc;
    ;
    boxshadow("inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,0,0,.6)");
}

/* Separate Styles for Multiple Line Inputs */
.althea_lp_v3_form .hs_cos_wrapper_type_form textarea {}

.althea_lp_v3_form .hs_cos_wrapper_type_form textarea:focus {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #999;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #4d4d4d;
    padding: 10px;
    margin: 10px 0 20px;
}

/* Separate Styles for Drop Downs */
.althea_lp_v3_form .hs_cos_wrapper_type_form select {}

.althea_lp_v3_form .hs_cos_wrapper_type_form select:focus {}

/* Multiple Selection Inputs */
.althea_lp_v3_form .hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li input {
    list-style-type: none;
    width: initial;
    padding-left: 0;
}

.althea_lp_v3_form .hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li.hs-form-radio input[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
    width: initial;
    margin: 0 5px 10px 0;
}

.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="radio"] {
    -webkit-appearance: radio;
    appearance: radio;
    width: initial;
    margin: 0 5px 10px 0;
}

.althea_lp_v3_form .hs_cos_wrapper_type_form input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
    width: initial;
    margin: 0 5px 10px 0;
}

.althea_lp_v3_form .hs-button.primary,
.althea_lp_v3_form body input[type="submit"],
.althea_lp_v3_form body input[type="button"] {
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    margin: 10px 0 0;
    background: #138ebf !important;
    /* Se cambio  por #138ebf */
    background-color: #138ebf !important;
    /* Se cambio  por #138ebf */
    padding: 0px;
    border: 2px solid #138ebf !important;
    /* Se cambio  por #138ebf */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font: normal 25px/60px "Lato", Helvetica, sans-serif;
    color: rgb(255, 255, 255);
    -o-text-overflow: clip;
    text-overflow: clip;

}

.althea_lp_v3_form .hs-button.primary:hover,
.althea_lp_v3_form input[type="submit"]:hover,
.althea_lp_v3_form input[type="button"]:hover {
    /* Se agregan colores correctos de hover */
    background: #ffffff !important;
    /* Se cambio  por #ffffff */
    background-color: #ffffff !important;
    /* Se cambio  por #ffffff */
    border: 2px solid #138ebf !important;
    /* Se cambio  por #ffffff */
    color: rgb(19, 142, 191);
}

.althea_lp_v3_form .hs-button.primary:focus,
.althea_lp_v3_form input[type="submit"]:focus,
.althea_lp_v3_form input[type="button"]:focus {}


.althea_lp_v3 .footer {
    margin-top: 70px;

    background-color: {
            {
            LP_footer_Color
        }
    }

    ;
    text-align:center;
    padding:10px;
}

.althea_lp_v3 .copyright {
    font-size: 16px;
    color: #fff;
    text-align: center;
}


@media (max-width: 640px) {
    .althea_lp_v3 .client-section .hs_cos_wrapper_type_linked_image {
        display: block;
        text-align: center;
        margin: 0 auto;
    }


    .althea_lp_v3 h1 {
        font-size: 28px;
        line-height: 1.2;
    }

    .althea_lp_v3 h2 {
        font-size: 25px;
        margin: 5px 0 5px 0;
        line-height: 1.2;
    }

    .althea_lp_v3 h3 {
        font-size: 22px;
        margin: 5px 0 5px 0;
    }

    .althea_lp_v3 h4 {
        font-size: 20px;
        margin: 5px 0 5px 0;
    }

    .althea_lp_v3 h5 {
        font-size: 18px;
        margin: 5px 0 5px 0;
    }

    .althea_lp_v3 h6 {
        font-size: 18px;
    }

    .althea_lp_v3 .testimonial_wrapper {
        text-align: center;
        padding: 10px 0 15px 0;
    }
}

/*######  Althea LP V3 end ######*/

/*######  Althea LP V4 start ######*/

.althea_lp_v4 .section-title-lp4 {
    text-align: left;
    position: relative;
    margin-bottom: 35px;
    margin-top: 10px;
}

.althea_lp_v4 .section-title-wrap-lp4 {
    padding: 5px 0 30px 0;
}

.althea_lp_v4 .sub_heading-lp4 {
    text-align: left;
    margin: 0 auto
}

.althea_lp_v4 .form_wrapper-lp4 {
    text-align: center;
    background-color: none;
    margin-top: 10px;
    padding: 15px 0px 10px 0px;
    border: 1px solid #d9dcdf;
    background: rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);

}

.althea_lp_v4 .vertical-spacer {
    height: 100px;
}

/*######  Althea LP V4 end ######*/

/*######  Althea LP V5 start ######*/
.althea_lp_v5_banner_bg {
    position: relative;
    text-align: center;

    color: {
            {
            LP_V5theme_banner_textColor
        }
    }

    ;
    width:100%;

    background-color: {
            {
            LP_V5theme_header_bgColor
        }
    }

    ;
}

.althea_lp_v5 .fa {
    color: #138ebf !important;
}

/* Se cambia color  por #138ebf */
.althea_lp_v5 .hs_cos_wrapper_type_rich_text ul li:before {
    color: #06272E !important;
}

/* Se cambia  por color: #06272E !important*/
.althea_lp_v5 .highlight_section_testm {
    padding: 20px 0px 5px 0px;
}


.althea_lp_v5 .lp5_banner_text_wrapper {
    background-color: {
            {
            LP_V5theme_header_bgColor
        }
    }

    ;
}

.althea_lp_v5 .padding_hs {
    padding: 10px 10px 0px 10px;
}

/*text content on banner*/
.althea_lp_v5 .banner_content {
    margin: 0 auto;
    text-align: center;
    z-index: 10;
    width: 100%;
    top: 5%;
}

.althea_lp_v5 .banner_content h1 {
    font-size: 60px;
    font-weight: 900;
    margin-top: 5%;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, .1);
}

.althea_lp_v5 .banner_sub_heading {
    text-align: center;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .althea_lp_v5 .vertical-spacer {
        height: 30px;
    }

    .althea_lp_v5 .padding_tp {
        padding: 30px 10px 30px 10px;
    }



}







/*######  Althea LP V5 end ######*/


.casestudy .hs_cos_flex-slider .caption {
    padding: 2% 5%;
    background-color: transparent !important;
    /* Se cambia de  a transparent */
    font-size: 24px;
    color: #ffffff;
}


/* ---------------------- Tabber Start  --------------------------------*/


.tab-panels ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    float: left;
    clear: both;

}

.tab-panels ul li {
    display: inline-block;
    background: #f04c40;
    margin: 0;
    padding: 5px 10px;
    border-radius: 0;
    color: #fff;
    font-weight: 200;
    cursor: pointer;
    font-size: 14px;
    font-family: verdana;
    float: left;
    border-right: 1px solid #003058;
}

.tab-panels ul li:last-child {
    border-right: none;
}

.tab-panels ul li:hover, .tab-panels ul li.active {
    background: #003058;
    color: #fff;
    border-color: #003058;
}

.tab-panels .panel {
    display: none;
    padding: 30px;
    clear: both;
    max-width: 400px;
    background: #003058;
    border-radius: 0 10px 10px 10px;
}

.tab-panels .panel.active {
    display: block;
}


/* ---------------------- Tabber End  --------------------------------*/



.colorbar {
    background: {
            {
            themecolor
        }
    }

    ;
}

/* Banner iNBest Solutions */

.banner-solutions {
    padding: 30px 0px 30px 0px;
}

/* Servicios Cloud */

.servicios-cloud {
    margin: 20px 0px 0px 0px;
}

/* ======================= Estilos Anexos personalizados ======================== */

/* -------------------- Menu Contacto -------------------------- */

.custom-menu-primary .hs-menu-wrapper>ul>li {
    font-size: 16px !important;
}

@media only screen and (max-width: 768px) {}