@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
}

body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: #2A2A2A;
}

h1 {
    font-size: 56px;
    line-height: 72px;
}

h2 {
    font-size: 48px;
    line-height: 68px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    color: #414141;
}

a {
    text-decoration: none;
    color: #01A9B4;
}

a:hover {
    color: #52b3c9;
}

.small {
    font-size: 14px;
}

@media screen and (max-width:1119px) {
    h1 {
        font-size: 48px;
        line-height: 60px;
    }
    
    h2 {
        font-size: 36px;
        line-height: 48px;
    }

    h5 {
        font-size: 20px;
    }
}

@media screen and (max-width:991px) {
    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    h2 {
        font-size: 28px;
        line-height: 42px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 18px;
    }
}

@media screen and (max-width:767px) {
    h5 {
        font-size: 16px;
    }

    h4 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }
}

@media screen and (max-width:575px) {
    h1 {
        font-size: 30px;
        line-height: 52px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 40px;
    }

    h6 {
        font-size: 16px;
    }
}

@media screen and (max-width:445px) {
    h1 {
        font-size: 28px;
        line-height: 40px;
    }

    h2 {
        line-height: 36px;
    }
}