:root {
    --primary-color: #4dbdc0;
    --heading-font: "Manrope", sans-serif;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--heading-font);
}
.themePrimaryBtn {
    background-color: #38a4a7;
    border: 1px solid #38a4a7;
    padding: 10px 24px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
}
.themeSecondaryBtn {
    background-color: rgba(255, 255, 255, 10%);
    border: 1px solid #fff;
    backdrop-filter: blur(10.9px);
    padding: 10px 24px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
}
.themeTransparentBtn {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 10px 24px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    color: #2c2c2c;
}
.themeWhiteBtn {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 10px 24px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 4px;
    text-decoration: none;
    color: #2c2c2c;
}
.themePrimaryBtn i {
    transform: rotate(-45deg);
}


@media (max-width: 1440px) {
    .themePrimaryBtn {
        padding: 8px 15px;
        font-size: 18px;
    }
}
