/* ------------------------------------------------------------------------------

  Template Name: Bobby
  Description: Bobby - Creative Service Landing Page
  Author: Murren
  Version: 1.0
  
  1.  Global

        1.1 General
        1.2 Typography
        1.3 Iconography
        1.4 Buttons
        1.5 Forms
        1.6 Loader
        1.7 Content helpers
        1.8 Background colors
        1.9 Colors

  2.  Header 

        2.1 Navbar
        2.2 Navbar affix
        2.3 Brand
        2.4 Navigation
        2.5 Masthead 

  3.  About
  4.  Services
  5.  Video section
  6   Specialization
  7.  Team
  8.  Features
  9.  Get in touch
  10. Showcase

      10.1 Magnific popup 

  11. Prices
  12. Reviews

      12.1 Owl carousel 

  13. Contacts
  14. Footer
  15. Modals
  16. Responsive styles


    
/*-------------------------------------------------------------------------------
  1. Global
-------------------------------------------------------------------------------*/


/* 1.1 General */

@import url('bootstrap.min.css');
@import url('font-awesome.min.css');
@import url('et-line-fonts.css');
@import url('owl.carousel.css');
@import url('magnific-popup.css');
@font-face {
    font-family: 'Aeroport';
    src: url('../fonts/aeaswfte.ttf');
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    height: 100%;
    overflow: hidden;
    padding-right: 0!important;
    border-left: 1px solid #fefefe;
}

.loaded {
    overflow: visible;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #FFA709;
}


/* 1.2 Typography */

h1,
.h1 {
    font-weight: 200;
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
}

h2,
.h2 {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.section-title:after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    background-color: #FFA709;
    border-radius: 50%;
}

h3,
.h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

h4,
.h4 {
    font-size: inherit;
    font-weight: 700;
    margin: 10px 0;
}

strong {
    font-weight: 700;
}

p {
    margin: 10px 0 0;
}

