@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');



html {
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", Arial, Helvetica, sans-serif;
    font-size: 1rem;
    width: 100%;
    padding: 0;
    margin: auto;
    transition: background-color 0.6s;
}



/* Content Font */



h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3.05rem;
    line-height: 3.05rem;
    font-weight: 500;
}

h2 {
    font-size: 2.8rem;
    line-height: 2.7rem;
    font-weight: 500;
}

h3 {
    font-size: 1.95rem;
    line-height: 2.25rem;
    font-weight: 500;
}

h4 {
    font-size: 1.55rem;
    line-height: 1.85rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    line-height: 1.55rem;
    font-weight: 600;
}

h6 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: #333;
    font-size: 1.03rem;
    font-weight: 400;
    line-height: 1.5rem;
    letter-spacing: -0.1px;
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 0;
}

a {
    color: #333;
    font-size: 1.05rem;
    font-weight: 400;
    /*line-height: 1.5rem;*/
    letter-spacing: -0.1px;
    text-decoration: none;
}

.h1-title {
    font-size: 3.4rem;
    line-height: 3.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 20px 0 25px;
    text-align: center;
}

@media screen and (max-width: 770px) {
    .h1-title {
        font-size: 2.7rem;
        line-height: 2.7rem;
    }
}

.h2-title {
    font-size: 2.4rem;
    line-height: 2.4rem;
    letter-spacing: -0.5px;
}

.h3-subtitle {
    font-size: 2.3rem;
    line-height: 2.3rem;
    letter-spacing: -0.5px;
}

@media screen and (max-width: 560px) {
    .h3-subtitle {
        font-size: 2.1rem;
    }
}

.p-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

.p-small {
    font-size: 0.95rem;
    line-height: 1.25rem;
    margin: 0;
    padding: 0;
}

.p-note {
    font-size: 0.95rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.p-ack,
.a-ack {
    color: #333;
    font-size: 1rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin-top: 15px;
}

.a-blue {
    color: #1c459a;
    text-decoration: underline;
}

.a-small {
    color: #1c459a;
    font-size: 0.95rem;
    line-height: 1.25rem;
    text-decoration: underline;
}

.links {
    font-size: 1.05rem;
    padding: 0;
}

.links:hover {
    color: #1c459a;
    text-decoration: underline;
    transition: 0.3s ease;
}

.icon-file {
    width: 36px;
}

.icon-small {
    width: 30px;
}

.p-center {
    text-align: center;
}

.p-italic {
    font-style: italic;
}

.p-underline-bold {
    font-weight: 500;
    text-decoration: underline;
}

.p-underline {
    text-decoration: underline;
}

.fontweight4 {
    font-weight: 400;
}

.fontweight5 {
    font-weight: 500;
}

.fontweight6 {
    font-weight: 600;
}

.fontweight7 {
    font-weight: 700;
}

.padding-t30 {
    padding-top: 30px;
}

.padding-t40 {
    padding-top: 40px;
}

.padding-t60 {
    padding-top: 60px;
}

.padding-b10 {
    padding-bottom: 10px;
}

.padding-b25 {
    padding-bottom: 25px;
}

.padding-b30 {
    padding-bottom: 30px;
}

.padding-b50 {
    padding-bottom: 50px;
}

.margin-0 {
    margin: 0;
}

.margin-b30 {
    margin-bottom: 30px;
}

.label-acknowledge,
.label-acknowledge a {
    font-size: 0.85rem;
    line-height: 0.95rem;
    margin: 0;
    padding: 1.5px 0 20px 0;
    text-align: left;
}

.success {
    color: white;
    font-weight: 400;
    background-color: #227C70;
    text-align: center;
    border-radius: 25px;
}

.error {
    color: white;
    font-weight: 400;
    background-color: #ea5455;
    text-align: center;
    border-radius: 25px;
}

#error-container { /* To show error in login / register etc */
    display: none;
    color: white;
    font-weight: 400;
    background-color: #ea5455;
    text-align: center;
    border-radius: 25px;
    margin: 0 0 13.6px 0; 
    padding: 10px 15px 12px; 
    font-size: 0.95rem; 
    line-height: 1.1rem;
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1c459a; /*227C70*/
    border-radius: 12px;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .08), 0 5px 26px 0 rgba(67, 94, 131, .15);
}

.redfont {
    color:#ea5455;
}

.whitefont {
    color: white;
}


@media screen and (max-width: 1128px) {

    h1 br,
    h2 br,
    h3 br {
        display: none;
    }

    h1 {
        font-size: 2.8rem;
        line-height: 2.4rem;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 2.3rem;
    }

    h3 {
        font-size: 1.75rem;
        line-height: 1.85rem;
    }
}


@media screen and (max-width: 770px) {
    h1 {
        font-size: 2.4rem;
        line-height: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.55rem;
    }
}