@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

.relative {
    position: relative;
}

body {
    font-family: "Roboto", sans-serif !important;
}

.text-bg {
    font-family: Roboto;
    font-size: 60px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
}

.text-bg span {
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .text-bg {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .text-bg {
        font-size: 30px;
        line-height: 1.35;
    }
}

.btn {
    padding: 0 10px;
    min-width: 129px;
    line-height: 37px;
    border: solid 1px white;
    border-radius: 45px !important;
    color: white;
    text-align: center;
}

.btn.btn-primary {
    background-color: #6eab27;
    border-color: #6eab27;
}

.btn.btn-primary:hover {
    background-color: white;
    color: #6eab27;
}

@media (max-width: 991px) {
    .btn {
        display: table;
        margin: auto;
        font-size: 13px;
    }
}

.card {
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
}

.card h5 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
}

@media (max-width: 991px) {
    .card h5 {
        text-align: center;
        font-size: 22px;
    }
}

.card p {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a;
}

@media (max-width: 991px) {
    .card p {
        text-align: center;
        font-size: 12px;
    }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
nav {
    padding: 20px 10px !important;
    transition: all 400ms ease-in-out;
    font-size: 14px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

nav .navbar-toggler {
    color: white;
    transition: all 400ms ease-in-out;
}

@media (max-width: 991px) {
    nav .navbar-brand {
        margin-left: auto;
    }
}

nav .navbar-brand {
    position: relative;
    height: 50px;
    width: 240px;
    display: flex;
    align-items: center;
}

nav .navbar-brand .logo,
nav .navbar-brand .logo-dark {
    height: 100%;
    width: auto;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 400ms ease-in-out;
}

nav .navbar-brand .logo {
    opacity: 1;
    z-index: 2;
}

nav .navbar-brand .logo-dark {
    opacity: 0;
    z-index: 1;
}

nav .navbar-nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
    /* <--- ESPACIO ENTRE BOTONES */
}

@media (max-width: 1200px) and (min-width: 768px) {
    nav .navbar-nav {
        flex-direction: row;
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
}

@media (max-width: 768px) {
    nav .navbar-nav .nav-item {
        margin-bottom: 50px;
    }
}

nav .navbar-nav .nav-item .nav-link {
    transition: all 0.3s ease-in-out;
    padding: 0 7px;
    min-width: 125px;
    line-height: 29px;
    border: solid 1px white;
    border-radius: 45px;
    color: white;
    text-align: center;
}

nav .navbar-nav .nav-item .nav-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    background-color: white;
    color: #6eab27;
}

@media (max-width: 991px) {
    nav .navbar-nav .nav-item .nav-link {
        max-width: 140px;
        margin: auto;
    }
}

nav .navbar-nav .nav-item .active .nav-link {
    background-color: white;
    color: #6eab27;
}

@media (max-width: 991px) {
    nav .navbar-nav {
        width: 100%;
        margin-top: 65px;
    }
}

nav .socialmedia {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav .socialmedia_icons {
    display: flex;
    align-items: center;
}

nav .socialmedia_icons li {
    margin-left: 1rem;
}

nav .socialmedia_numbers {
    display: grid;
    grid-template-columns: 1fr;
    color: #fff;
    margin-left: 1.5rem;
}

nav .socialmedia_numbers i {
    margin-right: .5rem;
}

nav .socialmedia li {
    color: #ffffff;
    line-height: 20px;
    font-size: 15px;
    float: left;
}

nav .socialmedia li a {
    transition: all 250ms ease-in-out;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 991px) {
    nav .socialmedia {
        display: none;
    }
}

/* Navigation Scroll State */
nav.scroll {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 10px 10px !important;
    background: #fff;
    min-height: 70px;
}

nav.scroll .logo {
    opacity: 0;
}

nav.scroll .logo-dark {
    opacity: 1;
}

nav.scroll .navbar-toggler {
    color: black;
}

nav.scroll .nav-item .nav-link {
    transition: all 0.3s ease-in-out;
    padding: 0 7px;
    min-width: 125px;
    line-height: 29px;
    border: solid 1px #525251;
    border-radius: 45px;
    color: #525251;
    text-align: center;
}

nav.scroll .nav-item .nav-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #6eab27;
    color: #fff;
    border-color: #6eab27;
}

nav.scroll .active .nav-link {
    background-color: #525251;
    color: #fff;
}

nav.scroll .socialmedia {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav.scroll .socialmedia li {
    color: #525251;
    line-height: 20px;
    font-size: 15px;
    float: left;
}

nav.scroll .socialmedia li a {
    transition: all 250ms ease-in-out;
    color: #525251;
    font-size: 20px;
}

nav.scroll .socialmedia .socialmedia_numbers {
    color: #525251;
}

@media (max-width: 991px) {
    nav.scroll .socialmedia {
        display: none;
    }
}

@media (max-width: 991px) {
    nav.scroll {
        background: rgba(255, 255, 255, 0.95);
    }
}

#page-products {
    padding-top: 250px;
    padding-bottom: 200px;
    background: url("../../images/site/products-bg-compressor.jpg") no-repeat;
    background-position: bottom center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 600px;
}

#page-products h1 {
    padding-top: 4rem;
}

