@font-face {
    font-family: 'MyriadPro';
    src: url('fonts/K2D-SemiBold/MyriadPro.woff2') format('woff2'), url('fonts/K2D-SemiBold/MyriadPro.woff') format('woff'), url('fonts/K2D-SemiBold/MyriadPro.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'K2D-SemiBold';
    src: url('fonts/K2D-SemiBold/K2D-SemiBold.woff2') format('woff2'), url('fonts/K2D-SemiBold/K2D-SemiBold.woff') format('woff'), url('fonts/K2D-SemiBold/K2D-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Mondo-Book';
    src: url('fonts/Mondo-Book/Mondo-Book.woff2') format('woff2'), url('fonts/Mondo-Book/Mondo-Book.woff') format('woff'), url('fonts/Mondo-Book/Mondo-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mondo-Medium';
    src: url('fonts/Mondo-Medium/Mondo-Medium.woff2') format('woff2'), url('fonts/Mondo-Medium/Mondo-Medium.woff') format('woff'), url('fonts/Mondo-Medium/Mondo-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Mondo-Regular';
    src: url('fonts/Mondo-Regular/Mondo-Regular.woff2') format('woff2'), url('fonts/Mondo-Regular/Mondo-Regular.woff') format('woff'), url('fonts/Mondo-Regular/Mondo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('fonts/Poppins-Medium/Poppins-Medium.woff2') format('woff2'), url('fonts/Poppins-Medium/Poppins-Medium.woff') format('woff'), url('fonts/Poppins-Medium/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('fonts/Poppins-Regular/Poppins-Regular.woff2') format('woff2'), url('fonts/Poppins-Regular/Poppins-Regular.woff') format('woff'), url('fonts/Poppins-Regular/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('fonts/Poppins-SemiBold/Poppins-SemiBold.woff2') format('woff2'), url('fonts/Poppins-SemiBold/Poppins-SemiBold.woff') format('woff'), url('fonts/Poppins-SemiBold/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Mondo-Regular", sans-serif;
    color: #334240;
    background: #F2F2F2;
    background: rgba(242, 242, 242, 1);
}

a {
    text-decoration: none;
    color: #69bd8d;
}

a:hover {
    color: #2ae0c4;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #69bd8d;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #21dfc2;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #69bd8d;
}

.navbar .getstarted {
    background: #69bd8d;
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover {
    color: #fff;
    background: #1ed2b6;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #69bd8d;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

.mobile-nav-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 5px;
}

.navbar ul {
    display: none;
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(21, 27, 26, 0.8);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 40px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    font-size: 18px;
    color: #000000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #69bd8d;
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #69bd8d;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    background: url("../img/slide/slide-1.jpg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#hero .redond {
    border-radius: 10px 10px 0px 0px;
}

#hero .subtitle-button {
    text-align: center;
    border-radius: 0px 0px 10px 10px;
    font-size: 20px;
    height: 30px;
    line-height: 25px;
    color: #FFFFFF;
    font-family: 'Mondo-Medium';
}

#hero .orange span {
    background: #E97F50;
    background: rgba(233, 127, 80, 1);
    width: 100%;
    display: block;
}

#hero .green span {
    background: #69BD8D;
    background: rgba(105, 189, 141, 1);
    width: 100%;
    display: block;
}

#enlace_bar,
#enlace_viajar {
    text-align: center;
}

#hero02 {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    background: url("../img/slide/slide-2.jpg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#hero03 {
    display: none;
}

#hero04 {
    display: none;
}

#hero .container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    justify-content: center;
    flex-direction: column;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 5%;
    padding-bottom: 5%;
}

#hero02 .container {
    position: relative;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    justify-content: center;
    flex-direction: column;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 5%;
    padding-bottom: 5%;
}

.spacesup,
.spacesup02 {
    padding-top: 40px;
}

.supimg img {
    height: 100%;
}

#hero .title,
#hero02 .title {
    font-family: 'Mondo-Medium';
    font-size: 55px;
    line-height: 60.77px;
    color: #F5F5F7;
    color: rgb(245, 245, 247);
    text-align: left;
    width: 100%;
}

