/* Reset css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Main css */
html,
body {
    width: 100%;
    height: 100%;
}

.body {
    font-family: 'Poppins', sans-serif;
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
}

@media screen and (min-width: 768px) {
    .body {
        flex-direction: initial;
        flex-wrap: wrap;
    }
}

.nowrap {
    white-space: nowrap;
}

.logo {
    text-align: center;
    padding: 12px 24px;
    width: 100%;
    height: 56px;
    box-sizing: border-box;
}

.logo img {
    height: 32px;
    width: auto;
}

.col-group {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    .col-group {
        width: 40%;
    }
}

.title {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #00202C;
    margin-bottom: 24px;
}

.col-info {
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.01em;
    color: #637282;
    margin-bottom: 20px;
}

.col-info a {
    color: #00909E;
}

.icon-down {
    display: inline-block;
    animation: slide2 1.2s ease-in-out infinite;
}

@keyframes slide2 {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(0, 5px);
    }
}

@media screen and (min-width: 768px) {
    .icon-down {
        display: none;
    }
}

.icon-right {
    display: none;
    animation: slide1 1.2s ease-in-out infinite;
}

@keyframes slide1 {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(5px, 0);
    }
}

@media screen and (min-width: 768px) {
    .icon-right {
        display: inline-block;
    }
}

/* freshdesk */
#freshworks-container {
    width: 100% !important;
    height: 100% !important;
    max-height: 980px;
    padding: 0 24px 24px;
    box-sizing: border-box;
    z-index: 10 !important;
}

@media screen and (min-width: 768px) {
    #freshworks-container {
        width: 60% !important;
        height: calc(100% - 80px) !important;
        padding-bottom: 0;
    }
}

#freshworks-container > div {
    height: 100%;
}

#freshworks-frame-wrapper {
    position: relative !important;
    height: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

#freshworks-frame-wrapper::before {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    right: 16px;
    top: 16px;
    background: transparent;
}

.hidden {
    display: none;
}

.support-button {
    position: fixed;
    z-index: 100;
    height: 56px;
    width: 56px;
    background-color: #00909e;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    right: 4px;
    bottom: 4px;
    border-radius: 50% 50% 8px 50%;
    cursor: pointer;
}

.loader {
    border-radius: 100%;
    width: 36px;
    height: 36px;
    position: relative;
    margin: 24px auto;
    border: 4px solid #00909E;
    border-bottom: 4px solid #DFE4E9;
    animation: spin 1s linear infinite;
}

.loader::after {
    content: '';
    border-radius: 100%;
    width: 36px;
    height: 36px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}