@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
:root {
    /* colors */
    --main-color: #312a6f;
    --second-color: #3a8dde;
    --gray-color: #858585;
    --dark-color: #333;
    --white-color: #fff;
    --light-color: #f1f5f9;
    --wpp-1-color: #25d366;
    --wpp-2-color: #128c7e;
    --wpp-3-color: #075e54;
    --box-shadow-1: rgba(10, 240, 41, 0.15) 0px 48px 100px 0px;
    --box-shadow-2: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
    --box-shadow-3: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* nav */

nav {
    font-size: .9rem;
    font-weight: 600;
}

.navbar-nav {
    gap: 2rem;
}

.navbar-nav>li>a:hover {
    color: var(--second-color) !important;
}


/* bts */

.btn-wpp {
    background-color: var(--wpp-1-color);
    color: var(--white-color);
    font-size: .8rem;
    transition: .3s ease-in-out;
}

.btn-wpp:hover {
    background-color: transparent;
    color: var(--wpp-3-color);
    border: var(--wpp-3-color) 1px solid;
}

 ::-webkit-scrollbar {
    width: 10px;
}

 ::-webkit-scrollbar-track {
    background-color: #eaeeff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

 ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: var(--main-color);
}

.text-white {
    color: rgb(214 214 214 / 51%) !important;
}


/* header */

.header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    background-color: var(--light-color);
}

.header .card {
    background-color: transparent;
    border: none;
}

