
@import url('./fonts.css');
@import url('./root.css');
@import url('./c2.css');
@import url('./buttons.css');
@import url('./mmc.css');
@import url('./video.css');

@import url('./ftext_anim.css');
@import url('./ftext_anim2.css');

@import url('./backgrounds.css');
@import url('./sections.css?v=20250309');

@import url('./calendar.css');
@import url('./wizzard.css');
@import url('./screen.css');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
}

hr {
    border: 1px solid var(--s-white);
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*
::-webkit-scrollbar {
    width: 0;
    display: none;
}
*/

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

#scrollPathl {
    position: fixed;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}

/*#progressbarl {
    position: fixed;
    top: 0;
    right: 0;
    width: 5px;
    height: 0%;
    z-index: 1;
    background: linear-gradient(to top, #008AFF, #00FFE7);
    animation: animate2 5s linear infinite;
}

#scrollPathb {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 5px;
    width: 100%;
    background: rgba(255,255,255,0.05);
}

#progressbarb {
    position: fixed;
    bottom: 0;
    right: 0;
    height: 0px;
    width: 100%;
    background: linear-gradient(to top, #008AFF, #00FFE7);
    animation: animate2 5s linear infinite;
}

#scrollPathr {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: rgba(255,255,255,0.05);
}

#progressbarr {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 0%;
    z-index: 1;
    background: linear-gradient(to top, #008AFF, #00FFE7);
    animation: animate2 5s linear infinite;
}

@keyframes animate2 {
    0%,100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
}

#progressbarl:before, #progressbarr:before  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008AFF, #00FFE7);
    filter: blur(10px);
}

#progressbarl:after, #progressbarr:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008AFF, #00FFE7);
    filter: blur(30px);
}
*/

.box {
    position: relative;
    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px;
    transition: 0.5s;
    background: #000000;
}

.box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.box .imgBx img {
    max-width: 100%;
    min-width: 180px;
    min-height: 180px;
    object-fit: cover;
    opacity: 0.05;
    transition: 0.5s;
    filter: grayscale(1);
}

.box:hover {
    height: 300px;
}

.box:hover .imgBx img {
    opacity: 1;
}

.box:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255,255,255,1);
    z-index: -1;
}

.box:after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: rgba(255,255,255,1);
    z-index: -2;
}