@media (max-width: 500px) {
    #page-products h1 {
        padding-top: 2rem;
    }
}

@media (min-width: 1500px) {
    #page-products {
        background-size: cover;
    }
}

.schedule-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-bottom: 70px;
}

.schedule-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #6eab27;
}

.schedule-card i {
    font-size: 32px;
    color: #6eab27;
    margin-bottom: 15px;
    display: block;
}

.schedule-card h4 {
    font-weight: 700;
    color: #525251;
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-card .time {
    color: #777;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.parking-banner {
    background: #6eab27;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(110, 171, 39, 0.3);
    transition: all 0.3s ease;
}

.parking-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(110, 171, 39, 0.45);
}

.parking-banner i {
    font-size: 24px;
    margin-right: 15px;
}

.parking-banner span {
    font-size: 18px;
    font-weight: 300;
}

.parking-banner strong {
    font-weight: 700;
}

@media (max-width: 800px) {
    #page-products {
        padding-top: 180px;
        padding-bottom: 150px;
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;
        min-height: 500px;
    }
}

#page-products .background-mobile-wrap {
    background-attachment: scroll
}

@media (hover: none) {
    #page-products .background-mobile-wrap {
        background-attachment: initial
    }
}

#page-products .container {
    z-index: 1
}

#page-products .card-image {
    min-height: 240px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

#page-products #productos {
    padding: 50px 0
}

#page-products #productos .card {
    margin-bottom: 30px
}

#page-products .faqs {
    background-color: #fbfbfb;
    padding: 60px 0
}

#page-products .faqs h4 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    margin-bottom: 30px
}

#page-products .faqs .faq {
    margin-bottom: 20px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-products .faqs .faq h5 {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-categories {
    padding-top: 200px
}

#page-categories h1 {
    margin-bottom: 2rem
}

#page-categories p {
    padding-right: 0;
    margin-bottom: 2rem
}

#page-categories .faqs {
    background-color: #fbfbfb;
    padding: 60px 0
}

#page-categories .faqs h4 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    margin-bottom: 30px
}

#page-categories .faqs .faq {
    margin-bottom: 20px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-categories .faqs .faq h5 {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

@media (max-width: 999px) {
    #page-categories {
        padding: 120px 0 0 0
    }
}

@media (max-width: 768px) {
    #page-categories {
        padding-top: 120px
    }
}

#page-categories .back {
    background: #fff
}

#page-categories .filters {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 80px
}

@media (max-width: 768px) {
    #page-categories .filters {
        padding: 0
    }
}

#page-categories .filters .title {
    padding: 15px 0;
    border-bottom: 1px solid #fff;
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff
}

#page-categories .filters .filters-box {
    margin-top: 30px
}

#page-categories .filters .filters-item {
    margin-top: 30px;
    color: #fff
}

#page-categories .filters .filters-item div {
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    margin-bottom: 55px
}

#page-categories .filters .filters-item .filter {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff
}

#page-categories .filters .filters-item .filter:hover {
    text-decoration: none
}

#page-categories .filters .filters-item .filter.active {
    font-weight: 500
}

#page-categories .filters .box {
    margin-bottom: 30px;
    cursor: pointer
}

#page-categories .filters .box img {
    width: 100%
}

#page-categories .filters .box .name {
    background-color: #fff;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #525251;
    padding: 8px
}

#page-categories .container {
    z-index: 1
}

#page-categories .container.main {
    margin-bottom: 40px
}

#page-categories .image-cat {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 300px
}

#page-categories .categories-container {
    background: url("../../images/site/categorias-bg-2.jpg");
    background-position-x: center;
    background-repeat: no-repeat;
    background-position-y: 153px;
    background-size: cover
}

#page-categories .category {
    margin: 0
}

#page-categories .content {
    height: 300px;
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: center;
    background-color: #fff;
    flex-direction: row
}

@media (max-width: 768px) {
    #page-categories .content {
        height: auto
    }
}

@media (max-width: 991px) {
    #page-categories .content {
        flex-direction: column
    }
}

#page-categories .content .desc {
    flex: 1 1 70%
}

#page-categories .content .desc h3 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27
}

#page-categories .content .desc p {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-categories .content .cta {
    padding: 15px;
    flex: 1 1 30%
}