.header .card .flx {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.header .card .flx:nth-child(1) {
    padding: 7rem 4rem;
}

.header .card .flx .txt {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header .card .flx .title {
    font-size: 4rem;
    font-weight: 600;
}

.header .card .flx .description {
    margin: 2rem 0;
}

.header .card a {
    font-size: 1rem;
    color: var(--white-color);
    background-color: var(--wpp-1-color);
    border: 1px solid var(--wpp-1-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header .card a:hover {
    color: var(--wpp-3-color);
    border: 1px solid var(--wpp-3-color);
    background-color: transparent;
}

.header .card img {
    object-fit: cover;
    object-position: center;
    height: 800px;
}


/* floatings img */

.floating-icons img {
    position: absolute;
    color: var(--second-color);
    opacity: 0.6;
    /* Muy sutil para que no estorbe al texto */
    font-size: 3rem;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 15%;
    left: 40%;
    animation-delay: 2s;
    font-size: 4rem !important;
}

.icon-3 {
    top: 20%;
    right: 45%;
    animation-delay: 4s;
}

.icon-4 {
    bottom: 25%;
    left: 20%;
    animation-delay: 1s;
}


/* La magia de la animación */

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* services */

.py-section {
    margin: 5rem 0;
}

.py-section .card {
    border: none;
    background-color: transparent;
}

.services-img {
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
}

.services-img .card-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 10px;
}

.services-img .card-services .txt {
    font-size: .813rem;
    text-transform: uppercase;
}

.services-img .card-services .title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-color);
}

.services-img .card-services img {
    object-fit: cover;
    object-position: center;
    height: 300px;
    width: 300px;
    border-radius: 10px;
    /* Preparación para el hover */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.services-img .card-services:hover img {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.services-img .card-services a {
    color: var(--wpp-2-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    /* Necesario para que el transform funcione */
    transition: all 0.3s ease;
    opacity: 0.8;
    padding: 1rem 0;
}

.services-img .card-services a:hover {
    opacity: 1;
    transform: translateX(8px);
    /* Desplazamiento sutil */
    color: var(--wpp-2-color);
    /* Mantiene tu variable */
}

.services-img button {
    border: none;
    color: var(--second-color);
    background-color: transparent;
    font-weight: 600;
    font-size: .813rem;
    font-style: italic;
    padding: 1rem 0;
}


/* services v2 */

#services {
    margin: 8rem 0;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    background-color: #f0f0f0;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
    transition: background 0.3s ease;
}

.service-overlay h1 {
    color: white;
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.btn-generic {
    background-color: rgba(226, 226, 226, 0.507);
    color: black;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    align-self: flex-start;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.service-card:hover h1 {
    transform: translateY(-5px);
}

.service-card:hover .btn-generic {
    background-color: var(--light-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


/* loop */

.video-hero-section {
    position: relative;
    height: 500px;
    /* Altura controlada para no saturar */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#video-title {
    transition: all 0.5s ease;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Video Loop */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Ajusta la oscuridad aquí */
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
    color: white;
}


/* about */

.card-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    margin: 3rem 0;
}

.card-about .subcard {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.card-about .subcard .sticky {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.card-about .subcard .txt {
    font-size: .813rem;
    text-transform: uppercase;
    font-weight: 600;
}

.card-about .subcard .tittle {
    font-size: 3.8rem;
    font-weight: 600;
    color: var(--main-color);
}

.card-about .subcard .description {
    font-size: .913rem;
    line-height: 1.8;
    color: var(--dark-color);
}


/* gallery */

.prev-gallery {
    display: grid;
    grid-template-columns: 40% 30% auto;
    justify-content: center;
    gap: 2rem;
    padding: 20px;
}

.prev-gallery .cc-card-one,
.prev-gallery .cc-card-two,
.prev-gallery .cc-card-three {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prev-gallery .cc-card-one img {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 500px;
    width: 100%;
}

.prev-gallery .cc-card-two .cc-subcard-main {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.prev-gallery .cc-card-two .cc-subcard-main img {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 280px;
    width: 190px;
}

.prev-gallery .cc-card-two .cc-subcard-second {
    display: flex;
    flex-direction: column;
}

.prev-gallery .cc-card-two .cc-subcard-second img {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 200px;
    width: 400px;
}

.prev-gallery .cc-card-three .cc-card-one img {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 300px;
    width: 400px;
}

.prev-gallery .cc-card-three .cc-card-two img {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 180px;
    width: 400px;
}


/* general css */

.card {
    border: none;
    background-color: transparent;
}

.main-flx {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-flx .txt {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-flx .title {
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark-color);
}

.important {
    color: var(--second-color);
}


/* about */

.sticky {
    position: sticky;
    top: 90px;
}

.content-flx {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.d-column {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin: 2rem 0;
}

.d-column {
    display: flex;
    flex-direction: row;
    position: relative;
}

.d-column i {
    width: 60px;
    height: 60px;
    background-color: var(--light-color);
    color: var(--second-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    transition: .3s ease-in-out;
}

.d-column:hover i {
    color: var(--white-color);
    background-color: #3a8dde;
}

.d-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.d-row .title {
    font-size: 2.1rem;
    font-weight: 600;
    transition: .3s ease-in-out;
}

.d-row:hover .title {
    color: var(--second-color);
}

.card-best {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-best .card-a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.flx-a {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flx-a .txt {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.flx-a .tittle {
    font-size: 3rem;
    font-weight: 600;
    color: var(--dark-color);
}

.flx-a .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.flx-a a {
    color: var(--wpp-2-color);
    padding: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease-out;
}

.card-best .card-img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.card-best .card-img img {
    object-fit: cover;
    object-position: center;
    height: 500px;
    width: 500px;
    border-radius: 10px;
}


/* footer */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    background-color: var(--light-color);
}

footer img {
    width: 160px;
    margin: 2rem 0;
}

footer .sections {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

footer .sections a {
    text-decoration: none;
    color: var(--main-color);
    font-size: .813rem;
    margin: 2rem 0;
}

footer .sm-icons {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

footer .sm-icons a {
    text-decoration: none;
    color: var(--main-color);
}

footer .end {
    font-size: .813rem;
    color: #bdbdbd;
}

footer .end a {
    font-size: .813rem;
    color: #bdbdbd;
    text-decoration: none;
}

footer .info ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

footer .info ul>li {
    font-size: .813rem;
}

footer .info ul>li a {
    color: var(--main-color);
    text-decoration: none;
    transition: .3s ease-in-out;
}

footer .info ul>li a:hover,
footer .info ul>li a:focus,
footer .info ul>li a:active {
    color: var(--second-color);
}


/* wpp bottom */

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

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}


/* clients */

.wp-clients {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.wp-clients .card img {
    width: 100%;
}


/* Animación sutil de pulso */

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}


/* testimonial */

.testimonial-slider {
    padding: 2rem 0;
}

.testimonial-item i {
    font-size: 3rem;
    color: var(--second-color);
    opacity: 0.4;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-company {
    font-size: 0.85rem;
    color: #888;
    display: block;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--second-color);
}

.slick-dots li.slick-active button:before {
    color: var(--second-color);
}

.testimonial-slider:not(.slick-initialized) .testimonial-item:not(:first-child) {
    display: none;
}

.testimonial-slider {
    display: block;
    width: 100%;
    visibility: hidden;
    /* Se oculta temporalmente */
}

.testimonial-slider.slick-initialized {
    visibility: visible;
    /* Se muestra solo cuando Slick ya arrancó */
}


/* modal */

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body .description {
    font-size: .813rem;
}

.modal-body ul>li {
    font-size: .813rem;
    line-height: 2;
}

.modal-body .btn-cancel {
    color: var(--dark-color);
    background-color: transparent;
    font-size: .813rem;
}

.modal-footer a {
    color: var(--white-color);
    background-color: var(--wpp-1-color);
    text-decoration: none;
    padding: 10px 20px;
}


/* map */

.wp-map {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 10px;
}

.wp-map .card {
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.wp-map .card .title {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--main-color);
}

.wp-map .card .description {
    font-size: .9rem;
    font-style: italic;
    color: #333;
}

@media only screen and (max-width: 1366px) {
    .services-img {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-about .subcard .tittle {
        font-size: 2.8rem;
    }
    .prev-gallery {
        grid-template-columns: 100%;
    }
    .prev-gallery .cc-card-two .cc-subcard-main,
    .prev-gallery .cc-card-three {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .prev-gallery .cc-card-two .cc-subcard-second img,
    .prev-gallery .cc-card-two .cc-subcard-main img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    .prev-gallery .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-two img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    .main-flx .title {
        font-size: 2rem;
    }
    .flx-a .tittle {
        font-size: 2rem;
    }
    .card-best .card-img {
        grid-template-columns: repeat(2, 1fr);
    }
    .flx-a .title {
        font-size: 1rem;
    }
    .card-best .card-img img {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .floating-icons {
        display: none;
    }
    .navbar-nav {
        align-items: flex-start;
    }
    .navbar-nav {
        gap: 0;
    }
    .navbar-light .navbar-toggler {
        border: none;
    }
    .navbar-light .navbar-toggler:hover,
    .navbar-light .navbar-toggler:active,
    .navbar-light .navbar-toggler:focus {
        border: none;
    }
    .navbar-light .navbar-toggler {
        color: white;
        border-color: rgba(0, 0, 0, .1);
    }
    .services-img {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-about .subcard .tittle {
        font-size: 1.8rem;
    }
    .main-flx .title {
        font-size: 2rem;
    }
    .services-img .card-services {
        padding: 1rem;
    }
    .d-row .title {
        font-size: 1.1rem;
    }
    .prev-gallery {
        grid-template-columns: 100%;
    }
    .prev-gallery .cc-card-two .cc-subcard-main,
    .prev-gallery .cc-card-three {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .prev-gallery .cc-card-two .cc-subcard-second img,
    .prev-gallery .cc-card-two .cc-subcard-main img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    .prev-gallery .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-two img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    .flx-a .tittle {
        font-size: 2rem;
    }
    .card-best .card-img {
        grid-template-columns: repeat(1, 1fr);
    }
    .header .card .flx .title {
        font-size: 3rem;
    }
    .flx-a .title {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .header .card .flx .description {
        margin: 1rem 0;
    }
    #services {
        margin: 2rem 0;
    }
    .services-img {
        grid-template-columns: repeat(1, 1fr);
    }
    .wp-clients {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding: 1rem 0 2rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .wp-clients .card {
        flex: 0 0 auto;
        scroll-snap-align: center;
        border: none;
        background: transparent;
    }
    .wp-clients .card img {
        width: 160px;
        height: auto;
        object-fit: contain;
        opacity: 0.7;
    }
    .wp-clients::-webkit-scrollbar {
        display: none;
    }
    .testimonial-text {
        font-size: .813rem;
    }
    .wp-map {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media only screen and (max-width: 480px) {
    .navbar-nav {
        gap: 0;
    }
    .header {
        grid-template-columns: repeat(1, 1fr);
    }
    .services-img {
        grid-template-columns: repeat(1, 1fr);
    }
    .card-about {
        grid-template-columns: repeat(1, 1fr);
    }
    .prev-gallery {
        grid-template-columns: repeat(1, 1fr);
    }
    .card-best .card-a {
        grid-template-columns: repeat(1, 1fr);
    }
    .card-best .card-img {
        grid-template-columns: repeat(1, 1fr);
    }
    .prev-gallery .cc-card-two .cc-subcard-main {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .prev-gallery .cc-card-two .cc-subcard-second img,
    .prev-gallery .cc-card-two .cc-subcard-main img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    .prev-gallery .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-one img,
    .prev-gallery .cc-card-three .cc-card-two img {
        object-fit: cover;
        object-position: center;
        border-radius: 10px;
        height: 300px;
        width: 100%;
    }
    /* fix */
    .header .card .flx:nth-child(1) {
        padding: 1rem;
    }
    .header .card .flx .txt {
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .header .card .flx .title {
        font-size: 2rem;
        font-weight: 600;
    }
    .header .card .flx .description {
        font-size: .9rem;
    }
    .header .card a {
        font-size: .813rem;
        padding: 10px;
    }
    .header .card img {
        display: none;
    }
    .py-section {
        margin: 1rem 0;
    }
    .main-flx {
        padding: 1rem;
    }
    .main-flx .title {
        font-size: 1.3rem;
    }
    .main-flx .description {
        text-align: center;
        font-size: .813rem;
    }
    /* services */
    .services-img .card-services {
        padding: 3rem 0;
    }
    /* about */
    .card-about .subcard .tittle {
        font-size: 24px;
    }
    .sticky {
        position: relative;
        top: 0px;
    }
    .d-row .title {
        font-size: 18px;
        font-weight: 600;
    }
    /* best */
    .flx-a .tittle {
        font-size: 1rem;
    }
    .flx-a .title {
        font-size: 1.3rem;
    }
    .card-best .card-img img {
        object-fit: cover;
        object-position: center;
        height: 500px;
        width: 100%;
        border-radius: 10px;
    }
    .navbar-light .navbar-toggler {
        border: none;
    }
    .navbar-light .navbar-toggler:hover,
    .navbar-light .navbar-toggler:active,
    .navbar-light .navbar-toggler:focus {
        border: none;
    }
    .navbar-light .navbar-toggler {
        color: white;
        border-color: rgba(0, 0, 0, .1);
    }
}

@media only screen and (max-width: 390px) {}