@font-face {
    font-family: "IHHSans";
    src: url("/fonts/MY_INTL_V2/TTF/IHHSans-Light.ttf") format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: "IHHSans";
    src: url("/fonts/MY_INTL_V2/TTF/IHHSans-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "IHHSans";
    src: url("/fonts/MY_INTL_V2/TTF/IHHSans-Bold.ttf") format("truetype");
    font-weight: 700;
}

body {
    font-family: "IHHSans", sans-serif;
}
:root {
    --theme-dark-blue: #2f2e73;
    --theme-dark-green: #2f5954;
    --theme-light-purple: #f5e6f1;
    --theme-sky-blue: #c7e2eb;
    --theme-light-beige: #f8f2ee;
    --theme-turqoise: #77cbc7;
    --theme-dark-purple: #97549e;
    --dark-purple: #97549e;
    --white: #ffffff;
    --dark-grey: #555960;
    --light-grey: #9ea2ac;
}

.theme-dark-blue {
    color: var(--theme-dark-blue);
}

.dark-purple {
    color: var(--dark-purple);
}

.bg-theme-light-purple {
    background-color: var(--theme-light-purple);
    color: var(--dark-purple);
}

.bg-theme-dark-purple {
    background-color: var(--theme-dark-purple);
    color: var(--white);
}

.bg-theme-turqoise {
    background-color: var(--theme-turqoise);
    color: var(--theme-dark-green);
}

.bg-theme-dark-green {
    background-color: var(--theme-dark-green);
    color: var(--white);
}

.bg-theme-light-beige {
    background-color: var(--theme-light-beige);
}

.bg-theme-sky-blue {
    background-color: var(--theme-sky-blue);
    color: var(--theme-dark-blue);
}

.bg-theme-dark-blue {
    background-color: var(--theme-dark-blue);
}

.bg-dark-purple {
    background-color: var(--dark-purple);
}

.clamp-2-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    min-height: calc(1.5em*2)
}

.clamp-3-line {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    min-height: calc(1.5em*3)
}

.clamp-4-line {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    min-height: calc(1.5em*4)
}

.clamp-5-line {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
    min-height: calc(1.5em*5)
}

.rounded-50px {
    border-radius: 50px;
}

.btn:hover {
    opacity: 0.8;
}