body {
    background: var(--White);
    font-size: 16px;
    font-weight: 400;
    font-family: acumin-pro-wide, sans-serif;
    font-style: normal;
    color: var(--Black);
}

section {
    padding: 100px 0;
}

/* color */
:root {
    --Black: #222435;
    --White: #ffffff;
    --Red: #E30613;
    --Violet: #82368C;
    --Grey: #F5F5F5
}

/* font */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: normal;
}

h1 {
    font-size: 60px;
    font-weight: 600;
}

h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
}

h3 {
    font-size: 22px;
    font-weight: 400;
}

p {
    font-size: 15px;
    font-weight: 300;
    line-height: 23px;
    margin-bottom: 0;
}

p b,
p strong {
    font-weight: 700;
}

hr {
    color: #dee2e6;
    opacity: 1;
}

ul {
    padding: 0;
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
}

ul li {
    position: relative;
    list-style: none;
    padding-left: 25px;
    font-size: 15px;
    font-weight: 300;
}

/* button */
.btn-rainbow-underline {
    padding: 0;
    border: none;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    text-decoration: underline;
    background: linear-gradient(270deg, #E40F18 23.11%, #82368C 100%);
    background-clip: text;
    color: var(--White);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-rainbow {
    border-radius: 50px;
    padding: 10px 30px 14px 30px;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    background: linear-gradient(270deg, #E40F18 23.11%, #82368C 100%);
    color: var(--White);
    display: inline-flex;
    border: 0;
    align-items: center;
    gap: 25px;
    width: fit-content;
}

.btn-red {
    background-color: var(--Red);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    color: var(--White);
    padding: 10px 30px 14px 30px;
    border-radius: 50px;
    display: inline-flex;
    border: 0;
    align-items: center;
    gap: 25px;
    width: fit-content;
}

.btn-violet {
    background-color: var(--Violet);
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    color: var(--White);
    padding: 10px 30px 14px 30px;
    border-radius: 50px;
    display: inline-flex;
    border: 0;
    align-items: center;
    gap: 25px;
    width: fit-content;
}

.btn-red img,
.btn-rainbow img,
.btn-violet img {
    width: 15px !important;
    height: 15px !important;
}

.btn-rainbow:hover,
.btn-violet:hover,
.btn-red:hover {
    background: var(--Black);
    background-color: var(--Black);
    color: var(--White);
}

.btn-plus {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--Red);
    border-radius: 50%;
    color: var(--White);
    font-size: 22px;
    font-weight: 500;
    line-height: 0;
    aspect-ratio: 1/1;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
}

.btn-plus span {
    color: var(--White) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 0 !important;
}

/* form */
.search {
    height: auto;
    width: auto;
    border-radius: 30px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.50);
    display: inline-block;
}

.search.auto {
    display: block;
    margin-bottom: 50px;
}

.search.auto .form-control {
    padding: 17px 30px;
}

.form-control:focus,
.form-check-input:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
}

.form-check-input:checked {
    background-color: var(--Red);
    border-color: var(--Red);
}

/* header */
header {
    position: relative;
    z-index: 100;
}

header .fix {
    position: fixed;
    width: 100%;
}

header .bar {
    z-index: 10;
    padding: 7px 0;
    background-color: var(--Red);
    color: var(--White);
}

header .bar .container {
    position: relative;
    display: flex;
    align-items: center;
}

header .bar-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    white-space: nowrap;
    font-size: 22px;
}

header .phone {
    padding: 0;
    display: flex;
    gap: 10px;
    margin: 0 auto 0 0;
}

header .phone img {
    width: 20px;
    height: 20px;
}

header .phone span {
    font-size: 17px;
}

header nav.navbar {
    background-color: rgba(34, 36, 53, 0.65);
    backdrop-filter: blur(10px);
    padding: 14px 0;
}

header nav.navbar img.logo {
    aspect-ratio: 215/58;
    width: 215px;
    object-fit: contain;
}