.box:before, .box:after {
    background: linear-gradient(235deg,#89FF00, #010615, #00BCD4);
}

.box:nth-child(2):before, .box:nth-child(2):after {
    background: linear-gradient(235deg,#FF005E, #010615, #FBFF00);
}

.box:nth-child(3):before, .box:nth-child(3):after {
    background: linear-gradient(235deg,#772AFF, #010615, #2196F3);
}

.box:nth-child(4):before, .box:nth-child(4):after {
    background: linear-gradient(235deg,#89FF00, #010615, #00BCD4);
}

.box .content {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 90px;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
}

.box:hover .content {
    opacity: 1;
    transition: 0.5s;
}

.box .content h2 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1px;
}

.box .content h2 span{
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
    letter-spacing: 2px;
}

.brand {
    align-items: stretch;
    margin-right: auto;
    display: flex;
}

.w-nav-brand {
    float: left;
    color: #333333;
    text-decoration: none;
    position: relative;
}

.bg-dark {
    color: #FFFFFF;
    background-color: var(--s-dark-1);
}

.bg-dark-top {
    color: #FFFFFF;
    background: linear-gradient(to bottom, rgb(0,0,0), rgba(34,34,34,0.90) 78%, transparent 90%);
}

.navbar {
    z-index: 999;
    font-size: 1rem;
    line-height: 1.7;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    transform: none;
}

.navbar_top-menu_Container {
    max-width: var(--master-w);
    margin-left: auto;
    margin-right: auto;
    padding: 0 48px;
}

.navbar_top-menu_Container.align-left {
    width:  100%;
    justify-content: flex-end;
    display: flex;
}

.top-menu_link {
    color: #C4C4C4;
    margin-left: 20px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 24px;
    font-weight: 800;
    font-family: 'Montserrat';
}

.navbar_Container {
    z-index: 100;
    width: 100%;
    min-height: 80px;
    align-items: center;
    display: flex;
    position: relative;
    justify-content: center;
}

.navbar_menu {
    width: 100%;
    max-width: var(--master-w);
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.navbar_mobile-overlay {
    display: none;
}

.navbar_navmenu-mobile{
    display: none;
}

.navbar_navmenu {
    flex: 1;
    justify-content: space-between;
    transition: all .2s;
    display: flex;
    position: static;
}

.navmenu_container {
    width: 100%;
    justify-content: flex-end;
    display: flex;
}

.navmenu_link-list{
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
}

.w-list-unstyled {
    list-style: none;
}

.link-list-item {
    background-color: transparent;
    margin-right: 0;
    padding: 10px;
    transition: opacity .2s;
    display: flex;
}

.link-list-item.cc-first {
    margin-right: 0;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

li {
    -webkit-text-fill-color: inherit;
    font-family: Inter,sans-serif;
    font-size: 18px;
    line-height: 32px;
    list-style-type: none;
}

ul {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 0;
}

.link-list_dopdown-wrapper {
    align-items: center;
    font-weight: 400;
    display: flex;
    position: static;
}

.link-list_dopdown-wrapper.display_none_desktop {
    display: none;
}

.w-dropdown {
    text-align: left;
    z-index: 900;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    position: relative;
}

.link-list_dropdown-toggle {
    height: 100%;
    align-items: center;
    padding: 0;
    font-size: 16px;
    line-height: 24px;
    transition: color -2s;
    display: flex;
}

.w-dropdown-toggle {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.navmenu_dropdown {
    background-color: #FFFFFF;
    position: absolute;
    top: 79%;
    left: 0;
    right: 0;
}

.w-dropdown-list {
    min-width: 100%;
    background: #DDDDDD;
    display: none;
    position: absolute;
}

.link_list_icon {
    padding-top: 0;
} 

.link-list_dropdown-icon {
    align-self: center;
    align-items: center;
    margin-left: 8px;
    margin-right: 0;
    display: flex;
    position: relative;
}

.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}

.w-embed:after {
    clear: both;
}

.navmenu_dropdown-grid {
    width: 100%;
    grid-template-rows: auto;
    grid-template-columns: 1fr minmax(auto,1280px) 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    align-content: stretch;
    justify-content: center;
    margin-left: -2%;
    padding-top: 16px;
    display: flex;
}

.menu-sol {
    width: 710px;
    display: block;
}

.div-block-110 {
    grid-column-gap: 48px;
    grid-row-gap: 25px;
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 40px 50px;
    display: grid;
}








#TopBar {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100px;
    background: rgba(0,0,0,0.9);
    z-index: 2;
}

#TopBar:after {
    content: '';
    position: absolute;
    top: 70px;
    left: 0px;
    right: 0px;
    bottom: -3px;
    background: rgba(0,0,0,1);
    z-index: 2;
}


/* MeNU */

.menu {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: -15px;
    right: 50px;
    color: var(--s-white2);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat' !important;
    font-weight: 200;
    font-size: 1.3rem;
}
.navbar_menu:has(.navbar-cta) .menu {
    position: static;
    margin-left: auto;
    gap: 24px;
    font-size: 1rem;
}
.navbar_menu .brand {
    flex-shrink: 0;
}
.navbar_menu .navbar-cta.m_bt {
    flex-shrink: 0;
    transform: none;
}

/* Navbar unificado: todo en línea, logo contenido, aspecto profesional (index) */
.navbar:has(.navbar-cta) {
    background: linear-gradient(to bottom, rgba(0,0,0,0.92), rgba(28,28,32,0.88) 85%, transparent);
    backdrop-filter: blur(8px);
}
.navbar:has(.navbar-cta) .navbar_Container {
    min-height: 72px;
    height: 72px;
    align-items: center;
}
.navbar:has(.navbar-cta) .navbar_menu {
    min-height: 72px;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    gap: 32px;
}
.navbar:has(.navbar-cta) .navbar_menu .brand {
    display: flex;
    align-items: center;
    margin-right: 0;
}
.navbar:has(.navbar-cta) #Logo.ltop {
    position: relative;
    top: 0;
    left: 0;
    width: auto;
    max-height: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.navbar:has(.navbar-cta) #Logo.ltop img {
    height: auto;
    max-height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}
.navbar:has(.navbar-cta) #Logo.ltop #L1 {
    width: 36px;
    max-height: 44px;
}
.navbar:has(.navbar-cta) #Logo.ltop #L2 {
    position: relative;
    top: 0;
    left: 8px;
    width: auto;
    max-width: 120px;
    max-height: 28px;
}
.navbar:has(.navbar-cta) #Logo.ltop #L3 {
    position: relative;
    top: 0;
    left: 8px;
    width: auto;
    max-width: 110px;
    max-height: 18px;
}
.navbar:has(.navbar-cta) .menu {
    align-items: center;
    flex-shrink: 0;
}
.navbar:has(.navbar-cta) .navbar-cta.m_bt {
    height: 40px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
}

.menu a{
    color: var(--s-white2);
    text-decoration: none;
}

.menu a:hover{
    color: var(--s-red1);
}

.dropdown{
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;

    padding: 32px;
    position: fixed;
    background: linear-gradient(to bottom, rgba(34,34,34,0.95), rgba(0,0,0,0.95) 98%);

    min-width: calc(((var(--master-w)/4)*2));
    max-width: calc(((var(--master-w)/4)*2));
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-bottom-left-radius:  25px;
    border-bottom-right-radius: 25px;

    border-bottom: 5px solid var(--s-red1);
}
  
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.dropdown-item{
    width: 250px;
    padding: 4px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-transform: none;
    color: var(--s-white0);
    position: relative;
    align-items: flex-start;
}

