@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

html,
body {
    font-family: 'Montserrat', sans-serif;
    display: block;
    float: left;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    padding: 5% 0;
    margin: 0;
}

.policy {
    display: block;
    float: left;
    width: 700px;
    height: auto;
    padding: 0;
    margin: 0;
}

a {
    color: #0d6b68;
}

h2 {
    color: #070c1f;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 29px;
}

p {
    color: #070c1f;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 35px;
    text-align: justify;
    text-justify: inter-word;
}

span {
    display: block;
    color: #83858f;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 26px;
}

::marker {
    color: #0d6b68;
    font-size: 1.2em;
}

ul {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 0 0 0 70px;
    margin: 0;
}

ul li {
    color: #070c1f;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 35px;
    text-align: justify;
    text-justify: inter-word;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    float: left;
    width: 100%;
    height: auto;
}

footer div {
    display: block;
    float: left;
    width: auto;
    height: auto;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 35px;
}

footer div a {
    margin: 0 10px;
}

footer p {
    margin: 0;
}

footer p + p {
    margin-top: 35px;
}

@media only screen and (max-width: 1000px) {
    .content {
        padding: 10% 5%;
    }

   .policy {
        width: 100%;
   }

   span {
        margin-bottom: 10px;
   }

   h2 {
        font-size: 26px;
        line-height: 35px;
        margin-bottom: 29px;
   }

   p {
        font-size: 16px;
        line-height: 30px;
   }

   ul {
        padding: 0 0 0 35px;
   }

   ul li {
        font-size: 16px;
        line-height: 30px;
   }

    footer div {
        font-size: 16px;
    }
}