header nav.navbar ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin: 0;
}

header nav.navbar ul li {
    color: var(--White);
    font-size: 17px;
    padding: 0;
}

header nav.navbar ul li.active {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

header nav.navbar ul li.user a img {
    aspect-ratio: 22/30;
    width: 22px;
    object-fit: contain;
}


/* navbar mobile */

header .nav-mobile img.logo {
    aspect-ratio: 215/58;
    width: 130px;
    object-fit: contain;
}

header .nav-mobile a.language {
    font-size: 17px;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;
    color: var(--White);
}

.responsive-mobile-menu img.logo {
    aspect-ratio: 130/36;
    width: 130px;
    object-fit: contain;
}

.responsive-mobile-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.responsive-mobile-menu ul li {
    color: var(--White);
    font-size: 25px;
    font-weight: 300;
    line-height: normal;
    padding: 0;
}

.responsive-mobile-menu ul li a {
    display: block;
    text-decoration: none;
}

.responsive-mobile-menu .reserved {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-top: 90px;
    margin-bottom: 30px;
}

.responsive-mobile-menu .reserved img {
    width: 25px;
}

.responsive-mobile-menu .reserved .title {
    color: var(--White);
    font-size: 20px;
    font-weight: 382;
}

.responsive-mobile-menu p {
    color: var(--White);
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
}

.responsive-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(34, 36, 53, 1) 100%);
    backdrop-filter: blur(5px);
    padding: 20px;
    z-index: 999999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: all .3s ease-in;
}

.responsive-mobile-menu.active {
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition: all .3s ease-in-out;
}

.close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu img {
    width: 20px;
}

.open-menu {
    display: block;
    width: 25px;
    height: 25px;
    background-image: url("../img/hamburger.png");
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(34, 36, 53, 0.65);
    backdrop-filter: blur(10px);
    gap: 30px;
}

/* footer */
footer {
    background-image: url("../img/footer.jpg");
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 90px 0 0 0;
}

footer img.logo {
    aspect-ratio: 1/1;
    width: 86px;
    object-fit: contain;
    margin-bottom: 30px;
}

footer .big p {
    color: var(--Black);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: normal;
}

footer .big p span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

footer ul.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

footer ul.social li {
    padding: 0;
}

footer ul.social li a img {
    aspect-ratio: 1/1;
    width: 25px;
    height: 25px;
}

footer p {
    color: var(--Black);
    font-size: 15px;
    line-height: 20px;
}