#hero .subtitle {
    padding-top: 10px;
    font-family: 'Mondo-Book';
    font-size: 40px;
    line-height: 48px;
    color: #F5F5F7;
    color: rgb(245, 245, 247);
    width: 100%;
}

#hero .textcomplet,
#hero02 .textcomplet {
    display: block;
    justify-content: left;
    padding-top: 5%;
}

.logo img {
    height: 80px;
}

#hero02 .hero-footer {
    content: " ";
    width: 100%;
    height: 40px;
    bottom: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    position: sticky;
    top: 100%;
    right: 0%;
    background: #F2F2F2;
    background: rgba(242, 242, 242, 1);
}

#about {
    background: #F2F2F2;
    background: rgba(242, 242, 242, 1);
    width: 75%;
    margin: 0 auto;
    /* border:1px solid #CCCCCC;*/
    padding-bottom: 50px;
    padding-top: 50px;
}

#about .about_description {
    width: 90%;
    font-size: 18px;
    line-height: 26px;
    text-align: left;
    font-family: 'Poppins-Regular', 'MyriadPro';
    color: #000000;
    color: rgb(0, 0, 0);
}

#about .about_title {
    font-family: 'Mondo-Regular';
    font-size: 40px;
    line-height: 40px;
    color: #000000;
    color: rgb(0, 0, 0);
    width: 80%;
    padding-bottom: 40px;
    font-weight: bold;
}

#about .img_radius {
    align-content: center;
    padding-bottom: 10px;
    /*  border:1px solid #CCCCCC;*/
}

.card-img-top {
    border-radius: 20px;
    width: 450px !important;
    align-items: center;
    margin-left: 5%;
    margin-right: 5%;
}

#hero h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    width: 80%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        width: 60%;
    }
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

#services {
    background: #FFFFFF;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

#services .container,
#beneficys .container {
    width: 80%;
    margin: 0 auto;
}

#services .services_title {
    font-family: 'Mondo-Medium';
    font-size: 40px;
    line-height: 40px;
    color: #000000;
    color: rgb(0, 0, 0);
    padding-bottom: 40px;
    text-align: center;
}

#services .card-img-top {
    border-radius: 20px;
    width: 500px !important;
    align-items: center;
    margin-left: 0%!important;
    margin-right: 0%!important;
}

#services .contright {
    text-align: right!important;
    justify-content: right!important;
}

#services .separation {
    background: url("../img/fondo_lineal.png");
    background-repeat: repeat-y;
    background-position-x: center;
}

#services .cont-left {
    text-align: left!important;
    justify-content: left!important;
}

#services .subtitle {
    font-family: 'K2D-SemiBold';
    font-size: 30px;
    color: #000000;
    color: rgb(0, 0, 0);
}

#beneficys .subtitle {
    font-family: 'Mondo-Regular';
    font-size: 40px;
    color: #000000;
    color: rgb(0, 0, 0);
}

#services .content,
#beneficys .content {
    padding-top: 20px;
    font-family: 'Poppins-Regular';
    font-size: 18px;
    color: #000000;
    color: rgb(0, 0, 0);
}

#services .derarr {
    /*    border:1px solid #CCCCCC;*/
    padding-top: 20px;
    padding-right: 30px;
    padding-left: 20px;
}

#services .izqarr {
    /*    border:1px solid #E97F50;*/
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 30px;
}

#services .col-md-2 {
    flex: 0 0 auto;
    width: 4%!important;
}

#services .col-md-5 {
    flex: 0 0 auto;
    width: 48%!important;
}

#beneficys {
    background: #F2F2F2;
    background: rgba(242, 242, 242, 1);
    width: 100%;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #344341;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    background: #3d4f4c;
    border-bottom: 1px solid #4d635f;
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Roboto", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #58716d;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #69bd8d;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #56e7d0;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #40e4ca;
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #69bd8d;
    color: #fff;
    transition: 0.3s;
    border-radius: 4;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
    background: #158f7c;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.cta-btn {
    font-family: "Poppins-Regular", sans-serif;
    width: 200px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    display: block;
    padding: 8px 8px 8px 8px;
    border-radius: 7px;
    transition: 0.5s;
    margin-top: 30px;
    /*  border: 2px solid #69bd8d;*/
    color: #fff;
    text-align: center;
    background: #E97F50;
    background: rgba(233, 127, 80, 1);
}