ul {
    /*list-style: none;
  padding-left: 0;*/
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover,
a:focus {
    color: white;
    text-decoration: none;
    outline: none;
}

a:focus {
    outline: none;
}


/* 1.3 Iconography */

.icon {
    display: inline-block;
    font-size: 50px;
    text-decoration: none;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}


/* 1.4 Buttons */

.btn {
    padding: 10px 30px;
    border-radius: 30px;
    border: 1px solid transparent;
    background-color: #78588C;
    font-size: 17px;
    line-height: 1.4;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #fff;
    background-color: #8E6BA5;
}

.btn:active {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-yellow {
    background-color: #FFA709;
    color: #000;
}

.btn-light-gray {
    background-color: #EBEBEB;
    color: #000;
}

.btn-light-gray:hover,
.btn-light-gray:focus {
    background-color: #FFA709;
    color: #000;
}

.btn-b-white {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background-color: transparent;
}

.btn-b-white:hover,
.btn-b-white:focus {
    border-color: transparent;
}


/* 1.5 Forms */

.form-control {
    margin-top: 10px;
    height: 30px;
    padding: 6px 18px;
    font-size: 18px;
    border-radius: 0px;
    border: 1px solid #f1f1f1;
    color: #000;
    background: #f1f1f1;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
}

.form-control::-webkit-input-placeholder {
    color: #2B8C72;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #2B8C72;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #2B8C72;
}

.form-control:-ms-input-placeholder {
    color: #2B8C72;
}

.form-control:focus {
    border-color: #fff;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(7, 9, 35, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(7, 9, 35, .6);
}

textarea.form-control {
    resize: none;
    height: 120px;
    padding-top: 11px;
}

.row-fields {
    margin: 0 -8px;
}

.row-fields .form-group {
    padding-left: 8px;
    padding-right: 8px;
}

label.error {
    margin-top: 3px;
    font-size: 13px;
    font-weight: normal;
    color: #CC506F;
}


/* 1.6 Loader */

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 100;
    text-align: center;
}

.cssload-bell {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -109px 0 0 -107px;
    width: 214px;
    height: 218px;
    border-radius: 100%;
}

.cssload-circle {
    width: 100%;
    height: 100%;
    position: absolute;
}

.cssload-circle .cssload-inner {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 11px solid rgba(233, 206, 53, 0.7);
    border-right: none;
    border-top: none;
    background-clip: padding;
    box-shadow: inset 0px 0px 21px rgba(206, 206, 53, 0.15);
}

.cssload-circle:nth-of-type(0) {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

.cssload-circle:nth-of-type(0) .cssload-inner {
    animation: cssload-spin 2.3s infinite linear;
    -o-animation: cssload-spin 2.3s infinite linear;
    -ms-animation: cssload-spin 2.3s infinite linear;
    -webkit-animation: cssload-spin 2.3s infinite linear;
    -moz-animation: cssload-spin 2.3s infinite linear;
}

.cssload-circle:nth-of-type(1) {
    transform: rotate(70deg);
    -o-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    -webkit-transform: rotate(70deg);
    -moz-transform: rotate(70deg);
}

.cssload-circle:nth-of-type(1) .cssload-inner {
    animation: cssload-spin 2.3s infinite linear;
    -o-animation: cssload-spin 2.3s infinite linear;
    -ms-animation: cssload-spin 2.3s infinite linear;
    -webkit-animation: cssload-spin 2.3s infinite linear;
    -moz-animation: cssload-spin 2.3s infinite linear;
}

.cssload-circle:nth-of-type(2) {
    transform: rotate(140deg);
    -o-transform: rotate(140deg);
    -ms-transform: rotate(140deg);
    -webkit-transform: rotate(140deg);
    -moz-transform: rotate(140deg);
}

.cssload-circle:nth-of-type(2) .cssload-inner {
    animation: cssload-spin 2.3s infinite linear;
    -o-animation: cssload-spin 2.3s infinite linear;
    -ms-animation: cssload-spin 2.3s infinite linear;
    -webkit-animation: cssload-spin 2.3s infinite linear;
    -moz-animation: cssload-spin 2.3s infinite linear;
}

.cssload-bell {
    /*animation: cssload-spin 5.75s infinite linear;
    -o-animation: cssload-spin 5.75s infinite linear;
    -ms-animation: cssload-spin 5.75s infinite linear;
    -webkit-animation: cssload-spin 5.75s infinite linear;
    -moz-animation: cssload-spin 5.75s infinite linear;*/
}

@keyframes cssload-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-o-keyframes cssload-spin {
    from {
        -o-transform: rotate(0deg);
    }
    to {
        -o-transform: rotate(360deg);
    }
}

@-ms-keyframes cssload-spin {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@-webkit-keyframes cssload-spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes cssload-spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}


/* 1.7 Content helpers */

.content {
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

.rel-1 {
    position: relative;
    z-index: 1;
}

.masked {
    position: relative;
}

.masked:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-content {
    margin-top: 50px;
}

.section-lg {
    padding: 120px 0;
}

@media (min-width: 768px) {
    .section {
        padding-top: 110px;
        padding-bottom: 110px;
    }
    .section-content {
        margin-top: 100px;
    }
    .section-lg {
        padding: 200px 0;
    }
}

.icon-header {
    display: block;
    margin-bottom: 30px;
    font-size: 60px;
}

.icon-header.icon-dial {
    font-size: 70px;
}

.btn-section {
    margin-top: 40px;
}

.row-baseline {
    margin-top: -30px;
}

.col-baseline {
    margin-top: 30px;
}


/* 1.8 Background colors */

.bgc-white {
    background-color: #fff;
}

.bgc-primary {
    background: #FF1E21;
}

.bgc-light-gray {
    background-color: #f5f5f5;
}

.bgc-yellow {
    background-color: #FFA709;
}


/* 1.9 Colors */

.text-white {
    color: #fff;
}

.text-muted {
    opacity: 0.6;
    color: inherit;
}

.text-primary {
    color: #866F9C;
}

.text-yellow {
    color: #FFA709;
}


/*-------------------------------------------------------------------------------
  2. Header
-------------------------------------------------------------------------------*/

.header {
    color: #fff;
    /*background:url(../images/banner-01.png) center top no-repeat;
  background-size:cover;*/
}

.video {
    position: fixed;
    top: 0;
    left: 50%;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    ;
}

.video,
.video-background {
    background: url(../video/poster.jpg) center top no-repeat;
    background-size: cover;
}


/* 2.1 Navbar */

.navbar {
    /* position: absolute; */
    margin: 0;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding-top: 10px;
    border-radius: 0;
    font-size: 14px;
    color: #fff;
    background-color: #ff1e21;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.container>.navbar-header,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container-fluid>.navbar-collapse {
    margin-left: 0;
}

.navbar-collapse {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-height: 320px;
}

.navbar-toggle {
    margin-top: 13px;
    margin-bottom: 10px;
    border: 1px solid #ffffff;
}


/* 2.2 Navbar affix */

.navbar.affix {
    position: fixed;
    background-color: #ff1e21 !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.navbar.affix img {
    width: 50%;
}

.navbar.affix .brand {
    font-size: 33px;
}


/* 2.3 Brand */

.brand {
    font-size: 33px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.brand .circle {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #FFA709;
    margin-left: -3px;
    border-radius: 50%;
}

.brand:hover .circle {
    background-color: #fff;
}

.brand:focus {
    color: #fff;
}

.brand:hover {
    color: #FFA709;
}


/* 2.4 Navigation */

.navbar-nav {
    margin-top: 23px;
    font-weight: 500;
}

.navbar-nav>li>a {
    position: relative;
    padding-top: 13px;
    padding-bottom: 13px;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a:focus,
.navbar-nav>.active>a {
    color: #ffa709;
    background-color: #002E8D;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}


/* 2.5 Masthead */

.masthead {
    display: table-cell;
    vertical-align: middle;
    width: 1%;
    padding: 170px 0 120px;
    height: 70vh;
    text-align: center;
}

.lead {
    font-size: inherit;
    margin: 20px 0 0;
}

.lead-text {
    margin-top: 20px;
}

.lead-direct {
    margin-top: 40px;
}


/*-------------------------------------------------------------------------------
  3. About
-------------------------------------------------------------------------------*/

.about {
    padding: 60px 0;
}

.col-box {
    font-size: 15px;
    padding: 0 30px;
}

.col-box:first-child {
    border-left: 0;
}


/*-------------------------------------------------------------------------------
  4. Services
-------------------------------------------------------------------------------*/

.service-content {
    margin-top: 50px;
}

.letter-lg {
    opacity: 0.1;
    font-size: 130px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -5px;
    font-weight: 900;
}

.col-service .media-body {
    vertical-align: bottom;
    padding-bottom: 15px;
}


/*-------------------------------------------------------------------------------
  5. Video section
-------------------------------------------------------------------------------*/

.video-section {
    background: url(../images/bg/video-section.jpg) center no-repeat;
    background-size: cover;
}


/*-------------------------------------------------------------------------------
  6. Specialization
-------------------------------------------------------------------------------*/

.specialization {
    overflow: hidden;
}

.progress-header {
    margin-bottom: 10px;
}

.progress {
    height: 15px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.progress-bar {
    background-color: #7B5A91;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*-------------------------------------------------------------------------------
  7. Team
-------------------------------------------------------------------------------*/

.team-profile {
    text-align: center;
}

.team-profile img {
    margin-bottom: 20px;
    border: 3px solid #FFA709;
}

.social {
    position: fixed;
    z-index: 9;
    bottom: 15px;
    right: 15px;
}

.social img {
    width: 60px;
}

.social .icon {
    font-size: 40px;
    margin-left: 10px;
    opacity: 0.7;
}

.team-social {
    margin-top: 20px;
}


/*-------------------------------------------------------------------------------
  8. Features
-------------------------------------------------------------------------------*/

.row-features {
    margin-top: -100px;
}

.col-feature {
    padding-top: 100px;
    text-align: center;
}


/*-------------------------------------------------------------------------------
  9. Get in touch
-------------------------------------------------------------------------------*/

.getintouch {
    background: url(../images/bg/getintouch.jpg) center top no-repeat;
    background-size: cover;
}


/*-------------------------------------------------------------------------------
  10. Showcase
-------------------------------------------------------------------------------*/

.showcase {
    overflow: hidden;
    padding-bottom: 0;
}

.filter {
    text-align: center;
    color: #333;
    margin: 60px 0 60px;
}

.filter li {
    position: relative;
    display: inline-block;
    margin: 10px 20px 0;
}

.filter li a {
    text-decoration: none;
}

.filter .active {
    color: #FFA709;
}

.filter .active:before {
    content: '';
    position: absolute;
    bottom: 7px;
    left: -12px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #FFA709;
}

.row-showcase {
    margin-left: -30px;
    margin-right: -30px;
}

.col-showcase {
    color: #fff;
}

.col-showcase a:hover,
.col-showcase a:focus {
    color: inherit;
}

.col-showcase figure {
    position: relative;
    overflow: hidden;
}

.col-showcase figure img {
    width: 100%;
}

.col-showcase figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
}

.col-showcase header {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.col-showcase h3 {
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 30px;
    line-height: 1;
}

.col-showcase h3:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFA709;
}

.col-showcase .icon-showcase {
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.col-showcase:hover figcaption {
    background: rgba(123, 90, 145, 0.9);
}

.col-showcase:hover .icon-showcase {
    -webkit-transform: translateX(-50%) rotate(-180deg);
    -moz-transform: translateX(-50%) rotate(-180deg);
    transform: translateX(-50%) rotate(-180deg);
}


/* 10.1 Magnific popup */

.mfp-figure {
    box-shadow: none;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    padding: 0;
    margin-top: -10px;
    font-family: inherit;
    font-size: 40px;
    font-weight: 300;
    line-height: 0;
    color: #FFA709;
}

img.mfp-img {
    min-height: 220px;
}

.mfp-bottom-bar {
    margin-top: -30px;
}

.mfp-title {
    font-size: 20px;
    color: #FFA709;
}

.mfp-bg {
    background-color: #000;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right-color: #FFA709;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left-color: #FFA709;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom .mfp-container {
    -webkit-transform: scale(0);
}

.mfp-with-zoom.mfp-bg {
    opacity: 0;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    -webkit-transform: scale(1);
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.9;
}

.mfp-with-zoom.mfp-removing .mfp-container {
    -webkit-transform: scale(0);
}

.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}


/* ------------------------------------------------------------------------------- */


/*  11. Prices
/* ------------------------------------------------------------------------------- */

.col-price {
    position: relative;
    text-align: center;
    padding: 7px;
}

.price-box {
    background-color: #fff;
}

.price-inner {
    padding: 30px 20px;
}

.price-header {
    border: 1px solid #DCD4E1;
    border-width: 1px 0;
}

.price-title {
    padding: 30px 0;
    margin: 0;
}

.price {
    line-height: 1;
    margin-bottom: 20px;
}

.price+p {
    font-size: 13px;
}

.price strong {
    font-weight: 600;
}

.price-currency {
    display: inline-block;
    font-size: 30px;
}

.price-amount {
    font-size: 50px;
}

.price-delimiter {
    font-size: 40px;
    font-weight: 300;
}

.price-period {
    font-size: 20px;
}

.price-features {
    padding: 30px 0;
}

.price-features ul {
    margin-top: 0;
}

.price-features ul li {
    padding: 8px 0;
}

.col-price.leading .price-box {}

.col-price.leading .price-header {
    margin: 0 -1px;
    background-color: #78588C;
    color: #fff;
}


/*-------------------------------------------------------------------------------
  12. Reviews
-------------------------------------------------------------------------------*/

.reviews {
    background: url(../images/bg/reviews.jpg) center top no-repeat;
    background-size: cover;
}

.reviews:after {
    background-color: rgba(114, 80, 135, 0.95);
}

.review-carousel {
    margin-top: 30px;
}

.review-author {
    margin-top: 30px;
}

.review-author strong {
    font-size: 17px;
}


/* 12.1 Owl carousel */

.owl-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.owl-prev {
    position: absolute;
    top: 8%;
    font-size: 50px !important;
    color: #fff !important;
    left: 50px;
    border: none !important;
}

.owl-next {
    position: absolute;
    top: 8%;
    font-size: 50px !important;
    color: #fff !important;
    right: 50px;
    border: none !important;
}

.owl-prev:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

.owl-next:focus {
    outline: -webkit-focus-ring-color auto 0px;
}

.owl-pagination .owl-page {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
}

.owl-pagination .owl-page.active {
    background-color: #FFA709;
}


/*-------------------------------------------------------------------------------
  13. Contacts
-------------------------------------------------------------------------------*/

.contacts {
    padding-bottom: 0;
}

.gmap {
    margin-top: 40px;
    height: 520px;
}


/*-------------------------------------------------------------------------------
  14. Footer
-------------------------------------------------------------------------------*/

.footer {
    padding: 20px 0;
    color: #fff;
}

.footer .social {
    margin-top: 0;
}

.copyright {
    margin: 20px 0;
}


/*-------------------------------------------------------------------------------
  15. Modals
-------------------------------------------------------------------------------*/

.modal {
    text-align: center;
    white-space: nowrap;
}

.modal:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.modal-dialog {
    width: 95%;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
    margin: 0;
}

.modal-content {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
}

.modal-header {
    background-color: #FFA709;
    border-bottom: 0;
    color: #fff;
    text-align: center;
}

.modal-header .close {
    position: relative;
    z-index: 1;
    top: -15px;
    font-size: 30px;
}

.facebook {
    width: 10%;
}

.modal-title {
    line-height: 1.1;
}


/*-------------------------------------------------------------------------------
  16. Responsive
-------------------------------------------------------------------------------*/

@media (min-width: 480px) {
    h1,
    .h1 {
        font-size: 50px;
    }
}

@media (min-width: 768px) {
    .navbar {
        padding-bottom: 10px;
    }
    .navbar.affix-top {
        padding: 30px 0;
        background: #FF1E21;
        box-shadow: none;
    }
    .navbar.affix .navbar-nav {
        margin-top: 10px;
    }
    .navbar-nav>li {
        margin-left: 27px;
    }
    .navbar-nav>li:first-child {
        margin-left: 0;
    }
    .navbar-nav>li>a {
        padding: 0;
    }
    .navbar-nav>li>a:hover,
    .navbar-nav>li>a:focus,
    .navbar-nav>.active>a {
        background-color: transparent;
        font-weight: 900;
    }
    .brand {
        font-size: 45px;
    }
    .masthead {
        padding: 50px 0 50px;
    }
    .modal-dialog {
        width: 700px;
    }
}

@media (min-width: 992px) {
    .footer .social {
        text-align: right;
    }
    .copyright {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .row-spec {
        margin: 0 -30px;
    }
    .col-spec {
        padding: 0 30px;
    }
}

.top {
    display: block;
    text-align: right;
}

.top p {
    display: inline-block;
    margin-right: 10px;
    margin-left: 15px;
    font-size: 10px;
    color: #7F7F80;
}

.top p span {
    color: #7F7F80;
}

.top a {
    display: inline-block;
    text-decoration: none;
    margin-right: 10px;
    margin-left: 5px;
    font-size: 10px;
    color: #7F7F80;
}

.top a i {
    font-size: 10px;
    color: #7F7F80;
    margin-right: 5px;
}

.top img {
    width: 12px;
}

.logoContenedor {
    width: 23%;
}

.titulo {
    font-weight: 900;
    font-size: 35px;
    color: #7F7F80;
    text-align: center;
}

.titulo span {
    font-size: 27px;
}

.tituloC {
    font-weight: 700;
    font-size: 35px;
    color: #fff;
}

.tituloC1 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 50px;
}

.tituloCon {
    color: #fff;
    font-size: 29px;
}

.subtituloCon {
    color: #fff;
    font-size: 23px;
}

.cuerpoCon {
    color: #fff;
    font-size: 18px;
}

.titulo1 {
    font-weight: 700;
    font-size: 47px;
    color: #606060;
}

.titulo2 {
    font-size: 43px;
    line-height: 46px;
    text-align: left;
    color: #e96400;
    font-weight: 900;
}

hr {
    background: #FFA709;
    height: 5px;
    width: 160px;
}

.parrafoN {
    color: #FFA709;
    text-align: center;
    font-size: 32px;
}

.parrafoR {
    font-size: 23px;
    text-align: center;
    margin: 0px;
}

.parrafoA {
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    text-align: center;
}

.parrafoA1 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    text-align: left;
}

.contenedor {
    position: relative;
}

.contenedor img {
    width: 100%;
}

.texto-encima {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 20px 30px;
}

.texto-encima .titulo {
    text-align: left;
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
}

.texto-encima a {
    text-decoration: none;
    background: #FFA709;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 5px 10px;
    margin-right: 0px;
    width: 130px;
    border: none;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.texto-encima a:hover {
    background: #fff;
    color: #FFA709;
    border: 1px solid #FFA709;
}

.contenedor2 {
    position: relative;
}

.texto-encima2 {
    position: absolute;
    background: #2B8C72;
    bottom: 0px;
    width: 100%;
    padding: 10px;
}

.texto-encima2 .parrafo {
    text-align: left;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0px;
}

.texto-encima2 .parrafo1 {
    text-align: left;
    color: #fff;
    font-size: 14px;
    margin: 0px;
}

.texto-encima2 .parrafo2 {
    text-align: left;
    color: #fff;
    font-size: 9px;
    margin: 0px;
}

.texto-encima2 .parrafo3 {
    text-align: left;
    color: #fff;
    font-size: 11px;
    margin: 0px;
}

.texto-encima2 a {
    text-decoration: none;
    background: #fff;
    color: #2B8C72;
    text-align: center;
    font-size: 13px;
    padding: 5px 10px;
    display: block;
    margin: auto;
    margin-right: 0px;
    width: 130px;
    border-radius: 7px;
    border: none;
    position: absolute;
    bottom: 45px;
    right: 15px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.texto-encima2 a:hover {
    background: #2B8C72;
    color: #fff;
    border: 1px solid #fff;
}

.texto-encima2 a.compra {
    text-decoration: none;
    background: #fff;
    color: #2B8C72;
    text-align: center;
    font-size: 13px;
    padding: 5px 10px;
    display: block;
    margin: auto;
    margin-right: 0px;
    width: 130px;
    border-radius: 7px;
    border: none;
    position: absolute;
    bottom: 10px;
    right: 15px;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.texto-encima2 a.compra:hover {
    background: #2B8C72;
    color: #fff;
    border: 1px solid #fff;
}

.cardTable {
    background: #fff;
    -webkit-box-shadow: -5px 5px 18px 0px rgb(186 186 186);
    -moz-box-shadow: -5px 5px 18px 0px rgba(186, 186, 186, 1);
    box-shadow: -5px 5px 18px 0px rgb(186 186 186);
    border-radius: 0px 150px 00px 150px;
    padding: 15px;
    position: relative;
    height: 380px;
}

.cardTable .iva {
    text-align: center;
    color: #fff;
    font-weight: 800;
    background: #FF1E21;
    padding: 8px 40px;
    border-radius: 0px 50px;
    position: absolute;
    left: -30px;
}

.cardTable table {
    margin-top: 50px !important;
}

.cardTable .titulo {
    text-align: left;
    font-size: 24px;
    color: #FF1E21;
}

.cardTable table .titulo {
    text-align: center;
    font-size: 21px;
    color: #FFA709;
    background: transparent;
    padding: 0px;
    border: none;
}

.cardTable table .folios {
    color: #606060;
    text-align: right;
    font-size: 20px;
    border: none;
    font-weight: 500;
}

.cardTable table .precio {
    color: #606060;
    text-align: left;
    font-size: 20px;
    border: none;
    font-weight: 500;
}

.cardTable .buton {
    width: 110px;
    font-size: 10px;
    padding: 5px;
    display: block;
    margin: auto;
}

.tituloIma {
    color: white;
    font-size: 20px;
}

.logoFooter {
    margin-bottom: 40px;
}

.parrafoIma {
    color: white;
    font-size: 15px;
    display: none;
    -webkit-transition: all 2s ease-out;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    transition: all 2s ease-out;
}

.listaIma {
    color: white;
    font-size: 15px;
    display: none;
    -webkit-transition: all 2s ease-out;
    -moz-transition: all 2s ease-out;
    -o-transition: all 2s ease-out;
    transition: all 2s ease-out;
}

.centrado {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.subtituloP {
    text-align: center;
    font-size: 20px;
    color: #504F50;
    margin-top: 15px;
    border: 2px solid #FFA709;
    padding: 15px;
}

.beneficio {
    height: 100px;
}

.contacto {
    font-size: 20px;
    margin: 0px;
    color: #fff;
}

.fondo-amarillo {
    background: #ffa709;
    width: 50%;
    position: absolute;
    right: 0px;
    top: 25%;
    padding: 100px 140px;
}

.fondo-amarrilo-transparente {
    background: rgb(255, 167, 9, .9);
    width: 50%;
    position: absolute;
    right: 0px;
    top: 30%;
    padding: 100px 50px;
}

.cardContacto {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.cardContacto a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-weight: 200;
}

.cardContacto .titulo {
    color: white;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
    text-align: left;
    font-weight: 900;
}

.cardContacto p {
    text-decoration: none;
    color: white;
    font-size: 17px;
    margin: 0px;
}

.cardContacto p.strong {
    font-weight: 900;
}

.cardContacto img {
    width: 20px;
}

.cardContacto2 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.cardContacto2 a {
    text-decoration: none;
    color: #606060;
    font-size: 19px;
    font-weight: 200;
}

.cardContacto2 .titulo {
    color: #606060;
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    text-align: left;
    font-weight: 900;
}

.cardContacto2 p {
    text-decoration: none;
    color: #606060;
    font-size: 19px;
    margin: 0px;
}

.cardContacto2 p.strong {
    font-weight: 900;
}

.cardContacto2 img {
    width: 20px;
}

.contacto1 {
    font-size: 21px;
    color: white;
    margin: 0px;
}

.contacto a {
    text-decoration: none;
}

.contacto1 a {
    text-decoration: none;
}

.titulo3 {
    font-weight: 700;
    font-size: 37px;
    color: #606060;
    margin: 0px;
    margin-bottom: 15px;
}

.titulo4 {
    color: #7F7F80;
    font-weight: 800;
    font-size: 19px;
    text-align: center;
}

.fondo6 {
    -webkit-box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    -moz-box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    background: #fff;
    padding: 60px 50px;
    position: absolute;
}

.tituloW {
    font-weight: 900;
    font-size: 43px;
    color: #fff;
    text-align: left;
    margin-bottom: 55px;
}

.parrafo3 {
    color: #606060;
    font-size: 27px;
}

.parrafoBeneficio {
    text-align: center;
    font-size: 20px;
}

.parrafoBeneficio span {
    font-weight: 700;
}

.parrafoNum {
    font-size: 20px;
    color: white;
    font-weight: 500;
}

.numero {
    font-size: 60px;
    font-weight: 800;
    color: #FFA709;
}

.parrafoP {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}

.bancos {
    display: block;
    margin: auto;
    margin-top: 25px;
}

.parrafoP2 {
    text-align: center;
    font-size: 16px;
    color: #504F50;
    margin: 0px;
}

.tituloP {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #504F50;
}

.imagenP {
    width: 40%;
    display: block;
    margin: auto;
    /*filter: invert(59%) sepia(16%) saturate(1767%) hue-rotate(172deg) brightness(85%) contrast(83%);*/
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.imagenP:hover {
    padding: 10px;
    /* filter: invert(100%) sepia(44%) saturate(5281%) hue-rotate(327deg) brightness(95%) contrast(93%); */
    filter: invert(12%) sepia(51%) saturate(5130%) hue-rotate(231deg) brightness(93%) contrast(90%);
    border: 5px solid #3782BA;
    border-radius: 150px;
}

.tituloP2 {
    text-align: left;
    font-size: 20px;
    font-weight: 800;
    color: #504F50;
}

.parrafoP3 {
    text-align: left;
    font-size: 16px;
    color: #504F50;
}

.buton {
    text-decoration: none;
    background: #FFA709;
    color: #fff;
    text-align: center;
    font-size: 17px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 15px;
    width: 180px;
    border-radius: 0px;
    border: 1px #FFA709 solid;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    margin-right: 20px;
}

.buton:hover {
    background: #fff;
    color: #FFA709;
    border: 1px solid #FFA709;
}

.buton-white {
    text-decoration: none;
    background: #fff;
    color: #FFA709;
    text-align: center;
    font-size: 17px;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 15px;
    width: 180px;
    border-radius: 0px;
    border: 1px #fff solid;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
    margin-right: 20px;
}

.buton-white:hover {
    background: #FFA709;
    color: #fff;
    border: 1px solid #fff;
}

.butonV {
    text-decoration: none;
    background: #002e8d;
    color: #fff;
    text-align: center;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #002e8d;
    display: block;
    margin: auto;
    margin-top: 15px;
    margin-right: 0px;
    width: 175px;
    border-radius: 0;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.butonV:hover {
    background: #fff;
    color: #002e8d;
    border: 1px solid #002e8d;
}

.buton-small {
    font-size: 8px;
    width: auto;
    padding: 5px 10px;
    border-radius: 0px;
    color: #fff !important;
}

.butonForm {
    text-decoration: none;
    background: #fff;
    color: #FFA709;
    text-align: center;
    font-size: 17px;
    padding: 10px 20px;
    display: block;
    margin: auto;
    margin-right: 0px;
    width: 100%;
    border-radius: 0px;
    border: none;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.butonP {
    text-decoration: none;
    background: #FFA709;
    color: white;
    text-align: center;
    font-size: 12px;
    line-height: 12px;
    padding: 5px 10px;
    border-radius: 25px;
    margin: auto;
    border: 2px solid #FFA709;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.butonP:hover {
    background: white;
    color: #FFA709;
    border: 1px solid #FFA709;
}

.butonT {
    margin-top: -5px;
    font-size: 14px;
    width: auto;
    padding: 5px 10px;
    border-radius: 0px;
    margin-right: 0px;
}

.butonT:hover {
    color: #002e8d;
}

.centrarVertical {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 255px;
}

.centrarVertical1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 803px;
}

.tituloN {
    text-align: center;
    font-size: 47px;
    font-weight: 800;
    color: #e96400;
}

.subtituloN {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    color: #e96400;
}

.parrafoN {}

.card2I {
    margin-left: -400px;
}

.card2D {
    margin-right: -400px;
}

.centrarVertical2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 410px;
}

.centrarVertical3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tituloA {
    color: #fff;
    font-size: 31px;
    font-weight: 700;
}

.conten {
    height: 354px;
}

.tituloPro {
    font-size: 22px;
    font-weight: 600;
}

.parrafoPro {
    font-size: 15px;
    font-weight: 400;
}

.subtitulo {
    font-size: 30px;
    margin-top: 100px;
    font-weight: 800;
    color: #00517F;
}

.imagenD {
    width: 80%;
    display: block;
    margin-left: auto;
}

.espaciadoD {
    padding: 50px 0px 0px;
}

.efecto {
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    -o-transition: all 2s linear;
    transition: all 2s linear;
}

.efecto2 {
    -webkit-transition: all 2s linear;
    -moz-transition: all 2s linear;
    -o-transition: all 2s linear;
    transition: all 2s linear;
}

.efecto2:hover .imagenD {
    -webkit-animation: rotation 5s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(359deg);
    }
}

.imagenC {
    width: 30%;
}

.parrafoC {
    font-size: 16px;
    color: #504F50;
    margin: 0px;
}

.tituloBanner {
    text-align: left;
    font-size: 47px;
    color: #ffff;
    font-weight: 900;
    text-shadow: rgb(0, 0, 0, 0.35) 7px 7px 5px;
}

.tituloBanner2 {
    text-align: center;
    font-size: 42px;
    color: #fff;
    font-weight: 800;
}

.tituloBanner3 {
    text-align: left;
    font-size: 65px;
    color: #ffff;
    font-weight: 900;
    text-shadow: rgb(0 0 0 / 35%) 7px 7px 5px;
    line-height: 85px;
}

.tituloBanner4 {
    text-align: left;
    font-size: 77px;
    color: #FF1E21;
    font-weight: 900;
    line-height: 85px;
}

.parrafoBanner {
    text-align: left;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.parrafoBanner2 {
    text-align: left;
    font-size: 19px;
    color: #fff;
}

.tituloBanner span {
    color: #FFA709;
}

.parrafo {
    text-align: left;
    font-size: 26px;
    margin-top: 40px;
    color: #7F7F80;
    font-weight: 700;
}

.parrafo span {
    font-size: 21px;
}

.flotante {
    padding: 150px 100px;
    margin-top: -190px;
    z-index: 1;
    position: relative;
    background: url(../images/5-33.webp);
    background-size: cover;
}

.tituloFlotante {
    color: #002E8D;
    font-size: 28px;
    font-weight: 800;
}

.parrafoFlotante {
    font-size: 22px;
    color: #606060;
}

.flotante p.encabezado {
    color: #00517F;
    margin-bottom: 50px;
    padding: 0px 100px;
    text-align: center;
}

.tituloBanner5 {
    text-align: left;
    font-weight: 700;
    font-size: 55px;
    font-style: italic;
    color: #504F50;
    line-height: 70px;
}

.tituloBanner5 span {
    font-weight: 400;
}

.card {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto 80px 170px auto;
    margin-bottom: 20px;
}

.card img {
    width: 100%;
    display: block;
    margin: auto;
}

.card .titulo {
    color: #7F7F80;
    font-size: 20px;
    font-weight: 900;
    margin: 0px;
    margin-top: 10px;
}

.card .cuerpo {
    text-align: justify;
    color: #4c4c4c;
    font-size: 22px;
}

.card:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.card2 {}

.card2 img {
    width: 55%;
    display: block;
    margin: auto;
}

.card2 .espaciadoImg {
    height: 115px;
    display: flex;
    align-items: center;
}

.card2 .titulo {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    margin: 0px;
    text-align: center;
}

.card2 .cuerpo {
    text-align: justify;
    color: #4c4c4c;
    font-size: 22px;
}

.card2:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.card-img {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
}

.card-img .margen {
    padding: 40px 40px 20px 40px;
}

.card-img img {
    width: 100%;
    display: block;
}

.card-img .titulo {
    color: #000;
    font-size: 17px;
    font-weight: 900;
    margin: 0px;
    text-align: center;
    font-family: 'Poppins';
}

.card-img .tituloFondo {
    color: #e9ecf0;
    font-size: 73px;
    font-weight: 900;
    margin: 0px;
    text-align: left;
}

.card-img .cuerpo {
    text-align: center;
    color: #000;
    font-size: 17px;
    font-family: 'Poppins';
    height: 125px;
    margin-bottom: 20px;
}

.card-img a {
    margin: auto;
    width: 120px;
    font-size: 12px;
}

.card-img:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.card-precio {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    border-radius: 50px;
    padding: 50px 0px;
    margin: 15px 20px;
}

.fondo7 {
    background: url(../images/material-21.webp);
    background-size: cover;
    height: 450px;
}

.fondo8 {
    background: url(../images/4-31.webp);
    background-size: cover;
}

.tituloGris {
    color: #333537;
    font-size: 49px;
    font-weight: 900;
}

.card-precio .margen {
    padding: 40px 40px 20px 40px;
}

.card-precio img {
    width: 100%;
    display: block;
}

.card-precio .titulo {
    color: #002E8D;
    font-size: 26px;
    font-weight: 800;
    margin: 0px;
    text-align: center;
    font-family: 'Poppins';
    margin-bottom: 15px;
}

.card-precio .tituloT {
    color: #2998CF;
    font-size: 17px;
    font-weight: 800;
    margin: 0px;
    text-align: center;
    font-family: 'Poppins';
    margin: 15px 0px;
}

.card-precio .parrafoT {
    color: #606060;
    font-size: 23px;
    font-weight: 500;
    margin: 0px;
    text-align: center;
    font-family: 'Poppins';
    margin-top: 15px;
}

.card-precio .tituloFondo {
    color: #e9ecf0;
    font-size: 73px;
    font-weight: 900;
    margin: 0px;
    text-align: left;
}

.card-precio .cuerpo {
    text-align: center;
    color: #000;
    font-size: 17px;
    font-family: 'Poppins';
    height: 125px;
    margin-bottom: 20px;
}

.card-precio a {
    margin: auto;
    width: 150px;
    font-size: 12px;
}

.card-precio:hover {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.cardP {
    margin: 20px 0px;
}

.cardP .titulo {
    color: #fff;
    font-size: 34px;
    font-weight: 900;
    text-align: left;
}

.cardP .cuerpo {
    text-align: left;
    color: #fff;
    font-size: 26px;
    padding: 0px 15px;
}

.cardP .enlace {
    text-align: left;
    color: #fff;
    font-size: 20px;
    padding: 0px 15px;
}

.cardP a {
    color: #fff;
}

.cardP a:hover {
    color: #fff !important;
}

.cardP a.butonV {
    color: #fff;
}

.cardP a:hover {
    color: #002e8d;
}

.cardI {
    border-left: 1px solid #C7C7C7;
    padding: 25px;
}

.cardI img {
    width: 25%;
    float: left;
}

.cardI .titulo {
    color: #606060;
    font-size: 19px;
    margin: 0px;
    font-family: 'Poppins';
    text-align: center;
    font-weight: 500;
    padding: 10px 5px;
}

.cardI .buton {
    display: inline-block;
    margin-left: 0px;
    margin-top: 10px;
    font-size: 10px;
    width: 120px;
    border-radius: 50px;
}

.cardI .cuerpo {
    text-align: center;
    font-size: 19px;
    color: #606060;
}

.cardI:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.cardI a {
    display: initial;
    margin-top: 150px;
    font-size: 12px;
    padding: 5px 10px;
}

.cardD {
    padding: 10px;
    text-align: left;
    margin-bottom: 15px;
}

.cardD img {
    width: 25% !important;
    margin: auto;
}

.cardD .titulo {
    color: #383838;
    font-size: 21px;
    margin: 0px;
    margin-top: 10px;
    font-weight: 800;
}

.cardD .buton {
    display: block;
    margin: auto;
    font-size: 10px;
    width: 120px;
    border-radius: 0px;
}

.cardD .cuerpo {
    text-align: center;
    font-size: 16px;
    color: #2D2D2D;
    height: 48px;
}

.cardD:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.cardD a {
    display: initial;
    margin-top: 150px;
    font-size: 12px;
    padding: 5px 10px;
}

.cardIcono {
    background: #fff;
    text-align: center;
    padding: 40px 20px;
}

.cardIcono img {
    width: 45%;
    display: block;
    margin: auto;
}

.cardIcono .titulo {
    color: #FFA709;
    font-size: 16px;
    margin: 0px;
    text-align: center;
}

.cardIcono .parrafo {
    text-align: center;
    font-size: 14px;
}

.cardIcono:hover img {
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.pilar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 754px;
}

.centrar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ImgFondo {
    width: 47%;
    position: absolute;
    top: 750px;
    right: 0px;
}

.ImgFondo2 {
    width: 44%;
    position: absolute;
    top: 1638px;
    left: 0px;
}

.subTitulo {
    color: white;
    font-weight: 600;
    font-size: 35px;
    text-align: center;
}

.parrafo2 {
    color: white;
    font-size: 20px;
    text-align: center;
}

.imagenBB {
    width: 50%;
    display: block;
    margin: auto;
}

.fondoDividio {
    background: linear-gradient(0deg, #FFA709 57%, #FFFFFF 57%);
    padding: 50px;
}

.precio {
    color: white;
    font-weight: 800;
    text-align: center;
    font-size: 80px;
    line-height: 80px;
}

.espaciado {
    margin-top: 150px;
}

.cardAnuncio .titulo {
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    text-align: center;
}

.cardAnuncio .titulo span {
    font-weight: 900;
}

.cardAnuncio .tituloFondo {
    color: #f5e7dd;
    font-size: 86px;
    font-weight: 900;
    margin: 0px;
    text-align: center;
}

.cardAnuncio .cuerpo {
    text-align: center;
    color: #FFA709;
    font-size: 30px;
}

.cardAnuncio .cuerpo span {
    font-weight: 700;
}

.subtitulo {
    text-align: center;
    font-size: 25px;
    color: #FFA709;
    margin-top: 25px;
    margin-bottom: 45px;
}

.grid-container {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: 75px auto;
}

.grid-item {}

.card3 {
    background: #f4f4f4;
    padding: 50px 100px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(168, 168, 168, 1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(168, 168, 168, 1);
    box-shadow: 0px 0px 15px 0px rgba(168, 168, 168, 1);
    position: relative;
    z-index: 1;
}

.card3 .titulo {
    font-size: 25px;
    padding: 0px;
}

.fondo {
    background: #2998CF;
}

.fondo1 {
    background-image: url(../images/2-19.jpg);
    background-size: cover;
    position: relative;
}

.fondo2 {
    background: #FF1E21;
}

.cardCarrousel {}

.cardCarrousel .titulo {
    font-size: 41px;
    color: #fff;
    text-align: right;
}

.Modelo2 .modal-header {
    background-size: cover;
}

.Modelo2 .modal-header .modal-title {
    font-size: 33px;
    font-weight: 800;
}

.Modelo2 button.close {
    background: #ff1e21;
    border-radius: 50px;
    padding: 10px 15px;
    margin-top: -50px;
    margin-right: -25px;
}

.Modelo2 .close {
    float: right;
    font-size: 31px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    margin-top: -5px;
    opacity: 1;
}

.Modelo2 .modal-body {
    font-size: 12px;
}

.cardCarrousel .cuerpo {
    font-size: 27px;
    color: #fff;
    text-align: right;
    margin-left: 40%;
}

.fondo3 {
    background: url(../images/3-31.webp);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    padding: 130px 110px;
}

.fondo4 {
    background: #FF1E21;
    padding: 50px 0px;
}

.espaciadoL {
    padding-left: 180px;
}

.paddingBanner {}

.tituloG {
    text-align: left;
    font-size: 39px;
    font-weight: 900;
    color: #fff;
}

.tituloG2 {
    text-align: left;
    font-size: 35px;
    font-weight: 500;
    color: #fff;
}

.cardF {
    background-size: contain !important;
    padding: 134px 200px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.cardF .titulo {
    font-weight: 900;
    font-size: 34px;
    color: #002E8D;
    text-align: left;
}

.cardF .cuerpo {
    color: #606060;
    font-size: 19px;
}

.tituloWhite {
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    text-align: center;
}

.tituloWhite span {
    background: #2B8C72;
    padding-left: 10px;
    padding-right: 10px;
    position: absolute;
    right: 15px;
}

.parrafoWhite {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

.imagen1 {
    position: absolute;
    width: 65%;
    top: 10%;
    left: -15%;
}

.imagen2 {
    width: 100%;
}

.lista {
    color: #606060;
    font-size: 18px;
    list-style: none;
    padding-left: 0px;
}

.lista li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 3px;
}

.lista li:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background-image: url('../images/li.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lista-grande {
    color: #606060;
    font-size: 24px;
    list-style: none;
    padding-left: 0px;
}

.lista-grande li {
    position: relative;
    padding-left: 40px;
    padding-bottom: 3px;
}

.lista-grande li:before {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    background-image: url('../images/li.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.lista-white {
    color: #fff;
    font-size: 13px;
    list-style: none;
    padding-left: 0px;
}

.lista-white li {
    position: relative;
    padding-left: 25px;
    padding-bottom: 3px;
}

.lista-white li:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background-image: url('../images/li-white.png');
    background-size: cover;
    background-position: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.cardNosotros {
    background: #fff;
    padding: 50px;
}

.cardNosotros .titulo {
    padding: 0px;
    color: #01466f;
    font-size: 47px;
    font-weight: 900;
}

.cardNosotros .cuerpo {
    text-align: justify;
    font-size: 19px;
    color: #4c4c4c;
}

.fondo5 {
    background: #F2F2F2;
}

.gris {
    background-color: #f1f1f1;
    height: 450px;
    width: 450px;
    border-radius: 60px;
    transform: rotate( 45deg);
    margin-left: 50px;
    margin-top: -150px;
}

.tituloCompra {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}

.parrafoF {
    text-align: left;
    font-size: 12px;
    color: #606060;
}

.tituloA {
    color: #FFA709;
    font-size: 36px;
    text-align: center;
    line-height: 45px;
}

.tituloA span {
    font-size: 27px;
}

.card-pasos {
    position: relative;
}

.card-pasos hr {
    background: #2B8C72;
    width: 100%;
    height: 5px;
}

.card-pasos .cuerpo {
    text-align: center;
    font-size: 20px;
    color: #000;
}

.card-pasos .numero {
    background: #2B8C72;
    position: absolute;
    font-size: 15px;
    border-radius: 50px;
    padding: 4px 12px;
    color: #fff;
    top: -25px;
}

.Modelo1 .modal-body {
    border-left: 10px solid #2b8c72;
    display: grid;
    grid-template-columns: 35% 65%;
    min-height: 350px;
    background: #FFA709;
}

.Modelo1 .modal-body .icono {
    position: absolute;
    top: -100px;
    left: -50px;
    width: 35%;
    z-index: 9;
}

.Modelo1 .modal-body .logo {
    width: 25%;
    position: absolute;
    bottom: 10px;
}

.Modelo1 .modal-body .titulo {
    color: #fff;
    font-size: 31px;
    padding: 0px;
    font-weight: 800;
}

.Modelo1 .modal-body ul {
    color: #fff;
    font-size: 12px;
}

.Modelo1 .modal-body p {
    color: #fff;
    font-size: 12px;
}

.Modelo1 .close {
    float: right;
    font-size: 31px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    margin-top: -5px;
    opacity: 1;
}

.Modelo1 {
    background: rgb(7, 5, 35, .5);
}

.Modelo1 .modal-footer {
    display: none;
}

.Modelo3 .modal-content {
    border-radius: 50px;
}

.Modelo3 .modal-body {
    color: #000;
    font-size: 12px;
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: -125px;
    padding: 50px 50px;
    border-radius: 50px;
}

.Modelo3 .modal-body .titulo {
    color: #000;
    font-size: 31px;
    padding: 0px;
    font-weight: 800;
}

.Modelo3 .close {
    float: right;
    font-size: 31px;
    font-weight: bold;
    line-height: 1;
    color: #262626;
    text-shadow: 0 1px 0 #fff;
    margin-top: -35px;
    opacity: 1;
    margin-right: -35px;
}

.tituloD {
    color: #000;
    font-size: 26px;
    font-weight: 800;
}

.parrafoD {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.parrafoD span {
    display: block;
    font-weight: 800;
}

.parrafoD1 {
    margin: 0px;
    font-size: 17px;
}

.parrafoD1 span {
    font-style: italic;
    font-weight: 900;
}

.superposicion1 {
    width: 30%;
    position: absolute;
    left: 14%;
    top: 19%;
}

.superposicion2 {
    width: 30%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.superposicion3 {
    width: 25%;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.superposicion4 {
    width: 30%;
    position: absolute;
    right: 14%;
    top: 19%;
}

.superposicion5 {
    width: 30%;
    position: absolute;
    right: 0px;
    top: 0px;
}

.superposicion6 {
    width: 25%;
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.subtituloBanner {
    text-align: justify;
    color: #606060;
    font-size: 26px;
    font-weight: 500;
}

.cardN {
    -webkit-box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    -moz-box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    box-shadow: 0px 0px 18px 0px rgba(186, 186, 186, 1);
    padding: 20px;
    margin-bottom: 25px;
    background: #fff;
    position: absolute;
}

.cardN:nth-child(1) {
    top: 0px;
}

.cardN:nth-child(2) {
    top: 170px;
}

.cardN:nth-child(3) {
    top: 365px;
}

.cardN .titulo {
    font-size: 19.5px;
    text-align: left;
    color: #606060;
}

.cardN .cuerpo {
    color: #606060;
    font-size: 14px;
}

.fondoCon {
    background: #fff;
    padding: 100px 50px;
}

.cardImagen {}

.cardImagen img {
    width: 100%;
}

.cardImagen .titulo {
    font-weight: 700;
    font-size: 20px;
    padding: 0px;
    color: #fff;
    margin-bottom: 10px;
}

.cardImagen .contenido {
    background: #01466f;
    padding: 10px 30px;
}

.cardImagen .cuerpo {
    display: none;
    color: #fff;
    font-size: 18px;
}

.cardImagen i {
    color: white;
    font-size: 25px;
    position: absolute;
    right: 25px;
}

.cardImagen .open {
    display: initial;
}

.cardImagen .close {
    display: none;
}

.cardImagen:hover .cuerpo {
    display: initial;
}

.cardImagen:hover .open {
    display: none;
}

.cardImagen:hover .close {
    display: initial;
    color: white;
    opacity: 1;
}

.cardImagen:hover .contenido {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: -70px;
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-carousel button.owl-dot {
    background: #ffbfc0;
    color: #ffbfc0;
    border-radius: 10px;
    border: 1px solid #ffbfc0;
    padding: 8px !important;
    font: inherit;
    margin-right: 15px;
}

.owl-carousel button.active {
    background: #FF1E21;
    color: #FF1E21;
    border: 1px solid #FF1E21;
}

.cuerpo {
    text-align: justify;
    color: #FFA709;
    font-size: 23px;
}

.tituloContabilidad {
    color: #2B8C72;
    font-weight: 800;
    font-size: 32px;
    line-height: 37px;
}

.parrafoContabilidad {
    text-align: justify;
    font-size: 22px;
    margin-top: 15px;
    color: #000;
}

.tituloContabilidad1 {
    color: #000;
    font-weight: 800;
    font-size: 36px;
    text-align: center;
}

.subtituloContabilidad {
    color: #000;
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
}

.oferta .titulo {
    text-align: center;
    color: #fff;
    font-size: 29px;
    margin: 0px;
    font-weight: 600;
    margin-top: 15px;
}

.parrafoF1 {
    text-align: center;
    color: #000;
    font-size: 36px;
    font-weight: 800;
}

.parrafoF2 {
    text-align: center;
    color: #000;
    font-size: 32px;
}

.parrafoF3 {
    text-align: center;
    color: #000;
    font-size: 24px;
}

.parrafoF4 {
    text-align: center;
    color: #000;
    font-size: 28px;
    font-weight: 800;
}

.parrafoF5 {
    text-align: left;
    color: #000;
    font-size: 21px;
    font-weight: 800;
}

.parrafoF6 {
    text-align: left;
    color: #000;
    font-size: 15px;
}

.cardFac {
    background: #2B8C72;
    padding: 75px 0px;
    margin: 0px 30px;
}

.cardFac .espaciadoBlanco {
    background: #fff;
}

.cardFac .folios {
    text-align: center;
    font-size: 43px;
    color: #2B8C72;
    font-weight: 700;
    margin: 0px;
}

.cardFac .precio {
    text-align: center;
    font-size: 60px;
    color: #2B8C72;
    font-weight: 700;
    margin: 0px;
}

.cardFac a {
    text-decoration: none;
    background: #fff;
    color: #2B8C72;
    text-align: center;
    font-size: 17px;
    padding: 10px 20px;
    border: 1px solid #2B8C72;
    display: block;
    margin: auto;
    margin-top: 20px;
    width: 190px;
    border-radius: 15px;
    border: none;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.cardF a:hover {
    background: #2B8C72;
    color: #fff;
    border: 1px solid #fff;
}

.distribuidores .parrafo1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}

.distribuidores .parrafo2 {
    color: #fff;
    font-size: 24px;
    text-align: center;
}

.distribuidores .parrafo3 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin: 0px;
}

.distribuidores .parrafo4 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin: 0px;
}

.distribuidores .parrafo5 {
    color: #fff;
    font-size: 29px;
    font-weight: 700;
    text-align: center;
}

.distribuidores .parrafo6 {
    color: #fff;
    font-size: 21px;
    text-align: center;
}

.distribuidores .parrafo6 span {
    font-weight: 700;
}

.distribuidores a {
    text-decoration: none;
    background: #fff;
    color: #2B8C72;
    text-align: center;
    font-size: 18px;
    padding: 5px 10px;
    display: block;
    margin: auto;
    margin-top: 50px;
    width: 160px;
    border: 1px solid #2B8C72;
    border-radius: 7px;
    border: none;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.distribuidores a:hover {
    background: #2B8C72;
    color: #fff;
    border: 1px solid #2B8C72;
}

.tituloDis {
    color: #FFFFFF;
    text-align: left;
    font-size: 27px;
    font-weight: 800;
    margin: 0px;
}

.card-dis {
    position: relative;
    padding-left: 75px;
    height: 105px;
}

.card-dis .titulo {
    color: #000;
    font-size: 19px;
    font-family: 'Poppins';
}

.card-dis .cuerpo {
    color: #000;
    font-size: 15px;
    font-family: 'Poppins';
}

.card-dis .cuadro {
    background: #2B8C72;
    width: 36px;
    height: 36px;
    position: absolute;
    left: 0px;
    top: 30%;
}

.flotante2 {
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 75%);
    padding: 50px 30px;
    margin-top: -120px;
}

@media(max-width: 1024px) {
    .tituloBanner2 {
        font-size: 25px;
        text-align: center;
    }
    .centrarVertical {
        height: auto;
        margin: 15px 0px;
        justify-content: left;
    }
}

@media(max-width: 780px) {
    .buenFin {
        top: -100px;
        left: 500px;
    }
    .numero {
        text-align: center;
    }
    .parrafoNum {
        text-align: center;
    }
    .card {
        margin-bottom: 0px;
        height: auto;
    }
    .card2 {
        margin-bottom: 55px;
        height: auto;
    }
    .card3 {
        padding: 10px 10px;
    }
    .butonT {
        margin-top: 10px;
    }
    .espaciadoD {
        padding: 50px 0px 50px;
    }
    .butonP {
        padding: 0px 0px;
    }
}

.logo {
    width: 100% !important;
    margin-top: 5px;
}

.padding50 {
    padding: 50px 0px;
}

@media (max-width: 560px) {
    .owl-next {
        top: 18%;
        font-size: 40px !important;
        right: 0px;
    }
    .fondo5 {
        padding: 30px 30px;
        margin-top: 15px;
        position: initial;
    }
    .tituloGris {
        font-size: 35px;
    }
    .flotante2 {
        margin-top: -120px;
    }
    .card-img .margen {
        padding: 10px 10px 10px 10px;
    }
    .card-img .cuerpo {
        height: auto;
    }
    .fondo1 {
        background-position: bottom;
        padding-top: 0px;
        padding-bottom: 300px;
    }
    .fondo3 {
        padding: 95px 70px;
    }
    .fondo4 {
        background-position: right;
    }
    .espaciadoL {
        padding-left: 0px;
    }
    .tituloG {
        font-size: 30px;
    }
    .cardF {
        padding: 0px 50px;
    }
    .card-img {
        margin-bottom: 20px;
    }
    .titulo {
        font-size: 20px;
    }
    .titulo span {
        font-size: 17px;
    }
    .fondo-amarillo {
        width: 100%;
        padding: 10px 14px;
    }
    .flotante {
        margin-top: 0px;
        padding: 30px;
        background-position: center;
    }
    .superposicion1 {
        position: relative;
    }
    .superposicion2 {
        position: relative;
    }
    .superposicion3 {
        position: relative;
    }
    .superposicion4 {
        position: relative;
    }
    .superposicion5 {
        position: relative;
    }
    .superposicion6 {
        position: relative;
    }
    .card2 .espaciadoImg {
        height: auto;
    }
    .card2 img {
        width: 30%;
    }
    .fondo {
        background-position: top;
        padding-top: 340px;
        padding-bottom: 50px;
    }
    .parrafoBanner {
        font-size: 20px;
    }
    .top a {
        display: block;
        width: 50%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .centrarVertical3 {
        display: none;
    }
    .owl-prev {
        top: 18%;
        font-size: 40px !important;
        left: 0px;
    }
    .tituloContabilidad1 {
        font-size: 30px;
        line-height: 35px;
    }
    .subtituloContabilidad {
        font-size: 25px;
    }
    .contenedor2 {
        margin-bottom: 15px;
    }
    .oferta .titulo {
        font-size: 30px;
    }
    .parrafoF1 {
        font-size: 25px;
    }
    .parrafoF2 {
        font-size: 24px;
    }
    .parrafoF3 {
        font-size: 17px;
    }
    .cardFac {
        margin: 15px 30px;
    }
    .fondo6 {
        padding: 20px 20px;
        position: initial;
    }
    .tituloW {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .butonT {
        margin-top: 10px;
        width: auto !important;
        font-size: 15px !important;
        padding: 0px !important;
        line-height: 15px !important;
    }
    .tituloBanner {
        font-size: 26px;
        text-align: left;
        line-height: initial;
    }
    .contenedor {
        margin-bottom: 15px;
    }
    .parrafoA1 {
        font-size: 24px;
    }
    .card .tituloFondo {
        font-size: 45px;
    }
    .cardAnuncio .tituloFondo {
        font-size: 50px;
    }
    .cardAnuncio .titulo {
        font-size: 30px;
    }
    .cardAnuncio .cuerpo {
        font-size: 25px;
    }
    .card .titulo {
        font-size: 17px;
    }
    .card .espaciadoImg {
        height: auto;
    }
    .card .cuerpo {
        font-size: 19px;
        margin-bottom: 15px;
        margin-top: 25px;
    }
    .cardImagen:hover .contenido {
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: -40px;
    }
    .tituloA {
        font-size: 27px;
    }
    .buton {
        font-size: 15px;
        padding: 8px 10px;
        width: 150px;
        margin-bottom: 15px;
    }
    .cardContacto {
        justify-content: left;
        height: auto;
        margin-bottom: 15px;
    }
    .card2 .contenido {
        height: auto;
    }
    .card .titulo {
        line-height: inherit;
        padding: 10px;
    }
    .cardCarrousel .titulo {
        font-size: 25px;
    }
    .cardCarrousel .cuerpo {
        font-size: 20px;
    }
    .titulo1 {
        font-size: 30px;
    }
    .fondo-amarrilo-transparente {
        width: 100%;
        padding: 10px 10px;
        position: inherit;
    }
    .centrarVertical1 {
        height: auto;
    }
    .parrafoR {
        font-size: 20px;
    }
    .cardIcono {
        padding: 20px 10px;
    }
    .cardIcono img {
        width: 20%;
    }
    .fondoCon {
        padding: 20px 10px;
    }
    .tituloC {
        font-size: 50px;
    }
    .cardIcono .titulo {
        line-height: inherit;
        padding: 0px;
    }
    .cardTable {
        margin-bottom: 50px;
    }
    .card2I {
        margin-left: 0px;
    }
    .cardImagen {
        margin-bottom: 55px;
    }
    .card2D {
        margin-right: 0px;
    }
    .titulo2 {
        font-size: 30px;
    }
    .cuerpo {
        font-size: 20px;
    }
    .tituloWhite {
        font-size: 20px;
    }
    .parrafoWhite {
        font-size: 15px;
    }
    .tituloBanner3 {
        font-size: 30px;
        line-height: initial;
    }
    .tituloBanner4 {
        text-align: center;
        font-size: 35px;
        line-height: initial;
    }
    .cardN {
        position: initial;
        margin-top: 15px;
    }
    .subtituloBanner {
        font-size: 20px;
    }
    .card-precio {
        margin-top: 25px;
    }
    .bancos {
        width: 100%;
    }
    .tituloBanner1 {
        font-size: 35px;
    }
    .tituloN {
        font-size: 40px;
    }
    .parrafoA {
        font-size: 18px;
    }
    .cardNosotros {
        padding: 25px;
    }
    .cardNosotros .titulo {
        font-size: 30px;
    }
    .cardNosotros .cuerpo {
        font-size: 16px
    }
    .tituloD {
        font-size: 30px;
    }
    hr {
        width: 130px;
    }
    .padding50 {
        padding: 0px;
    }
    .ImgFondo {
        display: none;
    }
    .ImgFondo2 {
        display: none;
    }
    .flotante p.encabezado {
        padding: 0px 0px;
        text-align: justify;
        font-size: 16px;
    }
    .espaciado {
        margin-top: 0px;
    }
    .navbar-nav>li>a:hover,
    .navbar-nav>li>a:focus,
    .navbar-nav>.active>a {
        color: white;
        background-color: #00517F;
    }
    .parrafo {
        text-align: left;
        font-size: 18px;
    }
    .buenFin {
        display: none;
    }
    .imagenD {
        margin-right: auto;
    }
    .subtitulo {
        font-size: 28px;
        text-align: center;
        margin-top: 0px;
    }
    .titulo3 {
        margin-top: 30px;
        font-size: 25px;
    }
    .lista-grande {
        font-size: 20px;
    }
    .lista-grande li:before {
        width: 20px;
        height: 20px;
    }
    .parrafo3 {
        font-size: 20px;
    }
    .gris {
        display: none;
    }
    .pilar {
        height: auto;
        margin-top: 55px;
    }
    .imagenBB {
        width: 100%;
    }
    .fondoDividio {
        background: linear-gradient(0deg, #FFA709 75%, #FFFFFF 75%);
        padding: 0px;
    }
    .parrafoN {
        padding-right: 0px;
    }
    .conten {
        height: auto;
    }
    .centrarVertical2 {
        height: auto;
        padding: 20px;
    }
    .imagenC {
        display: block;
        margin: auto;
    }
    .parrafoC {
        text-align: center;
    }
    .logoContenedor {
        width: 100%;
    }
    .logo {
        width: 35%;
        margin: 0;
    }
    .card {
        padding: 0px;
    }
}

.licencias {
    background: #e6f3fa;
    padding: 50px 10px;
}

.licencias:hover {
    background: #c0e2f2;
}

.licencias:hover img {
    filter: invert(79%) sepia(47%) saturate(922%) hue-rotate(359deg) brightness(101%) contrast(105%);
}

table.table-bordered {
    border: 1px solid transparent !important;
    margin-top: 20px;
}

table.table-bordered>tbody>tr>td.izquierda {
    border: 1px solid transparent;
    border-bottom: 1px solid white;
    width: 50%;
    color: white;
    border-right: 1px solid white;
    text-align: right;
    padding: 4px 20px;
}

table.table-bordered>tbody>tr>td.derecha {
    border: 1px solid transparent;
    border-bottom: 1px solid white;
    width: 50%;
    color: white;
    border-left: 1px solid white;
    text-align: left;
    padding: 4px 20px;
}

table.table-bordered>tbody>tr>td.borderT {
    border: 1px solid transparent;
    border-right: 1px solid white;
}

table.table-bordered>tbody>tr>td.borderI {
    border: 1px solid transparent;
    border-left: 1px solid white;
}

@media (max-width: 380px) {
    .flotante {
        margin-top: -150px;
    }
}