.dropdown-item span svg{
    font-size: 24px;
    padding-right: 12px;
}

.dropdown-item span:nth-child(2){
    display: flex;
    flex-direction: column;
    position: relative;
    left: 10px;
}

.dropdown-item span:nth-child(2) span:nth-child(1){
    font-weight: 400;
    font-size: 0.9rem;
    align-self: flex-start;
    text-transform: uppercase;
}

.dropdown-item span:nth-child(2) span:nth-child(2){
    font-weight: 200;
    font-size: 0.8rem;
}

.dropdown-item span:nth-child(1){
    align-self: flex-start;
}

.dropdown-item:hover span:nth-child(1){
    color: var(--s-red1);
    text-shadow: #000000 1px 0 5px;
}

.dropdown-item:hover span:nth-child(2) span:nth-child(1){
    color: var(--s-blue2);
    text-shadow: #000000 1px 0 10px;
}

.dropdown-item:hover span:nth-child(2) span:nth-child(2){
    color: var(--s-white2);
}

#Logo.ltop, #Logob.ltop{
    position: absolute;
    transform-origin: top left;
    top: -48px;
    left: 5px;
    width: 200px;
}

#Logo.ltop #L1, #Logob.ltop #L1b {
    width: 40px;
}

#Logo.ltop #L2, #Logob.ltop #L2b {
    position: relative;
    width: 150px;
    top: -15px;
    left: 10px;
}

#Logo.ltop #L3 {
    position: relative;
    width: 133px;
    top: -28px;
    left: 68px;
}

#Logob.ltop #L3b {
    position: relative;
    width: 133px;
    top: -20px;
    left: 68px;
}

#S1 {
    color: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    font-size: 2vw;
    filter: drop-shadow(10px, 10px, 2px, black);
    position: absolute;
    right: 0;
    top: 50%;
    height: 30vw;
    width: calc((var(--master-w)/4)*2);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: rgba(14,16,28,1);
    padding: 40px;
    transform: translateY(-50%);
    mix-blend-mode: screen;

}

#S1 .f1 {
    font-size: 1.5vw;
    padding-left: 80px;
}

#S1 .f2 {
    font-size: 1.5vw;
    padding-left: 80px;
    color: rgb(189,84,52);
}



#S1f {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 3vw;
    filter: drop-shadow(10px, 10px, 2px, black);
    position: absolute;
    left: 0vw;
    right: 0vw;
    bottom: 0vw;
    width: 100vw;
    mix-blend-mode: difference;
    animation: blurFadeIn 1s ease-in 3s backwards;
    animation-delay: 6s;
}

#S1f #L2 {
    width: 500px;
}

#S1f #L2b {
    width: 500px;
    position: relative;
    top: -25px;
}






section#C1 .imgbox {
    mix-blend-mode: screen;
    position: absolute;
    top: 0vw;
    left: 0vw;
    z-index: 0;
}

section#C1 .imgbox img{
    height: 100vw;
    width: 120vw;
    filter: grayscale(1);
    object-fit: fill;
    transform: scaleX(-1);
}