#page-categories .content .cta a {
    padding: 8px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    border-radius: 45px;
    background-color: #6eab27;
    display: block
}

#page-categories .content .cta a:hover {
    text-decoration: none
}

#page-categories .back {
    padding: 15px;
    display: none;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: center;
    background-color: #fff;
    flex-direction: row
}

#page-categories .back .specs p {
    margin-bottom: 0
}

@media (max-width: 991px) {
    #page-categories .back {
        flex-direction: column
    }
}

#page-categories .back .desc {
    height: 270px;
    overflow-y: auto;
    flex: 1 1 80%
}

#page-categories .back .desc::-webkit-scrollbar {
    width: 10px
}

#page-categories .back .desc::-webkit-scrollbar-track {
    background: #f1f1f1
}

#page-categories .back .desc::-webkit-scrollbar-thumb {
    background: #888
}

#page-categories .back .desc::-webkit-scrollbar-thumb:hover {
    background: #555
}

#page-categories .back .desc h3 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27
}

#page-categories .back .desc p {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-categories .back .cta {
    padding: 15px;
    flex: 1 1 20%
}

#page-categories .back .cta a {
    text-transform: uppercase;
    padding: 8px;
    color: #fff;
    text-align: center;
    border-radius: 45px;
    background-color: #6eab27;
    display: block
}

#page-categories .back .cta a:hover {
    text-decoration: none
}

#page-categories p {
    padding-right: 0;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: #4a4a4a
}

@media (max-width: 999px) {
    #page-categories p {
        padding-right: 5px
    }
}

@media (max-width: 768px) {
    #page-categories p {
        padding-right: 15px;
        font-size: 18px
    }
}

#page-categories h4 {
    margin: 2rem 0 1rem 0
}

#page-categories .image {
    background: url("../../images/site/categorias-bg.jpg") no-repeat;
    background-size: 100% 100% !important;
    min-height: 530px;
    box-shadow: 1px 1px 10px #ccc
}

@media (min-width: 767px) and (max-width: 1200px) {
    #page-categories .image {
        box-shadow: none;
        margin-bottom: 20px
    }
}

@media (man-width: 767px) {
    #page-categories .image {
        background-size: initial !important
    }
}

#page-categories .product-row {
    box-shadow: 1px 1px 8px #000;
    margin-bottom: 40px
}

#page-company {
    display: block;
    padding-top: 180px;
    background: url("../../images/site/company-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 1000px;
    width: 100%
}

@media (max-width: 768px) {
    #page-company {
        background-position: center center;
        background-size: cover;
        height: 600px
    }
}

#page-company .container {
    z-index: 1
}

#page-company #productos {
    padding: 50px 0
}

#page-company #productos .card {
    margin-bottom: 30px
}

#page-company .cards-container {
    margin: 60px 0 100px 0
}

@media (max-width: 768px) {
    #page-company .cards-container .card {
        margin-bottom: 30px
    }
}

@media (max-width: 800px) {
    #page-company .cards-container {
        margin-bottom: 0
    }
}

#page-company .cards-container .card-body {
    min-height: 247px
}

#page-company .box-company .image {
    background: url("../../images/site/company-bg-small.jpg") no-repeat;
    background-position: center center;
    background-size: 100%
}

@media (max-width: 1200px) {
    #page-company .box-company .image {
        display: none
    }
}

#page-company .box-company .info {
    padding: 50px 25px;
    background-color: #fff;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #4a4a4a
}

#page-company .box-company .info h4 {
    color: #6eab27;
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal
}

@media (max-width: 1200px) {
    #page-company .box-company .info {
        max-width: 100%
    }
}

#page-contact {
    display: block;
    padding-top: 180px;
    background: url("../../images/site/contacto-bg-compressor.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    height: 600px;
    width: 100%
}

@media (max-width: 768px) {
    #page-contact {
        background-position: center center;
        background-size: cover;
        height: 600px
    }
}

#page-contact #map {
    height: 400px;
    width: 100%;
    box-shadow: 1px 1px 12px #ccc
}

#page-contact .container {
    z-index: 1
}

@media (max-width: 1200px) {
    #page-contact .box-contacto {
        margin-bottom: 80px
    }
}

@media (max-width: 768px) {
    #page-contact .box-contacto {
        margin-bottom: 0px;
        text-align: center
    }
}

@media (max-width: 768px) {
    #page-contact .contact-img {
        padding: 0
    }
}

#page-contact .extra {
    padding: 0px 0 80px 0
}

@media (max-width: 900px) {
    #page-contact .extra {
        padding-bottom: 0px
    }
}

#page-contact .extra.nop {
    padding-bottom: 80px
}

@media (max-width: 1200px) {
    #page-contact .extra.nop {
        padding-bottom: 0
    }
}

