:root {
    --color-dark-green-l: #838C5C;
    --color-dark-green: #4F5630;

    --color-orange-l: #EB8126;
    --color-orange: #DA7722;

    --color-white: #FFFFFF;

    --color-light-green: #F3F4EB;
    --color-light-green-d: #E1E4D4;
    --color-light-green-dd: #CCD1B8;

    --color-text: #62664E;

}


*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    overflow-wrap: break-word;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--color-light-green);
    font-family: 'Plus Jakarta Sans', sans-serif;

    &.nav-is-active{
        overflow-y: clip !important;

        .nav{
            height: 100lvh;
        }
    }
}

img, picture, figure, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select{
    font: inherit;
}

ul, ol{
    margin: 0;
    padding: 0;
    list-style-type: none;
}


.container{
    max-width: 1340px;
    margin: 0 auto;
    padding-inline: clamp(1.6rem, 4vw, 4rem);
}

.contact-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: var(--color-white);
    border-radius: 1.6rem;
    margin-top: clamp(3.2rem, 10vw, 6rem);
    overflow: hidden;
    margin-bottom: 12rem;
}

.content{
    padding: clamp(1.6rem, 6vw, 6rem);
    padding-block: clamp(4rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;

    p{
        font-size: 1.7rem;
        color: #6E764D;
        line-height: 165%;
    }

    li{
        margin-bottom: 1.2rem;
        align-items: flex-start;
    }

    li img{
        position: relative;
        top: 2px;
    }

    li a, li span{
        font-size: 1.8rem;
        color: var(--color-dark-green);
        text-decoration: none;
    }

    li a{
        position: relative;
        transition: all 0.25s ease-in-out;
    }

    li a:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--color-light-green-dd);
        position: absolute;
        left: 0;
        bottom: -3px; /* this is to match where the border is */
        transform-origin: left; 
        transition: 0.25s linear;
      /*   will-change: transform; */
      }

      li a:hover{
        color: var(--color-orange);
      }
      
      li a:hover:before {
        transform: scaleX(1);
        opacity: 0;
      }
}

.contact-links{
    margin: 0;
    padding: 0;
}

.contact-links__item{
    display: flex;
    flex-direction: row;
    gap: 0.8rem;

}

.contact-links__item--location{
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    margin-top: 3.2rem;

}

.image{
    overflow: hidden;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.link-with-arrow{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.link-with-arrow svg{
    position: relative;
    top: 2px;
    height: 2rem;
}

.waves{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}

.btn{
    display: inline-flex;
    font-size: 1.7rem;
    font-weight: 600;
    padding: 1.8rem 2.4rem;
    line-height: 1.1;
    text-decoration: none;
    border-radius: 300px;
    transition: background-color 0.3s ease-in-out;
    gap: 0.8rem;
    align-items: center;
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn:hover{
    background-color: var(--color-orange-l);
}

.logo{
    max-width: clamp(150px, 40vw, 220px);
}


@media screen and (max-width: 992px) {
    .contact-grid{
            grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 460px) {
    p, a, span{
        font-size: 1.6rem !important;
    }

    
}