@font-face {
    font-family: "Liria-Italic";
    src: url('../fonts/Liria-Italic.woff') format('woff');
}

@font-face {
    font-family: "Liria";
    src: url('../fonts/Liria.woff') format('woff');
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


:root {
    --background: #F5F5F5;
    --blue: rgb(136, 90, 243);
    --blue-light: rgba(136, 90, 243, 0.15);
    --low-contrast: #dadada;
    --easing: cubic-bezier(.77,.01,.29,.99);
}

body {
    scroll-behavior: smooth;
}

.el-image {
    border-radius: 15px;
}

.custom-meta {
    max-width: max-content;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.green-meta {
    color: #C6FD70 !important;
    background: #525E3F;
}

.light-green-meta {
    color: #525E3F !important;
    background: #C6FD70;
}

.light-blue-meta {
    color: var(--blue) !important;
    background: rgba(136, 90, 243, 0.068);
}

.green-items {
    background: #C6FD70;
    padding: 10px 25px;
    border-radius: 15px;
    max-width: max-content;
}

.green-items .el-title {
    font-weight: 600;
    font-family: "Satoshi";
}

#hero-banner {
    width: calc(100% - 100px);
    margin-left: 50px;
    border-radius: 25px;
    overflow: hidden;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

@media screen and (max-width: 700px) {
    #hero-banner {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    #hero-banner h1 {
        font-size: 2.5rem;
    }

    .centered-mobile {
        text-align: center !important;
    }
}

#fixed-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    transform: scale(0);
    opacity: 0;
}

#fixed-contact-btn .el-content {
    border: 1px solid white;
}

#footer {
    position: relative;
    z-index: 15;
}

#hero-banner .uk-background-norepeat {
    border-radius: 15px;
}

.wavy-bg .uk-background-cover {
    height: 100%;
}

.wavy-bg .uk-panel {
    /* height: calc(100% - 40px); */
}

.arrow-btn-container {
    margin-top: 25px !important;
}

.arrow-btn {
    padding: 25px;
    border-radius: 5px;
    max-width: max-content;
}

.arrow-btn a {
    max-width: max-content;
}

.btn-on-color {
    background: rgba(0,0,0,0.1);
}

.btn-on-dark {
    background: rgba(255, 255, 255, 0.2);
}

.spaced-between .uk-card {
    display: flex !important;
    flex-direction: column !important;
	justify-content: space-between !important;
}

h1 i, h2 i, h3 i, h4 i, h5 i, h6 i {
    font-weight: normal;
    font-family: "Liria-Italic";
    font-style: normal;
    color: var(--blue);
}

p, .el-meta {
    font-weight: 600 !important;
}

.white-i i {
    color: white;
    font-weight: 400;
}

.grid-line {
    border-bottom: 1px solid var(--low-contrast);
    padding: 0px !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    transform: translateX(37.5px);
}

.green, .black {
    background-color: rgba(99, 255, 128, 0.19);
    color: #2DFF54;
    border-radius: 50px;
    padding: 2px 10px;
}

.black {
    color: white;
}

.custom-grid {
    gap: 1px !important;
    background: var(--low-contrast);
    border: 1px solid var(--low-contrast);
    border-radius: 15px;
}

.custom-grid .el-item {
    background: var(--background);
    border: 1px solid var(--low-contrast);
    padding: 25px;
    aspect-ratio: 1.38;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    overflow: hidden;
}

.custom-grid .el-image {
    position: relative;
    z-index: 2;
    mix-blend-mode: luminosity;
}

@media screen and (max-width: 700px) {
    .custom-grid .el-item h3 {
        font-size: 23px;
    }
}

.custom-grid .el-item {
    position: relative;
}

.custom-grid .el-item::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(38deg, #744CD0 65%, #2098FA 150%);
    transition: width .618s var(--easing);
}

.custom-grid .el-item:hover::before {
    width: 100%;
}

.custom-grid .el-item .el-title {
    position: relative;
    z-index: 2;
    transition: color .400s var(--easing);
}

.custom-grid .el-item:hover .el-title {
    color: white;
}

.notification {
    position: fixed;
    z-index: 1000;
    top: 15px;
    padding: 10px 20px;
    max-width: min(900px, 95vw);
    text-align: center;
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}
.notification.visible {
    display: block;
}
  
.notification.success {
    background: #D8F5D2;
    color: #2D871B;
    border-color: transparent;
}

.notification.error {
    background: #F5D2D2;
    color: #FF6060;
    border-color: #FF6060;
}

.input {
    padding: 10px 8px;
    border-radius: 5px;
    border: none;
}

.input:focus-visible {
    outline: 2px solid var(--blue);
}

.btn {
    padding: 5px 20px;
    border-width: 1px;
    border-style: solid;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
    border-color: var(--blue);
    transition: color .2s ease-in-out, background .2s ease-in-out;
}

.btn:hover {
    background: var(--blue);
    color: white;
}


#verif-btn {
    margin: 25px 0;
}

#map {
    width: 100%;
    height: 86vh;
}

/* Map markers styling */
#map.leaflet-container {
    border-radius: 15px;
    overflow: hidden;
}

.leaflet-popup h1, .leaflet-popup h2, .leaflet-popup h3, .leaflet-popup h4, .leaflet-popup h5, .leaflet-popup h6 {
    text-align: center !important;
    margin-bottom: 5px;
    letter-spacing: 0px !important;
}

.leaflet-popup .marker-address-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.leaflet-popup address {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    font-family: "Montserrat";
    max-width: 183px;
}

.leaflet-popup .marker-link {
    border: 1px solid #885AF3;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #885AF3;
    background: #EDE6FD;
    transition: background .2s ease-in-out, color .2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    font-family: "Montserrat";
    font-weight: 400;
}

.leaflet-popup .marker-link:hover {
    background: #885AF3;
    color: white;
}