#page-contact .extra p {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: #4a4a4a;
    display: block;
    min-height: 170px
}

@media (max-width: 1200px) {
    #page-contact .extra p {
        font-size: 22px
    }
}

#page-contact .extra .social-text {
    font-family: Roboto;
    font-size: 13px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.85;
    letter-spacing: normal;
    color: #6eab27
}

@media (max-width: 1200px) {
    #page-contact .extra .social-text {
        margin-bottom: 10px;
        text-align: center
    }
}

#page-contact .extra h3 {
    font-family: Roboto;
    font-size: 60px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27
}

@media (max-width: 800px) {
    #page-contact .extra h3 {
        margin-top: 4rem
    }
}

@media (max-width: 1200px) {
    #page-contact .extra h3 {
        font-size: 30px
    }
}

#page-contact .extra h3 span {
    font-weight: 300
}

#page-contact .info {
    padding: 50px 0
}

@media (max-width: 768px) {
    #page-contact .info {
        text-align: center;
        padding: 50px 0 20px 0
    }
}

#page-contact .info h2 {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.16;
    letter-spacing: normal;
    color: #6eab27
}

#page-contact .info p {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.16;
    letter-spacing: normal;
    color: #4a4a4a
}

@media (max-width: 768px) {
    #page-contact .info p {
        font-size: 15px
    }
}

header {
    background: url("../../images/site/bg-slide-c-compressor.jpg") center no-repeat;
    background-size: cover;
    height: calc(100vh - 130px);
    margin-bottom: 130px;
    min-height: 500px;
    max-height: 700px
}

@media (max-width: 991px) {
    header {
        margin-bottom: 180px
    }
}

@media (max-width: 400px) {
    header {
        background: url("../../images/site/group-11-compressor.png") center no-repeat
    }
}

header .box-intro {
    width: 100%;
    height: calc(100vh - 130px) !important;
    background: url("../../images/site/pic-intro-compressor.jpg") center no-repeat;
    background-size: cover;
    padding: 35px 50px;
    transform: translateY(130px);
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.25);
    min-height: 500px;
    max-height: 700px
}

@media (max-width: 400px) {
    header .box-intro {
        background: url("../../images/site/pic-intro-sm-compressor.png") center no-repeat
    }
}

header .box-intro .cta {
    background-color: rgba(110, 171, 39, 0.85);
    border: 0
}

header .box-intro .has-search {
    position: absolute;
    right: 50px;
    display: none
}

header .box-intro .has-search .form-control {
    width: 450px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: solid 1px white;
    color: white;
    padding-right: 2.375rem;
    position: relative;
    display: block;
    max-width: 100%
}

@media (max-width: 800px) {
    header .box-intro .has-search .form-control {
        width: 100%
    }
}

header .box-intro .has-search .form-control-feedback {
    position: absolute;
    right: 0;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #fff
}

@media (max-width: 991px) {
    header .box-intro .has-search {
        right: 15px;
        width: calc(100% - 30px)
    }
}

header .box-intro .align-self-center {
    padding-top: 66px
}

header .box-intro .align-self-center h1 {
    font-family: Roboto;
    font-size: 60px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff
}

header .box-intro .align-self-center h1 span {
    background: rgba(0, 0, 0, 0.4)
}

@media (max-width: 991px) {
    header .box-intro .align-self-center h1 {
        font-size: 30px
    }
}

header .box-intro .align-self-center .btn {
    padding: 0 30px;
    font-size: 25px;
    line-height: 66px
}

@media (max-width: 991px) {
    header .box-intro .align-self-center .btn {
        font-size: 18px;
        line-height: 66px;
        margin: auto;
        display: block;
        max-width: 190px
    }
}

@media (max-width: 991px) {
    header .box-intro {
        padding: 15px 15px
    }
}

.apertura_container {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.25);
    margin-bottom: 70px;
    width: 100%;
    padding: 40px 25px
}

.apertura_container h3 {
    font-family: 'Roboto';
    font-size: 25px;
    color: #6eab27;
    font-weight: 500
}

.apertura_container p {
    font-family: 'Roboto';
    font-size: 15px;
    margin-bottom: 0px
}

.apertura_container .estacionamiento {
    display: flex;
    align-items: flex-end
}

.apertura_container .estacionamiento_icon {
    width: 25px;
    height: 25px;
    margin-right: .5rem;
    background-size: contain
}

#section-productos {
    padding-bottom: 130px;
    position: relative
}

#section-productos .left-bg {
    position: absolute;
    left: 0;
    top: -182px;
    background: url("../../images/site/bg.svg") no-repeat;
    background-size: cover;
    width: 121px;
    height: 531px
}

@media (max-width: 1520px) {
    #section-productos .left-bg {
        width: 50px;
        height: 222px
    }
}

