/* Start Variables */
:root {
    --main-color: #d11e38;
    --white-color: white;
    --secender-color: #161616;
    --text-color: #444444;
}
/* End Variables */

/* Start header */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 80px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 10;
    transition: background-color 0.4s ease-in-out;
}

header.scrolled {
    background-color: white;
    -moz-box-shadow: 0 4px 4px var(--main-color);
    -webkit-box-shadow: 0 4px 4px var(--main-color);
    box-shadow: 0 2px 5px var(--main-color);
    opacity: 0.98;
}

.section-terms {
    max-width: 100%;
    height: auto;
    background-color: var(--secender-color);
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-bar ul li a {
    color: black;
}

.nav-bar ul li a:hover {
    color: var(--main-color);
}

.nav-bar ul li a.active {
    color: var(--main-color);
}

.section-terms .terms {
    margin-top: 80px;
    padding: 90px 0px;
}

.section-terms .terms h1 {
    color: white;
    font-size: 45px;
}

.section-conditions {
    max-width: 100%;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.section-conditions .continer {
    border-width: 1px;
    border-color: #fff;
    padding-top: 13px;
    padding-right: 32px;
    padding-bottom: 13px;
    padding-left: 35px;
    box-shadow: 0px 3px 17px -5px rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 65%;
    margin-bottom: 50px;
}

.section-conditions .continer .p-terms {
    padding-bottom: 1em;
}

.section-conditions .continer .p-terms p {
    line-height: 25px;
}

.section-conditions .continer .titel-terms {
    padding-bottom: 1em;
}

.section-conditions .continer .titel-terms h3 {
    font-size: 25px;
    font-weight: 500;
}

/* Start responsive */

@media (min-width: 767px) and (max-width: 1024px){

    .section-conditions .continer {
        max-width: 100%;
    }
}

@media (min-width: 411px) and (max-width: 767px){
    .section-terms .terms h1 {
        color: white;
        font-size: 30px;
        text-align: center;
    }

    .section-conditions .continer {
        max-width: 100%;
    }
}

@media (min-width: 317px) and (max-width: 391px){
    .section-terms .terms h1 {
        color: white;
        font-size: 30px;
        text-align: center;
    }

    .section-conditions .continer {
        max-width: 100%;
    }
}

/* Pixal 5 */
@media (min-width: 392px) and (max-width: 410px){
    .section-terms .terms h1 {
        color: white;
        font-size: 30px;
        text-align: center;
    }

    .section-conditions .continer {
        max-width: 100%;
    }
}