/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Variables
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    /* stylelint-disable-next-line color-hex-length */
    --color-black: #222222;
    --color-grey: #5e5e5e;
    --color-greyLight: #bdbcbc;
    --color-greyLighter: #bdbcbc;
    --color-greyDark: #3a3a3a;
    --color-blue: #235cb7;
    --color-bluergba: rgba(9, 52, 121, 0.8);
    --color-blueDark: #093479;
    --color-blueLight: #6891d2;
    --color-green: #13b197;
    --color-white: #fff;
    --color-whiteOff: #f5f5f5;
    --font-main: 'Inconsolata', Helvetica, Verdana, Arial, sans-serif;
    --font-logo: 'Montserrat', Helvetica, Verdana, Arial, sans-serif;
    --scrollbar-size: 0.375rem;
    --scrollbar-minlength: 1.5rem; /* Minimum length of scrollbar thumb (width of horizontal, height of vertical) */
    --scrollbar-ff-width: thin; /* FF-only accepts auto, thin, none */
    --scrollbar-track-color: rgba(0, 0, 0, 0.1);
    --scrollbar-color: rgba(0, 0, 0, 0.3);
    --scrollbar-color-hover: rgba(0, 0, 0, 0.4);
    --scrollbar-color-active: rgb(0, 0, 0);
}

/* Use .layout-scrollbar-obtrusive to only use overflow if scrollbars don’t overlay */
.scrollbar-test,
.layout-cell {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    scrollbar-width: var(--scrollbar-ff-width);
}

/* This class controls what elements have the new fancy scrollbar CSS */
.layout-scrollbar {
    scrollbar-color: var(--scrollbar-color) var(--scrollbar-track-color);
}

/* Only apply height/width to ::-webkit-scrollbar if is obtrusive */
.layout-scrollbar-obtrusive,
.layout-scrollbar-obtrusive::-webkit-scrollbar {
    width: var(--scrollbar-size);
    height: var(--scrollbar-size);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-track {
    background-color: var(--scrollbar-track-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: var(--scrollbar-color);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-color-hover);
}

.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:active {
    background-color: var(--scrollbar-color-active);
}

.scrollbar-test::-webkit-scrollbar-thumb:vertical,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:vertical {
    min-height: var(--scrollbar-minlength);
}

.scrollbar-test::-webkit-scrollbar-thumb:horizontal,
.layout-scrollbar-obtrusive::-webkit-scrollbar-thumb:horizontal {
    min-width: var(--scrollbar-minlength);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
General
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-main);
    line-height: 135%;
}

body {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    color: var(--color-black);
    font-weight: normal;
    font-size: 18px;
    font-family: var(--font-main);
    text-align: center;
    cursor: auto;
}

blockquote {
    text-align: justify;
}

ul,
ol {
    margin: 0;
    line-height: 145%;
    text-shadow: none;
}

li {
    line-height: 105%;
    text-align: left;
}

img {
    border-style: none;
    text-align: center;
}

a:active,
a:link,
a:visited {
    color: #2559a6;
    text-decoration: underline;
}

button {
    border-radius: 10px;
}

button,
.social:hover,
a:hover,
.circle:hover {
    cursor: pointer !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
    font-family: var(--font-logo);
}

h3 {
    text-align: left;
}

p {
    font-weight: normal;
    text-shadow: none;
}

h1 {
    font-size: calc(32px + (42 - 32) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.2em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h2 {
    font-size: calc(30px + (40 - 30) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h3 {
    font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
    text-align: left;
}

h4 {
    margin: 0;
    padding: 0;
    font-size: calc(25px + (36 - 28) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

h5 {
    margin: 0;
    padding: 0;
    font-size: calc(22px + (36 - 28) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

li {
    font-size: calc(15px + (20 - 12) * ((100vw - 300px) / (1900 - 300)));
    line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1900 - 300)));
}

p {
    font-size: calc(16px + (22 - 14) * ((100vw - 300px) / (1900 - 300)));
}

#wrapper {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    width: 100vw;
    -webkit-box-align: center;
    -ms-flex-align: center;

    @supports not (display: grid) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .mobileHide {
        display: none;
    }

    .commonBtn .commonBtn-btn {
        padding: 2vw 6vw;
    }

    #wrapper {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100vw;
        -webkit-box-align: center;
        -ms-flex-align: center;

        @supports not (display: grid) {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
        }
    }
}

@media (min-width: 768px) {
    .mainHide {
        display: none;
    }

    .commonBtn .commonBtn-btn {
        padding: 1vw 2vw;
    }
}

#upHigh {
    visibility: hidden;
}

.commonBtn {
    margin-top: 5vh;
}

.commonBtn .commonBtn-btn {
    border: 2px solid transparent;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-weight: 600;
    font-family: var(--font-main);
    text-decoration: none;
    text-transform: uppercase;
}

.commonBtn .commonBtn-btn:hover {
    border: 2px solid var(--color-blue);
    background: transparent;
    color: var(--color-blue);
}
