﻿
/* modules/button.css */

.button {
    background-color: #FEB128;
    color: var(--searchInputButtonColor);
    font-weight: var(--searchInputButtonFontWeight);
    padding: var(--searchInputButtonPaddingVertical) var(--searchInputButtonPaddingHorizontal);
}

    .button:focus,
    .button:hover {
        background-color: var(--searchInputButtonHoverBackgroundColor);
    }

/* modules/form.css */

::placeholder {
    color: #42454e;
}

input {
    appearance: none;
    border: none;
    font: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
}

    input[type="search"] {
        appearance: textfield;
        box-sizing: content-box;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            appearance: none;
        }

    input[type="submit"] {
        cursor: pointer;
    }

.form__field {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    background-color: #F54036 !important;
}

.form__input {
    flex-grow: 1;
    padding: 5px;
}

/* modules/search.css */

:root {
    --searchBackgroundColor: #42454e;
    --searchBorderRadius: .125rem;
    --searchFontSize: .75rem;
    --searchPadding: .5rem;
    --searchInputBorderRadius: .125rem;
    --searchInputSearchBackgroundColor: #fff;
    --searchInputSearchColor: #42454e;
    --searchInputSearchPaddingHorizontal: .5rem;
    --searchInputSearchPaddingVertical: .375rem;
    --searchInputButtonBackgroundColor: #1bba9a;
    --searchInputButtonColor: #fff;
    --searchInputButtonFontWeight: bold;
    --searchInputButtonPaddingHorizontal: .625rem;
    --searchInputButtonPaddingVertical: .375rem;
    --searchInputButtonHoverBackgroundColor: #189e83;
}

.search {
    background-color: #F54036;
    border-radius: var(--searchBorderRadius);
    font-size: var(--searchFontSize);
    padding: var(--searchPadding);
}

    .search input[type="search"],
    .search input[type="submit"] {
        border-radius: var(--searchInputBorderRadius);
    }

    .search input[type="search"] {
        background-color: var(--searchInputSearchBackgroundColor);
        color: var(--searchInputSearchColor);
        padding: var(--searchInputSearchPaddingVertical) var(--searchInputSearchPaddingHorizontal);
    }

}

@charset "UTF-8";
@font-face {
  font-family: "TommyThin";
  src: url("../fonts/Tommy/TommyThin.otf") format("opentype");
}
@font-face {
  font-family: "TommyThinO";
  src: url("../fonts/Tommy/TommyThinO.otf") format("opentype");
}
@font-face {
  font-family: "TommyLight";
  src: url("../fonts/Tommy/TommyLight.otf") format("opentype");
}
@font-face {
  font-family: "TommyLightO";
  src: url("../fonts/Tommy/TommyLightO.otf") format("opentype");
}
@font-face {
  font-family: "TommyRegular";
  src: url("../fonts/Tommy/TommyRegular.otf") format("opentype");
}
@font-face {
  font-family: "TommyRegularO";
  src: url("../fonts/Tommy/TommyRegularO.otf") format("opentype");
}
@font-face {
  font-family: "TommyMedium";
  src: url("../fonts/Tommy/TommyMedium.otf") format("opentype");
}
@font-face {
  font-family: "TommyMediumO";
  src: url("../fonts/Tommy/TommyMediumO.otf") format("opentype");
}
@font-face {
  font-family: "TommyBold";
  src: url("../fonts/Tommy/TommyBold.otf") format("opentype");
}
@font-face {
  font-family: "TommyBoldO";
  src: url("../fonts/Tommy/TommyBoldO.otf") format("opentype");
}
@font-face {
  font-family: "TommyExtraBold";
  src: url("../fonts/Tommy/TommyExtraBold.otf") format("opentype");
}
@font-face {
  font-family: "TommyExtraBoldO";
  src: url("../fonts/Tommy/TommyExtraBoldO.otf") format("opentype");
}
@font-face {
  font-family: "TommyBlack";
  src: url("../fonts/Tommy/TommyBlack.otf") format("opentype");
}
@font-face {
  font-family: "TommyBlackO";
  src: url("../fonts/Tommy/TommyBlackO.otf") format("opentype");
}
.site-content {
  padding-top: 100px;
}

/* HEADER */
.header {
  position: fixed;
  left: 0;
  right: 0;
  height: 100px;
  line-height: 100px;
  color: #3F5263;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header__logo {
  font-weight: 700;
  padding: 0;
  float: left;
}

/* MENU */
.menu {
  float: right;
  padding-right: 30px;
}

