body {
    background: var(--Black);
    font-size: 16px;
    font-weight: 200;
    font-style: normal;
    color: var(--White);
    font-family: "Prompt", sans-serif;
}

section {
    padding: 70px 0;
}

/* color */
:root {
    --Black: #000014;
    --White: #ffffff;
    --LightViolet: #F7EFFF;
    --Orange: #FF7752;
    --Violet: #9100FF;
}

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

h1 {
    font-family: "Anek Telugu", serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 60px;
}

h2 {
    font-family: "Anek Telugu", serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 40px;
}

.big h2 {
    font-family: "Anek Telugu", serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 50px;
}

h2 b,
h2 strong {
    font-weight: 200;
}

h3 {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}

p {
    font-size: 16px;
    font-weight: 200;
    line-height: normal;
    margin-bottom: 20px;
}

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

hr {
    background: rgba(255, 255, 255, 0.90);
    margin: 0;
}

ul {
    gap: 6px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-left: 17px;
}

ul li {
    position: relative;
    font-size: 16px;
    font-weight: 200;
    line-height: normal;
}

/* button */
.btn.gradient {
    position: relative;
    border-radius: 40px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.20);
    color: var(--White);
    font-family: "Anek Telugu", serif;
    font-size: 22px;
    font-weight: 500;
    padding: 5px 25px 0 25px;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
    transition: color 0.25s ease;
}

.btn.gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(90deg, #9100FF 0%, #FF7752 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn.gradient::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 40px;
    background: linear-gradient(90deg, #9100FF 0%, #FF7752 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.btn.gradient:hover::before {
    opacity: 1;
}

.btn.black {
    position: relative;
    border-radius: 40px;
    background: var(--Black);
    color: var(--White);
    font-family: "Anek Telugu", serif;
    font-size: 22px;
    font-weight: 500;
    padding: 5px 25px 0 25px;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: unset;
}

/* form */
.form-control {
    font-family: "Anek Telugu", serif;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--White);
    padding: 0 0 4px 0;
    border-radius: 0;
    margin-top: 30px;
    color: var(--White);
}

input::placeholder {
    color: var(--White) !important;
}

.form-control:focus {
    color: var(--White);
    background-color: transparent;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.form-check {
    margin-top: 10px;
    margin-bottom: 70px;
}

.form-check .form-check-input {
    background-color: transparent;
    border: 0.5px solid var(--White);
}

/* tag button */
.tag-button {
    position: relative;
    border-radius: 6px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.20);
    padding: 7px 12px;
    display: flex;
    gap: 4px;
    width: fit-content;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.tag-button::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 6px;
    background: linear-gradient(180deg, #FF7752 0%, #9100FF 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.tag-button img {
    height: 12px !important;
    width: 12px !important;
    object-fit: contain !important;
    object-position: center !important;
}

.tag-button p {
    margin: 0;
}

/* carousel */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper .swiper-pagination-bullet {
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--White);
}

/* pagination */
.pagination {
    justify-content: end;
    margin-top: 50px;
}

.pagination ul li {
    gap: 20px;
    flex-direction: row;
    padding-left: 15px;
    padding-right: 15px;
}

.pagination ul li {
    color: var(--White);
    position: relative;
    padding-left: 0;
    list-style: none;
}

.pagination ul li::before {
    display: none;
}

/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header nav.navbar {
    position: relative;
    padding: 14px 0;
    color: var(--White);
    background: linear-gradient(180deg, rgba(20, 14, 43, 0.38) 0%, rgba(20, 14, 43, 0.18) 100%);
    backdrop-filter: blur(7px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
}

header nav.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0 0 0.5px 0;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

header nav.navbar .container-xxl {
    position: relative;
    z-index: 1;
}

header nav.navbar img {
    aspect-ratio: 133/42;
    height: 36px;
    object-fit: contain;
}

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

header nav.navbar ul li {
    font-size: 17px;
}

header nav.navbar ul li a {
    color: rgba(255, 255, 255, 0.8);
}

header nav.navbar ul li a.active {
    font-weight: 500;
}

header nav.navbar ul li a:hover,
header nav.navbar ul li a:focus {
    color: var(--White);
}

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

.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: 20px;
    margin-top: 50px;
}