@media (max-width: 1440px) {
    #section-productos .left-bg {
        display: none
    }
}

#section-productos .right-bg {
    position: absolute;
    right: 0;
    top: 127px;
    background: url("../../images/site/bg.svg") no-repeat;
    background-size: cover;
    width: 121px;
    height: 531px;
    transform: rotate(-180deg)
}

@media (max-width: 1520px) {
    #section-productos .right-bg {
        width: 50px;
        height: 222px
    }
}

@media (max-width: 1440px) {
    #section-productos .right-bg {
        display: none
    }
}

#section-productos .title-section {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    margin-bottom: 40px
}

@media (min-width: 991px) {
    #section-productos .title-section {
        position: absolute;
        left: 90px;
        top: 50%;
        transform: translate(-100%, -50%) rotate(-90deg)
    }
}

#section-productos .pic-pisos {
    background-size: cover !important
}

@media (max-width: 991px) {
    #section-productos {
        padding-bottom: 20px
    }
}

#section-nuestra-empresa {
    padding-bottom: 130px
}

#section-nuestra-empresa .title-section {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    margin-bottom: 40px
}

@media (min-width: 991px) {
    #section-nuestra-empresa .title-section {
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translate(-100%, -50%) rotate(-90deg)
    }
}

#section-nuestra-empresa .pic-nuestra-empresa {
    background: url("../../images/site/pic-nuestra-empresa-compressor.jpg") center no-repeat;
    background-size: 80%
}

@media (max-width: 991px) {
    #section-nuestra-empresa {
        padding-bottom: 10px
    }
}

#modalVideo.modal-dialog {
    max-width: 700px;
    top: 20%
}

.horarios-fiestas-modal {
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center
}

.horarios-fiestas-modal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    border: none
}

.horarios-fiestas-modal .modal-header .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    z-index: 20
}

.horarios-fiestas-modal .modal-dialog {
    max-width: 578px;
    z-index: 15
}

.horarios-fiestas-modal .modal-dialog .modal-body {
    padding: 78px 33px 78px 33px
}

.horarios-fiestas-modal h4 {
    color: #6eab27;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    line-height: 25px
}

.horarios-fiestas-modal h4 span {
    color: #4a4a4a
}

@media screen and (max-width: 480px) {
    .horarios-fiestas-modal h4 {
        font-size: 18px
    }
}

.horarios-fiestas-modal .dates {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0
}

.horarios-fiestas-modal .dates .date {
    min-height: 70px;
    padding: 15px;
    width: 261px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #4a4a4a;
    line-height: 23px;
    font-weight: bold;
    border: 1px solid #6eab27;
    border-radius: 5px;
    margin-bottom: 20px;
    cursor: pointer
}

@media screen and (max-width: 480px) {
    .horarios-fiestas-modal .dates .date {
        font-size: 16px;
        width: 200px
    }
}

.horarios-fiestas-modal img {
    max-width: 268px
}

.mob {
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
    margin-top: 40px;
    display: none
}

@media (max-width: 991px) {
    .mob {
        display: block
    }
}

#section-video {
    background-color: #6eab27;
    margin: 4% 0 4% 0
}

#section-video .title-section {
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: white;
    white-space: nowrap;
    text-align: center;
    margin: 0;
    margin-bottom: 40px;
    display: none
}

@media (min-width: 991px) {
    #section-video .title-section {
        position: absolute;
        left: 39px;
        z-index: 2;
        top: 50%;
        display: block;
        transform: translate(-100%, -50%) rotate(-90deg)
    }
}

#section-video .content-box {
    position: absolute;
    width: 50vw;
    height: 100%;
    background: url("../../images/site/pic-video.jpg") center;
    background-size: cover;
    right: 0
}

#section-video h3 {
    font-size: 60px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #6eab27
}

#section-video h3 span {
    background: white
}

@media (max-width: 991px) {
    #section-video h3 {
        text-align: center;
        font-size: 30px
    }
}

#section-video p {
    font-size: 25px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #ffffff
}

@media (max-width: 991px) {
    #section-video p {
        text-align: center;
        font-size: 22px
    }
}

#section-video .btn-video {
    font-size: 25px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #ffffff;
    text-decoration: none;
    line-height: 97px
}

#section-video .btn-video svg {
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    margin-left: 30px
}

@media (max-width: 991px) {
    #section-video .btn-video svg {
        width: 53px
    }
}

#section-video .btn-video:hover svg {
    transform: translateX(10px)
}

@media (max-width: 991px) {
    #section-video .btn-video {
        margin: auto;
        display: table;
        font-size: 15px
    }
}

#section-mas-productos {
    padding-bottom: 130px
}

#section-mas-productos .products-container {
    overflow: hidden;
    max-width: 100%
}

