@import "variables.css";
@import url('https://fonts.googleapis.com/css?family=Mulish&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display&display=swap');

/* For most modern browsers */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer/Edge */
}
  
  /* For WebKit (Chrome, Safari) */
*::-webkit-scrollbar {
    width: 0;
    height: 0;
}
  
  /* For Internet Explorer/Edge */
*::-webkit-scrollbar {
    display: none;
}
  
  /* For Firefox */
* {
    scrollbar-width: none;
}
  
.nav-link {
    color: var(--color_1)!important;
    text-align: center;
}

.nav-link.active {
    color: var(--color_1)!important;
    /*text-decoration: underline;*/
}

.c1 {
    color: var(--color_1)!important;
}

.bg-c1 {
    background-color: var(--color_1)!important;

}

.b1 {
    color: white!important;
    background-color: var(--color_1)!important;
}

body {
    font-family: 'Mulish', sans-serif!important;
    font-size: 22px;
}

h1 {
    font-size: 4em!important;
}

.playfair {
    font-family: 'Playfair Display', serif!important;
}

.card {
    border: 0px!important;
}

.cards-container {
    display: flex;
    justify-content: center!important;
}

.cards-container > div {
    margin: 0 10px;
}


.contact {
    background-color: var(--color_1)!important;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4000px;
    margin: auto;
}

.contact > p {
    color: var(--color_2)!important;
}


.icona {
    width:  60px;
    height: 60px;
    margin: 10px auto;
}

.logo {
    width: 300px;
    display: flex;
    justify-content: center;
}

.logo > img {
    width: 300px;
    margin: 100px auto;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    max-width: 1080px;
    margin: 30px auto;
}

.waves {
    position: relative ;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.bottom {
    transform: rotate(180deg) translateY(-2px)!important;
}

.waves img {
    position: relative;
    display: block;
    width: 100% ;
    height: 44px;
    margin-top: -6px;
}

.navbar-toggler-icon {
    background-image: url(../images/burger.svg)!important;
}

.action-link {
    color: white;
    margin: auto!important;
}

.btn-primary {
    width: fit-content;
    padding: 10px 40px!important;
    background-color: var(--color_1)!important;
    border: none!important;
}
.btn-primary:hover {
    background-color: var(--color_2)!important;
    border: 2px solid var(--color_1)!important;
    margin: -2px!important;
    color: var(--color_1)!important;
}

.btn-secondary {
    width: fit-content;
    padding: 10px !important;
    background-color: var(--color_2)!important;
    color: var(--color_1)!important;
    border: none!important;
    border-radius: 2000px!important;
}

.btn-secondary:hover {
    background-color: var(--color_1)!important;
    border: 2px solid var(--color_2)!important;
    margin: -2px!important;
    color: var(--color_2)!important;
}

.img-round {
    width: 100%;
    padding: 10%;
    object-fit: cover;
    border-radius: 4000px;
}

.wa-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;

    height: 70px;
    width:  70px;

    background-color: var(--color_1);
    border: 3px solid var(--color_2);
    padding: 15px;
    border-radius: 2000px;
}

ul > li > h6 > small {
    color: #5e5e5e;
    margin-left: 10px;
} 

ul > li > p {
    margin-top: -8px;
    color: #5e5e5e;
    font-size: 13px;
}

ul > li {
    margin-bottom: 10px;
}


li::marker {
    color: var(--color_1);

}

@media (max-width: 767px) {

    .waves svg {
        width: calc(125% + 1.3px);
        height: 44px;
    }

}