:root {
    --ktm-color-text: rgb(221, 221, 221);
    --ktm-color-title: #11043A;
    --ktm-color-purple: #6118ED;
    --ktm-color-purple-dark: #230A60;
    --ktm-color-body: #010114;
    --ktm-color-white: #ffffff;
    --ktm-color-primary: #2FF4C0;
    --ktm-color-orange: #fb2b2b;
}

body::-webkit-scrollbar {
    width: 10px !important;
}

body::-webkit-scrollbar-thumb {
    background: var(--ktm-color-purple) !important;
    border-radius: 20px;
}

body::-webkit-scrollbar-track {
    background: var(--ktm-color-purple-dark) !important;
}

* {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    /* font-family: sans-serif; */
}

html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: var(--ktm-color-body);
}

p,
span,
li {
    color: var(--ktm-color-text);
}

strong {
    color: var(--ktm-color-white);
}

/*Hedear style*/
header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    top: 0;
}

.navbar .nav-link,
.navbar-brand {
    color: var(--ktm-color-white);
}

.navbar-brand:hover {
    color: var(--ktm-color-white);
}

.ktm-logo-image {
    width: 150px;
}

.ktm-nav-button {
    background: var(--ktm-color-purple);
    color: var(--ktm-color-white);
}

/*Pre header page Home*/
.ktm-header {
    height: 600px;
    background: var(--ktm-color-purple-dark);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ktm-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ktm-title-h1 {
    color: var(--ktm-color-white);
    font-size: 50px;
    font-weight: bold;
}

.ktm-header-image {
    /* transform: scale(1.6); */
    width: 100%;
    object-fit: cover;
}

/*Button*/
.ktm-custum-button {
    position: relative;
}

.ktm-custum-button>span {
    display: flex;
    width: 140px;
    height: 50px;
    padding: 0px 10px;
}

.ktm-custum-button span:nth-child(2) {
    position: absolute;
    border-radius: 10px;
    transform-origin: center;
    height: 59px;
    width: 145px;
    background-color: var(--ktm-color-orange);
    animation: ktmButtomCustumAnimation 1s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.ktm-button-container {
    margin: 20px 0;
    position: relative;
    margin-left: 10px;
}

@keyframes ktmButtomCustumAnimation {
    0% {
        transform: scale(.6);
        opacity: 0;
    }

    50% {
        opacity: .4;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.ktm-custum-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.ktm-button-link-text {
    align-items: center;
    justify-content: center;
    z-index: 1;
    /* background: var(--ktm-color-purple) !important; */
    color: var(--ktm-color-white);
    font-weight: bold;
    box-shadow: 0px 0px 5px var(--ktm-color-title);
    border-radius: 10px;
    background-color: var(--ktm-color-orange);
    transform: scale(1.2);
}

/*Table style*/
.ktm-table-style {
    width: 100%;
    table-layout: fixed;
    /* Force la répartition égale des colonnes */
    border-collapse: collapse;
    /* Enlève les espaces entre les bordures des cellules */
}

.ktm-table-style thead {
    height: 55px;
    border: 1px solid var(--ktm-color-purple-dark);
    background: var(--ktm-color-purple);
}

.ktm-table-style thead th {
    text-align: center;
    color: var(--ktm-color-white);
    width: 25%;
    /* Ajustez ce pourcentage en fonction du nombre de colonnes */
}

.ktm-table-style tbody tr {
    border-bottom: 1px solid var(--ktm-color-purple);
}

.ktm-table-style tbody td {
    padding: 10px 5px;
    text-align: center;
    color: var(--ktm-color-white);
}

.ktm-table-style tbody td .ktm-custum-button {
    position: relative;
}

.ktm-table-style tbody {
    height: 50px;
}

.ktm-table-style tbody p {
    font-size: 14px;
    text-align: left;
}

.ktm-table-style tbody td:nth-child(1) {
    color: var(--ktm-color-white);
    font-weight: bold;
    text-align: left;
    padding-left: 40px;
}

.ktm-span-sup {
    font-size: 45px;
    font-weight: bold;
    color: var(--ktm-color-purple);
}

.ktm-span-sup sup {
    font-size: 25px;
    color: var(--ktm-color-purple-dark);
}

.ktm-container-image-large {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.ktm-container-image-large img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ktm-title-h2 {
    color: var(--ktm-color-white);
    font-weight: bold;
    font-size: 40px;
    width: 70%;
    text-align: center;
    margin: 45px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ktm-title-h2::after {
    display: inline-block;
    height: 5px;
    width: 10%;
    content: '';
    background: var(--ktm-color-purple);
    margin-top: 15px;
    border-radius: 10px;
}

.ktm-separation-line {
    display: inline-block;
    height: 2px;
    width: 50%;
    background: var(--ktm-color-purple-dark);
    margin: 0 auto;
}

.ktm-list-num {
    padding: 0;
    margin: 0;
}

.ktm-list-num li {
    list-style-type: none;
    margin-bottom: 15px;
    color: var(--ktm-color-white);
}

.ktm-link {
    color: var(--ktm-color-primary);
    cursor: pointer;
    text-decoration: none;
}

.ktm-link:hover {
    color: var(--ktm-color-primary);
}

.ktm-top-content {
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.ktm-top-style {
    font-weight: bold;
    font-size: 30px;
    background: var(--ktm-color-orange);
    padding: 10px;
    border-radius: 10px;
    color: var(--ktm-color-white);
    display: inline-block;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ktm-list-point {
    padding: 0;
    margin: 0;
}

.ktm-list-point li {
    list-style-type: none;
    margin-bottom: 8px;
}

.ktm-list-point>li>ul {
    margin: 20px 0;
}

.ktm-list-point>li>ul>li {
    color: var(--ktm-color-white);
}

.fixed-navbar {
    background: var(--ktm-color-body);
    position: fixed;
    transition: all .5s;
}

/*Custum grid*/
.ktm-table-grid-2 {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ktm-color-purple);
    padding: 0;
    margin: 0 auto;
    width: 90%;
}

.ktm-table-grid-2>div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.ktm-grid-table-header {
    height: 55px;
}

.ktm-grid-table-header>div {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ktm-color-purple);
}

.ktm-grid-table-header>div>span {
    color: var(--ktm-color-white);
    font-weight: bold;
}

.ktm-grid-table-body ul {
    padding: 0;
    margin: 0;
}

/* .ktm-grid-table-body {
    padding: 0 20px;
} */

.ktm-grid-table-body>ul>li {
    list-style-type: none;
    color: var(--ktm-color-white);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--ktm-color-purple);
    height: 60px;
    padding-left: 10px;
}

.ktm-grid-table-body>ul>li:last-child {
    border-bottom: none;
}

.ktm-grid-svg {
    fill: var(--ktm-color-orange);
}


.ktm-grid-table-body ul:nth-child(1) {
    border-right: 1px solid var(--ktm-color-purple);
}

footer {
    background: var(--ktm-color-title);
    margin-top: 40px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer a {
    color: var(--ktm-color-white);
    text-decoration: none;
}

footer a:hover {
    color: var(--ktm-color-primary);
}

/*Table version finale*/
.ktm-grid-table-body>div:nth-child(1) {
    border-right: 1px solid var(--ktm-color-purple);
}

.ktm-grid-table-body .ktm-grid-table-header>div {
    height: 55px !important;
}

.ktm-grid-table-body>div>ul {
    padding: 0;
    margin: 0;
}

.ktm-grid-table-body>div>ul>li {
    list-style-type: none;
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.ktm-grid-div-content {
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
}

main>section>.container {
    width: 80%;
    margin: 0 auto;
}

.ktm-sroll-top {
    background: var(--ktm-color-purple);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 50px;
    bottom: 50px;
    cursor: pointer;
}

.ktm-list-tab-bloc {
    border: 1px solid var(--ktm-color-purple);
    margin: 25px 0;
}

.ktm-list-tab-bloc ul {
    padding: 0 10px;
    margin: 0;
}

.ktm-list-tab-bloc ul li {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 55px;
    border-bottom: 1px solid var(--ktm-color-purple);
    padding: 10px 0;
}

.ktm-list-tab-bloc ul li:nth-last-child(1) {
    border-bottom: none;
}

.ktm-list-text-bloc {
    flex-direction: column;
    justify-content: start;
    align-items: flex-start !important;
}

.ktm-list-tab-bloc ul li .ktm-custum-button {
    position: relative;
}

.ktm-list-tab-title {
    background: var(--ktm-color-purple);
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--ktm-color-white);
    padding: 0px 15px;
}

.ktm-grid-inner-ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ktm-grid-inner-ul>li {
    margin-bottom: 25px;
}

.btn a {
    color: var(--ktm-color-white) !important;
    text-decoration: none;
}

.ktm-button-container>a {
    text-decoration: none;
}


.ktm-laguage-container {
    margin-left: 10px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    display: inline-block;
}

.ktm-lang-choices {
    position: absolute;
    height: auto;
    flex-direction: column;
    justify-content: center;
    width: 45px;
    align-items: center;
    top: 32px;
    cursor: pointer;
    width: 30px;
    background: rgb(239, 239, 239);
    padding: 4px;
}

.ktm-lang-choices img,
.ktm-lang-active img {
    width: 100%;
}

.ktm-lang-choices span {
    margin: 1px 0;
}

.ktm-lang-active {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    overflow: hidden;
    justify-content: center;
    cursor: pointer;
    background: var(--ktm-color-white);
}

.hentai-cookies-container {
    min-height: 100vh;
    padding-top: 160px;
    width: 55%;
    margin: 0 auto;
    color: var(--ktm-color-white);
    padding-bottom: 60px;
}

.hentai-cookies-container h3,
.hentai-cookies-container h2 {
    margin-bottom: 25px;
    color: var(--ktm-color-primary);
}

.hentai-cookies-container h2+div,
.hentai-cookies-container h3+div {
    margin-bottom: 40px;
}

.hentai-cookies-container ul {
    padding: 0;
    list-style-type: none;
}

.hentai-cookies-container ul li strong {
    display: block;
    color: var(--ktm-color-purple);
}

.hentai-cookies-container ul li a {
    text-decoration: none;
    color: var(--ktm-color-purple);
}

.text-muted {
    color: var(--ktm-color-orange) !important;
}

.form-group label {
    color: var(--ktm-color-white);
    margin-bottom: 10px;
    margin-top: 20px;
}

.hentai-contact textarea,
.hentai-contact input {
    background: var(--ktm-color-purple-dark);
    padding: 15px 10px;
    border: 1px solid var(--ktm-color-purple);
    color: var(--ktm-color-white) !important;

}

.form-control:focus {
    background: var(--ktm-color-title);
}

.hentai-contact textarea::placeholder,
.hentai-contact input::placeholder {
    color: var(--ktm-color-primary) !important;
}

.hentai-form-alert {
    background: #f42f497c;
    padding: 10px;
    border-radius: 10px;
    width: 85%;
    margin: 20px auto;
    text-align: center;
    font-weight: bold;
    color: var(--ktm-color-white);
    border: 1px solid var(--ktm-color-orange);
}

.hentai-form-alert-success {
    background: #2ff4c07c;
    padding: 10px;
    border-radius: 10px;
    width: 85%;
    margin: 20px auto;
    text-align: center;
    font-weight: bold;
    color: var(--ktm-color-white);
    border: 1px solid var(--ktm-color-primary);
}

.hentai-contact-button {
    background: var(--ktm-color-orange);
    border: none;
    padding: 15px;
    color: var(--ktm-color-white);
    margin-top: 20px;
    width: 150px;
    border-radius: 10px;
}

.hentai-contact .container {
    border-top: 1px solid var(--ktm-color-purple-dark);
    padding: 65px 0;
    width: 60%;
}

.gen-contact-container {
    margin-top: 50px;
}

.gen-contact-container h2 {
    color: var(--ktm-color-white);
    margin-bottom: 40px;
    margin-left: 35px;
}

.gen-contact-button {
    height: 59px;
    width: 145px;
    background-color: var(--ktm-color-orange);
    border: none;
    color: var(--ktm-color-white);
    border-radius: 10px;
}

.gen-contact-container textarea,
.gen-contact-container input {
    background: var(--ktm-color-purple);
    padding: 15px 10px;
    border: none;
    border-radius: 5px;
    color: var(--ktm-color-white) !important;
}

::placeholder {
    color: var(--ktm-color-primary) !important;
}

label {
    font-weight: bold;
}

.hentai-contact-container {
    background: var(--ktm-color-purple-dark);
    width: 95%;
    border-radius: 10px;
    overflow: hidden;
}


.hantai-contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hantai-contact-image>img {
    width: 140%;
}

.hentai-form-main {
    min-height: 80vh;
    margin-top: 60px;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.hentai-form-main h2{
    margin-bottom: 60px;
    color: var(--ktm-color-white);
    width: 60%;
    text-align: center;
}