#section-mas-productos .products-container .fix-left {
    background-color: #fff;
    width: 25px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2
}

@media (max-width: 991px) {
    #section-mas-productos .products-container .fix-left {
        width: 15px
    }
}

#section-mas-productos .products-container .fix-right {
    background-color: #fff;
    width: 21px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2
}

@media (max-width: 991px) {
    #section-mas-productos .products-container .fix-right {
        width: 15px
    }
}

#section-mas-productos .card-img-top {
    border-radius: 0
}

#section-mas-productos .title-section {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27;
    width: 100%;
    white-space: nowrap;
    text-align: center;
    margin: 0
}

@media (min-width: 991px) {
    #section-mas-productos .title-section {
        position: absolute;
        width: auto;
        left: 29px;
        z-index: 2;
        top: 50%;
        transform: translate(-100%, -50%) rotate(-90deg)
    }
}

#section-mas-productos .owl-carousel .owl-stage-outer {
    overflow: visible
}

#section-mas-productos .owl-carousel {
    margin: auto;
    width: 97%
}

#section-mas-productos .owl-stage {
    padding-top: 50px;
    padding-bottom: 50px
}

@media (max-width: 575px) {
    #section-mas-productos .owl-stage {
        padding-top: 20px
    }
}

@media (max-width: 991px) {
    #section-mas-productos {
        padding-top: 50px;
        padding-bottom: 0px
    }
}

#section-mas-productos .card-title {
    height: 50px
}

#section-mas-productos .card-text {
    height: 220px
}

@media (max-width: 991px) {
    #section-mas-productos .card-text {
        max-height: 220px !important;
        height: auto
    }
}

#section-contacto {
    padding-top: 45px;
    padding-bottom: 80px;
    background: #6eab27
}

#section-contacto .title-section {
    font-family: Roboto;
    font-size: 25px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: white;
    white-space: nowrap;
    text-align: center;
    margin: 0
}

@media (min-width: 991px) {
    #section-contacto .title-section {
        position: absolute;
        left: 10px;
        z-index: 2;
        top: 50%;
        transform: translate(-100%, -50%) rotate(-90deg)
    }
}

@media (max-width: 1200px) {
    #section-contacto .title-section {
        display: none
    }
}

#section-contacto h3 {
    font-family: Roboto;
    font-size: 27px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: white;
    text-align: left;
    margin: 0
}

@media (max-width: 991px) {
    #section-contacto h3 {
        font-size: 30px;
        text-align: center
    }
}

#section-contacto form {
    background: white
}

#section-contacto form .form-group {
    margin-bottom: 40px
}

#section-contacto form .form-group .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: solid 1px #6eab27
}

#section-contacto form .form-group .form-control::placeholder {
    color: #6eab27;
    opacity: 1
}

#section-contacto form .form-group .form-control:-ms-input-placeholder {
    color: #6eab27
}

#section-contacto form .form-group .form-control::-ms-input-placeholder {
    color: #6eab27
}

#section-contacto form .form-group .form-control:focus {
    background: transparent;
    border-bottom: solid 1px #6eab27;
    box-shadow: none !important
}

#section-contacto form .form-group textarea.form-control {
    border-radius: 16px;
    border: solid 1px #6eab27;
    height: 180px
}

#section-contacto form .re-send {
    background-color: #fff;
    color: #6eab27
}

#section-contacto form #error-form {
    display: none;
    margin-bottom: 15px;
    color: red
}

#section-contacto form .pull-right {
    text-align: right
}

#section-contacto footer {
    background: white;
    font-family: Roboto;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #6eab27
}

#section-contacto footer .footer-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-around
}

#section-contacto footer .footer-nav li {
    float: left
}

@media (max-width: 991px) {
    #section-contacto footer .footer-nav li {
        margin-bottom: 15px
    }
}

#section-contacto footer .footer-nav li a {
    color: #9a9a9a
}

@media (max-width: 575px) {
    #section-contacto footer .footer-nav {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px
    }
}

#section-contacto .relative {
    position: relative
}

#section-contacto .text-bg {
    font-family: Roboto;
    font-size: 60px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff
}

#section-contacto .text-bg span {
    background: rgba(0, 0, 0, 0.4)
}

@media (max-width: 991px) {
    #section-contacto .text-bg {
        font-size: 40px
    }
}

@media (max-width: 768px) {
    #section-contacto .text-bg {
        font-size: 30px;
        line-height: 1.35
    }
}

#section-contacto .subpage {
    display: flex;
    padding-top: 60px;
    background-color: #fbfbfb;
    flex-direction: column
}

#section-contacto .card-img-top {
    border-radius: 0
}

#section-contacto .br-mobile {
    display: none
}