.responsive-mobile-menu ul li {
    color: var(--White);
    font-size: 17px;
    padding: 0;
    font-family: "Anek Telugu", serif;
}

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

.responsive-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(20, 14, 43, 0.38) 0%, rgba(20, 14, 43, 0.18) 100%);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
    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 > .d-flex {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 2;
}

.responsive-mobile-menu > .text-center {
    flex: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.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: 20px;
    height: 20px;
    background-image: url("/img/white_hamburger.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

header .nav-mobile {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 10px;
    color: var(--White);
    background: linear-gradient(180deg, rgba(20, 14, 43, 0.38) 0%, rgba(20, 14, 43, 0.18) 100%);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
}

header .nav-mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0 0 0.5px 0;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
    rgba(155, 147, 167, 1) 0deg,
    rgba(206, 206, 206, 1) 72deg,
    rgba(90, 84, 101, 1) 144deg,
    rgba(155, 147, 167, 1) 216deg,
    rgba(67, 67, 107, 1) 288deg,
    rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

header .nav-mobile > * {
    position: relative;
    z-index: 1;
}

/* footer */
footer {
    padding-top: 80px;
    background-color: var(--Black);
    color: var(--White);
}

footer img {
    width: 100%;
    height: 60px;
    aspect-ratio: 195/62;
    object-fit: contain;
    object-position: left;
}

footer .text {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 10px;
}

footer .app {
    display: flex;
    gap: 15px;
    align-items: baseline;
}

footer .app img {
    width: 110px;
    aspect-ratio: 56/19;
    object-fit: contain;
}

footer ul {
    gap: 5px;
    padding-left: 0;
}

footer ul li {
    list-style: none;
}

footer ul li span {
    font-weight: 500;
}

footer ul li a:hover {
    text-decoration: underline;
    -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;
}

footer .bar a:hover {
    text-decoration: underline;
    -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;
}

footer .bar {
    margin-top: 60px;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.section-1 .shadow-top {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background: linear-gradient(0deg, #000014 0%, rgba(0, 0, 20, 0) 45%);
}

.section-1 .text {
    position: relative;
    z-index: 22;
}

.section-1 h1 {
    text-align: center;
    margin-bottom: 20px;
}

.section-1 p {
    text-align: center;
}

.section-1 img {
    height: 650px;
    object-fit: contain;
    object-position: center;
}

/* section-2 */
.section-2 h2 {
    margin-bottom: 35px;
    text-align: center;
}

.section-2 .box {
    width: 100%;
    border-radius: 10px;
    padding: 30px 80px 30px 30px;
    margin-top: 15px;
    position: relative;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
}

.section-2 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-2 .box h3 {
    margin-bottom: 15px;
}

.section-2 .box img {
    aspect-ratio: 134/70;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.section-2 .box p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

/* section-3 */
.section-3 h2 {
    margin-bottom: 5px;
    text-align: center;
}

.section-3 p {
    text-align: center;
    margin-bottom: 50px;
}

.section-3 .box {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    margin-top: 15px;
    position: relative;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
}

.section-3 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-3 .box img.in-box {
    width: 100%;
    aspect-ratio: 526/416;
    margin-top: auto;
}

.section-3 .box.mini {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.section-3 .box.mini img.in-box {
    width: 320px;
    object-fit: contain;
    aspect-ratio: 55/47;
}

.section-3 .box .title {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.section-3 .box h3 {
    margin-bottom: 10px;
}

.section-3 .box img.icon {
    aspect-ratio: 1/1;
    width: 30px;
    object-fit: contain;
    margin-bottom: 10px;
}

.section-3 .box p {
    text-align: left;
    margin-bottom: 20px;
}

/* section-4 */
.section-4 {
    background-image: url("/img/section-4.jpg");
    background-size: cover;
    background-position: center;
    margin: 70px 0;
}

.section-4 h2 {
    text-align: center;
    margin-bottom: 30px;
}

.section-4 .productCarousel-wrap {
    position: relative;
    overflow: visible;
}

.section-4 .recensioniCarousel {
    overflow: hidden;
}

.section-4 .card {
    border-radius: 10px;
    padding: 25px 15px 25px 25px;
    position: relative;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(34px) saturate(150%) contrast(1.08);
}

.section-4 .card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-4 .card p {
    margin-bottom: 50px;
}

.section-4 .card .ruolo {
    font-size: 16px;
    font-weight: 300;
}

.section-4 .recensioniCarousel .swiper-pagination {
    position: static;
    margin-top: 16px;
    text-align: center;
}

/* section-5 */
.section-5 img {
    width: 100%;
}

.section-5 .tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.section-5 .tag img {
    aspect-ratio: 1/1;
    width: 15px;
    object-fit: contain;
}

.section-5 .tag .text {
    color: var(--LightViolet);
    font-family: "Anek Telugu", serif;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
}

.section-5 h2 {
    margin-bottom: 25px;
}

.section-5 .btn {
    margin-top: 50px;
}

/* section-6 */
.section-6 h2 {
    margin-bottom: 10px;
}

.section-6 .logo-group {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.section-6 img.logo {
    height: 33px;
    object-fit: contain;
    object-position: left;
}

.section-6 .box {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    padding: 120px 20px 15px 20px;
    margin-bottom: 10px;
}

.section-6 .box h3 {
    margin-bottom: 15px;
}

.section-6 .box p {
    margin-bottom: 0;
}

.section-6 img.mini {
    aspect-ratio: 761/117;
    height: 110px;
    object-fit: cover;
    object-position: left bottom;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
}

/* section-7 */
.section-7 {
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.section-7 .box {
    border-radius: 10px;
    padding: 60px 80px;
    text-align: center;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-7 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

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

.section-7 h3 {
    margin-bottom: 30px;
}

/* section-8 */
.section-8 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 140px;
}

.section-8 .shadow-top {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background: linear-gradient(0deg, #000014 0%, rgba(0, 0, 20, 0) 45%);
}

.section-8 .container-xxl {
    position: relative;
}

.section-8 .tag-button,
.section-8 h1,
.section-8 p {
    position: relative;
    z-index: 22;
}

.section-8 h1 {
    margin-bottom: 20px;
}

/* section-9 */
.section-9 h2 {
    margin-bottom: 5px;
    text-align: center;
}

.section-9 p {
    text-align: center;
    margin-bottom: 60px;
}

.section-9 .box {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    padding: 25px 25px 0 25px;
    margin-top: 15px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-9 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-9 .box img.in-box {
    width: 100%;
    aspect-ratio: 526/416;
    margin-top: auto;
}

.section-9 .box.mini img.in-box {
    height: 130px;
    aspect-ratio: 242/101;
    object-fit: contain;
}

.section-9 .box h3 {
    margin-bottom: 10px;
}

.section-9 .box p {
    text-align: left;
    margin-bottom: 20px;
}

/* section-10 */
.section-10 h2 {
    margin-bottom: 10px;
}

.section-10 .col-lg-4 p {
    margin-bottom: 60px;
}

.section-10 .box {
    position: relative;
    margin-top: 24px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    transition: transform 0.2s ease;
}

.section-10 a.box {
    display: block;
    padding-bottom: 56px;
}

.section-10 .box.image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-10 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-10 a.box:hover::before {
    background: linear-gradient(180deg, #FF7752 0%, #9100FF 100%);
}

.section-10 a.box:hover {
    transform: translateY(-6px);
}

.section-10 .number {
    font-family: "Anek Telugu", serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 50px;
}

.section-10 .btn-scopri {
    background: var(--Gradient-45, linear-gradient(180deg, #FF7752 0%, #9100FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-family: "Anek Telugu", serif;
    font-weight: 500;
} 

.section-10 .box .btn-scopri {
    position: absolute;
    left: 20px;
    bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.section-10 .box:hover .btn-scopri {
    opacity: 1;
    visibility: visible;
}

/* section-11 */
.section-11 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 140px;
    padding-bottom: 0;
}

.section-11 .shadow-top {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    background: linear-gradient(0deg, #000014 0%, rgba(0, 0, 20, 0) 45%);
}

.section-11 .container-xxl {
    position: relative;
    z-index: 2;
}

.section-11 .tag-button,
.section-11 h1,
.section-11 p {
    position: relative;
    z-index: 2;
}

.section-11 h1 {
    margin-bottom: 20px;
}

.section-11 .tag-button {
    margin-left: unset;
    margin-right: unset;
}

.section-11 img {
    position: relative;
    width: 100%;
    height: 440px;
    object-fit: contain;
    object-position: center;
}

.section-11 img[data-field="main_image"] {
    z-index: 3;
}

/* section-12 */
.section-12 h2 {
    margin-bottom: 10px;
}

.section-12 p {
    margin-bottom: 70px;
}

.section-12 .box {
    border-radius: 10px;
    padding: 30px 25px 0 25px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-12 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-12 .box h3 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 50px;
}

.section-12 .box p {
    font-family: "Anek Telugu", serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 30px;
}

.section-12 .box img {
    width: 100%;
    aspect-ratio: 253/158;
    object-fit: contain;
}

.section-12 .arrows {
    margin-bottom: 70px;
    display: flex;
    gap: 20px;
}

.section-12 .swiper-button-prev,
.section-12 .swiper-button-next {
    position: static;
    margin-top: 0;
    width: 40px;
    height: 40px;
    background-image: url('../img/chevrons-right-white.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.section-12 .swiper-button-prev::after,
.section-12 .swiper-button-next::after {
    content: none;
}

.section-12 .swiper-button-prev svg,
.section-12 .swiper-button-next svg {
    display: none;
}

.section-12 .swiper-button-prev {
    transform: rotate(180deg);
}

/* section-13 */
.section-13 h2 {
    margin-bottom: 5px;
    text-align: center;
}

.section-13 p {
    text-align: center;
}

.section-13 .box {
    margin-top: 10px;
    width: 100%;
    padding: 35px 25px;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-13 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-13 .box .number {
    font-family: "Anek Telugu", serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 50px;
}

.section-13 .box p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 35px;
    text-align: left;
}

/* section-14 */
.section-14 h2 {
    margin-bottom: 10px;
}

.section-14 p {
    margin-bottom: 70px;
}

.section-14 .box {
    border-radius: 10px;
    padding: 35px 25px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    margin-top: 10px;
}

.section-14 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-14 .box h3 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 50px;
}

.section-14 .box p {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
}

/* section-15 */
.section-15 h2 {
    margin-bottom: 5px;
    text-align: center;
}

.section-15 p {
    text-align: center;
    margin-bottom: 70px;
}

.section-15 .box {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-15 .box.image {
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
}

.section-15 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-15 .box h3 {
    margin-bottom: 50px;
}

.section-15 .box .text {
    margin-top: auto;
}

.section-15 .box .number {
    font-family: "Anek Telugu", serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 50px;
}

.section-15 .box p {
    margin: 0;
    text-align: left;
}

/* section-16 */
.section-16 h2 {
    margin-bottom: 10px;
}

.section-16 img {
    width: 100%;
    margin-top: auto;
}

.section-16 img.desktop {
    display: block;
}

.section-16 img.mobile {
    display: none;
    margin-top: 30px;
}

.section-16 h3 {
    margin-bottom: 10px;
}

.section-16 p {
    font-weight: 300;
    margin-bottom: 0;
}

.section-16 hr {
    margin: 30px 0;
}

/* section-17 */
.section-17 p {
    font-family: "Anek Telugu", serif;
    font-size: 45px;
    font-weight: 200;
    line-height: 50px;
}

.section-17 p strong,
.section-17 p .b {
    font-weight: 400;
}

/* section-18 */
.section-18 h2 {
    margin-bottom: 60px;
}

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

.section-18 .mini {
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.section-18 h3 {
    margin-bottom: 10px;
}

.section-18 p {
    font-weight: 300;
}

.section-18 hr {
    margin-bottom: 25px;
}

/* section-19 */
.section-19 h2 {
    text-align: center;
    margin-bottom: 30px;
}

.section-19 .box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 25px;
    border-radius: 10px;
    margin-top: 15px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-19 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-19 .box h3 {
    margin-bottom: 10px;
}

.section-19 .box p {
    color: rgba(255, 255, 255, 0.65);
}

.section-19 ul {
    margin-bottom: 25px;
    padding-left: 0;
}

.section-19 ul li {
    list-style: none;
    position: relative;
    padding-left: 28px;
}

.section-19 ul li::before {
    content: "";
    position: absolute;
    top: 0.35em;
    left: 0;
    width: 16px;
    height: 16px;
    background: url("/img/check-white.png") no-repeat center;
    background-size: contain;
}

.section-19 img {
    display: block;
    aspect-ratio: 149/76;
    width: 100%;
    margin-top: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* section-20 */
.section-20 h2 {
    margin-bottom: 10px;
}

.section-20 p {
    margin-bottom: 60px;
}

.section-20 .box {
    width: 100%;
    border-radius: 10px;
    margin-top: 15px;
    padding: 30px 25px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-20 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-20 .box h3 {
    font-size: 50px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 30px;
}

.section-20 .box p {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
}

/* section-21 */
.section-21 h2 {
    margin-bottom: 10px;
}

.section-21 .box {
    padding: 25px 25px 60px 25px;
    margin-top: 20px;
    width: 100%;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-21 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-21 img {
    width: 30px;
    height: 30px;
    aspect-ratio: 1/1;
    margin-bottom: 20px;
}

.section-21 h3 {
    margin-bottom: 10px;
}

.section-21 .box p {
    margin-bottom: 0;
}

/* section-22 */
.section-22 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 140px;
}

.section-22 .shadow-top {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background: linear-gradient(0deg, #000014 0%, rgba(0, 0, 20, 0) 45%);
}

.section-22 .container-xxl {
    position: relative;
}

.section-22 .tag-button {
    margin-bottom: 60px;
    position: relative;
    z-index: 22;
}

.section-22 h1 {
    margin-bottom: 20px;
    position: relative;
    z-index: 22;
}

.section-22 p {
    position: relative;
    z-index: 22;
}

/* section-23 */
.section-23 img {
    width: 100%;
    border-radius: 10px;
}

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

.section-23 .btn {
    margin-top: 20px;
    width: fit-content;
}

/* section-24 */
.section-24 h2 {
    margin-bottom: 30px;
}

.section-24 .box {
    padding: 30px;
    border-radius: 10px;
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-24 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-24 .box h3 {
    margin-bottom: 30px;
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
}

.section-24 .box .mini {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-24 .box .number {
    font-family: "Anek Telugu", serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 100px;
}

.section-24 .box p {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 30px;
    margin-top: auto;
    margin-bottom: 0;
}

.section-24 .box p b,
.section-24 .box p strong {
    background: var(--Gradient-45, linear-gradient(180deg, #FF7752 0%, #9100FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

/* section-25 */
.section-25 .box-category {
    padding: 30px 35px;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-25 .box-category::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-25 .box-category h2 {
    margin-bottom: 20px;
    margin-top: 0;
}

.section-25 .box-category ul {
    padding: 0;
}

.section-25 .box-category ul li {
    color: rgba(255, 255, 255, 0.50);
    list-style: none;
    position: relative;
    padding-left: 28px;
}

.section-25 .box-category ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: url("/img/chevrons-right-white.png") no-repeat center;
    background-size: contain;
}

.section-25 h2 b,
.section-25 h2 strong {
    background: var(--Gradient-45, linear-gradient(180deg, #FF7752 0%, #9100FF 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.section-25 .mini-article {
    border-radius: 0;
    border: none;
    padding: 0 50px 0 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    margin-top: 20px;
}

.section-25 .mini-article img {
    aspect-ratio: 88/69;
    width: 85px;
    border-radius: 10px;
    object-fit: cover;
}

.section-25 .mini-article .date {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 300;
}

.section-25 .mini-article div[data-field="title"] {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.section-25 .big-article {
    position: relative;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: block;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    transition: transform 0.2s ease;
}

.section-25 .big-article::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-25 .big-article img {
    width: 100%;
    aspect-ratio: 78/47;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 35px;
}

.section-25 .big-article .category {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-25 .big-article .category.orange {
    color: var(--Orange);
}

.section-25 .big-article .category.violet {
    color: var(--Violet);
}

.section-25 .big-article h3 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 90px;
    margin-bottom: 30px;
}

.section-25 .big-article .date {
    color: rgba(255, 255, 255, 0.50);
    font-weight: 300;
}

.section-25 .big-article .article-button {
    font-weight: 300;
}

.section-25 .big-article:hover,
.section-30 .big-article:hover {
    transform: translateY(-6px);
}

.section-25 .big-article:hover::before,
.section-30 .big-article:hover::before {
    background: linear-gradient(180deg, #FF7752 0%, #9100FF 100%);
}

/* section-26 */
.section-26 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 140px;
}

.section-26 .box {
    padding: 50px 35px;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-26 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-26 h2 {
    margin-bottom: 25px;
    margin-top: 90px;
}

.section-26 ul {
    list-style: none;
    padding: 0;
}

.section-26 ul li {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 200;
    line-height: 30px;
}

.section-26 ul li b,
.section-26 ul li strong {
    font-weight: 500;
}

.section-26 ul li a:hover {
    text-decoration: underline;
    -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-27 */
.section-27 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.section-27 .container-xxl {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-27 h1 {
    font-size: 35px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 20px;
}

.section-27 h2 {
    font-size: 350px;
    font-weight: 600;
    line-height: 350px;
}

.section-27 p {
    font-family: "Anek Telugu", serif;
    font-size: 25px;
    font-weight: 200;
    line-height: 30px;
}

.section-27 p b,
.section-27 p strong {
    font-weight: 500;
}

/* section-28 */
.section-28 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.section-28 .container-xxl {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-28 h1 {
    margin-bottom: 20px;
}

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

/* section-29 */
.section-29 {
    padding-top: 140px;
}

.section-29 h1 {
    margin-bottom: 50px;
}

.section-29 .date {
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
}

.section-29 h2 {
    margin-bottom: 25px;
}

.section-29 h3 {
    margin-bottom: 25px;
}

.section-29 img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 98/59;
    object-fit: cover;
    margin: 50px 0;
}

.section-29 hr {
    background-color: var(--White);
    opacity: 1;
    margin-top: 30px;
}

/* section-30 */
.section-30 h2 {
    margin-bottom: 30px;
}

.section-30 .big-article {
    position: relative;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: block;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    transition: transform 0.2s ease;
}

.section-30 .big-article::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-30 .big-article img {
    width: 100%;
    aspect-ratio: 78/47;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 35px;
}

.section-30 .big-article .category {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
}

.section-30 .big-article .category.orange {
    color: var(--Orange);
}

.section-30 .big-article .category.violet {
    color: var(--Violet);
}

.section-30 .big-article h3 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 90px;
    margin-bottom: 30px;
}

.section-30 .big-article .date {
    color: rgba(255, 255, 255, 0.50);
    font-weight: 300;
}

.section-30 .big-article .article-button {
    font-weight: 300;
}

/* section-31 */
.section-31 img {
    width: 100%;
}

.section-31 .tag {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.section-31 .tag img {
    aspect-ratio: 1/1;
    width: 15px;
    object-fit: contain;
}

.section-31 .tag .text {
    color: var(--LightViolet);
    font-family: "Anek Telugu", serif;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
}

.section-31 h2 {
    margin-bottom: 25px;
}

.section-31 .btn {
    margin-top: 30px;
}

/* section-32 */
.section-32 h2 {
    margin-bottom: 10px;
}

.section-32 .col-lg-4 p {
    margin-bottom: 60px;
}

.section-32 .box {
    margin-top: 20px;
    width: 100%;
    padding: 20px 25px;
    border-radius: 10px;
    background: rgba(0, 0, 20, 0.20);
    backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(150%) contrast(1.08);
}

.section-32 .box.image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-32 .box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg,
            rgba(155, 147, 167, 1) 0deg,
            rgba(206, 206, 206, 1) 72deg,
            rgba(90, 84, 101, 1) 144deg,
            rgba(155, 147, 167, 1) 216deg,
            rgba(67, 67, 107, 1) 288deg,
            rgba(155, 147, 167, 1) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.section-32 .number {
    font-family: "Anek Telugu", serif;
    font-size: 50px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 50px;
    line-height: 50px;
}

/* animazioni sezioni */
:root {
    --section-reveal-duration: 720ms;
    --section-reveal-ease: cubic-bezier(.2, .75, .25, 1);
}

.js section.section-reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
            opacity var(--section-reveal-duration) var(--section-reveal-ease),
            transform var(--section-reveal-duration) var(--section-reveal-ease);
    will-change: opacity, transform;
}

.js section.section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn.gradient,
.btn.black {
    transition:
            transform 240ms ease,
            color 240ms ease,
            background-color 240ms ease,
            box-shadow 240ms ease;
}

.btn.gradient:hover,
.btn.black:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js section.section-reveal {
        opacity: 1;
        transform: none;
    }
}