.box_container {
    min-width: calc(var(--master-w) - 64px);
    max-width: calc(var(--master-w) - 64px);
    height: max-content;
    padding: 32px;
    display: flex;
    flex-direction: column;
    color: var(--s-white2);
    position: relative;
    margin-top: 20px;
    justify-content: center;
}
.iso-footer-img {
  width: 120px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.border-1 {
    border: var(--box-border-s) solid var(--box-border-b);
    border-radius: var(--box-border-r);
}

.border-2 {
    border: 2px solid var(--box-border-b);
    border-radius: var(--box-border-r);
}

.border-3 {
    border: 2px solid var(--s-red1);
    border-radius: var(--box-border-r);
}

.border-4 {
    border: 2px solid var(--s-violet);
    border-radius: var(--box-border-r);
}

.border-5 {
    border: 2px solid var(--s-blue2);
    border-radius: var(--box-border-r);
}

.bg-1 {
    background-color: var(--box-bg);
    color: var(--s-white2);
}

.bg-2 {
    background-color: var(--box-bg2);
    color: var(--s-blue2);
}

.bg-3 {
    background-color: var(--s-dark-1);
    color: var(--s-white2);
}

.bg-w {
    background-color: var(--s-white2);
    color: var(--s-grey1);
}

.bg-s1{
    background: linear-gradient(to right, rgb(34,34,34) 35%, transparent);
    color: var(--s-white2);
}

.bg-s2{
    background: linear-gradient(to left, rgb(34,34,34) 35%, transparent);
    color: var(--s-white2);
}

.bg-s3{
    background: rgba(255,255,255,1);
    color: var(--s-white2);
}

.bg-s4{
    background-color: rgba(255,255,255,1);
    color: var(--s-white2);
}


.bg-s5 {
    background: linear-gradient(to top, var(--s-violet) 5%, transparent);
}

/* GRID */

.flex {
    display: flex;
}

.j-center {
    justify-content: center;
}

.j-justify {
    text-align: justify;
}

.row {
    display: flex;
    flex-direction: row;
    position: relative;
    align-content: space-between;
    justify-content: space-between;
}

.col1 {
    padding: 5px;
    max-width: calc(((var(--master-w) - 128px)/4)*1);
    min-width: calc(((var(--master-w) - 128px)/4)*1);
    display: flex;
    flex-direction: column;
}

.col2 {
    padding: 5px;
    max-width: calc(((var(--master-w) - 128px)/4)*2);
    min-width: calc(((var(--master-w) - 128px)/4)*2);
    display: flex;
    flex-direction: column;
}

.col3 {
    padding: 5px;
    max-width: calc(((var(--master-w) - 128px)/4)*3);
    min-width: calc(((var(--master-w) - 128px)/4)*3);
    display: flex;
    flex-direction: column;
}

.col4 {
    padding: 5px;
    max-width: calc(((var(--master-w) - 128px)/4)*4);
    min-width: calc(((var(--master-w) - 128px)/4)*4);
    display: flex;
    flex-direction: column;
}

.col5 {
    padding: 10px;
    max-width: calc(((var(--master-w) - 188px)/5)*1);
    min-width: calc(((var(--master-w) - 188px)/5)*1);
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.col2z {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col3z {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.col3z img {
    width: 450px;
    height: 450px;
    position: absolute;
    right: -10px;
    top: -111px;
    opacity: 0.7 !important;
    z-index: -5;
}

.o-h {
    overflow: hidden;
}

.a-com {
    position: relative;
    top: 10px;
}

.a-cal {
    position: relative;
    top: 10px;
}

/* BUTTONS */



/*LISGTHS */

.light-r {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
    content: '';
    left: -10px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--s-hover);
    border-radius: 50%;
    filter: blur(30px);
    animation: bright 5s ease-in-out infinite;
    animation-duration: 10s;
}

@keyframes bright {
    0% {
        opacity: 0.3;
    }
    25% {
        background-color: var(--s-blue2);
        opacity: 0.65;
        z-index: 0;
        filter: blur(20px);

    }
    50% {
        opacity: 0.3;
        width: 230px;
        height: 230px;
        z-index: 0;
        background-color: var(--s-hover);
        filter: blur(30px);
        transform: translateX(350px) translateY(-150px);
    }
    75% {
        background-color: var(--s-blue2);
        opacity: 0.65;
        z-index: 0;
        filter: blur(20px);

    }
    100% {
        opacity: 0.3;
    }
}


.logos .logo img{
    width: 160px;
    filter: invert(0.5) grayscale(1);
}

.logos .logo img:hover{
    filter: invert(0) grayscale(0);
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.link, .link2, .link3 {
    cursor: pointer;
}

.link:hover {
    color: var(--s-red1);
}

.active {
    color: var(--s-red1);
}

.link2:hover {
    color: var(--s-violet);
}

.active2 {
    color: var(--s-violet);
}

.link3:hover {
    color: var(--s-blue2);
}

.active3 {
    color: var(--s-blue2);
}

#z1 img, #z2 img, #z3 img, #z4 img{
    width: 300px;
    max-height: 300px;
    min-height: 300px;
}


span img#L2{
    width: 150px;
    max-height: 18px;
}

/* HEX */


.hive-container {
    width: var(--master-w);
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
    margin-top: 64px;
}
.hive-container-mobile {
    width: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    line-height: 1.3;
    margin-top: 64px;
    gap: 15px;
}

.hex-content-mobile {
    color: var(--s-hive-icon-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    text-align: center;
    border-radius: 10px;
    background: rgba(64,64,64,0.5);
    width: 300px;
    margin-bottom: 10px;
}

.hex-content-mobile:hover {
    background: var(--s-red1);
}

.hive-container .row, .hive-container-mobile .row{
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    margin-top: -24px;
  }
  
.hive-comment-container{
    position: relative;
}

.hive-comment-content{
    position: absolute;
    padding: 32px;
    top: 100px;
    height: 300px;
    color: var(--s-white0);
    font-family: 'Montserrat';
    font-size: 1.4rem;
}

.d-none {
    display: none !important;
}

  .hive-comment {
    z-index: 5;
    position: absolute;
    width: calc(var(--master-w) - 126px);
    height: 542px;
    background: linear-gradient(to left,  rgba(34,34,34,1), rgba(0,0,0,0.95) 60%, rgba(34,34,34,1)),
                linear-gradient(to right, rgba(34,34,34,1), rgba(0,0,0,0.95) 60%, rgba(34,34,34,1)) ;
    top: -510px;
    border-radius: 20px;
    border: 2px solid var(--s-violet);
    color: var(--s-white0);
    cursor: pointer;
  }

  .hexagon-item {
    cursor: pointer;
    width: 200px;
    height: 173.20508px;
    float: left;
    margin-left: -29px;
    z-index: 0;
    position: relative;
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg); }
    .hexagon-item:first-child {
      margin-left: 0; }
    .hexagon-item:hover {
      z-index: 10; }
      .hexagon-item:hover .hex-item:last-child {
        opacity: 1;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3); 
    }
      .hexagon-item:hover .hex-item:first-child {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2); 
    }
        .hexagon-item:hover .hex-item:first-child div:before,
        .hexagon-item:hover .hex-item:first-child div:after {
          height: 5px; }
      .hexagon-item:hover .hex-item div::before,
      .hexagon-item:hover .hex-item div::after {
        opacity: 1;
        background-color: var(--s-red1);
    }
      .hexagon-item:hover .hex-content svg {
        -webkit-transform: scale(0.97);
        -moz-transform: scale(0.97);
        -ms-transform: scale(0.97);
        -o-transform: scale(0.97);
        transform: scale(0.97);
    }
    .hexagon-item:hover .hex-content .icon svg {
        color: var(--s-red1);
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
    }
    .hexagon-item:hover .hex-content .title{
        color: var(--s-blue2);}
    
 



  .hex-item {
    position: absolute;
    top: 0;
    left: 50px;
    width: 100px;
    height: 173.20508px; }
    .hex-item:first-child {
      z-index: 0;
      -webkit-transform: scale(0.9);
      -moz-transform: scale(0.9);
      -ms-transform: scale(0.9);
      -o-transform: scale(0.9);
      transform: scale(0.9);
      -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .hex-item:last-child {
      transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
      z-index: 1; }
    .hex-item div {
      box-sizing: border-box;
      position: absolute;
      top: 0;
      width: 100px;
      height: 173.20508px;
      -webkit-transform-origin: center center;
      -moz-transform-origin: center center;
      -ms-transform-origin: center center;
      -o-transform-origin: center center;
      transform-origin: center center; }
      .hex-item div::before, .hex-item div::after {
        background-color: #1e2530;
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
        -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
        -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s; }
      .hex-item div:before {
        top: 0; }
      .hex-item div:after {
        bottom: 0; }
      .hex-item div:nth-child(1) {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); }
      .hex-item div:nth-child(2) {
        -webkit-transform: rotate(60deg);
        -moz-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        -o-transform: rotate(60deg);
        transform: rotate(60deg); }
      .hex-item div:nth-child(3) {
        -webkit-transform: rotate(120deg);
        -moz-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        -o-transform: rotate(120deg);
        transform: rotate(120deg); }
  
  .hex-content {
    color: var(--s-hive-icon-normal);
    display: block;
    height: 180px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transform: rotate(-30deg);
    width: 156px; }
    .hex-content .hex-content-inner {
      left: 50%;
      margin: -3px 0 0 2px;
      position: absolute;
      top: 50%; 
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .hex-content .icon {
      display: block;
      position: absolute;
      top: -52px;
      left: -16px;
      font-size: 2rem;
      line-height: 30px;
      margin-bottom: 11px; }
    .hex-content .title {
      display: block;
      position: absolute;
      left: 50%;
      top: -18px;
      transform: translateX(-50%) translateY(20px);
      font-family: 'Montserrat';
      font-size: 0.8rem;
      letter-spacing: 1px;
      line-height: 18px;
      color: var(--s-hive-text-0);
      text-transform: uppercase; }
    .hex-content svg {
      left: -7px;
      position: absolute;
      color: var(--s-hive-text-0);
      top: -13px;
      transform: scale(0.87);
      z-index: -1;
      -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
      -moz-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
      -o-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0s; }
    .hex-content:hover {
      color: var(--s-hive-icon-hover);
      z-index: 10 !important;
    }

    .hex-content svg path {
        fill: var(--s-hive-background) !important;
    }
  




/* CLIENTES */
#clientes {
    width: 100%;
    margin-bottom: 32px;
    margin-left: 32px;
    margin-right: 32px;
  }
  
  .marquee-wrapper {
    max-width: calc(var(--master-w) - 128px);
  }

  .marquee {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    gap: var(--gap);
   
  }
  
  .marquee__group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
  }
  .marquee__group img { width: 150px;}

