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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}

html {
    height: 100%;
}
body {
    font-family: 'Heebo', sans-serif;
    font-size: 0.85vw;
    min-height: 100%;
    line-height: 1.6;
    color: #000;
}

.row {
    margin: 0;
}

.full-height {
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.flex-center {
    min-height: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

h1 {
    font-size: 3.7vw;
    font-weight: 800;
    margin-bottom: 0.9vw;
}

a {
    text-decoration: none;
    color: #006FFF;
}

.full-height a {
    color: #0079FA;
    text-decoration: underline;
    transition: all 0.2s;
}

a:hover {
    text-decoration: none;
}

.main-container {
    max-width: 100%;
    padding: 0 15px;
    width: calc(700px + 6vw);
}

.main-container p {
    margin-bottom: calc(10px + 2.4vw);
}

.logo-brand {
    margin-top: 1vw;
}

.logo-brand a {
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    cursor: default;
}

.main-page header a {
    color: #000;
    text-decoration: none;
}

.logo-brand span {
    display: inline-block;
    padding-left: calc(5px + 0.6vw);
    font-weight: 800;
    font-size: calc(16px + 0.25vw);
}

.container {
    width: 85%;
}

.header-menu {
    padding: 20px 0;
    background: #fff;
    border-radius: 16px;
    font-weight: bold;
    margin-right: 3%;
}

.header-menu ul {
    padding-right: 1.5vw;
    padding-left: 1.5vw;
}

.header-menu li {
    display: inline-block;
    font-size: 0.8vw;
    padding-left: calc(5px + 0.8vw);
    padding-right: calc(5px + 0.8vw);
}

.main-page {
    position: relative;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left;
}

section {
    position: relative;
    z-index: 1;
}

.semibold {
    font-weight: 600;
}

header {
    position: relative;
    z-index: 9;
    padding-top: calc(20px + 1.2vw);
    padding-bottom: calc(20px + 1.2vw);
}

.content-section h3 {
    margin-top: calc(10px + 1.5vw);
}

.content-section a {
    text-decoration: underline;
    transition: all 0.2s;
}

.underline {
    text-decoration: underline;
}

.content-section a:hover {
    text-decoration: none;
}

.content-page header.scroll {
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0,  0.1);

}

header.scroll .header-menu {
    box-shadow: none;
}

.header-menu a {
    position: relative;
    font-size: calc(13px + 0.2vw);
}

.header-menu a:before {
    content: '';
    position: absolute;
    width: 0;
    height: 6px;
    background: #FB9783;
    border-radius: 5px 5px 0px 0px;
    bottom: -21px;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s;
    opacity: 0;
}
.header-menu a:hover:before {
    width: 100%;
    opacity: 1;
}

.header-menu a.active:before{
    width: 100%;
    opacity: 1;
}

h3 {
    font-weight: bold;
    font-size: calc(16px + 0.3vw);
    margin-bottom: calc(10px + 0.5vw);
}

.content-section {
    padding: 5.4vw 0;
}

* {
    box-sizing: border-box;
}

.content-section .container {
    padding-left: 15px;
    padding-right: 15px;
}

.content-section p {
    margin-bottom: 20px;
}

.content-section h1 {
    font-size: calc(22px + 1.2vw);
    margin-bottom: calc(15px + 0.6vw);
}

strong {
    font-weight: bold;
}

i {
    font-style: italic;
}

table {
    table-layout: fixed;
    border: 1px solid #524FB2;
    border-collapse: collapse;
    margin-top: 35px;
    margin-bottom: 25px;
}

thead td {
    font-weight: bold;
    font-size: calc(15px + 0.35vw);
    padding: 5px 12px;
}

td {
    width: 50%;
    padding: 12px 16px;
    border: 1px solid #DBEEFB;
}

table li {
    margin-bottom: 15px;
}

footer {
    padding: 40px 0;
}

footer ul {
    text-align: center;
}

footer ul li {
    display: inline-block;
    color: #0B0612;
    padding: 0 20px;
}

footer ul li a {
    color: #0B0612;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

footer ul li a:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #FFC933;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.2s;
}
footer ul li a:hover:before {
    opacity: 1;
}

img {
    max-width: 100%;
}

.col3 tr td:first-child{
    width: 15%;
}

.col3 tr td:last-child{
    width: 8%;
}

.content-section li {
    margin-bottom: 20px;
}

.half-img {
    min-height: calc(100vh - 155px);
    display: flex;
    align-items: center;
}

.full-height:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 49%;
    height: 100%;
    background-image: url("../images/main-img.jpg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.half-img__description {
    padding-top: 0.9vw;
    max-width: 71%;
}

.half-img__description p {
    font-weight: 500;
    margin-bottom: 1.3vw;
    font-size: calc(14px + 0.25vw);
}

.half-img__description .title {
    font-weight: bold;
    font-size: calc(18px + 0.4vw);
    margin-bottom: 4px;
}

.contact-page .full-height:after {
    background-image: url(../images/contact-img.jpg);
    background-position: bottom;
}

.contact-page .half-img {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact-page .flex-center {
    width: 100%;
    padding-bottom: 100px;
}

.contact-info {
    padding-top: 1vw;
}

.contact-page h1 {
    font-size: calc(20px + 1.7vw);
}

.content-section ul {
    list-style-type: decimal;
    padding-left: 18px;
    margin-bottom: 1.6vw;
}

.content-section ol {
    list-style-type: disc;
    padding-left: 18px;
}

.content-section {
    font-size: 14px;
}

.content-header {
    background-image: url('../images/header-bg.png');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.medium {
    font-weight: 500;
}

ul.uninstall-list {
    list-style-type: none;
    counter-reset: item;
    padding: 0;
}

.uninstall-list li {
    counter-increment: item;
    margin-top: 30px;
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.uninstall-list li:before {
    counter-increment: li;
    content: counter(item, decimal-leading-zero);
    width: 45px;
    height: 45px;
    background: #A869E3;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 44px;
    margin-right: 10px;
}

.uninstall-list li span {
    width: calc(100% - 55px);
}

@media (max-width: 1450px) {
    .container {
        width: 90%;
    }
    .half-img__description p {
        font-size: calc(13px + 0.25vw);
    }
}

@media screen and (max-width: 1199px) {
    body, .header-menu li {
        font-size: 14px;
    }

}

@media screen and (max-width: 767px) {
    .content-section {
        padding: 50px 0;
    }
    .content-page .header-menu {
        box-shadow: none;
        text-align: center;
    }
    .header-menu {
        width: 100%;
        background: transparent;
    }
    .full-height:after {
        display: none;
    }
    h1 {
        font-size: 25px;
    }

    .half-img__description {
        max-width: 100%;
    }

    .uninstall-list li {
        width: 100%;
    }

}

@media screen and (max-width: 600px) {
    header {
        overflow: hidden;
    }
    .logo-brand {
        width: 100%;
    }
    .logo-brand a {
        justify-content: center;
    }
    .container {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}