@media (max-width: 1200px) {
    #section-contacto .br-mobile {
        display: block
    }
}

#section-contacto .img-responsive {
    max-width: 100%
}

#section-contacto .nop {
    padding: 0
}

#section-contacto .modal-variant .carousel-item {
    width: 100%;
    height: 300px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat
}

#section-contacto .modal-variant .modal-body {
    overflow-y: auto;
    max-height: 493px
}

#section-contacto .modal-variant .modal-title {
    color: #6eab27
}

#section-contacto .modal-variant .modal-variant-info {
    padding: 15px 0
}

#section-contacto .modal-variant .modal-variant-info h4 {
    font-size: 16px
}

#section-contacto .modal-variant .modal-variant-info .variant-desc {
    padding-right: 15px !important;
    font-size: 14px !important
}

#section-contacto .modal-variant .modal-variant-info .variant-desc p {
    font-size: 14px !important
}

#section-contacto .scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f1f1f1
}

#section-contacto .scrollbar::-webkit-scrollbar {
    width: 12px;
    background-color: #f1f1f1
}

#section-contacto .scrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555
}

#section-contacto .carousel-item.active.h500px {
    background: #ff0000;
    height: 500px
}

.destacado {
    background: #6eab27 !important;
    color: #fff !important;
    border-color: #6eab27 !important
}

.compra-en-casa-section-1 {
    background: #f8f8f8;
    margin-top: 80px;
    padding-top: 5rem;
    padding-bottom: 15rem
}

@media screen and (max-width: 780px) {
    .compra-en-casa-section-1 {
        padding-top: 2rem
    }
}

.compra-en-casa-section-1 h2 {
    font-size: 58px;
    font-weight: 200;
    color: #737373;
    line-height: 1.2
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-1 h2 {
        font-size: 48px
    }
}

.compra-en-casa-section-1-left-side {
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-1-left-side {
        padding: 0px
    }
}

.compra-en-casa-section-1-left-side .desc {
    margin-top: 2rem;
    font-size: 20px;
    padding-right: 2rem;
    color: #737373;
    line-height: 1.2
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-1-left-side .desc {
        margin-top: 1rem;
        padding-right: 0px
    }
}

.compra-en-casa-section-1-left-side .card {
    margin-top: auto;
    font-size: 18px;
    width: 334px !important;
    padding: 26px
}

.compra-en-casa-section-1-left-side .card>* {
    color: #42ad00 !important;
    margin: 0px !important;
    padding: 0px !important
}

@media screen and (max-width: 780px) {
    .compra-en-casa-section-1-left-side .card>* {
        font-size: 15px !important;
        text-align: center
    }
}

.compra-en-casa-section-1-left-side .card a {
    color: #42ad00 !important
}

.compra-en-casa-section-1-left-side .card-btn {
    background: #515150;
    border-radius: 28px;
    width: fit-content;
    margin: 15px 0px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2)
}

.compra-en-casa-section-1-left-side .card-btn a {
    padding: 10px 20px !important;
    color: #fff !important;
    text-decoration: none;
    height: 100%;
    width: 100%;
    display: block;
    font-size: 15px
}

.compra-en-casa-section-1-left-side .card-btn a:hover,
.compra-en-casa-section-1-left-side .card-btn a:active,
.compra-en-casa-section-1-left-side .card-btn a:focus {
    text-decoration: none
}

@media screen and (max-width: 780px) {
    .compra-en-casa-section-1-left-side .card-btn {
        width: 100% !important;
        text-align: center
    }
}

@media screen and (max-width: 780px) {
    .compra-en-casa-section-1-left-side .card {
        margin: 2rem 0rem;
        width: 100% !important
    }
}

.compra-en-casa-section-1-right-side {
    height: 540px
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-1-right-side {
        height: auto;
        padding: 0px
    }
}

.compra-en-casa-section-1-right-side img {
    height: 100%;
    width: 100%
}

.compra-en-casa-section-2 {
    margin-top: -8rem
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-left-side {
        padding: 0px
    }
}

.compra-en-casa-section-2-left-side img {
    height: 98.3%;
    width: 95%
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-left-side img {
        height: 100%;
        width: 100%
    }
}

.compra-en-casa-section-2-right-side {
    background: #fff;
    box-sizing: border-box;
    margin-left: -1rem;
    display: flex;
    flex-direction: column
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side {
        padding: 0px
    }
}

.compra-en-casa-section-2-right-side .paragraph-1 {
    font-size: 20px;
    line-height: 1;
    color: #737373;
    padding: 40px 30px
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side .paragraph-1 {
        padding: 20px 15px
    }
}

.compra-en-casa-section-2-right-side .paragraph-2 {
    font-size: 20px;
    color: #494949;
    font-weight: 500;
    line-height: 1;
    padding: 30px 30px
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side .paragraph-2 {
        padding: 20px 15px
    }
}