.marquee__group2 {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}
.marquee__group2 img {
    width: 400px;
    height: 300px;
}

.marquee__group2 img:hover {
    transform: scale(2);;
    cursor: zoom-in;
}
  
  @media (prefers-reduced-motion: reduce) {
    .marquee__group {
      animation-play-state: paused;
    }
  }
  
  .marquee--vertical {
    --mask-direction: to bottom;
  }
  
  .marquee--vertical,
  .marquee--vertical .marquee__group {
    flex-direction: column;
  }
  
  .marquee--vertical .marquee__group {
    animation-name: scroll-y;
  }
  
  .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: -3s;
  }
  
  @keyframes scroll-x {
    from {
      transform: translateX(var(--scroll-start));
    }
    to {
      transform: translateX(var(--scroll-end));
    }
  }
  
  @keyframes scroll-y {
    from {
      transform: translateY(var(--scroll-start));
    }
    to {
      transform: translateY(var(--scroll-end));
    }
  }

.std1 {
    position: relative;
    display: flex;
    justify-content: center;
}



  .std1::after, .std1::before {
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.1);
  }

div.bimg {
    background-image: var(--bgimg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: var(--master-w);
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ibe {
    box-shadow: 0 0 20px 20px rgba(0,0,0,0.8) inset;
}

#SPFOffice {
    position: absolute;
    width: calc(var(--master-w) - 64px);
    height: 600px;
    z-index: 2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: white;
    justify-content: center;
    align-items: center;
}

#SPFOffice span {
    text-shadow: #000000;
    background-color: rgba(0,0,0,0.8);
    width: calc(var(--master-w) - 64px);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.marquee-soc-container {
    max-width: var(--master-w);
}

.marquee-soc {
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    gap: 5px;
    --mask-direction: to bottom;
    flex-direction: column;
}

.marquee-soc-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
    min-width: 100%;
    animation: scroll-y 120s linear infinite;
    flex-direction: column;
}
.marquee-soc-group img { 
    width: calc(var(--master-w) - 64px);
    height: 600px;
    opacity: 0.8;
    object-fit: cover;
}