.menu a {
  color: #3F5263;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  position: relative;
  font-family: "TommyRegular", sans-serif;
  font-size: 17px;
  position: relative;
  padding: 5px 10px;
}
.menu a:after {
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 2px;
  content: "";
  background-color: #F64F34;
  opacity: 0;
  -webkit-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu a:hover, .menu a.active {
  color: #F64E33;
}
.menu a:hover:after, .menu a.active:after {
  opacity: 1;
}

.menu a:hover {
  color: #F64E33;
}

.header__auth {
  float: right;
  padding: 0 10px;
  font-size: 12px;
  font-family: "TommyRegular", sans-serif;
  letter-spacing: 1px;
}
.header__auth .btn {
  width: 119px;
}

.header__logo.mobile,
.header__auth.mobile {
  display: none;
}

.scrolled .site-content {
  top: 66px;
}
.scrolled .header {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
          box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  height: 66px;
  line-height: 66px;
}
.scrolled .header .header__logo img {
  height: 48px;
}

@media (max-width: 1599px) {
  .header .container {
    max-width: 100%;
  }
}
@media (max-width: 1439px) {
  .menu a {
    padding: 10px 20px;
  }

  .menu a:after {
    left: 15px;
    width: calc(100% - 30px);
  }
}
@media (max-width: 1365px) {
  .menu a {
    padding: 10px 10px;
  }

  .menu a:after {
    left: 5px;
    width: calc(100% - 10px);
  }
}
@media only screen and (max-width: 1199px) {
  .site-pusher,
.site-container {
    height: 100%;
  }

  .site-container {
    overflow: hidden;
  }

  .site-pusher {
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
       transition-duration: 0.3s;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
        transform: translateX(0px);
  }

  .site-content {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    bottom: 0;
    padding-top: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .header {
    position: static;
  }

  .header__icon {
    position: relative;
    display: block;
    float: right;
    width: 25px;
    height: 100%;
    cursor: pointer;
    background-image: url(../img/menu.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .menu {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    /*    overflow-y: scroll;
        -webkit-overflow-scrolling: touch;*/
    width: 250px;
    -webkit-transform: translateX(280px);
    -ms-transform: translateX(280px);
        transform: translateX(280px);
  }
  .menu .header__auth.mobile {
    padding: 20px 0;
    float: unset;
  }
  .menu .header__auth.mobile .btn {
    display: block !important;
    line-height: 35px;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
  }

  .menu a {
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
  }
  .menu a:after {
    content: none;
  }
  .menu a.btn-primary {
    color: #fff;
  }

  .with--sidebar .site-pusher {
    -webkit-transform: translateX(-280px);
    -ms-transform: translateX(-280px);
        transform: translateX(-280px);
  }

  .with--sidebar .site-cache {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .header__logo.mobile {
    float: unset;
    height: auto;
    margin-bottom: 20px;
    padding-top: 20px;
  }

  .header__logo.mobile,
.header__auth.mobile {
    display: block;
  }

  .site-content {
    top: 66px;
  }

  .header {
    background-color: #fff;
    -webkit-box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
            box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    height: 66px;
    line-height: 66px;
  }
  .header .header__logo img {
    height: 48px;
  }
}
@media (max-width: 575px) {
  .header__auth {
    display: none;
  }

  .header .header__logo img {
    height: 38px;
  }
}

@media (min-width: 575px) {
    .btnMobile1 {
        display: none !important;        
    }
    .btnMobile2 {
        display: none !important;        
    }
    
}


    .owl-carousel {
        z-index: 0;
    }

        .owl-carousel.owl-home {
            position: relative;
        }

            .owl-carousel.owl-home .owl-wrapper {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
            }

                .owl-carousel.owl-home .owl-wrapper .box-owl {
                    width: 50%;
                    height: 100%;
                    background-image: url(../img/bg-card-hero.png);
                    background-position: center bottom;
                    background-repeat: no-repeat;
                    background-size: cover;
                    color: #fff;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                }

                    .owl-carousel.owl-home .owl-wrapper .box-owl .box-body {
                        padding: 0;
                        max-width: 674px;
                    }

                    .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
                        color: #fff;
                        margin-bottom: 15px;
                        line-height: 52px;
                        font-size: 52px;
                        font-family: "TommyRegular", sans-serif;
                    }

                    .owl-carousel.owl-home .owl-wrapper .box-owl .box-text {
                        color: #fff;
                        font-size: 25px;
                        font-family: "TommyRegular", sans-serif;
                        text-align: justify;
                    }

                    .owl-carousel.owl-home .owl-wrapper .box-owl a {
                        color: #fff;
                        font-size: 18px;
                        line-height: 20px;
                        font-family: "TommyRegular", sans-serif;
                    }

                        .owl-carousel.owl-home .owl-wrapper .box-owl a:hover {
                            opacity: 0.9;
                        }

            .owl-carousel.owl-home .owl-item .item {
                position: relative;
            }

                .owl-carousel.owl-home .owl-item .item:before {
                    content: "";
                    position: absolute;
                    height: 100%;
                    width: 100%;
                    max-width: 360px;
                    background-color: #fff;
                }

            .owl-carousel.owl-home .owl-img {
                -webkit-transform: translate(10%);
                -ms-transform: translate(10%);
                transform: translate(10%);
                min-height: 300px;
                -o-object-fit: cover;
                object-fit: cover;
            }

        .owl-carousel.owl-theme .owl-dots {
            margin-top: 0 !important;
        }

            .owl-carousel.owl-theme .owl-dots .owl-dot {
                outline: none !important;
            }

                .owl-carousel.owl-theme .owl-dots .owl-dot span {
                    background: #405363;
                    opacity: 0.2;
                    width: 8px;
                    height: 8px;
                }

                .owl-carousel.owl-theme .owl-dots .owl-dot.active span {
                    background: #F75C33;
                    opacity: 1;
                }

        .owl-carousel.owl-testimonials .owl-avatar {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: 47px;
            height: 47px;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            margin: auto;
            font-size: 26px;
            font-family: "TommyRegular", sans-serif;
            color: #fff;
            background: #f54036;
            background: -o-linear-gradient(216deg, #f54036 16%, #ffc526 100%);
            background: linear-gradient(234deg, #f54036 16%, #ffc526 100%);
            border-radius: 100%;
            margin-bottom: 15px;
        }

        .owl-carousel.owl-testimonials .owl-author {
            display: block;
            font-size: 18px;
            font-family: "TommyBold", sans-serif;
            text-align: center;
        }

        .owl-carousel.owl-testimonials .owl-text {
            display: block;
            font-size: 18px;
            font-family: "TommyLight", sans-serif;
            text-align: center;
        }

    @media (max-width: 1599px) {
        .owl-carousel.owl-home .owl-wrapper .box-owl .box-body {
            padding: 0 50px;
            width: 100%;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
            font-size: 40px;
            line-height: 40px;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl .box-text {
            font-size: 22px;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl a {
            font-size: 16px;
        }
    }

    @media (max-width: 1199px) {
        .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
            font-size: 32px;
            line-height: 34px;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl .box-text {
            font-size: 18px;
        }
    }

    @media (max-width: 991px) {
        .owl-carousel.owl-home .owl-wrapper .box-owl .box-body {
            padding: 0 25px;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
            font-size: 22px;
            line-height: 28px;
        }

        .owl-carousel.owl-home .owl-wrapper .box-owl .box-text,
        .owl-carousel.owl-home .owl-wrapper .box-owl a {
            font-size: 14px;
        }
    }

    @media (max-width: 767px) {
        .owl-carousel.owl-home .owl-wrapper .box-owl {
            width: 55%;
        }

            .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
                font-size: 20px;
                line-height: 24px;
            }

        .owl-carousel.owl-testimonials .owl-text {
            font-size: 16px;
        }
    }

    @media (max-width: 575px) {
        .owl-carousel.owl-home .owl-img {
            min-height: auto;
            -webkit-transform: translate(0%);
            -ms-transform: translate(0%);
            transform: translate(0%);
        }

        .owl-carousel.owl-home .owl-wrapper {
            position: relative;
        }

            .owl-carousel.owl-home .owl-wrapper .box-owl .box-body {
                padding: 25px;
            }

            .owl-carousel.owl-home .owl-wrapper .box-owl {
                width: 100%;
            }

                .owl-carousel.owl-home .owl-wrapper .box-owl .box-title {
                    font-size: 18px;
                    line-height: 20px;
                }
    }

    .box.box-category {
        position: relative;
        display: block;
    }

        .box.box-category .box-figure {
            overflow: hidden;
        }

            .box.box-category .box-figure img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                -webkit-transition: all 1s;
                -o-transition: all 1s;
                transition: all 1s;
            }

        .box.box-category .box-body {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 200px;
            overflow: hidden;
            padding: 30px;
            background: black;
            background: -webkit-gradient(linear, left bottom, left top, from(black), to(rgba(0, 0, 0, 0)));
            background: -o-linear-gradient(bottom, black 0%, rgba(0, 0, 0, 0) 100%);
            background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
        }

        .box.box-category .box-title {
            color: #fff;
            margin-bottom: 15px;
            line-height: 40px;
            font-size: 40px;
            font-family: "TommyRegular", sans-serif;
        }

        .box.box-category .box-text {
            color: #fff;
            font-size: 17px;
            font-family: "TommyRegular", sans-serif;
            text-align: justify;
        }

        .box.box-category:hover .box-figure img {
            -webkit-transform: scale(1.1) rotate(2deg);
            -ms-transform: scale(1.1) rotate(2deg);
            transform: scale(1.1) rotate(2deg);
        }

    .card.card-preguntas {
        -webkit-box-shadow: 0px 0px 20px -1px #999999;
        box-shadow: 0px 0px 20px -1px #999999;
    }

        .card.card-preguntas .card-body {
            text-align: center;
            padding: 50px 30px;
        }

            .card.card-preguntas .card-body .card-text {
                text-align: center;
                font-size: 28px;
                font-family: "TommyRegular", sans-serif;
            }

            .card.card-preguntas .card-body .card-options {
                text-align: center;
            }

                .card.card-preguntas .card-body .card-options .btn {
                    width: 127px;
                }

    .modal .modal-content {
        border-radius: 0;
    }

    .modal .modal-header {
        background-color: #F7F8F9;
        border-bottom: none;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .modal .modal-title {
        font-size: 30px;
        color: #F54036;
        font-family: "TommyLight", sans-serif;
    }

    .modal .modal-body {
        padding: 30px 60px;
        border-right: 2px solid #fff;
    }

        .modal .modal-body h2 {
            font-size: 30px;
            color: #F54036;
            font-family: "TommyLight", sans-serif;
        }

        .modal .modal-body p {
            font-size: 16px;
            font-family: "TommyLight", sans-serif;
        }

        .modal .modal-body h4 {
            font-size: 18px;
            font-family: "TommyRegular", sans-serif;
        }

    .modal .close:not(:disabled):not(.disabled):focus, .modal .close:not(:disabled):not(.disabled):hover,
    .modal .close {
        opacity: 1;
    }

    @media (max-width: 1919px) {
        .box.box-category .box-title {
            margin-bottom: 10px;
            line-height: 30px;
            font-size: 30px;
        }

        .box.box-category .box-text {
            font-size: 16px;
        }
    }

    @media (max-width: 1439px) {
        .box.box-category .box-text {
            font-size: 14px;
        }

        .box.box-category .box-title {
            font-size: 28px;
        }

        .box.box-category .box-body {
            height: 180px;
        }
    }

    @media (max-width: 991px) {
        .title-section {
            font-size: 34px;
        }

        .box.box-category .box-title {
            font-size: 26px;
        }
    }

    @media (max-width: 575px) {
        .box.box-category .box-text {
            font-size: 12px;
        }

        .box.box-category .box-body {
            height: auto;
        }
    }

    .btn {
        font-family: "TommyRegular", sans-serif;
        font-size: 13px;
        height: 35px;
    }

        .btn span {
            margin: 0 10px;
        }

        .btn.btn-primary {
            background: #f54036;
            background: -o-linear-gradient(216deg, #f54036 16%, #ffc526 100%);
            background: linear-gradient(234deg, #f54036 16%, #ffc526 100%);
            border: none;
            font-family: "TommyRegular", sans-serif;
            font-size: 13px;
            height: 35px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear;
        }

            .btn.btn-primary:focus, .btn.btn-primary.focus, .btn.btn-primary:hover, .btn.btn-primary:not(:disabled):not(.disabled):active:focus, .btn.btn-primary:not(:disabled):not(.disabled):active {
                -webkit-box-shadow: none;
                box-shadow: none;
                background: -o-linear-gradient(216deg, #f54036 16%, #f54036 100%);
                background: linear-gradient(234deg, #f54036 16%, #f54036 100%);
            }

        .btn.btn-secondary {
            background: #3f5263;
            background: -o-linear-gradient(216deg, #3f5263 16%, #2f3e26 100%);
            background: linear-gradient(234deg, #3f5263 16%, #2f3e26 100%);
            border: none;
            font-family: "TommyRegular", sans-serif;
            font-size: 13px;
            height: 35px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear;
        }

            .btn.btn-secondary:focus, .btn.btn-secondary.focus, .btn.btn-secondary:hover, .btn.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn.btn-secondary:not(:disabled):not(.disabled):active {
                -webkit-box-shadow: none;
                box-shadow: none;
                background: -o-linear-gradient(216deg, #3f5263 16%, #3f5263 100%);
                background: linear-gradient(234deg, #3f5263 16%, #3f5263 100%);
            }

        .btn.btn-outline-primary {
            color: #F64E33;
            border-color: #F64E33;
            -webkit-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear;
            font-family: "TommyRegular", sans-serif;
            font-size: 13px;
            height: 35px;
        }

            .btn.btn-outline-primary:focus, .btn.btn-outline-primary.focus, .btn.btn-outline-primary:hover, .btn.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn.btn-outline-primary:not(:disabled):not(.disabled):active {
                -webkit-box-shadow: none;
                box-shadow: none;
                background: -o-linear-gradient(216deg, #f54036 16%, #f54036 100%);
                background: linear-gradient(234deg, #f54036 16%, #f54036 100%);
                color: #fff;
            }

        .btn.btn-light {
            font-family: "TommyRegular", sans-serif;
            font-size: 13px;
            height: 35px;
            color: #3F5263;
            background-color: #eeeeee;
            border-color: #eeeeee;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 0;
        }

            .btn.btn-light:focus, .btn.btn-light.focus, .btn.btn-light:hover, .btn.btn-light:not(:disabled):not(.disabled):active:focus, .btn.btn-light:not(:disabled):not(.disabled):active {
                -webkit-box-shadow: none;
                box-shadow: none;
                background-color: #dddddd;
            }

        .btn.btn-trans {
            background: rgba(255, 255, 255, 0.6);
            border: none;
            color: #3F5263;
            font-family: "TommyRegular", sans-serif;
            font-size: 18px;
            height: 54px;
            padding: 0 30px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-transition: all 300ms linear;
            -o-transition: all 300ms linear;
            transition: all 300ms linear;
        }

            .btn.btn-trans:focus, .btn.btn-trans.focus, .btn.btn-trans:hover, .btn.btn-trans:not(:disabled):not(.disabled):active:focus, .btn.btn-trans:not(:disabled):not(.disabled):active {
                -webkit-box-shadow: none;
                box-shadow: none;
                background: #fff;
            }

        .btn.btn-rounded {
            border-radius: 25px;
        }

        .btn.btn-lg {
            height: 47px;
            padding: 0.5rem 1rem;
        }

        .btn.btn-xl {
            height: 60px;
            font-size: 19px;
        }

        .btn.btn-xxl {
            height: 77px;
            font-size: 31px;
        }

    .form-control {
        color: #3F5263;
        border-color: #dddddd;
        font-size: 17px;
    }

        .form-control:focus {
            color: #3F5263;
            background-color: #fff;
            border-color: #F64E33;
            outline: 0;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        .form-control.form-control[type=text], .form-control.form-control[type=tel], .form-control.form-control[type=email], .form-control.form-control[type=password] {
            padding: 0 15px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 17px;
        }

        .form-control.form-control-lg[type=text], .form-control.form-control-lg[type=tel], .form-control.form-control-lg[type=email], .form-control.form-control-lg[type=password] {
            height: 47px;
            font-size: 17px;
        }

        .form-control.form-control-xl[type=text], .form-control.form-control-xl[type=tel], .form-control.form-control-xl[type=email], .form-control.form-control-xl[type=password] {
            height: 60px;
            font-size: 17px;
        }

    select.form-control {
        color: #3F5263;
        border-color: #dddddd;
        font-size: 17px;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url(../img/icons/icon-caret-primary.svg);
        background-position: calc(100% - 15px) center;
        background-repeat: no-repeat;
        background-size: 11px 7px;
        padding: 0 15px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 17px;
    }

    select.form-control-lg {
        height: 47px;
        font-size: 17px;
    }

    select.form-control-xl {
        height: 60px;
        font-size: 17px;
    }

    .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
        color: #fff;
        background-color: #F64E33;
        border-color: #F64E33;
    }

    .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
        border-color: #F64E33;
    }

    .custom-control-input:focus ~ .custom-control-label::before {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(246, 78, 51, 0.25);
        box-shadow: 0 0 0 0.2rem rgba(246, 78, 51, 0.25);
    }

    .custom-control-input:focus ~ .custom-control-label::before {
        -webkit-box-shadow: 0 0 0 0.2rem rgba(246, 78, 51, 0.25);
        box-shadow: 0 0 0 0.2rem rgba(246, 78, 51, 0.25);
    }

    .custom-control-input:checked ~ .custom-control-label::before {
        color: #fff;
        border-color: #F64E33;
        background-color: #F64E33;
    }

    .icon {
        display: inline-block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

        .icon.contact-envelope {
            width: 30px;
            height: 21px;
            background-image: url(../img/icons/icon-contact-envelope.svg);
        }

        .icon.contact-map-marker {
            width: 21px;
            height: 32px;
            background-image: url(../img/icons/icon-contact-map-marker.svg);
        }

        .icon.long-arrow-right-white {
            width: 18px;
            height: 13px;
            background-image: url(../img/icons/icon-long-arrow-right-white.svg);
        }

    .social-icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 100%;
        width: 36px;
        min-width: 36px;
        height: 36px;
        background-color: #fff;
        color: #F64E33;
        margin: 0 5px;
    }

        .social-icon i {
            color: #F64E33;
        }

        .social-icon:hover {
            background-color: #FFC526;
            color: #fff;
        }

    .grid-social.gray .social-icon {
        background-color: #f5f6f7;
        width: 56px;
        min-width: 56px;
        height: 56px;
        font-size: 28px;
    }

        .grid-social.gray .social-icon:hover {
            background-color: #F86332;
            color: #fff;
        }

            .grid-social.gray .social-icon:hover i {
                color: #fff;
            }

    .footer {
        padding: 50px 0;
        background-image: url(../img/bg-footer.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .footer .footer-about {
            max-width: 576px;
        }

            .footer .footer-about p {
                color: #fff;
                font-size: 17px;
                line-height: 20px;
                font-family: "TommyRegular", sans-serif;
                text-align: justify;
            }

            .footer .footer-about a {
                color: #fff;
                font-size: 20px;
                font-family: "TommyBold", sans-serif;
            }

                .footer .footer-about a:hover {
                    color: #F86332;
                }

        .footer .footer-social {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .footer .footer-social span {
                color: #fff;
                font-size: 20px;
                font-family: "TommyRegular", sans-serif;
            }

            .footer .footer-social .grid-social {
                margin-left: 10px;
            }

        .footer .footer-copyright {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

            .footer .footer-copyright p {
                margin-right: 10px;
                text-align: right;
                color: #fff;
                font-size: 14px;
                line-height: 20px;
            }

                .footer .footer-copyright p a {
                    color: #fff;
                }

                    .footer .footer-copyright p a:hover {
                        color: #FFC526;
                        opacity: 0.9;
                    }

            .footer .footer-copyright .info {
                margin-right: 10px;
            }

    @media (max-width: 1919px) {
        .footer .footer-copyright .info .sep {
            display: none;
        }

        .footer .footer-copyright .info .info-copy,
        .footer .footer-copyright .info .info-by {
            display: block;
        }
    }

    @media (max-width: 1199px) {
        .footer .footer-social {
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

        .footer .footer-copyright {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .footer .footer-copyright .info .info-copy,
            .footer .footer-copyright .info .info-by,
            .footer .footer-copyright .info .sep {
                display: inline;
            }

        .footer-copyright {
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
        }

        .footer .footer-copyright p,
        .footer .footer-copyright .info,
        .footer .footer-copyright .footer-menu {
            margin-right: 0;
            text-align: center;
        }

        .footer-copyright img {
            margin-bottom: 10px;
        }
    }

    @media (max-width: 767px) {
        .footer .footer-social {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin: 30px 0;
        }
    }

    @media (max-width: 575px) {
        .footer .footer-copyright .info .info-copy,
        .footer .footer-copyright .info .info-by {
            display: block;
        }

        .footer .footer-copyright .info .sep {
            display: none;
        }

        .footer .footer-about p {
            font-size: 15px;
        }

        .footer .footer-about a {
            font-size: 16px;
        }
    }

    .banner {
        background-color: #f5f6f7;
        color: #3F5263;
        height: 340px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .banner .col {
            text-align: center;
        }

        .banner h1 {
            font-size: 42px;
            text-align: center;
            display: inline-block;
            background: #f54036;
            background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
            background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .banner p {
            font-size: 20px;
            text-align: center;
        }

        .banner.default {
            background-image: url(../img/bg-banner-gray.png);
        }

            .banner.default.small {
                height: 180px;
            }

            .banner.default.medium {
                height: 220px;
            }

        .banner.custom {
            height: auto;
        }

            .banner.custom img {
                min-height: 250px;
                -o-object-fit: cover;
                object-fit: cover;
            }

        .banner .breadcrumb {
            background-color: transparent;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            font-size: 30px;
            font-family: "TommyLight", sans-serif;
            padding: 0;
            margin: 0;
        }

            .banner .breadcrumb .breadcrumb-item {
                color: #3F5263;
                font-family: "TommyLight", sans-serif;
            }

                .banner .breadcrumb .breadcrumb-item a {
                    color: #3F5263;
                    font-family: "TommyLight", sans-serif;
                }

                    .banner .breadcrumb .breadcrumb-item a:hover {
                        color: #F86332;
                    }

        .banner .breadcrumb-item + .breadcrumb-item::before {
            content: "›";
        }

        .banner .subtitle {
            text-align: center;
            font-size: 30px;
            font-family: "TommyRegular", sans-serif;
        }

    @media (min-width: 1280px) {
        .banner .container {
            max-width: 1230px;
        }
    }

    @media (max-width: 575px) {
        .banner {
            height: auto;
            padding: 30px 0;
        }

            .banner.default.small, .banner.default.medium {
                height: auto;
                padding: 30px 0;
            }

            .banner h1 {
                font-size: 30px;
            }

            .banner p,
            .banner .breadcrumb,
            .banner .subtitle {
                font-size: 14px;
            }
    }

    html,
    body,
    p,
    li,
    a,
    span,
    div,
    small,
    input,
    select,
    button,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: "TommyLight", sans-serif;
    }

    html,
    body {
        font-family: "TommyLight", sans-serif;
        font-size: 17px;
        color: #3F5263;
        margin: 0;
        padding: 0;
        height: 100%;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #3F5263;
    }

    a {
        text-decoration: none;
        color: #F64E33;
    }

        a:hover {
            text-decoration: none;
            color: #F86332;
        }

    .link-arrow {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding-right: 30px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-position: right center;
        background-repeat: no-repeat;
        background-size: auto;
    }

        .link-arrow.white {
            color: #fff;
            background-image: url(../img/icons/icon-arrow-right-white.svg);
        }

    .sep {
        margin: 0 5px;
    }

    .title-section {
        font-size: 37px;
        font-family: "TommyLight", sans-serif;
        margin-bottom: 20px;
        text-align: center;
        background: #f54036;
        background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
        background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .responsive-map {
        overflow: hidden;
        position: relative;
        height: 450px;
        max-height: 450px;
    }

        .responsive-map iframe {
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            position: absolute;
            max-height: 450px;
        }

    @media (max-width: 991px) {
        .title-section {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .title-section {
            font-size: 26px;
        }
    }

    @media (max-width: 575px) {
        .title-section {
            font-size: 24px;
        }
    }

    .section-services .container {
        padding: 115px 15px 200px;
        background-image: url(../img/bg-section-servicios-text.png);
        background-position: right top;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .section-services .wrapper-services {
        position: absolute;
        bottom: -70px;
        right: 0;
        padding: 75px 30px 30px;
        background-color: #fff;
        width: 100%;
        max-width: 1260px;
        -webkit-box-shadow: -22px -20px 40px -34px rgba(0, 0, 0, 0.75);
        box-shadow: -22px -20px 40px -34px rgba(0, 0, 0, 0.75);
    }

        .section-services .wrapper-services .list-services {
            padding: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            width: 100%;
        }

            .section-services .wrapper-services .list-services .list-item {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                padding: 0.5em;
                width: 33.33%;
            }

                .section-services .wrapper-services .list-services .list-item .list-content {
                    background-color: #fff;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-orient: vertical;
                    -webkit-box-direction: normal;
                    -ms-flex-direction: column;
                    flex-direction: column;
                    padding: 15px 60px;
                    width: 100%;
                    text-align: center;
                }

                    .section-services .wrapper-services .list-services .list-item .list-content img {
                        margin-bottom: 20px;
                    }

                    .section-services .wrapper-services .list-services .list-item .list-content h2 {
                        margin-bottom: 15px;
                        line-height: 30px;
                        font-size: 23px;
                        font-family: "TommyRegular", sans-serif;
                    }

                    .section-services .wrapper-services .list-services .list-item .list-content p {
                        margin-bottom: 0;
                        line-height: 25px;
                        font-size: 15px;
                        font-family: "TommyRegular", sans-serif;
                    }

                    .section-services .wrapper-services .list-services .list-item .list-content p {
                        -webkit-box-flex: 1;
                        -ms-flex: 1 0 auto;
                        flex: 1 0 auto;
                    }

                .section-services .wrapper-services .list-services .list-item:nth-child(2) {
                    border-left: 1px solid rgba(63, 82, 99, 0.2);
                    border-right: 1px solid rgba(63, 82, 99, 0.2);
                }

    .section-services .box-service-title {
        width: 400px;
        height: 400px;
        background-image: url(../img/bg-card-servicios.png);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        color: #fff;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .section-services .box-service-title .box-body {
            padding: 0;
            max-width: 222px;
        }

            .section-services .box-service-title .box-body small {
                display: block;
                color: #fff;
                margin-bottom: 0;
                line-height: 13px;
                font-size: 13px;
                font-family: "TommyRegular", sans-serif;
            }

            .section-services .box-service-title .box-body h2 {
                color: #fff;
                margin-bottom: 0;
                line-height: 56px;
                font-size: 56px;
                font-family: "TommyLight", sans-serif;
            }

            .section-services .box-service-title .box-body h3 {
                color: #fff;
                margin-bottom: 0;
                line-height: 46px;
                font-size: 46px;
                font-family: "TommyRegular", sans-serif;
            }

    @media (max-width: 1919px) {
        .section-services .wrapper-services {
            padding: 75px 15px 30px;
            max-width: 1126px;
        }

            .section-services .wrapper-services .list-services {
                padding: 0;
            }
    }

    @media (max-width: 1599px) {
        .section-services .box-service-title {
            width: 300px;
            height: 300px;
        }

        .section-services .wrapper-services {
            padding: 25px 0 0px;
            max-width: 945px;
        }

            .section-services .wrapper-services .list-services .list-item .list-content {
                padding: 15px 40px;
            }

        .section-services .wrapper-services {
            bottom: -105px;
        }
    }

    @media (max-width: 1279px) {
        .section-services .wrapper-services .list-services .list-item .list-content {
            padding: 15px 40px;
        }

        .section-services .wrapper-services {
            max-width: 850px;
        }

        .section-services .wrapper-services {
            bottom: -165px;
        }
    }

    @media (max-width: 1199px) {
        .section-services .wrapper-services {
            max-width: 100%;
        }

        .section-services .container {
            padding: 50px 15px;
        }

        .section-services .wrapper-services {
            position: relative;
            bottom: 30px;
            max-width: calc(100% - 60px);
            left: 30px;
        }

        .section-services .box-service-title {
            width: 275px;
            height: 200px;
        }
    }

    @media (max-width: 991px) {
        .section-services .wrapper-services .list-services .list-item {
            width: 50%;
        }

            .section-services .wrapper-services .list-services .list-item:nth-child(2) {
                border-right: none;
            }
    }

    @media (max-width: 767px) {
        .section-services .box-service-title .box-body h3 {
            font-size: 36px;
            line-height: 36px;
        }

        .section-services .box-service-title .box-body h2 {
            font-size: 46px;
            line-height: 46px;
        }

        .section-services .wrapper-services .list-services .list-item {
            width: 100%;
        }

            .section-services .wrapper-services .list-services .list-item:nth-child(2) {
                border-right: none;
                border-left: none;
            }
    }

    @media (max-width: 575px) {
        .section-services .wrapper-services {
            max-width: calc(100% - 30px);
            left: 15px;
        }

            .section-services .wrapper-services .list-services .list-item .list-content {
                padding: 15px 20px;
            }

        .section-services .container {
            background-image: none;
        }
    }

    .section-testimonials {
        padding: 25px 0 75px;
    }

    @media (min-width: 1200px) {
        .section-testimonials .container {
            max-width: 1024px;
        }
    }

    .section-cta {
        position: relative;
    }

        .section-cta img {
            min-height: 250px;
            -o-object-fit: cover;
            object-fit: cover;
        }

        .section-cta .wrapper-content {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

        .section-cta .cta-text {
            color: #fff;
            font-size: 33px;
            font-family: "TommyRegular", sans-serif;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-cta:before {
            content: "";
            position: absolute;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.35);
        }

    @media (max-width: 767px) {
        .section-cta .cta-text {
            font-size: 24px;
        }
    }
    /* -------------------------------- 
Breadcrumb
-------------------------------- */
    .cd-breadcrumb {
        width: 90%;
        max-width: 768px;
        padding: 0.5em 1em;
        margin: 1em auto;
        background-color: #edeff0;
        border-radius: 0.25em;
    }

        .cd-breadcrumb::after {
            clear: both;
            content: "";
            display: table;
        }

        .cd-breadcrumb li {
            display: inline-block;
            float: left;
            margin: 0.5em 0;
        }

            .cd-breadcrumb li::after {
                /* this is the separator between items */
                display: inline-block;
                content: "»";
                margin: 0 0.6em;
                color: #959fa5;
            }

            .cd-breadcrumb li:last-of-type::after {
                /* hide separator after the last item */
                display: none;
            }

            .cd-breadcrumb li > * {
                /* single step */
                display: inline-block;
                font-size: 1.4rem;
                color: #2c3f4c;
            }

            .cd-breadcrumb li.current > * {
                /* selected step */
                color: #96c03d;
            }

    .no-touch .cd-breadcrumb a:hover {
        /* steps already visited */
        color: #96c03d;
    }

    .cd-breadcrumb.custom-separator li::after {
        /* replace the default separator with a custom icon */
        content: "";
        height: 16px;
        width: 16px;
        background: url(../img/icons/cd-custom-separator.svg) no-repeat center center;
        vertical-align: middle;
    }

    @media only screen and (min-width: 768px) {
        .cd-breadcrumb {
            padding: 0 1.2em;
        }

            .cd-breadcrumb li {
                margin: 1.2em 0;
            }

                .cd-breadcrumb li::after {
                    margin: 0 1em;
                }

                .cd-breadcrumb li > * {
                    font-size: 1.6rem;
                }
    }

    .home .section-categories {
        padding: 75px 0 25px;
    }

        .home .section-categories .info {
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .home .section-categories .info .col {
                max-width: 1165px;
            }

            .home .section-categories .info p {
                font-size: 19px;
                font-family: "TommyLight", sans-serif;
                text-align: center;
            }

                .home .section-categories .info p a {
                    font-family: "TommyMedium", sans-serif;
                }

    @media (max-width: 575px) {
        .home .section-categories .info p {
            font-size: 16px;
        }
    }

    .nosotros {
        font-size: 19px;
    }

        .nosotros b {
            font-family: "TommyMedium", sans-serif;
        }
        /*.nosotros h1,*/
        .nosotros h2 {
            font-family: "TommyLight", sans-serif;
            font-size: 50px;
            margin-bottom: 20px;
            margin-top: 40px;
            background: #f54036;
            background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
            background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nosotros h4 {
            color: #3F5263;
            font-family: "TommyLight", sans-serif;
            font-size: 30px;
            text-align: justify;
            margin-bottom: 20px;
        }

        .nosotros p {
            text-align: justify;
            margin-bottom: 20px;
        }

        .nosotros .content-boxed {
            position: relative;
            top: -110px;
        }

            .nosotros .content-boxed .wrapper {
                position: relative;
                background-color: #fff;
                padding: 20px 65px 60px;
                width: calc(100% - 50px);
                left: 50px;
            }

                .nosotros .content-boxed .wrapper .content {
                    position: relative;
                    z-index: 1;
                }

                .nosotros .content-boxed .wrapper:after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    background-color: #fff;
                }

                .nosotros .content-boxed .wrapper:before {
                    content: "";
                    position: absolute;
                    width: 400px;
                    height: 400px;
                    background: #ffc526;
                    background: -o-linear-gradient(257deg, #ffc526 -20%, #f54036 48%);
                    background: linear-gradient(193deg, #ffc526 -20%, #f54036 48%);
                    top: -50px;
                    left: -50px;
                }


    .home {
        font-size: 19px;
    }

        .home b {
            font-family: "TommyMedium", sans-serif;
        }
        /*.home h1,*/
        .home h2.title {
            font-family: "TommyLight", sans-serif;
            font-size: 35px;
            margin-bottom: 10px;
            margin-top: 20px;
            background: #f54036;
            background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
            background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .home h4 {
            color: #3F5263;
            font-family: "TommyLight", sans-serif;
            font-size: 30px;
            text-align: justify;
            margin-bottom: 20px;
        }

        .home p {
            text-align: justify;
            margin-bottom: 20px;
        }

        .home .content-boxed {
            position: relative;
            top: -110px;
        }

            .home .content-boxed .wrapper {
                position: relative;
                background-color: #fff;
                padding: 10px 40px 40px;
                width: calc(100% - 50px);
                left: 40px;
            }

                .home .content-boxed .wrapper .content {
                    position: relative;
                    z-index: 1;
                }

                .home .content-boxed .wrapper:after {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    background-color: #fff;
                }

                .home .content-boxed .wrapper:before {
                    content: "";
                    position: absolute;
                    width: 400px;
                    height: 170px;
                    background: #ffc526;
                    background: -o-linear-gradient(257deg, #ffc526 -20%, #f54036 48%);
                    background: linear-gradient(193deg, #ffc526 -20%, #f54036 48%);
                    top: -50px;
                    left: -50px;
                }


    @media (max-width: 1599px) {
        .nosotros .content-boxed .wrapper {
            width: 100%;
            left: 0;
        }

        .nosotros h1,
        .nosotros h2 {
            font-size: 44px;
        }

        .nosotros h4 {
            font-size: 26px;
        }

        .nosotros p {
            font-size: 18px;
        }
    }

    @media (max-width: 1199px) {
        .nosotros .content-boxed .wrapper:before {
            top: -31px;
            left: -31px;
        }
    }

    @media (max-width: 991px) {
        .nosotros .content-boxed .wrapper:before {
            top: -39px;
            left: -39px;
        }

        .nosotros h4 {
            font-size: 24px;
        }

        .nosotros p {
            font-size: 16px;
        }

        .nosotros h1,
        .nosotros h2 {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .nosotros .content-boxed .wrapper {
            padding: 30px 35px;
        }

        .nosotros h1,
        .nosotros h2 {
            font-size: 30px;
        }

        .nosotros h4 {
            font-size: 20px;
        }
    }

    @media (max-width: 575px) {
        .nosotros .content-boxed .wrapper:before {
            top: -15px;
            left: -15px;
            width: calc(100% + 29px);
        }

        .nosotros .banner {
            padding: 0 !important;
        }
    }

    .servicios {
        font-size: 20px;
    }

        .servicios .section-intro {
            padding: 75px 0 30px;
        }

            .servicios .section-intro a {
                color: #F86332;
                font-family: "TommyRegular", sans-serif;
            }

                .servicios .section-intro a:hover {
                    color: #F64E33;
                }

    .notas-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 60px;
        margin-bottom: 60px;
    }

        .notas-item a {
            color: #3F5263;
            font-family: "TommyRegular", sans-serif;
        }

            .notas-item a:hover {
                color: #F86332;
            }

        .notas-item .item-title {
            width: 350px;
            font-size: 50px;
            line-height: 45px;
            font-family: "TommyLight", sans-serif;
            background: #f54036;
            background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
            background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .notas-item .item-info {
            width: calc(100% - 350px);
            padding: 0 0 30px 60px;
            border-left: 1px solid #DEE4EB;
        }

            .notas-item .item-info p {
                font-size: 19px;
                text-align: justify;
            }

    @media (min-width: 1366px) {
        .section-intro .container {
            max-width: 1330px;
        }
    }

    @media (min-width: 1600px) {
        .section-intro .container {
            max-width: 1330px;
        }
    }

    @media (max-width: 991px) {
        .servicios .notas-item {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .servicios .notas-item .item-title {
                text-align: center;
                margin-bottom: 15px;
                width: 100%;
            }

            .servicios .notas-item .item-info {
                width: 100%;
                padding: 0;
                border-left: none;
            }
    }

    @media (max-width: 575px) {
        .servicios,
        .servicios .notas-item .item-info p {
            font-size: 16px;
        }

            .servicios .notas-item .item-title {
                font-size: 30px;
            }

            .servicios .section-intro {
                padding: 30px 0 30px;
            }

            .servicios .notas-item {
                margin-bottom: 30px;
            }
    }

    .como-funciona .section-intro {
        padding: 50px 0 0;
        font-size: 19px;
    }

    .como-funciona .section-pasos h2 {
        color: #3F5263;
        font-size: 38px;
        font-family: "TommyLight", sans-serif;
        text-align: center;
        margin: 15px auto 60px;
    }

    .grid-pasos {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
    }

        .grid-pasos .item-paso {
            width: 25%;
            padding: 0 44px;
            margin-bottom: 60px;
            border-right: 1px solid rgba(63, 82, 99, 0.1) !important;
        }

            .grid-pasos .item-paso:nth-child(4n), .grid-pasos .item-paso:last-child {
                border: none !important;
            }

            .grid-pasos .item-paso img {
                display: block;
                margin: 0 auto 20px;
            }

            .grid-pasos .item-paso h4 {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-size: 23px;
                font-family: "TommyMedium", sans-serif;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
            }

                .grid-pasos .item-paso h4 .item-number {
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    width: 30px;
                    min-width: 30px;
                    height: 30px;
                    border: 2px solid #F86332;
                    border-radius: 100%;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    color: #F64E33;
                    font-size: 18px;
                    margin-right: 10px;
                }

            .grid-pasos .item-paso p {
                font-size: 16px;
                font-family: "TommyLight", sans-serif;
                text-align: center;
            }

    @media (min-width: 1366px) {
        .como-funciona .banner .container {
            max-width: 1300px;
        }

        .como-funciona .section-intro .container {
            max-width: 1300px;
        }
    }

    @media (max-width: 1199px) {
        .grid-pasos .item-paso {
            width: 33.33%;
            padding: 0 34px;
        }

            .grid-pasos .item-paso:nth-child(4n) {
                border-right: 1px solid rgba(63, 82, 99, 0.1) !important;
            }

            .grid-pasos .item-paso:nth-child(3n), .grid-pasos .item-paso:last-child {
                border: none !important;
            }
    }

    @media (max-width: 991px) {
        .grid-pasos .item-paso {
            width: 50%;
        }

            .grid-pasos .item-paso:nth-child(odd) {
                border-right: 1px solid rgba(63, 82, 99, 0.1) !important;
            }

            .grid-pasos .item-paso:nth-child(even), .grid-pasos .item-paso:last-child {
                border: none !important;
            }

        .como-funciona .section-pasos h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 575px) {
        .como-funciona .section-intro {
            font-size: 16px;
        }

        .como-funciona .section-pasos h2 {
            font-size: 24px;
        }

        .grid-pasos .item-paso {
            width: 100%;
        }

            .grid-pasos .item-paso:nth-child(odd) {
                border: none !important;
            }
    }

    .precios .section-precios {
        padding: 25px 0 100px;
    }

    .tab-precios {
        margin-top: 50px;
    }

        .tab-precios .tab-header {
            padding: 0 0 0 0;
            background-color: #f5f6f7;
            border-radius: 50px;
            position: relative;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 78px;
            width: 100%;
        }

            .tab-precios .tab-header .tab-icon {
                position: relative;
                top: 0;
                left: 0;
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                width: 113px;
                height: 113px;
                min-width: 113px;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                background-color: #fff;
                border: 3px solid #F86332;
                border-radius: 100%;
                margin-right: 20px;
            }

            .tab-precios .tab-header h2 {
                margin: 0;
                font-size: 38px;
                font-family: "TommyLight", sans-serif;
            }

        .tab-precios .tab-content {
            padding: 25px 15px;
        }

            .tab-precios .tab-content .tab-item {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                min-height: 116px;
                padding: 10px 0;
                border-bottom: 1px solid #D3D7DB;
            }

                .tab-precios .tab-content .tab-item:last-child {
                    border-bottom: none;
                }

                .tab-precios .tab-content .tab-item .tab-item-info {
                    font-size: 20px;
                    font-family: "TommyLight", sans-serif;
                    padding-right: 30px;
                    width: calc(100% - 200px);
                }

                .tab-precios .tab-content .tab-item .tab-item-price {
                    min-width: 170px;
                    max-width: 200px;
                    height: 43px;
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    border-radius: 30px;
                    background: #f54036;
                    background: -o-linear-gradient(301deg, #f54036 -20%, #fb932c 100%);
                    background: linear-gradient(149deg, #f54036 -20%, #fb932c 100%);
                    color: #fff;
                    font-family: "TommyRegular", sans-serif;
                    font-size: 20px;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                }

    @media (min-width: 1600px) {
        .precios .section-precios .container {
            max-width: 1430px;
        }
    }

    @media (max-width: 767px) {
        .tab-precios .tab-header {
            height: 54px;
        }

            .tab-precios .tab-header .tab-icon {
                width: 72px;
                height: 72px;
                min-width: 72px;
            }

                .tab-precios .tab-header .tab-icon img {
                    height: 16px;
                    width: auto;
                }

            .tab-precios .tab-header h2 {
                font-size: 24px;
            }

        .tab-precios .tab-content .tab-item {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .tab-precios .tab-content .tab-item .tab-item-info {
                font-size: 16px;
                padding-right: 0;
                width: 100%;
            }

            .tab-precios .tab-content .tab-item .tab-item-price {
                min-width: 150px;
                max-width: 150px;
                height: 32px;
                font-size: 16px;
            }
    }

    .contactos .section-content {
        padding: 75px 0;
    }

        .contactos .section-content .grid-contact {
            width: 100%;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            max-width: 1200px;
            margin: auto;
        }

            .contactos .section-content .grid-contact .contact-item {
                text-align: center;
            }

                .contactos .section-content .grid-contact .contact-item:nth-child(1), .contactos .section-content .grid-contact .contact-item:nth-child(3) {
                    width: calc((100% - 500px) / 2);
                }

                .contactos .section-content .grid-contact .contact-item:nth-child(2) {
                    width: 500px;
                    border-left: 1px solid rgba(63, 82, 99, 0.1);
                    border-right: 1px solid rgba(63, 82, 99, 0.1);
                }

                .contactos .section-content .grid-contact .contact-item:nth-child(3) {
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                }

                .contactos .section-content .grid-contact .contact-item .contact-icon {
                    margin-bottom: 10px;
                }

                .contactos .section-content .grid-contact .contact-item .contact-info {
                    font-size: 17px;
                    text-align: center;
                }

                    .contactos .section-content .grid-contact .contact-item .contact-info a {
                        color: #3F5263;
                    }

                        .contactos .section-content .grid-contact .contact-item .contact-info a:hover {
                            color: #F86332;
                        }

    .contactos .section-form {
        padding: 0 0 75px;
    }

        .contactos .section-form h3 {
            text-align: center;
            font-size: 23px;
            font-family: "TommyRegular", sans-serif;
            color: #3F5263;
        }

        .contactos .section-form form .btn[type=submit] {
            width: 240px;
            margin: auto;
        }

        .contactos .section-form form .form-control {
            margin-bottom: 15px;
        }

    .contact-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #f5f6f7;
        border-radius: 100%;
    }

    @media (min-width: 992px) {
        .section-form .container {
            max-width: 740px;
        }
    }

    @media (max-width: 991px) {
        .contactos .section-content .grid-contact {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .contactos .section-content .grid-contact .contact-item:nth-child(1),
            .contactos .section-content .grid-contact .contact-item:nth-child(2),
            .contactos .section-content .grid-contact .contact-item:nth-child(3) {
                width: 100%;
                border: none;
                margin-bottom: 30px;
            }
    }

    .auth .section-content {
        padding: 75px 0;
    }

    .auth .custom-control-label a {
        color: #3F5263;
        text-decoration: underline;
    }

        .auth .custom-control-label a:hover {
            color: #F86332;
        }

    @media (min-width: 576px) {
        .auth .section-content .container {
            max-width: 470px;
        }
    }

    .categorias .section-content {
        padding: 100px 0;
    }

    .categorias .section-products-list {
        padding: 25px 0 100px;
    }

    .products-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 40px 0;
        border-bottom: 1px solid #D3D7DB;
    }

        .products-item:last-child {
            border-bottom: none;
        }

        .products-item .item-icon {
            width: 80px;
            height: 80px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
        }

            .products-item .item-icon img {
                width: 60px;
                -o-object-fit: contain;
                object-fit: contain;
            }

        .products-item .item-info {
            width: calc(100% - 100px - 250px);
            max-width: 900px;
        }

            .products-item .item-info .item-title {
                font-size: 20px;
                font-family: "TommyRegular", sans-serif;
                margin: 0;
            }

            .products-item .item-info .item-text {
                font-size: 19px;
                font-family: "TommyLight", sans-serif;
                margin: 0;
            }

        .products-item .item-options {
            width: 230px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            margin-left: auto;
        }

            .products-item .item-options .btn {
                width: 170px;
                height: 43px;
                padding: 0;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                font-size: 18px;
            }

    @media (min-width: 1600px) {
        .categorias .section-products-list .container {
            max-width: 1400px;
        }
    }

    @media (max-width: 767px) {
        .products-item {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

            .products-item .item-info {
                width: calc(100% - 80px);
                margin-bottom: 15px;
            }

            .products-item .item-options {
                width: 100%;
            }
    }

    @media (max-width: 575px) {
        .products-item .item-info .item-title {
            font-size: 16px;
        }

        .products-item .item-info .item-text {
            font-size: 15px;
        }
    }

    .producto .section-content {
        padding: 75px 0 125px;
    }

    .producto .container-producto {
        background-color: #f5f6f7;
        min-height: 600px;
        position: relative;
    }

        .producto .container-producto .producto-header {
            padding: 15px;
            border-bottom: 1px solid #DDDFE1;
        }

            .producto .container-producto .producto-header .btn-document {
                color: #F54036;
                font-size: 16px;
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                margin-top: 10px;
            }

                .producto .container-producto .producto-header .btn-document img {
                    margin-right: 10px;
                }

                .producto .container-producto .producto-header .btn-document:hover {
                    color: #F86332;
                    text-decoration: none;
                }

            .producto .container-producto .producto-header .progress {
                height: 40px;
                border-radius: 0;
                background-color: #CED3D9;
            }

                .producto .container-producto .producto-header .progress .progress-bar {
                    background-color: #3F5263;
                }

        .producto .container-producto .producto-detail {
            padding: 15px 15px 150px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
        }

            .producto .container-producto .producto-detail .detail-left {
                width: 375px;
            }

                .producto .container-producto .producto-detail .detail-left .list-group {
                    max-width: 326px;
                    border-radius: 0;
                    border: none;
                }

                    .producto .container-producto .producto-detail .detail-left .list-group .list-group-item {
                        border: none;
                    }

                        .producto .container-producto .producto-detail .detail-left .list-group .list-group-item .list-title {
                            font-size: 19px;
                            line-height: 19px;
                            font-family: "TommyMedium", sans-serif;
                            margin: 5px 0;
                        }

                        .producto .container-producto .producto-detail .detail-left .list-group .list-group-item .list-info {
                            font-size: 14px;
                            line-height: 18px;
                            font-family: "TommyRegular", sans-serif;
                            margin: 5px 0;
                        }

                        .producto .container-producto .producto-detail .detail-left .list-group .list-group-item.active {
                            background: -o-linear-gradient(25deg, #ffc526 -20%, #f54036 48%);
                            background: linear-gradient(65deg, #ffc526 -20%, #f54036 48%);
                            color: #FFF;
                            padding-top: 25px;
                            padding-bottom: 25px;
                        }

                            .producto .container-producto .producto-detail .detail-left .list-group .list-group-item.active .list-title {
                                color: #FFF;
                            }

                        .producto .container-producto .producto-detail .detail-left .list-group .list-group-item.checked {
                            padding-left: 30px;
                            background-image: url(../img/icons/icon-check.svg);
                            background-position: 10px center;
                            background-repeat: no-repeat;
                            background-size: 15px 12px;
                        }

            .producto .container-producto .producto-detail .detail-main {
                width: calc(100% - 375px);
            }

        .producto .container-producto .producto-footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            padding: 0 15px;
        }

            .producto .container-producto .producto-footer .btn {
                margin: 0 10px;
                font-size: 12px;
                font-family: "TommyBold", sans-serif;
                letter-spacing: 1px;
            }

                .producto .container-producto .producto-footer .btn span {
                    font-size: 13px;
                    font-family: "TommyBold", sans-serif;
                }

        .producto .container-producto label {
            font-family: "TommyMedium", sans-serif;
        }

    @media (min-width: 1366px) {
        .producto .section-content .container {
            max-width: 1310px;
        }
    }

    @media (max-width: 991px) {
        .producto .container-producto .producto-detail {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            padding: 15px 15px 150px;
        }

            .producto .container-producto .producto-detail .detail-left {
                width: 100%;
            }

                .producto .container-producto .producto-detail .detail-left .list-group {
                    max-width: 100%;
                    background-color: #fff;
                }

            .producto .container-producto .producto-detail .detail-main {
                width: 100%;
                padding-top: 30px;
            }
    }

    @media (max-width: 575px) {
        .producto .container-producto .producto-footer {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .producto .container-producto .producto-footer .btn {
                margin-top: 10px;
                width: 100%;
            }
    }

    @media (min-width: 1280px) {
        .container {
            max-width: 1230px;
        }
    }

    @media (min-width: 1600px) {
        .container {
            max-width: 1470px;
        }
    }

    @media (min-width: 1920px) {
        .container {
            max-width: 1630px;
        }