@media (max-width: 1400px) {
    #hero .container,
    #hero02 .container {
        padding-left: 8%;
        padding-right: 8%;
        max-width: 1380px;
    }
    #hero .title,
    #hero02 .title {
        font-size: 300%;
        width: 80%;
    }
    #about {
        width: 80%;
    }
}

@media (max-width: 1210px) {
    #hero .title,
    #hero02 .title {
        font-size: 280%;
        width: 80%;
    }
}

@media (max-width: 1130px) {
    #hero .title,
    #hero02 .title {
        font-size: 260%;
        width: 80%;
    }
}

@media (max-width: 1050px) {
    #hero .title,
    #hero02 .title {
        font-size: 240%;
        width: 90%;
    }
}


/* ********** 1000 *************** */

@media (max-width: 1000px) {
    #about {
        width: 85%;
        padding-bottom: 60px;
        padding-top: 20px;
    }
    #about .about_title,
    #services .services_title {
        font-size: 35px;
        line-height: 40px;
    }
    #about .about_description {
        font-size: 16px;
        line-height: 24px;
        width: 98%;
    }
    #services .content,
    #beneficys .content {
        padding-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }
    #services .izqarr {
        /*  border: 1px solid #E97F50;*/
        padding-top: 10px;
        padding-right: 5px;
        padding-left: 10px;
    }
    #services .derarr {
        /*  border: 1px solid #2e211c;*/
        padding-top: 10px;
        padding-right: 10px;
        padding-left: 10px;
    }
    #beneficys .subtitle {
        font-size: 35px;
    }
}


/************ 992  ************* */

@media (max-width: 992px) {
    #imagen001 {
        display: none;
    }
    #imagen002 {
        display: none;
    }
    #imagen003 {
        display: none;
    }
    #hero03 {
        display: inline-block;
        width: 100%;
        height: 40vh;
        overflow: hidden;
        padding: 0;
        background: url("../img/slide/slide-3.jpg");
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }
    #hero03 .hero-footer {
        content: " ";
        width: 100%;
        height: 20px;
        bottom: 0;
        left: 0;
        border-radius: 30px 30px 0 0;
        position: sticky;
        top: 100%;
        right: 0%;
        background: #F2F2F2;
        background: rgba(242, 242, 242, 1);
    }
    #hero04 {
        display: inline-block;
        width: 100%;
        height: 40vh;
        overflow: hidden;
        padding: 0;
        background-color: #FFFFFF;
        background: url("../img/slide/slide-4.jpg");
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 20px;
    }
    #hero02 .container {
        padding-left: 1%;
        padding-right: 1%;
        text-align: center;
        width: 100%;
    }
    #about .col-md-6,
    #beneficys .col-md-6 {
        flex: 0 0 auto;
        width: 100%!important;
    }
    #hero02 .title {
        font-size: 40px!important;
        line-height: 35px!important;
        text-align: center!important;
        width: 100%;
    }
    #hero02 .textcomplet {
        display: block;
        justify-content: lcenter;
        padding-top: 5%;
        width: 100%;
    }
    .cta-btn {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #enlace_bar,
    #enlace_viajar {
        text-align: center;
        width: 300px;
    }
    #enlace_bar img,
    #enlace_viajar img {
        width: 100%;
    }
    #hero .textcomplet {
        display: block;
        justify-content: center;
        padding-top: 5%;
    }
    #hero .container,
    #hero02 .container {
        padding-left: 8%;
        max-width: 100%;
    }
}

@media (max-width: 688px) {
    #enlace_bar,
    #enlace_viajar {
        width: 280px;
    }
    #hero .title {
        font-size: 220%;
        line-height: 45px;
    }
}

@media (max-width: 638px) {
    #hero .container,
    #hero02 .container {
        padding-left: 6%;
        max-width: 100%;
    }
}

@media (max-width: 623px) {
    #enlace_bar,
    #enlace_viajar {
        width: 260px!important;
    }
}