.bbc {
    position: relative;
    top: 110px;
    width: calc(var(--master-w) - 64px);
    height:max-content;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bbc .booking {
    top: -300px;
}

/* Video NG-NSOC: solo video a ancho completo + título, sin efecto mitad y mitad */
.box_container2--nsoc {
    height: 500px;
    min-height: 500px;
}
.nsoc-inline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 13px;
}
.box_container2--nsoc .marquee-soc-container,
.box_container2--nsoc .SOCimg {
    display: none;
}
.box_container2--nsoc #SPFOffice {
    z-index: 2;
}
.box_container2--nsoc #SPFOffice span.spfoffice-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: auto;
    padding: 16px 24px;
    border-radius: 8px;
}

.SOCimg {
    width: var(--master-w);
    height: 400px;
    background-image: url('../img/build/11.JPG');
    background-size: cover;
    background-position: center -250px;
}


.blur-img {
    filter: blur(10px);
    opacity: 0.3;
}

.a-b-mode {
    animation-name: imgbluring;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.a-ub-mode {
    animation-name: imgunbluring;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes imgunbluring {
    0%{
        filter: blur(10px);
        opacity: 0.3;
    }
    100% {
        filter: blur(0px);
        opacity: 1;

    }
}

@keyframes imgbluring {
    0%{
        filter: blur(0px);
        opacity: 1;
    }
    100% {
        filter: blur(10px);
        opacity: 0.3;
    }
}


/* NEWS */

.news_container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background: rgba(0,0,0,0.5);
    width: 100%;
    min-height: 189px;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}

.news_container:hover {
    background: rgba(255,255,255,0.1);
}

.news_img {
    width: 90px;
    display: flex;
    align-items: center;
}

.news_img img{
    width: 100%;
    
}

.news_info {
    position: relative;
    top: -10px;
    width: calc(100% - 90px);
    display: flex;
    flex-direction: column;
}

.navbar_Container #Logo {
    left: -10px;
}

/*JCARDS*/

.jcard {
    padding: 20px;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.jcard_desc {
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--s-white1);
}

.jcard_info {
    margin-top: 12px;
    height: 0; 
    overflow: hidden;
    transition: height 0.7s ease-in-out;
    display: flex;
    flex-direction: column;
    max-width: 448px;
}

.jcard_info .j1 {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    border-left: 5px solid var(--s-blue2);
    color: var(--s-blue2);
}

.jcard_info .j1r {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 5px;
    border-left: 5px solid var(--s-red1);
    color: var(--s-red1);
}

.jcard_info .j2 {
    margin-top: 3px;
    margin-bottom: 3px;
    padding-left: 30px;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--s-white1);
}

.jcard_info .j3 {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 70px;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--s-white1);
}

#b-nsoc {
    font-family: 'Montserrat';
    font-size: 1.4rem;
    margin-bottom: 32px;
}
/*SPARTANO politica*/
#p_spar{
    position: absolute;
    bottom: 120px;
    right: 40px;
    width: 265px;
    height: 330px;
    background-image: url('/assets/img/spartan/DEFENSA1.webp');
    background-size: cover ;
}

/* Contact */



/*MOBILE HEX*/

.hexagon-m-item, .hex-m-content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.hex-m-content-inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 270px;
    height: 50px;
    background: var(--s-grey1);
    padding: 0px 10px;
    margin: 5px 0px;
    border-radius: 20px;
    border: 1px solid var(--s-red1);
}
.hex-m-content-inner .icon{
    margin-left: 5px;
    color: var(--s-red1);
}
.hex-m-content-inner .title{
    margin-left: 10px;
    color: var(--s-white1);
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* SERVICES */
.service-m-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    line-height: 1.5rem;
    position: relative;
    width: 100%;
    text-align: center;
    top: 15px;
}

