:root {
    --blue: #7d9aae;
    --mauve: #b59bbf;
    --lavender: #d1c4e9;
    --champagne: #f0e1d3;
    --gradient-to-position: ;
    --gradient-from-position: ;
}

html {
    scroll-behavior: smooth;
  }

.text-blue {
    color: var(--blue);
}

.text-champagne {
    color: var(--champagne);
}

.text-mauve {
    color: var(--mauve);
}

.text-lavender {
    color: var(--lavender);
}

.bg-mauve {
    background: var(--mauve);
}

.border-blue {
    border-color: var(--blue);
}

.border-mauve {
    border-color: var(--mauve);
}

.bg-blue {
    background: var(--blue);
}

.bg-lavender {
    background: var(--lavender);
}

.next-btn:hover {
    background: var(--mauve);
}

* {
    font-family: "Montserrat", sans-serif;
}

.nav-links a:hover {
    transition: 0.2s ease;
    color: var(--mauve);
}

.sidebar::after {
    display: inline-block;
    margin: 0 0 0px 12px;
    content: " ";
    text-shadow: none;
    width: 1.6em;
    flex: 1;
    border-color: #3ff;
    clip-path: polygon(0 0, 66% 0, 100% 100%, 0 100%);
    border-style: solid;
    border-width: 12px;
    border-left: none;
    border-right: none;
    border-color: var(--mauve);
}

.whatsapp {
    position: fixed;
    bottom: 1%;
    right: 1%;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}

.whatsapp img {
    width: 100px;
    height: 100px;
}

@media (max-width: 500px) {
    .whatsapp img {
        width: 80px;
        height: 80px;
    }
}

.activee {
    display: block;
}

.cart {
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--mauve);
    background: var(--mauve);
    margin-right: 10px;
}

.cart {
    color: white;
}

.cart span {
    color: white;
}

.slide {
    border: 1px solid var(--blue);
}

.hero-main {
    background-image: linear-gradient(
        to right,
        rgb(181 151 191 / 0.95),
        rgb(181 151 191 / 0.25)
    );
}

@media (max-width: 430px) {
    .hero-main {
        background: rgb(181 151 191 / 0.90) !important;
    }
}


.team-icon:hover{
    color: var(--mauve);
    transition: 0.2s ease;
}

.plans-btn:hover{
    background-color: var(--blue);
}

.img-cities{
    opacity: 50%;
    transition: .4s ease;
}

.img-cities:hover{
    opacity: 20%;
}