:root {
    --white: #ffffff !important;
    --black: #212121 !important;
    --font-title: "Quicksand", sans-serif !important;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
}

html {
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1610px;
}

a,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

body {
    background-color: var(--white);
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

button {
    background: none;
    border: none;
}

p {
    font-size: 16px !important;
    color: var(--black) !important;
    margin-bottom: 5px !important;
    font-weight: 600 !important;
    line-height: 24px;
    font-family: var(--font-title);
    text-align: justify;
}

.section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


.header {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #ececec !important;
}

.logo {
    width: 100%;
    padding: 30px 0;
}

.logo img {
    width: 180px;
    margin-right: 11px;
    margin-left: 0;
}

.policy-title{
    font-size: 40px;
    color: #BFBFBF;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.sub-title{
    font-size: 18px !important;
    color: var(--black) !important;
    margin-bottom: 20px !important;
    font-weight: 900 !important;
    line-height: 26px;
    font-family: var(--font-title);
    text-align: justify;
    margin-bottom: 5px !important;
}

ul, ol{
    margin: 0;
    padding: 0;
}

ol li{
    list-style-type: number;
    font-size: 16px !important;
    color: var(--black) !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    line-height: 24px;
    font-family: var(--font-title);
    text-align: justify;
    margin-bottom: 5px !important;
    margin-left: 15px;
}

.saparetor{
    width: 100%;
    height: 25px;
    content: "";
}

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

    .section {
        width: 100%;
        padding: 30px 0;
    }

    .logo{
        padding: 5px 0;
    }

    .logo img {
        width: 120px;
        margin-right: 11px;
        margin-left: 0;
        margin-bottom: 0 !important;
    } 

    .policy-title{
        font-size: 30px;
    }
}