@media (max-width: 576px) {
    #enlace_bar,
    #enlace_viajar {
        width: 250px!important;
    }
}

@media (max-width: 553px) {
    #enlace_bar,
    #enlace_viajar {
        width: 200px!important;
    }
    #hero .container,
    #hero02 .container {
        padding-left: 10%;
        max-width: 100%;
    }
}

@media (max-width: 458px) {
    #enlace_bar,
    #enlace_viajar {
        width: 180px!important;
    }
}

@media (max-width: 410px) {
    #enlace_bar,
    #enlace_viajar {
        width: 175px!important;
        padding-left: 0%;
    }
}

@media (max-width: 780px) {
    #blockContainer,
    #blockContainer02 {
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
    }
    #blockA {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        box-ordinal-group: 2;
    }
    #blockB {
        display: none;
    }
    #blockC {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        box-ordinal-group: 1;
    }
    #services .col-md-5 {
        flex: 0 0 auto;
        width: 100% !important;
        text-align: left;
    }
    #services .contright {
        text-align: left !important;
        justify-content: left !important;
    }
}


/************ 368  ************* */

@media (max-width: 397px) {
    #enlace_bar {
        width: 100%;
        text-align: center;
    }
    #enlace_viajar {
        width: 100%;
        text-align: center;
    }
    #enlace_bar .orange {
        width: 200px;
        text-align: center;
        display: inline-block;
        padding-bottom: 10px;
    }
    #enlace_viajar .green {
        width: 200px;
        text-align: center;
        display: inline-block;
        padding-bottom: 10px;
    }
    #enlace_bar,
    #enlace_viajar {
        width: 100% !important;
        padding-left: 0%;
    }
    #hero {
        padding-bottom: 800px!important;
    }
    #hero02 .container {
        padding-top: 100px;
    }
    #hero .title,
    #hero02 .title {
        font-size: 35px!important;
        line-height: 45px!important;
        text-align: center!important;
        width: 98%;
    }
    #hero .row {
        text-align: center!important;
        justify-content: center;
    }
    #hero .subtitle {
        font-size: 20px!important;
        line-height: 28px!important;
        text-align: center!important;
    }
    .supimg {
        text-align: center!important;
    }
    .supimg img {
        height: 200px !important;
        width: 200px !important;
    }
    .spacesup,
    .spacesup02 {
        padding-top: 2px;
    }
    .logo {
        text-align: center;
    }
    .logo img {
        width: 80px!important;
        height: 55px!important;
    }
    .cta-btn {
        display: inline-block;
    }
    #hero02 .container {
        text-align: center;
    }
    #hero {
        background-position: right -700px bottom;
        background-size: 380%;
    }
    #hero02 {
        background-position: right -500px bottom;
    }
    #about .about_title {
        font-size: 25px;
        line-height: 30px;
        width: 80%;
        padding-bottom: 20px;
    }
    #about {
        width: 80%;
        padding-bottom: 20px;
        padding-top: 20px;
    }
    #services {
        padding-top: 40px;
    }
    #about .about_description {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
        width: 100%;
    }
    .card-img-top {
        border-radius: 10px;
        width: 100% !important;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }
    #imagen001 {
        display: none;
    }
    #imagen002 {
        display: none;
    }
    #imagen003 {
        display: none;
    }
    #services .services_title,
    #beneficys .subtitle {
        font-size: 25px;
        line-height: 30px;
        width: 100%;
        padding-bottom: 20px;
        text-align: left;
    }
    #services .col-md-2 {
        display: none;
    }
    #services .col-md-5 {
        flex: 0 0 auto;
        width: 100% !important;
    }
    #services .derarr,
    #services .izqarr {
        padding-top: 20px;
        padding-right: 0px;
        padding-left: 0px;
    }
    #services .content,
    #beneficys .content {
        padding-top: 10px;
        font-size: 14px;
    }
    #services .contright {
        text-align: left !important;
    }
    #services .subtitle {
        font-size: 20px;
    }
    #services .container,
    #beneficys .container {
        width: 86%;
        margin: 0 auto;
    }
    #blockContainer,
    #blockContainer02 {
        display: -webkit-box;
        display: -moz-box;
        display: box;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        box-orient: vertical;
    }
    #blockA {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        box-ordinal-group: 2;
    }
    #blockB {
        display: none;
    }
    #blockC {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        box-ordinal-group: 1;
    }
    #hero03 {
        display: inline-block;
        width: 100%;
        height: 40vh;
        overflow: hidden;
        padding: 0;
        background: url("../img/slide/slide-3.jpg");
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 120%;
    }
    #beneficys {
        padding-top: 10px;
        padding-bottom: 70px;
    }
    #hero02 .hero-footer {
        content: " ";
        width: 100%;
        height: 20px;
    }
    #hero03 .hero-footer {
        content: " ";
        width: 100%;
        height: 20px;
        bottom: 0;
        left: 0;
        border-radius: 25px 25px 0 0;
        position: sticky;
        top: 100%;
        right: 0%;
        background: #F2F2F2;
        background: rgba(242, 242, 242, 1);
    }
    #hero04 {
        display: inline-block;
        width: 100%;
        height: 40vh;
        overflow: hidden;
        padding: 0;
        background-color: #FFFFFF;
        background: url("../img/slide/slide-4.jpg");
        background-position-x: 0%;
        background-position-y: 0%;
        background-size: auto;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 120%;
        border-radius: 20px;
    }
    #services .card-img-top {
        border-radius: 10px;
        height: 100%;
    }
}