footer .title {
    color: var(--Red);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

footer ul li {
    padding: 0;
}

footer ul li b {
    font-weight: 700;
}

footer .bar {
    background: linear-gradient(90deg, #E40F18 0%, #82368C 100%);
    padding: 5px 0;
    margin-top: 90px;
}

footer .bar p {
    color: var(--White);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

/* carousel marchi */

.carousel_marchi img {
    aspect-ratio: 1/1;
    width: 70px !important;
    object-fit: contain;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
}

.carousel_marchi .title {
    text-align: center;
    color: var(--White);

}

/* section-1 */
.section-1 {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding: 70px 0;
}

.section-1 .shadow-video {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.section-1 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section-1 video.desktop {
    display: block;
}

.section-1 video.tablet,
.section-1 video.mobile {
    display: none;
}

.section-1 .text {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
}

.section-1 h1 {
    color: var(--White);
    margin-bottom: 30px;
    font-size: 55px;
}

.section-1 h1 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-1 h2 {
    color: var(--White);
    margin-bottom: 16px;
}

.section-1 p {
    color: var(--White);
}

.section-1 .btn-red.desktop {
    display: inline-flex;
}

.section-1 .btn-red.mobile {
    display: none;
}

/* section-2 */
.section-2 {
    background: linear-gradient(181deg, #000 0.49%, #222435 118.7%);
}

.section-2 h2 {
    color: var(--White);
    text-align: center;
    margin-bottom: 10px;
}

.section-2 .card {
    border-radius: 15px;
    background-color: rgba(34, 36, 53, 0.5);
    backdrop-filter: blur(87px);
    padding: 20px 100px 20px 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 70px;
    position: relative;
    border: 0;
    width: 100%;
}

.section-2 .card .card-body {
    padding: 0;
}

.section-2 .card img {
    width: 330px;
    aspect-ratio: 168/115;
}

.section-2 .card h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-2 .card h4 {
    color: var(--Red);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
}

.section-2 .card p {
    color: var(--White);
}

.section-2 .card:hover .btn-plus {
    opacity: 1;
}

/* section-3 */
.section-3 {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
}

.section-3 .image {
    right: 0;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 947/743;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 700px;
}

.section-3 h2 {
    margin-bottom: 15px;
}

.section-3 h3 {
    color: var(--Red);
    margin-bottom: 20px;
}

.section-3 p {
    margin-bottom: 35px;
}

.section-3 img.tablet {
    display: none;
}

/* section-4 */
.section-4 {
    background-image: url("../img/section-4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-4 .card {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    border-radius: 15px;
    background-color: rgba(34, 36, 53, 0.5);
    backdrop-filter: blur(15px);
    padding: 35px;
    position: relative;
    width: 100%;
    border: 0;
    margin-top: 20px;
}

.section-4 .card.v2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 100px;
}

.section-4 .card.v3 {
    background-color: transparent;
    backdrop-filter: unset;
    background-position: top left;
    background-size: cover;
}

.section-4 .card.v4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.section-4 .card.v4 .card-body {
    padding: 0;
}

.section-4 .card.v5 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section-4 .card.v1 h2 {
    color: var(--White);
    margin-bottom: 50px;
}

.section-4 .card.v1 h3 {
    color: var(--Red);
}

.section-4 .card.v2 h2 {
    color: var(--White);
}

.section-4 .card.v2 .number {
    color: var(--Red);
    font-size: 65px;
    font-weight: 600;
}

.section-4 .card.v2 .span {
    color: var(--Red);
    font-size: 30px;
    font-weight: 300;
}

.section-4 .card.v2 p {
    color: var(--White);
}

.section-4 .card .btn-plus {
    opacity: 1;
}

.section-4 .card.v3 p {
    color: var(--White);
    margin-top: auto;
    font-weight: 500;
    font-size: 22px;
    line-height: normal;
}

.section-4 .card.v4 h2 {
    color: var(--White);
    margin-bottom: 20px;
}

.section-4 .card.v4 p {
    color: var(--White);
    margin-bottom: 35px;
}

.section-4 .card.v4 img {
    aspect-ratio: 420/265;
    width: 420px;
    object-fit: contain;
}

.section-4 .card.v5 h2 {
    color: var(--White);
}

.section-4 .card.v5 h2 span {
    color: var(--Red);
    font-weight: 600;
}

.section-4 .card.v5 h2 b {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-4 .card.v5 .number {
    color: var(--White);
    font-size: 95px;
    font-weight: 600;
    line-height: normal;
}

.section-4 .card.v5 .span {
    color: var(--White);
    font-size: 30px;
    font-weight: 300;
}

/* section-5 */
.section-5 {
    background-image: url("../img/section-5.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.section-5 .title {
    margin: auto 0;
}

.section-5 h2 {
    font-size: 65px;
    font-weight: 700;
    line-height: 75px;
    margin-bottom: 20px;
}

.section-5 h2 span {
    color: var(--Red);
}

.section-5 .h3 p {
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-5 .card {
    filter: drop-shadow(0 0 39.4px rgba(0, 0, 0, 0.10));
    padding: 25px 20px;
    border-radius: 15px;
}

.section-5 .card.violet {
    border: 1px solid var(--Violet);
}

.section-5 .card.red {
    border: 1px solid var(--Red);
    position: relative;
}

.section-5 .card .tag {
    position: absolute;
    border-radius: 20px;
    border: 1px solid var(--Red);
    background-color: var(--Red);
    backdrop-filter: blur(10px);
    color: var(--White);
    font-size: 15px;
    font-weight: 300;
    padding: 3px 15px;
    top: -17px;
    right: 20px;
}

.section-5 .card h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.section-5 .card .colored p {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
}

.section-5 .card.violet .colored p {
    color: var(--Violet);
}

.section-5 .card.red .colored p {
    color: var(--Red);
}

.section-5 .card .colored p strong,
.section-5 .card .colored p b {
    font-weight: 600;
}

.section-5 .card .number {
    font-size: 75px;
    font-weight: 600;
    line-height: 100px;
}

.section-5 .card .month {
    font-size: 30px;
    font-weight: 300;
}

.section-5 .card.violet .month {
    color: var(--Violet);
}

.section-5 .card.red .month {
    color: var(--Red);
}

.section-5 .card a {
    text-align: center;
    margin: 10px auto 25px;
    width: 100%;
    justify-content: center;
}

.section-5 .card .title {
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 8px;
}

.section-5 .card ul {
    margin: 0;
    padding: 0;
    gap: 0;
}

.section-5 .card ul li {
    padding-left: 15px;
    position: relative;
    font-size: 14px;
}

.section-5 .card ul li:before {
    content: "";
    background-image: url("../img/check.png");
    width: 10px;
    height: 7px;
    position: absolute;
    left: 0;
    top: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-5 .card .box {
    border-radius: 10px;
    background: linear-gradient(94deg, rgba(228, 15, 24, 0.27) 10.04%, rgba(130, 54, 140, 0.27) 92.82%);
    margin-bottom: 20px;
    padding: 15px;
}

.section-5 .card .box .title {
    color: var(--Red);
}

.section-5 .card .box ul li:before {
    content: "";
    background-image: url("../img/check_red.png");
    width: 10px;
    height: 7px;
    position: absolute;
    left: 0;
    top: 8px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-5 .card p {
    font-size: 13px;
    line-height: 18px;
}

/* section-6 */
.section-6 {
    background-image: url("../img/section-6.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.section-6 h2 {
    color: var(--White);
    margin-bottom: 60px;
}

.section-6 h3 {
    color: var(--White);
    margin-bottom: 20px;
}

.section-6 h3 span {
    color: var(--Red);
}

.section-6 p {
    color: var(--White);
    margin-bottom: 75px;
}

.section-6 img {
    width: 100%;
}

.section-6 .box {
    background-image: url("../img/box-section-6.png");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    border-radius: 15px;
    margin-top: 120px;
    padding: 40px;
}

.section-6 .box h2 {
    text-align: center;
}

/* section-7 */
.section-7 {
    background-image: url("../img/section-7.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 200px;
    color: var(--White);
}

.section-7 h1 span {
    color: var(--Red);
}

.section-7 img {
    aspect-ratio: 55/70;
    width: 70px;
    object-fit: contain;
    margin-bottom: 15px;
}

.section-7 .status {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.section-7 .status .title {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.section-7 .status svg {
    width: 28px;
    height: 28px;
}

.section-7 .status .title.active {
    color: var(--Red);
}

.section-7 .filter {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-top: 50px;
}

.section-7 .filter button {
    color: var(--White);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.section-7 .filter button.active {
    font-weight: 600;
}

.section-7 .filter .title_filter {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.section-7 hr {
    margin: 25px 0 60px 0;
}

.section-7 .cars_group {
    margin-top: 10px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.section-7 .row.cars_group {
    margin-top: 0;
    gap: normal;
    margin-bottom: 0;
}

.section-7 .cars_group .btn.marca .title {
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin-top: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
}

.section-7 .btn.marca:hover .title {
    color: var(--Red);
}

.section-7 .cars_group .btn.model {
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: var(--White);
    border: 1px solid var(--White);
    padding: 15px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
    transition: all 0.3s ease-in-out !important;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 5px 0;
    width: 100%;
    flex-direction: column;
}

.section-7 .cars_group .btn.model:hover {
    color: var(--Red);
}

.section-7 .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
}

.section-7 .cars_group img,
.section-7 .car_selected img {
    aspect-ratio: 1/1;
    width: 70px;
    object-fit: contain;
    margin-bottom: 10px;
}

.section-7 .car_selected .title {
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
}

.section-7 .car_selected .model {
    color: var(--Red);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    margin-top: 10px;
}


/* section-8 */
.section-8 {
    background-color: transparent;
    background-image: url("../img/section-8.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.section-8 h2 {
    color: var(--White);
    font-size: 70px;
    font-weight: 700;
    line-height: 80px;
    margin-bottom: 70px;
}

.section-8 h2 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-8 h2 b,
.section-8 h2 strong {
    color: var(--Red);
}

.section-8 .card {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 25px;
    width: 100%;
    background-color: transparent;
    border: 0;
    border-radius: 15px;
}

.section-8 .card.v1 {
    background-position: right bottom;
    backdrop-filter: blur(87px);
}

.section-8 .card.v2 {
    background-position: top left;
    background-color: transparent;
}

.section-8 .card h3 {
    color: var(--Red);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-8 .card h3 span {
    font-size: 30px;
    font-weight: 300;
}

.section-8 .card h4 {
    color: var(--White);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 40px;
}

.section-8 p {
    color: var(--White);
    margin-top: auto;
}

.section-8 .btn-red {
    margin-top: auto;
    margin-left: auto;
}

/* section-9 */
.section-9 {
    background: linear-gradient(180deg, #222435 0%, #000 120%);
}

.section-9 h2 {
    color: var(--White);
    margin-bottom: 100px;
    text-align: center;
}

.section-9 h2 span {
    color: var(--Red);
}

.section-9 h3 {
    color: var(--White);
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
}

.section-9 h3 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-9 p {
    color: var(--White);
}

.section-9 .icons {
    justify-content: center;
    margin-top: 100px;
    text-align: center;
}

.section-9 .icons img {
    aspect-ratio: 1/1;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.section-9 .icons p {
    color: var(--White);
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
}

/* section-10 */
.section-10 {
    background-image: url("../img/section-10.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 200px 0;
}

.section-10 h2 {
    color: var(--White);
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
}

.section-10 h2 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-10 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-10 p {
    color: var(--White);
    margin-bottom: 50px;
}

.section-10 h4 {
    color: var(--Red);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-10 ul {
    margin: 0;
    padding: 0;
    gap: 15px;
}

.section-10 ul li {
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
    padding-left: 25px;
    position: relative;
    color: var(--White);
}

.section-10 ul li:before {
    content: "";
    background-image: url("../img/plus-red.png");
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 9px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-10 img {
    display: none;
}

/* section-11 */
.section-11 {
    background-image: url("../img/section-11.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 200px 0;
}

.section-11 h1 {
    color: var(--White);
    margin-bottom: 20px;
}

.section-11 h2 {
    color: var(--White);
    margin-bottom: 40px;
}

.section-11 img {
    width: 650px;
    aspect-ratio: 1950 / 1354;
    margin-bottom: 50px;
    object-fit: contain;
}

.section-11 h3 {
    color: var(--Red);
    margin-bottom: 20px;
}

.section-11 p {
    color: var(--White);
}

/* section-12 */
.section-12 {
    background-image: url("../img/section-12.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.section-12 h2 {
    color: var(--White);
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 75px;
}

.section-12 h2 span {
    color: var(--Red);
}

.section-12 img {
    aspect-ratio: 688/277;
    width: 680px;
    object-fit: contain;
    object-position: left;
}

.section-12 h3 {
    color: var(--White);
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-12 p {
    color: var(--White);
    margin-bottom: 25px;
}

.section-12 .box {
    background-image: url("../img/box-section-12.png");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 30px 0 30px 70px;
}

.section-12 ul {
    padding: 0;
    margin: 0;
    gap: 15px;
}

.section-12 ul li:before {
    content: "";
    background-image: url("../img/plus-red.png");
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 9px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-12 ul li p {
    margin: 0;
    font-size: 16px;
}

.section-12 ul li {
    padding-left: 35px;
}

.section-12 .title {
    color: var(--Red);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

/* section-13 */
.section-13 {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #000 13.82%, #222435 126.07%);
}

.section-13 .image {
    right: 0;
    position: absolute;
    top: 0;
    width: 50%;
    z-index: 0;
    aspect-ratio: 947/743;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 700px;
}

.section-13 h2 {
    color: var(--White);
    margin-bottom: 15px;
}

.section-13 h3 {
    color: var(--Red);
    margin-bottom: 20px;
}

.section-13 p {
    margin-bottom: 35px;
    color: var(--White);
}

.section-13 img.tablet {
    display: none;
}

/* section-14 */
.section-14 {
    padding: 0;
}

.section-14 img {
    width: 100%;
}

/* section-15 */
.section-15 {
    background-image: url("../img/section-15.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.section-15 h2 {
    font-size: 59px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 75px;
}

.section-15 h2 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-15 h2 b,
.section-15 h2 strong {
    color: var(--Red);
    font-weight: 600;
}

.section-15 h3 {
    color: var(--Red);
    margin-bottom: 25px;
}

.section-15 ul {
    padding: 0;
    margin: 0;
    gap: 20px;
}

.section-15 ul li:before {
    content: "";
    background-image: url("../img/plus-red.png");
    width: 13px;
    height: 13px;
    position: absolute;
    left: 0;
    top: 9px;
    background-size: contain;
    background-repeat: no-repeat;
}

.section-15 ul li p {
    margin: 0;
    font-size: 16px;
}

.section-15 .title {
    color: var(--Red);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

.section-15 img.tablet {
    display: none;
}

.section-15 img.mobile {
    display: none;
}

/* section-16 */
.section-16 {
    background-image: url("../img/section-16.jpg");
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.section-16 .card {
    border-radius: 15px;
    background-color: rgba(34, 36, 53, 0.5);
    backdrop-filter: blur(87px);
    padding: 20px 120px 20px 20px;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 100px;
    position: relative;
    border: 0;
}

.section-16 .card .card-body {
    padding: 0;
}

.section-16 .card img {
    width: 330px;
    aspect-ratio: 168/115;
}

.section-16 .card h2 {
    color: var(--White);
    margin-bottom: 15px;
}

.section-16 .card h3 {
    color: var(--Red);
    font-size: 15px;
    font-weight: 383;
    line-height: 20px;
    margin-bottom: 15px;
}

.section-16 .card p {
    color: var(--White);
}

/* section-17 */
.section-17 {
    background-image: url("../img/section-17.jpg");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section-17 h2 {
    color: var(--White);
    text-align: center;
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 70px;
}

.section-17 h3 {
    color: var(--White);
    text-align: center;
    margin-bottom: 50px;
}

.section-17 .box {
    background-image: url("../img/box-section-17.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    padding: 40px 40px 40px 80px;
}

.section-17 .form-label {
    color: var(--White);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

.section-17 .form-control {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    color: var(--White);
    font-size: 15px;
    font-weight: 383;
    line-height: 20px;
    margin-bottom: 25px;
    padding: 10px 25px;
}

.section-17 textarea.form-control {
    border-radius: 15px;
    resize: unset;
}

.section-17 .form-control::placeholder {
    color: var(--White);
    opacity: 0.7;
}

.section-17 .form-check {
    margin-bottom: 40px;
}

.section-17 .form-check .form-check-label {
    color: var(--White);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

/* section-18 */
.section-18 {
    background-image: url("../img/section-18.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 180px;
}

.section-18 h1 {
    color: var(--White);
    line-height: 65px;
}

.section-18 h1 span {
    color: var(--Red);
}

.section-18 .card {
    border-radius: 15px;
    backdrop-filter: blur(87px);
    border: none;
    width: 100%;
    padding: 35px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-color: rgba(34, 36, 53, 0.5);
}

.section-18 .card.big {
    padding: 30px 25px 30px 45px;
    display: flex;
    flex-direction: row;
    gap: 100px;
    background: rgba(34, 36, 53, 0.5);
}

.section-18 .card.big .card-body {
    padding: 0;
}

.section-18 .card.big h2 {
    color: var(--White);
    margin-bottom: 20px;
}

.section-18 .card.big h2 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-18 .card.big p {
    color: var(--White);
    margin-bottom: 30px;
}

.section-18 .card.img {
    padding: 0;
    background-color: transparent;
    backdrop-filter: unset;
}

.section-18 .card.big h2 {
    color: var(--White);
    font-size: 35px;
}

.section-18 .card h2 {
    color: var(--White);
    font-size: 30px;
}

.section-18 .card h3 {
    color: var(--White);
    font-size: 30px;
    font-weight: 383;
    line-height: normal;
    margin-bottom: 30px;
}

.section-18 .card p {
    color: var(--White);
    margin-bottom: 70px;
}

.section-18 .card .action {
    display: flex;
    margin-top: auto;
    margin-left: auto;
    gap: 15px;
    align-items: center;
}

.section-18 .card .action .text {
    color: var(--Red);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

.section-18 .card .action .btn-plus {
    opacity: 1;
    position: unset;
    bottom: unset;
    right: unset;
}

.section-18 .card .action .btn-plus img {
    aspect-ratio: 1/1;
    width: 25px;
    height: 25px;
}

/* section-19 */
.section-19 {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #000 13.82%, #222435 126.07%);
    padding-top: 150px;
}

.section-19 .image {
    right: 0;
    position: absolute;
    top: 0;
    width: 45%;
    z-index: 0;
    aspect-ratio: 947/743;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    max-height: 700px;
}

.section-19 h1 {
    color: var(--White);
    margin-bottom: 15px;
}

.section-19 h1 span {
    color: var(--Red);
}

.section-19 h2 {
    color: var(--Red);
    margin-bottom: 25px;
}

.section-19 h3 {
    color: var(--White);
}

/* section-20 */
.section-20 {
    background: linear-gradient(180deg, #222435 -30%, #000 126.07%);
}

.section-20 h2 {
    color: var(--White);
    margin-bottom: 20px;
}

.section-20 h2 span {
    text-decoration: 2px underline var(--Red);
    text-underline-offset: 6px;
}

.section-20 h3 {
    color: var(--Red);
    margin-bottom: 20px;
}

.section-20 p {
    color: var(--White);
}

/* section-21 */
.section-21 {
    background-image: url("../img/section-21.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 180px;
}

.section-21 h1 {
    color: var(--White);
}

.section-21 h2 {
    color: var(--White);
    margin-bottom: 10px;
}

.section-21 h2 span {
    color: var(--Red);
}

.section-21 p {
    color: var(--White);
}

.section-21 .accordion {
    margin-top: 150px;
}

.section-21 .accordion-button {
    color: var(--White);
    background-color: unset;
    box-shadow: none;
    padding: 30px;
    font-size: 35px;
    font-weight: 600;
    line-height: normal;
}

.section-21 .accordion-button h3 {
    color: var(--Red);
    font-size: 22px;
}

.section-21 .accordion-item {
    background-color: rgba(34, 36, 53, 0.5);
    border: none;
    padding: 0;
    border-radius: 15px;
}

.section-21 .accordion-body {
    padding: 0 30px 30px 30px;
    background-image: url("../img/section-21_accordion.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-21 .accordion-button::after {
    background-image: url("../img/plus-white.png");
    width: 60px;
    height: 60px;
    background-size: contain;
}

.section-21 .accordion-button:not(.collapsed)::after {
    background-image: url("../img/meno-white.png");
    transform: unset;
}

/* section-22 */
.section-22 {
    background-image: url("../img/section-22.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 180px;
}

.section-22 .box {
    background-image: url("../img/box-section-22.png");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    border-radius: 15px;
    text-align: center;
    padding: 50px 0;
}

.section-22 img {
    aspect-ratio: 155/41;
    width: 150px;
    margin-bottom: 30px;
}

.section-22 h1 {
    color: var(--Red);
}

.section-22 h2 {
    color: var(--White);
    margin-bottom: 50px;
}

.section-22 .form-label {
    color: var(--White);
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

.section-22 .form-control {
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    color: var(--White);
    font-size: 15px;
    font-weight: 383;
    line-height: 20px;
    margin-bottom: 25px;
    padding: 10px 25px;
}

.section-22 textarea.form-control {
    border-radius: 15px;
    resize: unset;
}

.section-22 .form-control::placeholder {
    color: var(--White);
    opacity: 0.7;
}

.section-22 .form-check {
    margin-bottom: 40px;
}

.section-22 .form-check .form-check-label {
    color: var(--White);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.section-22 a.red {
    color: var(--Red);
    font-size: 15px;
    font-weight: 383;
    line-height: normal;
    margin-bottom: 40px;
    display: inline-block;
}

.section-22 .contact {
    color: var(--White);
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: normal;
}

/* section-23 */
.section-23 {
    padding-top: 150px;
    background: linear-gradient(180deg, #000 14.45%, #222435 85.18%);
}

.section-23 h1 {
    color: var(--White);
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-23 img {
    aspect-ratio: 55/70;
    width: 90px;
    object-fit: contain;
}

.section-23 h2 {
    color: var(--Red);
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

.section-23 p {
    color: var(--White);
}

/* section-24 */
.section-24 {
    background: linear-gradient(0deg, #000 14.45%, #222435 85.18%);
    color: var(--White);
}

.section-24 ul.nav-tabs {
    flex-direction: row;
    gap: unset;
}

.section-24 ul.nav-tabs li {
    padding-left: 5px;
}

.section-24 .nav-tabs .nav-link {
    background: var(--Black);
    border: 1px solid var(--White);
}

.section-24 .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    background: var(--White);
}

.power-product {
    position: relative;
    margin-top: 20px;
}

@media (min-width: 992px) {
    .power-product {
        margin-top: 0;
    }
}

.power-product .bg-power-data {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .power-product .bg-power-data {
        background-image: url(../img/bg-version.png);
        background-position: bottom right;
        min-height: 85px;
        background-repeat: no-repeat;
    }
}

.power-product .bg-power-data .text-right {
    color: var(--Red);
    text-align: right;
}

.power-product .bg-power-data p {
    font-weight: 800;
    font-size: 33px;
    padding: 0;
    margin: 0;
    line-height: 33px;
}

.power-product .bg-power-data p span {
    font-weight: 800;
    font-size: 33px;
    padding: 0;
    margin: 0;
    line-height: 33px;
    display: inline-block;
}

.power-product .bg-power-data span {
    font-size: 15px;
    display: block;
}

.stage {
    display: flex;
    gap: 10px;
    align-items: center;
    text-transform: uppercase;
    color: var(--Red);
}

.nav-link:hover, .nav-link:focus {
    color: var(--Red);
    text-decoration: underline;
}

.stage img {
    width: 60px;
    opacity: 0.2;
}

.stage.active img {
    opacity: 1;
}

.option-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.option-list .option-item {
    background-color: #ffffff;
    border-radius: 16px;
    color: rgba(0, 0, 0);
    font-size: 13px;
    font-weight: 500;
    height: 32px;
    line-height: 32px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.option-list .option-item .option-img {
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* section-25 */
.section-25 {
    padding: 200px 0 100px 0;
}

.recaptcha-container {
    height: 0;

}

.grecaptcha-badge {
    visibility: hidden !important;
}