#gt-wrapper-73571875 span {
    display:none;
    }

:root {
    --verde_aqua: #3bb4c4;
    --black: #111113 !important;
    --grey: #333333;
    --orange: #ff4200;
    --separator_grey: #ededed; /* Gris para separadores */
    --separator_olive: #edefe8; /* para secciones especiales */
    --blue_vinya: #082529; /* Azul Verdoso */
}

body {
    font-family: 'Roboto', sans-serif !important;
    background-color: #edefe8;
    width: 100vw !important;
    min-width: 100% !important;
    overflow-x: hidden;
}

select {
    border: 0;
    border-bottom: 2px solid #cecece;
    text-align: start;
    background-color: transparent;
}


a {
    text-decoration: none !important;
    color: inherit !important;
}

input {
    border: 0;
    border-bottom: 2px solid #dbdbdb;
    padding-bottom: 1rem;
    font-style: italic;
    background-color: transparent;
}

textarea {
    border: 2px solid #dbdbdb;
    height: 10em;
    resize: none !important;
    font-style: italic;
    padding-top: 1rem;
    background-color: transparent;
}

button {
    border: 0;
    background-color: transparent;
}

.vert-separator {
    width: 1px;
    background-color: var(--separator_olive);
    display: inline-block;
    margin: 0 10px;
}

.vert-separator.p100 {
    height: 100px;
}

.vert-separator.p50 {
    height: 50px;
}

.line-orange {
    height: 4px;
    background-color: #ff4200;
}

.underline-orange {
    border-bottom: 5px solid var(--orange);
}

.contact_form {
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0 100%, 0 22%, 7% 16%, 0 10%, 0 0);
}

/* Lineas sparadoras en Navbar */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 40%; /* Ajusta el tamaño de la línea */
    width: 1px; /* Ancho de la línea */
    background-color: #000; /* Color del divisor */
    margin: auto 0; /* Centrar la línea */
    transform: translateY(-45%);
}

.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding: 15px 0 !important;
}

.navbar.scrolled-vaq {
    padding: 0px 0 !important; /* Reduce el tamaño del navbar */
}

.myHover_white {
    color: var(--verde_aqua) !important;
    transition: 0.5s;
}

.myHover_white:hover {
    color: var(--separator_olive) !important;
}

.myHover_aqua {
    color: #fff !important;
    transition: 0.5s;
}

.myHover_aqua:hover {
    color: var(--verde_aqua) !important;
}

.btn_aqua {
    background-color: var(--verde_aqua);
    transition: 0.5s;
}

.btn_aqua:hover {
    background-color: #3199a7;
}

.btn_white {
    background-color: #fff;
    transition: 0.5s;
}

.btn_white:hover {
    background-color: #e6cac0;
}

.btn_black {
    background-color: var(--black);
    transition: 0.5s;
}

.btn_black:hover {
    background-color: var(--verde_aqua);
}

.btn_orange {
    background-color: var(--orange);
    transition: 0.5s;
}

.btn_orange:hover {
    background-color: #ff5619;
    color: #fff;
}


.service_btn h6 {
    background-color: inherit;
    transition: .4s;
}

.service_btn:hover h6 {
    color: var(--orange) !important;
}

/* Animación para cajas servicios */
.expand-box {
    transform: scale(0.5); /* Tamaño reducido inicialmente */
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.expand-box.visible {
    transform: scale(1); /* Tamaño original */
    opacity: 1;
}


/* Textos */
.nav-link {
    color: var(--black) !important;
}

.nav-link.active{
    color: var(--verde_aqua) !important;
}

.text-verde_aqua {
    color: var(--verde_aqua);
}

.text-light_grey {
    color: #dbdbdb;
}

.text-orange {
    color: var(--orange);
}

.text-blue_vinya {
    color: var(--blue_vinya) !important;
}

/* Tamaño textos */
.fs-big{
    font-size: 3.2rem;
    font-weight: 500;
}


.fs-7 {
    font-size: 0.9rem;
}

.fs-8 {
    font-size: 0.8rem;
}


/* Backgrounds */
.bg-blue_vinya {
    background-color: var(--blue_vinya);
}

.bg-vinya_black {
    background-color: var(--black) !important;
}

.bg-olive {
    background-color: var(--separator_olive);
}

.bg-orange {
    background-color: var(--orange);
}

.bg-verde_aqua {
    background-color: var(--verde_aqua);
}

.bg-blue_vinya_transp {
    background-color: #147d8d59;
}


/* Imagenes */
.image-container {
    width: 100%; /* Ajusta el contenedor al tamaño deseado */
    overflow: hidden; /* Oculta la parte sobrante de la imagen */
    position: relative; /* Necesario para posicionar el botón */
}

.image-container.h-17 {
    height: 17rem;
}

.cropped-image {
    width: 100%; /* La imagen ocupa todo el ancho disponible */
    height: 100%; /* La imagen ocupa todo el alto disponible */
    object-fit: cover; /* Mantiene la proporción de la imagen y recorta el exceso */
    object-position: center; /* Centra la porción de la imagen que se muestra */
}

.cropped-image.left {
    object-position: left;
}

.cropped-image.right {
    object-position: right;
}

.cropped-image.bottom {
    object-position: bottom;
}

.cropped-image.top {
    object-position: top;
}


.image-height {
    background-color: transparent;
    filter: grayscale(.85);
    opacity: 60%;
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.image-height:hover {
    cursor: pointer;
    filter: grayscale(0);
    opacity: 100%;
}

.image-height.p80 {
    height: 65px;
}

.image-height.p50 {
    height: 46px;
}

.image-height.p35 {
    height: 32px;
}

.blog-img-index {
    aspect-ratio: 1/1.5 !important;
    height: 20vh;
    width: 15vw;
}

.blog-header{
    height: 60vh;
}

.logo-header {
    height: 3.6vh;
}

.titulo-post-blog-seccion{
    height: 4.5rem;
}

.text-post-blog-seccion {
    height: 9rem;
}

.nav-link:hover{
    color: #ff4200 !important;
}


/* DIVS */
.info-box {
    bottom: 0%;
    left: 10%;
    width: 35%;
}


.about_dominic {
    background-image: url('../img/about/business-man.png');
    background-position: center;
}


.focused_markets {
    background-image: url('../img/markets-img-1.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.service_header {
    background-image: url('../img/services/main-banner-1839x863.png');
    background-repeat: no-repeat;
    background-size: cover;
}


.service-div {
    background-color: white;
    color: var(--blue_vinya);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: baseline;
    transition: all 0.75s;
    transform-origin: bottom;
}

.service-div h5 {
    color: var(--blue_vinya);
}

.service-div:hover {
    background-color: var(--black);
    color: white;
    cursor: pointer;
    transform: scale(1.06);
}

.service-div:hover h6 {
    color: var(--verde_aqua);
}

.service-div:hover h5 {
    color: white;
}

.markets-div {
    border: 2px solid white;
    background-color: var(--black);
    color: white;
    transition: all 0.5s;
    position: relative;
    height: 14rem;
}

#black, #white {
    position: absolute; /* Superpone los elementos */
    top: 25px;
    left: 25px;
    width: 90%;
    height: 100%;
    transition: opacity 0.7s; /* Transición suave */
    opacity: 1; /* Inicialmente visible */
}

#white {
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    top: 10px;
    left: 20px;
    width: 85%;
}

.markets-div:hover #black {
    opacity: 0;
}

