.section__TyCs{
    background-color: var(--darkBlue);
}
.TyCs {
    margin: 0 auto;
    max-width: 1170px;
    color: #86888C;
}

.TyCs__title {
    font-size: 21px;
    font-weight: 300;
    text-align: left;
    line-height: 1.2;
    margin: 0 0 30px;
    margin-top: 20px;
    padding: 10px;
}

.TyC {
    width: 100%;
    background: transparent;
    padding: 20px 15px;
    margin-top: 10px;
    border-bottom: .5px solid #D3D4D3;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.TyC__arrow {
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #86888C;
    border-left: 1px solid #86888C;
    margin-right: 5px;
    display: inline-block;
    transform: rotate(226deg);
    transition: all .5s;
}

.TyC.active .TyC__arrow {
    transform: rotate(316deg);
}

.TyC__question {
    width: calc(100% - 40px);
    font-size: 17px;
    font-weight: normal;
    margin: 0;
}

.TyC__answer {
    padding-top: 25px;
    display: none;
    text-align: left;
}

.TyC__answer p,
.TyC__answer li {
    font-size: 16px;
    margin: 0 0 10px;
}

.TyC__answer li {
    list-style: none;
    position: relative;
    padding-left: 15px;
}

.TyC__answer li::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #019df4;
    border-radius: 50px;
}

.TyC__answer a {
    color: #00A9E0;
}

.section__by{
    max-width: 1200px;
    margin: 20px auto;
    padding: 5px;
}

@media only screen and (min-width: 768px) {
    .section__TyCs {
        margin: 0 auto;
        padding: 0px 20px 40px;
    }
    .TyCs__title {
        font-size: 24px;
    }
    .TyCs__title br {
        display: none;
    }
    .TyC {
        padding: 40px 30px;
    }
    .TyC__question {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1024px) {
    .TyCs__title {
        font-size: 28px;
    }
}