@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui-italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui-bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Segoe UI";
    src: url("../fonts/segoe-ui-bold-italic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Italic-VariableFont_opsz,wght.ttf")
        format("truetype");
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #009bb4;
    --heading-font: "Segoe UI", sans-serif;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html, body {height:100%;}
body {
    font-family: var(--heading-font);
}
.themePrimaryBtn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 20px 30px;
    font-size: 16px;
    font-style: Regular;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 0px;
    text-decoration: none;
    color: #fff;
    line-height: 23px;
    letter-spacing: 0%;
}
.themeSecondaryBtn {
    background-color: rgba(255, 255, 255, 10%);
    border: 1px solid #fff;
    backdrop-filter: blur(10.9px);
    padding: 20px 30px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 0px;
    text-decoration: none;
    color: #fff;
}
.themeTransparentBtn {
    background-color: transparent;
    border: 1px solid #fff;
    padding: 20px 30px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 0px;
    text-decoration: none;
    color: #2c2c2c;
}
.themeWhiteBtn {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 20px 30px;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: 400;
    border-radius: 0px;
    text-decoration: none;
    color: #2c2c2c;
}
.themePrimaryBtn i {
}
#mainWrapper {
    padding-top: 83px;
    margin-bottom: 60px;
}
@media (max-width: 1440px) {
    .themePrimaryBtn {
        padding: 8px 15px;
        font-size: 18px;
    }
}