.service-container{
    display: flex;
    flex-direction: column;
    color: var(--s-white2);
    max-width: var(--master-w);
    margin-left: 310px;
    margin-right: 310px;
    max-height: calc(100vh - 241px);
    position: relative;
}

.service-row{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-row.title{
    margin-bottom: 10px;
}

.service-row.form{
    margin-bottom: 10px;
    min-height: 300px;
    border-radius: 20px;
    background: linear-gradient(to top, var(--s-violet) 5%, transparent);
}

.service-row.rela{
    margin-bottom: 10px;
    margin-top: 10px;
    min-height: max-content;
    display: flex;
}

.service-row.rela .rel-ser{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 15px;
}

.service-row.rela .rel-ser .item{
    color: var(--s-white0);
    display: block;
    margin-bottom: 6px;
    padding: 10px;
}

.service-row.rela .rel-ser .separador{
    color: var(--s-white0);
    display: block;
    margin-bottom: 6px;
    padding: 10px;
    color: var(--s-red1);
}

.service-row.rela .rel-ser .item .title{
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.service-row.rela .rel-ser .item.selected .title{
    color: var(--s-blue1);
}

.service-row.rela .rel-ser .item.selected .icon{
    color: var(--s-red1);
}

.service-row.rela .rel-ser .link:hover{
    color: var(--s-red1);
}

.service-row.rela .rel-ser .link:hover .icon{
    color: var(--s-red1);
}
.service-row.rela .rel-ser .link:hover .title{
    color: var(--s-blue1);
}
.ser-sec-tit{
    text-transform: uppercase;
    font-size: 1rem;
    color: var(--s-red1);
    text-align: center;
}

.ser-sec-tit2{
    font-size: 1.5rem;
    color: var(--s-violet);
    text-align: center;
}


.service-row.info{
    /*overflow-y: scroll;*/
    position: relative;
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 30%;
}

#s-mark{
    position: absolute;
    top: 0px;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--s-red1);
    z-index: 5;
    right: 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

#s-mark #s-m-c{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.3);
    animation: animate2 4s ease-in-out infinite;
    opacity: 0;
    color: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

@keyframes animate2 {
    0%,100% {
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(75%) translateY(70px);
        opacity: 1;
        background-color: rgba(255,255,255,0.5);
        color: rgba(0,0,0,0.8);
        font-size: 1rem;
    }
}

.service-back button{
    color: #000000;
    background-color: var(--s-red1);
    border: 2px solid var(--s_red1);
    border-radius: 5px;
    width: 100px;
    height: 20px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.8rem;
    cursor: pointer;
}

.service-back button:hover{
    color: #FFFFFF;
    background-color: var(--s-red2);
}

#service-content{
    /*max-height: calc(100vh - 900px);*/
    min-height: max-content;
    width: 100%;
    /*overflow-y: scroll;*/
}

#service-title-img{
    font-size: 3rem;
    text-align: center;
    color: var(--s-red1);
}

#service-title-label{
    margin-top: 10px;
    font-family: 'Montserrat';
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 18px;
    color: var(--s-blue1);
    text-transform: uppercase;
}

#service-body{
    /*min-height: calc(100vh - 216px);*/
    min-height: max-content;
}

#service-list{
    width: 300px;
    min-height: max-content;
    height: max-content;
    background-color: rgba(255,255,255,0.1);
    position: absolute;
    left: -10px;
    top: 110px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    color: var(--s-blue1);
}

#service-list .link:hover{
    color: var(--s-red1);
}

#service-list .link:hover .icon{
    color: var(--s-red1);
}
#service-list .link:hover .title{
    color: var(--s-blue1);
}

#service-list hr {
    color: var(--s-red1);
    border-color: var(--s-red1);
    margin-bottom: 6px;
    margin-top: 6px;
}

#service-list .item{
    color: var(--s-white0);
    width: 260px;
    display: block;
    margin-bottom: 6px;
}

#service-list .item .title{
    padding-left: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

#service-list .item.selected .title{
    color: var(--s-blue1);
}

#service-list .item.selected .icon{
    color: var(--s-red1);
}

.list{
    display: flex;
    flex-direction: column;
    color: var(--s-blue1);
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 1.2rem;
    margin-left: 128px;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 10px;
}

.list .LL1 {
    position: relative;
    top: 5px;
    width: 20px;
    margin-right: 20px;
}

.imgbg {
    position: relative;
}

.imgbg img {
    position: absolute;
    width: 160px;
    opacity: 0.8;
    top: 70px;
    right: 50px;
}

.tcenter{
    text-align: center;
}

section .centerimg{
    width: 90%;
    position: absolute;
    opacity: 0.8;
    top: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background-blend-mode: multiply;
    z-index: -1;
}

