body {
    max-width: 720px;
    margin: auto;
    padding: 80px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

:root {
    color-scheme: light dark;
}

@media screen and (max-width: 900px) {
    body {
        padding: 30px;
    }
}

@media screen and (max-width: 442px) {
    .titletab td {
        display: inline;
    }

}

@media screen and (min-width: 598px) {
    .next {
        margin-right: -48px;
    }

    .prev {
        margin-left: -48px;
    }
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

.button-35 {
    display: inline-block;
    padding: 0.5em 1.7em;
    margin: 0 0.5em 0.5em 0;
    border: 0.16em solid;
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    text-shadow: 0 0.04em 0.04em rgba(255, 255, 255, 0.253);
    text-align: center;
    transition: all 0.2s;
    cursor: pointer;
    font-size: 15px;
}

a.button-35 {
    text-decoration: none;
    color: inherit;
}

.button-35:hover {
    background: #ff1493;
    color: white;
    border-color: transparent;
    box-shadow: 0 0 0 2px currentColor
}

a {
    color: #ff1493;
    text-decoration: none;
}

a:hover:not(.button-35) {
    text-decoration: none;
    border-bottom: 1px solid;
}

.title-12 {
    margin-bottom: 3px;
}

.mySlides {
    display: none
}

.mySlides img {
    cursor: pointer;
    vertical-align: middle;
}

.slideshow-container {
    max-width: 500px;
    position: relative;
    margin: auto;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: #ff1493;
    color: white;
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 0.8s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

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

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

footer {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 8px;
}

.start23 {
    margin-top: 20px;
}

#hidden_iframe {
    display: none;
}

hr {
    border: 1.5px solid #ddd
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid deeppink;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    display: none;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}