.markets-div:hover #white {
    opacity: 0.85;
}

.markets-div:hover {
    background-color: var(--verde_aqua);
    color: var(--blue_vinya);
    cursor: pointer;
}



/* Posicionar banderitas */
.gtranslate_wrapper {
    position: absolute;
    top: 50px; /* Ajusta según tu menú */
    right: 10px;
    background: white;
    border: 1px solid #ccc;
    padding: 10px;
    display: block;
}



.div-preguntas {
    transition: 0.4s ease-in;
    box-shadow: 0px 0px 6px 1px #e7e7e7;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding-block: 3.5vh;
}

.div-preguntas:hover {
    cursor: pointer;
    box-shadow: 0px 0px 6px 1px #97c5db;
}

.div-preguntas .info {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-out;
}

.div-preguntas.expanded .info {
    max-height: 500px;
}

.border-grey-blog {
	border-left: 1px solid #6c757d;
}


/* Pantalla de carga */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.37); /* Fondo semi-transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden; /* Evita el scroll */
}

body.loading {
    overflow: hidden; /* Bloquea el scroll del body */
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid var(--blue_vinya);
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-left: 4px solid var(--verde_aqua);
    border-bottom: 4px solid transparent;
    animation: rotation 0.5s linear infinite reverse;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

@media only screen and (min-width: 1921px) {
    .fs-big {
        font-size: 4rem;
    }
}

@media only screen and (max-width: 1500px) {
    .fs-big {
        font-size: 2.5rem;
    }

    .logo-header {
        height: 3vh;
    }

    .info-box {
        left: 10%;
        width: 40%;
    }

    .image-height.p80 {
        height: 58px;
    }
    
    .image-height.p50 {
        height: 37px;
    }
    
    .image-height.p35 {
        height: 25px;
    }
}

@media only screen and (max-width: 1279px) {
    .info-box {
        bottom: inherit;
        left: inherit;
        top: 2%;
        right: 2%;
        width: 50%;
    }

    .fs-big {
        font-size: 2.6rem;
    }

    .focused_markets {
        background-image: url('../img/markets-img-1-rotada.png');
        background-size: cover;
    }

    .service_header {
        background-image: url('../img/services/main-banner-rotado.png');
    }

    .image-height.p80 {
        height: 60px;
    }
    
    .image-height.p50 {
        height: 40px;
    }
    
    .image-height.p35 {
        height: 28px;
    }

    .contact_form {
        clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0 100%, 0 15%, 5% 11%, 0 7%, 0 0);
    }

    .blog-header{
        height: 40vh;
    }

    .logo-header {
        height: 3vh;
    }

    .text-post-blog-seccion {
        height: 10.5rem;
    }
    
}


@media only screen and (max-width: 500px) {
    .image-height.p80 {
        height: 45px;
    }
    
    .image-height.p50 {
        height: 28px;
    }
    
    .image-height.p35 {
        height: 20px;
    }

    .logo-header {
        height: 2.5vh;
    }

    .fs-big{
        font-size: 2.5rem;
    }

    .contact_form {
        clip-path: polygon(50% 5%, 60% 0, 100% 0, 100% 100%, 0 100%, 0 0, 40% 0)
    }

    .text-post-blog-seccion {
        height: 12rem;
    }

    .fs-7 {
        font-size: 0.85rem;
    }

    .blog-header{
        height: 45vh;
    }

    .info-box {
        bottom: inherit;
        left: inherit;
        top: 8%;
        right: 2%;
        width: 75%;
    }

    .image-container.h-17 {
        height: 10rem;
    }

    .vert-separator.p50 {
        height: 35px;
    }
	
	.border-grey-blog {
		border-left: 0px;
	}

    .underline-orange {
        border-bottom: 4px solid var(--orange);
    }
}



.type-animation {
    text-align: center;
    color: #000;
    padding: 0;
    text-transform: none;
  }
  
.type-animation span {
    color: var(--verde_aqua);
    animation-delay: 2s;
    font-weight: 600;
  }
  
  .txt-rotate > .wrap {
    border-right: 0.08em solid #666;
  }
