@font-face {
    font-family: 'Nagoda';
    src: url('./fonts/Nagoda.woff') format('woff'),
        url('./fonts/Nagoda.ttf') format('truetype'),
        url('./fonts/Nagoda.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


* {
    margin: 0;
    padding: 0;
}


html body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* font family  */

h1,
h2,
h3,
h4 {
    font-family: 'Nagoda', sans-serif;
}

p,
span,
a,
textarea,
input,
button,
label,
select,
ul,
li {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    line-height: 1.3em;
    text-decoration: none;
}

div {
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
}

/* font sizes  */

h1 {
    font-size: 92px;
}

h2 {
    font-size: 74px;
}

h3 {
    font-size: 52px;
}

.font-twenty {
    font-size: 20px;
}

.font-fourteen {
    font-size: 14px;
}

.font-eighteen {
    font-size: 18px;
}

.font-sixteen {
    font-size: 16px;
}

.font-twenty-two {
    font-size: 22px;
}

.font-twenty-four {
    font-size: 24px;
}

/* font weight  */

.font-semi-bold {
    font-weight: 600;
}

.font-bold {
    font-weight: bold;
}

.font-lighter {
    font-weight: lighter;
}

/* font colors  */

.color-green {
    color: #36E1B2;
}

.color-black {
    color: #02312F;
}

.color-white {
    color: white !important;
}

/* bg color  */

.bg-light-green {
    background-color: #36E1B2;
}


.bg-grey {
    background-color: #F4F4F6;
}

/* padding  */

.pb-2 {
    padding-bottom: 20px;
}

.line-height {
    line-height: 163%;
}

/* iphone  */

/* Remove iOS default styles */
a,
button,
input,
textarea,
select,
label {
    -webkit-appearance: none;
    /* removes default iOS styles */
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    /* removes iOS rounded corners */
    outline: none;
    text-decoration: none;
    color: inherit;
}

/* Force text rendering on iPhone Safari */
a {
    -webkit-font-smoothing: antialiased;
    /* smooth clean fonts */
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #02312F;
    /* your default dark green text */
}

/* iPhone specific default link color override */
a {
    color: #02312F;
    /* same as .color-black */
}

a:visited {
    color: #02312F;
}

a:hover,
a:active {
    color: #36E1B2;
    /* your green highlight */
}

.line-height-ten {
    line-height: 110%;
}

.font-weight-six {
    font-weight: 600 !important;
}

@media screen and (max-width:1440px) {
    h1 {
        font-size: 75px !important;
    }
}

@media screen and (max-width:768px) {
    h1 {
        font-size: 60px !important;
    }

    h2 {
        font-size: 55px;
    }

    h3 {
        font-size: 45px;
    }

    .font-twenty-two {
        font-size: 20px !important;
    }

}

@media screen and (max-width:556px) {
    h1 {
        font-size: 40px !important;
    }

    h3 {
        font-size: 30px;
    }

    .font-twenty-two {
        font-size: 18px !important;
    }

    .font-twenty {
        font-size: 18px;
    }

    .font-eighteen {
        font-size: 16px;
    }

}