@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

a{
    text-decoration: unset;
}

html,body{
    width:100%;
    height:100%;
    overflow-x:clip;
}

.headerSpacer {
    padding-bottom: 11vh;
    background-color: #3cbeb1;
}

.header.stuck .headerSpacer {
    padding-bottom: 8vh;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 11vh;
    z-index: 100;
}


.headerContact {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 3vh;
    background-color: white;
}

.headerContactLeft {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navHeaderLogo {
    width: auto;
    height: 73%;
    margin: auto 0;
}

.headerContactRightBox {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #3cbeb1;
    border-radius: 2px;
}



.headerContactRight {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.navHeaderLogo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navHeaderLog o a{
    display:block;
    width:100%;
    height:100%;
}


.navHeaderLinks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.navHeader {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 8vh;
    background-color: #3cbeb1;
}

.navHeaderLinks a {
    color: white;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 1.1em;
    margin: 0 30px;
    cursor: pointer;
    text-decoration: unset;
}

.headerContactLeft a {
    font-family: 'Inter';
    text-decoration: unset;
    color: #3cbeb1;
    font-weight: 400;
    font-size: 0.8em;
}

.headerContactLeft p {
    font-family: 'Inter';
    color: #3cbeb1;
    font-weight: 400;
    font-size: 0.8em;
    margin: 0 5px;
}

.headerContact, .navHeader {
    padding: 0 9%;
}


.navHeaderContactLink a {
    border: 1px solid white;
    padding: 4px 12px;
    border-radius: 9px;
    margin-right: unset;
}

.header, .header * {
    transition: all 0.35s ease-in-out;
}

.header.stuck .navHeader {
    height: 6vh;
    filter: drop-shadow(0px 4px 11px rgba(0,0,0,0.5));
}

.header.stuck .headerContact{
    height: 2vh;
}

.header.stuck .headerContact a, .header.stuck .headerContact p {
    font-size: 0.7em;
}

.header.stuck .navHeaderLogo {
    height: 68%;
}

.header.stuck .navHeaderLinks a {
    font-size: 1em;
}

.header.stuck .headerContactRightBox {
    width: 9px;
    height: 9px;
}