#enlace_bar :hover {
    box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
}

#enlace_viajar :hover {
    box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 4px 10px 59px 1px rgba(255, 255, 255, 0.1);
}

.logo-dtyt-footer {
    float: left;
    margin-left: 5%;
    width: 65px;
}

.footer-btns {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(0, -50%);
}

.footer-btns>div {
    float: left;
}

.logo-dtyt-footer img {
    width: 100%;
}

.footer-btns img {
    width: 100%;
    float: left;
    width: 20px;
    margin-right: 9px;
}

.footer-btn-item-text {
    float: right;
}

.footer-btn-item.whatsapp-btn {
    margin-right: 60px;
}

.footer-btn-item.location-btn,
.footer-btn-item.phone-btn {
    margin-right: 30px;
}

.footer-btn-item.wp-btn img {
    margin-right: 0 !important;
    margin-left: 10px;
}

.footer-btn-item.fb-btn {
    margin-right: 8px;
}

.footer-container {
    padding: 20px 0;
    position: relative;
}

.footer-btn-item-text {
    font-family: Lato;
    color: #656566;
    text-decoration: underline;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.btn-right.whatsapp-btn {
    background-color: #25d366;
}

.btn-right.whatsapp-btn {
    position: fixed;
    right: 5%;
    bottom: 70px;
    padding: 10px 10px 8px;
    border-radius: 29px;
}

.btn-right.whatsapp-btn img {
    width: 30px;
}

@media (max-width: 768px) {
    .mobile {
        display: block;
    }
    .desktop {
        display: none;
    }
    .logo-dtyt-footer {
        float: none;
        margin: 0 auto;
    }
    .footer-btns.mobile {
        position: relative;
        right: unset;
        top: unset;
        transform: none;
        margin: 0 auto;
        width: 87%;
    }
    .social-btns {
        float: none !important;
        width: 90%;
        margin: 0 auto;
        clear: both;
    }
    .footer-text {
        float: none !important;
        width: 90%;
        margin: 0 auto;
        clear: both;
    }
    .footer-btn-item {
        float: left;
    }
    .footer-btns img {
        float: none !important;
    }
    .social-btns {
        width: fit-content !important;
        margin: 30px auto 25px !important;
    }
    .footer-text {
        width: 300px !important;
    }
    .footer-text .footer-btn-item {
        float: none;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .footer-text {
        width: 300px !important;
    }
    .footer-btn-item.phone-btn,
    .footer-btn-item.whatsapp-btn,
    .footer-btn-item.location-btn {
        margin: 0 auto !important;
    }
    .footer-text .footer-btn-item-text {
        font-size: 12px !important;
    }
    .footer-text .footer-btn-item img {
        width: 15px !important;
    }
    .btn-right.whatsapp-btn img {
        width: 18px;
    }
}