.compra-en-casa-section-2-right-side ul {
    margin-top: auto;
    padding: 25px 0px;
    padding-left: 30px;
    list-style: none;
    background: #f8f8f8
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side ul {
        padding-left: 15px;
        padding-right: 15px
    }
}

.compra-en-casa-section-2-right-side ul li {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    margin: 1rem 0rem;
    color: #42ad00
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side ul li {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.compra-en-casa-section-2-right-side ul li .image {
    width: 100px !important;
    height: 100px !important;
    flex-shrink: 0;
    background: #fff;
    margin: auto 0px;
    margin-right: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side ul li .image {
        margin-right: 0px
    }
}

.compra-en-casa-section-2-right-side ul li .image i {
    font-size: 3rem;
    color: #4a4a4a;
    margin-top: 2px;
    padding: 0px
}

.compra-en-casa-section-2-right-side ul li .pg {
    margin: 0px;
    padding: 15px 0px;
    width: auto;
    display: flex;
    align-items: center;
    padding-right: 10px
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side ul li .pg {
        padding-right: 0px
    }
}

.compra-en-casa-section-2-right-side ul li .pg p {
    margin: 0px
}

.compra-en-casa-section-2-right-side ul li:not(:last-child) .pg {
    border-bottom: 1px solid #42ad00
}

.compra-en-casa-section-2-right-side .numero-porcentaje {
    font-size: 10rem;
    color: #494949;
    font-weight: bold
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side .numero-porcentaje {
        font-size: 5rem
    }
}

@media screen and (max-width: 720px) {
    .compra-en-casa-section-2-right-side {
        margin-left: 0px
    }
}

.compra-en-casa-section-2 .promos h3 {
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #494949 !important
}

.compra-en-casa-section-2 .promos .color-green {
    color: #42ad00
}

.compra-en-casa-section-2 .promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.compra-en-casa-section-2 .promo-card p {
    text-align: center;
    font-weight: 200 !important;
    color: #494949 !important;
    border-top: 1px solid #42ad00;
    width: 100%;
    padding-top: 1rem
}

.compra-en-casa-section-2 .promo-card img {
    width: 100%
}

@media screen and (max-width: 720px) {
    .column-reverse {
        flex-direction: column-reverse
    }
}

.compra-en-casa-color-verde {
    color: #42ad00
}

.new-carousel {
    background-color: #ffffff;
    margin-top: 100px
}

.apertura_container {
    box-shadow: none;
    padding-top: 0px !important
}

.carousel-indicators li {
    background-color: white
}

.new-sombreado {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.25)
}

header .box-intro {
    transform: translateY(0px) !important;
    max-height: 482px
}

.carro {
    position: relative;
    padding-top: 136px
}

header .item2 {
    background: url("../../images/site/banner_web_sunset.jpg") center no-repeat;
    background-size: cover
}

.white {
    background-color: #fff
}

header {
    min-height: 520px;
    max-height: 543px
}

.carousel-control-prev {
    left: -50px
}

.carousel-control-next {
    right: -50px
}

@media (max-width: 400px) {
    header {
        min-height: 720px;
        max-height: 743px
    }

    header .box-intro {
        background-size: cover;
        max-height: 743px
    }

    header #sunset-logo {
        width: 100%;
        max-width: 170px
    }
}

.thanks {
    height: calc(90vh + 114px);
    padding-top: calc(114px * 2);
    background: #f8f8f8
}

@media screen and (max-width: 991px) {
    .thanks {
        height: calc(90vh + 86px);
        padding-top: calc(86px * 2)
    }
}

@media screen and (max-width: 767px) {
    .thanks {
        height: calc(90vh + 160px);
        padding-top: calc(160px * 2)
    }
}

.thanks__wrapper {
    background: #fff;
    padding: 2rem 3rem
}

.thanks__wrapper h2 {
    font-size: 4rem;
    font-weight: 200;
    color: #6eab27
}

@media screen and (max-width: 991px) {
    .thanks__wrapper h2 {
        font-size: 3rem
    }
}

@media screen and (max-width: 767px) {
    .thanks__wrapper h2 {
        font-size: 2.8rem
    }
}

.thanks__wrapper p {
    font-size: 3rem;
    font-weight: 200;
    color: #737373
}

@media screen and (max-width: 991px) {
    .thanks__wrapper p {
        font-size: 2.8rem
    }
}

@media screen and (max-width: 767px) {
    .thanks__wrapper p {
        font-size: 2.4rem
    }
}

/* ==========================================================================
   WhatsApp Buttons & Effects
   ========================================================================== */
.wa-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.wa-hover-effect:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.my-float {
    margin-top: 0;
}