.section__TyCs {
    padding: 40px 20px;
}

.TyCs {
    max-width: 1150px;
    color: #4d4d4d;
    margin: 0 auto;
}

.TyCs__title {
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    line-height: 1.2;
    margin: 0 0 15px;
}

h2.TyCs__title a:hover {
    color: var(--blue);
}

.TyC {
    width: 100%;
    background: #ffffff;
    padding: 20px 15px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .1);
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

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

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

.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;
    font-size: 14px;
}

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

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