*,
p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: mansropeRegular;
}

html,
body {
    font-size: 62.5%;
    height: 100%;
    background-color: var(--background-color);
    width: 100%;
}


#main {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);

}

#main nav {
    height: 11vh;
    width: 100%;
    padding: 2rem;
    background-color: var(--white-color);
}

nav .logo {
    height: 100%;
    width: 15%;
}

.logo img {
    height: 100%;
    width: 100%;
}

#main #terms-condition-content {
    border-top: 1px solid transparent;
    padding: 4rem 5rem 5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#terms-condition-content .content-box {
    width: 62%;
    background-color: var(--white-color);
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(34, 41, 47, .1);
}

.content-box .heading {
    padding: 1rem;
    border-bottom: .1px solid rgb(229, 232, 232);
}

.content-box .heading h1 {
    text-align: center;
    font-family: mansropeRegular;
    font-size: 2rem;
    color: var(--other-page-color);
    opacity: 0.9;
    margin: 1rem 0;
}

.content-box .terms-points {
    padding: 4rem 2rem;

}

.points h1 {
    font-family: mansropeRegular;
    font-size: 1.8rem;
    color: var(--other-page-color);
    opacity: 0.9;
    margin: 1.5rem 0;
}

.points p {
    opacity: 0.8;
    font-family: mansropeMedium;
    font-size: 1.6rem;
    margin-bottom: .8rem;
    color: var(--other-page-color);
}


.points ul {
    font-family: mansropeMedium;
    font-size: 1.6rem;
    margin-bottom: .5rem;
    color: var(--other-page-color);
    list-style-type: none;
}

.points ol {
    list-style-type: lower-alpha;
    font-family: mansropeMedium;
    font-size: 1.6rem;
    margin-bottom: .5rem;
    color: var(--other-page-color);
    margin-left: 3rem;
}

@media screen and (max-width: 768px) {

    html,
    body {
        font-size: 55%;
    }
    nav .logo {
        height: 100%;
        width: 50%;
    }
    #main #terms-condition-content {
        width: 100% !important;
        padding: 2rem 0vw;
       margin-top: 4vh;
    }
    
    #terms-condition-content .content-box {
        width: 100%;
    }
    .points p {
        margin-bottom: 1rem;
    }
}