section .centerimg.rotate{
    transform: rotate(180deg);
}

section .centerimg.o25{
    opacity: 0.3 !important;
}

section .centerimg.o50{
    opacity: 0.5 !important;
}

section .centerimg.o100{
    opacity: 1 !important;
}

section .centerimg.rt{
    transform: translateX(30%);
}

section .centerimg.fx{
    position: fixed !important;
    width: 100% !important;
    min-width: var(--master-w);
    top: -50px !important;
    left: 0px !important;
}

#Clist, #Plist {
    display: flex;
    margin: 32px;
    gap: 20px;
    justify-content: center;
    flex-flow: wrap;
}

#Clist .link{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--s-blue1) !important;
}

#Clist .link:hover{
    color: var(--s-red1) !important;
}

#Clist span{
    width: 200px;
    color: var(--s-white0);
}

#Plist span{
    width: 300px;
    color: var(--s-white0);

}

.partner{
    display: flex;
    width: 350px !important;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px;
    gap: 5px;
}

.partner .name{
    font-size: 1.2rem;
    color: var(--s-blue1) !important;
}

.partner .address{
    font-size: 1.0rem;
    text-align: right;
}

.partner .web{
    font-size: 0.8rem;
    text-align: right;
}

.partner .mail{
    font-size: 0.8rem;
    text-align: right;
}

#PartnerForm{
    color: var(--s-white2);
}

.CForm{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, var(--s-violet) 5%, transparent);
    border-radius: 20px;
    margin-top: 20px;
    padding: 20px;
}

.CForm form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.CForm form input{
    width: 80%;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 5px;
    color: var(--s-white2);
    background: transparent;
    border-color: var(--s-violet);
}

.CForm form input:focus{
    background: var(--s-white2);
    color: var(--s-violet);
}

.CForm form input[type=submit]{
    border-radius: 5px;
    cursor: pointer;
}

.CForm form input[type=submit]:hover{
    background: var(--s-violet4);
}

.form-wait{
    font-size: 3rem;
    color: var(--s-white2);
}

.Cform{
    display: flex;
    gap: 10px;
    flex-direction: column !important;
    flex-flow: wrap;
    width: 1000px;
    justify-content: center;
    align-items: center;
}

.Cform .label{
    color: var(--s-blue1);
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
}

.Cform .description{
    text-align: center;
    color: var(--s-white1);
}

.Cform .group {
    display: flex;
    flex-direction: row !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-flow: wrap;
}

.Cform .checkbox{
    color: var(--s-white1);
}

.Cform .checkbox .item{
    display: flex;
    flex-direction: row !important;
    flex-flow: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.Cform .checkbox .item .icon{
    color: var(--s-white2);
}

.Cform .checkbox .item label{
    font-size: 0.8rem;
    color: var(--s-white2);
}

.Cform .input{
    color: var(--s-violet);
    padding: 5px;
    border-radius: 5px;
    width: 300px;
}

.Cform .textarea{
    color: var(--s-violet);
    padding: 5px;
    border-radius: 5px;
    width: 700px;
}

.Cform .button{
    margin-top: 5px !important;
    border: 1px solid var(--s-white1);
    color: var(--s-white1);
    background: var(--s-violet);
}

.Cform .button:hover{
    background: var(--s-violet4);
}

.form-icon {
    font-size: 2.5rem;
    color: var(--s-white1);
    position: absolute;
    top: 100px;
    display: none;
}

.btdiag {
    margin-top: 50px;
    padding: 20px !important;
    transform: scale(1.5);
    animation: heartbeat 2s infinite;
    animation-play-state: running;
    cursor: pointer;
    transition: all 0.3s easy;
}

.btdiag:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.5);
    animation-play-state: paused;
    box-shadow: none !important;
    transition: all 0.3s easy;
}

@keyframes heartbeat {
    0% { 
        transform: scale(1.5);
        color: var(--s-white2); 
    }
    50% { 
        transform: scale(1.5); 
        color: var(--s-red1);
        background: rgba(0,0,0,0.2);
        border-color: var(--s-red1);
        box-shadow: 
            1px 1px 10px 2px rgba(255,255,255,0.5),
            -1px -1px 10px 2px rgba(255,255,255,0.5),
            3px 3px 10px 3px var(--s-red1), 
            -3px -3px 10px 3px var(--s-red1);
    }
  
    100% { 
        transform: scale(1.5);
        color: var(--s-white2); 
    }
}
.link.active .lg, .link.active {
  color: #ff9800;
  font-weight: bold;
  text-decoration: underline;
}
#Footer .iso-footer-img {
  display: block;
  margin: 10px auto;
  width: 300px;
  max-width: 100%;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}

@media (max-width: 600px) {
  #Footer .iso-footer-img {
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: -20px;
    margin-bottom: 10px;
    width: 100px;
    max-width: 100px;
    max-height: 50px;
    height: auto;
  }
}
