/* fonts */
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 300;
    src: url("/fonts/GothamPro-Light.woff") format("woff");
    font-display: block;
}
  
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 500;
    src: url("/fonts/GothamPro-Medium.woff") format("woff");
    font-display: block; 
}
  
@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 600;
    src: url("/fonts/GothamPro-Bold.woff") format("woff");
    font-display: block; 
}

@font-face {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    src: url("/fonts/GothamPro.woff") format("woff");
    font-display: block; 
}

/* html */
html {
    line-height: 1.15; 
    -webkit-text-size-adjust: 100%;
}
  
body {
    margin: 0;
    color: #3B454D;
    min-height: 100vh;
    font: 13px/18px 'Gotham Pro', Helvetica, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: #FFFFFF;
}

@media (min-width: 1024px) {
    body {
        font: 14px/22px 'Gotham Pro', Helvetica, sans-serif;
    }
}

/* main */
a {
    text-decoration: none;
    cursor: pointer;
    background-color: transparent;
    transition: all .2s ease-in-out;
    color: #77B09D;
}

a:hover {
    color: #97C04D;
}

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

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

details {
    display: block;
}

summary {
    display: list-item;
}
  
*, *:before, *:after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

/* visibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.visually-hidden:not(:focus):not(:active) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

/* no-scroll */
.no-scroll {
    overflow: hidden;
}

.hide-scroll {
    overflow: auto;
    scrollbar-width: none;
  }
  
.hide-scroll::-webkit-scrollbar {
    display: none;
}