/**
*  Bootstrap v5.3.3 
--------------------------------------------------------------*/


@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Book.woff2') format('woff2'),
  url('fonts/Garet-Book.woff') format('woff'),
  url('fonts/Garet-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Garet';
  src: url('fonts/Garet-Heavy.woff2') format('woff2'),
  url('fonts/Garet-Heavy.woff') format('woff'),
  url('fonts/Garet-Heavy.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --default-font-font: 'Garet',  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --default-font: 'Garet';
  --heading-font: 'Garet';;
  --nav-font: 'Garet';
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #484848;  /* The default color of the main navmenu links */
  --nav-hover-color: #000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #000; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000000;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: normal;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


.imgLiquid{
	background-size: cover!important;
	background-position: 40% 50%!important;
	background-repeat: no-repeat!important;
}
.imgLiquid img{
	opacity: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  /*background-color: transparent;*/
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}
.header span{
  width: 38px;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-top: 10px;
}

/*.header  img.logo {
  max-height: 36px;
  margin-right: 8px;
}*/

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

@media (max-width: 1200px) {
  .header .logo img {
    margin-top: 0px;
  }

  
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}



/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: rgba(255, 255, 255, 0.5);
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #e84545;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin: 10px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    /*padding: 18px 15px;*/
    padding: 7px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }


  /* animacion */
.navmenu a:before,   .navmenu a:after
{
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 2px;
    content: '';
    background: #484848;
    transition: all 0.3s;
}

.navmenu a:before
{
    left: 0px;
    top: 0px;
}

.navmenu a:after
{
    right: 0px;
    bottom: 0px;
}

.navmenu a:hover:before, .navmenu a:hover:after
{
    opacity: 1;
    width: 100%;
}
/*end*/

  .navmenu li:last-child a {
    /*padding-right: 0;*/
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 500;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    padding-top: 10px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    /*border-radius: 6px;*/
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.navmenu a.active{
  color: #000;
}
/*** ACTIVE * NEW */
.navmenu a.active:before, .navmenu a.active:after{
    opacity: 1;
    width: 100%;}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 150px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}



.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Global btn
--------------------------------------------------------------*/




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}




.hero img.hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container,.hero .container-fluid {
  position: relative;
  z-index: 3;
}


.hero h1 {
  font-family: "Quicksand";
  margin: 0;
  font-size: 0.9em;
  font-weight: 700;
  z-index: 2;
  margin-right: 10px;
  text-transform: uppercase;
  text-align: right;
  width: 310px;
  top: -60px;
  right: 0;
  position: absolute;
}

.hero img.logo {
  height: 180px;
}

.hero h2 {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 700;

}

.hero p {
  color: white;
  margin: 5px 0 0 0;
  font-size: 1em;
  margin:10px auto;
  width: 300px;
  text-align: right;
}



.btn-hero,
.btn-hero *,
.btn-hero :after,
.btn-hero :before,
.btn-hero:after,
.btn-hero:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-hero {
  background-color: transparent; 
  color: white; 
  padding: 10px 40px;
  text-align: center; 
  text-decoration: none; 
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-transform: uppercase;
  width: 300px;
}
.btn-hero:disabled {
  cursor: default;
}
.btn-hero:-moz-focusring {
  outline: auto;
}
.btn-hero svg {
  display: block;
}
.btn-hero [hidden] {
  display: none;
}
.btn-hero {
  box-shadow: inset 0 0 0 2px #fff;
  box-sizing: border-box;
  padding: 0.8rem 3rem;
  position: relative;
  transition: color 0.1s linear;
}
.btn-hero:hover {
  color: white; 
  background-color: transparent; 
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  -webkit-transform: scaleX(1.1);
  -moz-transform: scaleX(1.1);
  -o-transform: scaleX(1.1);
  -ms-transform: scaleX(1.1);
  transform: scaleX(1.1)
}
.btn-hero:after,
.btn-hero:before {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}
.btn-hero:before {
  border-right: var(--border);
  border-top: var(--border);
  left: 0;
  top: 0;
}
.btn-hero:hover:before {
 --border: 2px solid #fff;
 -webkit-animation: border-top-and-right 1s forwards;
  animation: border-top-and-right 1s forwards;
}
.btn-hero:after {
  border-bottom: var(--border);
  border-left: var(--border);
  bottom: 0;
  right: 0;
  z-index: -1;
}
.btn-hero:hover:after {
  --border: 2px solid #fff;
  -webkit-animation: border-bottom-and-left 1s forwards;
  animation: border-bottom-and-left 1s forwards;
}
@-webkit-keyframes border-top-and-right {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    height: 0;
    width: 100%;
  }
  to {
    height: 100%;
    width: 100%;
  }
}
@keyframes border-top-and-right {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    height: 0;
    width: 100%;
  }
  to {
    height: 100%;
    width: 100%;
  }
}
@-webkit-keyframes border-bottom-and-left {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    height: 0;
    width: 100%;
  }
  to {
    height: 100%;
    width: 100%;
  }
}
@keyframes border-bottom-and-left {
  0% {
    height: 0;
    width: 0;
  }
  50% {
    height: 0;
    width: 100%;
  }
  to {
    height: 100%;
    width: 100%;
  }
}

@media (min-width: 375px) {
  .hero h1 {
    margin: 0;
    font-size: 0.9em;
    font-weight: 700;
    z-index: 2;
    margin-right: 50px;
    text-transform: uppercase;
    text-align: right;
    width: 310px;
    top: -80px;
    right: 0;
    position: absolute;
  }
}


@media (min-width: 768px) {
  .hero img.logo {
    height: 240px;
    margin-bottom: 30px;
  }

  .hero p {
    margin-right: 50px;
    width: 100%;
    font-size: 1.1rem;
  }
  .hero h1 {
    margin: 0;
    margin-right: 15px;
    top: 0;
  }
  .btn-hero {
    padding: 1.2rem 3rem;
  }
  
}

@media (max-width: 768px) {
  .hero .container{
    margin-top: 15%;
    position: absolute;
    padding-top: 10%;
  }
}


@media (min-width: 768px) and (max-width: 950px) {
.hero .drop{
  padding-left: 30px;
}
.hero img.logo {
  height: 235px;
}
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 3rem;
  font-weight: 800;
}
.about p {
font-size: 1.25rem;
}
@media (max-width: 768px) {
  .about{
    padding: 0;
    margin-bottom: 0!important;
  }
}
@media (min-width: 1200px) {
  .about h2{ font-size: 4rem;}
  }
  

/*--------------------------------------------------------------
# services Section
--------------------------------------------------------------*/

.services{
  padding: 0;
}

.services .s-title{
  padding: 0 25px;
}
.services h2{
    font-weight: 600;
}


.services .box {
  background: #fff;
  border-radius: 0;
  padding: 20px 20px;
  margin-bottom: 40px;
  border-color: #fff;
}

.services .box .card-img{
  border-radius: 0;
}

.services .box figure {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.services .box .card-title{
  font-size: 1.2rem;
  font-weight: 600;
  color: #484848;
}

.services .box .card-body{
  position: relative;
  padding: 0 0 20px;
}

.services .box .card-body .btn, .card-blog .btn{
  display: block;
  /*font-weight: 600;*/
  padding-left: 0;
  text-align: left;
  position: relative;
  color: #484848;
}

.services .box .card-body .btn.btn-arrow:before,.card-blog .btn.btn-arrow:before  {
  /*background: #a8d3c6;*/
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  color: #fff;
  content: "";
  display: block;
  height: 35px;
  line-height: 35px;
  margin-top: -5px;
  position: absolute;
  right: 10px;
  text-align: center;
  /*top: 50%;*/
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
  width: 35px;
  content:url('../img/icon/right-arrow-button.svg');
}
.services .box .card-body .btn.btn-arrow:hover, .card-blog .btn.btn-arrow:hover{
  padding-left: 10px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
  color: #000;

}

.services .box .card-body .btn.btn-arrow:hover:before, .card-blog .btn.btn-arrow:hover:before{
  width: 30px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}

@media (min-width: 768px) {
  .services .s-title{
    padding: 0 0px;
  }

  .services .box.box-left .card-body{
    padding-left: 50%;position: relative;
  }
  .services .box.box-left .card-body .cont{
    width: 100%;
  }

  .services .box.box-left figure{
    left: 0;
    position: absolute; 
  }

  .services .box figure {
    height: 100%;
    margin: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
  }
  .services .box .card-body .cont {
    padding: 20px;
    width: 50%;
  }

  .services .box.imgl .card-img{
    left: 0;
  }
  .services .box.imgl .card-body{
    padding-left: 50%;
  }
}



/*--------------------------------------------------------------
# testimony Section
--------------------------------------------------------------*/

#testimonials{
  background-color: #5d6162;
}

#testimonials .card{
  background-color: #fff;
}

#testimonials .carousel-indicators{
  bottom: -2em;
}
#testimonials .stars {
  justify-content: center;
}

#testimonials .stars .star {
  background-image: url(../img/icon/star.svg);
  height: 35px;
  margin-right: 8px;
  width: 35px
}

#testimonials .stars .star:last-child {
  margin: 0
}

#testimonials .carousel-indicators button.active {background-color: #5d5d5d;}


@media (min-width: 960px) {
  #testimonials .stars {
    justify-content: start;
  }
}

/*--------------------------------------------------------------
# we-help Section
--------------------------------------------------------------*/
#we-help{margin: 0;padding-top: 0; padding-bottom: 0;}
#we-help div{height: 100%; width: 100%;}
#we-help p{font-size: 1.7em;width: 80%;} 
#we-help figure{
min-height: 350px;
max-height: 440px;
margin: 0;
}
#we-help figure img{width: 100%;}


@media (min-width: 768px) {
  #we-help p{ width: 45%;} 
}

/*--------------------------------------------------------------
# Plataform Section
--------------------------------------------------------------*/


#carouselplatform .carousel-inner {
  padding: 1em;
}
#carouselplatform .card {
  margin: 0 1.2em;
  /*box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);*/
  border: none;
  background-color: #4b515a;
  background-image: linear-gradient(62deg, #4b515a 0%, #9a969c 100%);
  color: #fff;

}
#carouselplatform .card:hover {
  background-color: #0d304e;
  background-image: linear-gradient(62deg, #0d304e 0%, #9a969c 100%);
}

#carouselplatform .card .card-body{
min-height: 280px;
}

#carouselplatform .carousel-control-prev,
#carouselplatform .carousel-control-next {
  /*background-color: #5d6162;*/
  border: 2px solid #484848;
  width: 6vh;
  height: 6vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}


#carouselplatform .carousel-control-prev{
  margin-left: -30px;
}
#carouselplatform .carousel-control-next {
right: -30px;
}



@media (min-width: 768px) {
  #carouselplatform .carousel-item {
    margin-right: 0;
    flex: 0 0 33.333333%;
    display: block;
  }
  #carouselplatform .carousel-inner {
    display: flex;
  }
}
#carouselplatform .card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}
#carouselplatform .card img {
    max-height: 100%;
}
@media (max-width: 767px) {
  #carouselplatform .card .img-wrapper {
    height: 17em;
  }
}

@media (min-width: 1300px) {
#carouselplatform .carousel-control-prev{
  margin-left: -60px;
}
#carouselplatform .carousel-control-next {
right: -60px;
}
}




/*--------------------------------------------------------------
# Formulario Section
--------------------------------------------------------------*/

#contact-form{
  background-color: #4b515a;
  background-image: linear-gradient(62deg, #4b515a 0%, #9a969c 100%);
  
}

#contact-form .bg-img{
  background-image: url(../img/contenido_contacto_1.jpg);
  background-size: cover;
  height: 400px;
  position: absolute;
  width: 100%;
  bottom: 35%;
}

#contact-form form {
  background-color: #fff;
  /*background-image: linear-gradient(135deg, #d2d2d2 0%, #e8e8e8 100%);*/
  position: relative;
max-width: 680px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
#contact-form p {
font-size: 1rem;
}
#contact-form label {
display: block;
margin-bottom: 5px;
font-size: 1rem;
}
#contact-form input,
#contact-form textarea {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
#contact-form input.error,
#contact-form textarea.error {border: 1px solid #d10909;}
.btn-contacto,
.btn-contacto *,
.btn-contacto :after,
.btn-contacto :before,
.btn-contacto:after,
.btn-contacto:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-contacto {
  background-color: transparent; 
  color: #000000; 
  padding: 5px 20px;
  text-align: center; 
  text-decoration: none; 
  display: inline-block;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
  text-transform: uppercase;
  width: 260px;
  display: block;
  margin: 10px auto;
}
.btn-contacto:disabled {
  cursor: default;
}
.btn-contacto:-moz-focusring {
  outline: auto;
}
.btn-contacto svg {
  display: block;
}
.btn-contacto [hidden] {
  display: none;
}
.btn-contacto {
  box-shadow: inset 0 0 0 2px #000000;
  box-sizing: border-box;
  padding: 1.2rem 3rem;
  position: relative;
  transition: color 0.1s linear;
  -webkit-transform: scaleX(1.1);
  -moz-transform: scaleX(1.1);
  -o-transform: scaleX(1.1);
  -ms-transform: scaleX(1.1);
  transform: scaleX(1.1)
}
.btn-contacto:hover {
  color: #000000; 
  background-color: transparent; 
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  -moz-box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  -webkit-transform: scaleX(1.1);
  -moz-transform: scaleX(1.1);
  -o-transform: scaleX(1.1);
  -ms-transform: scaleX(1.1);
  transform: scaleX(1.1)
}
.btn-contacto:after,
.btn-contacto:before {
  content: "";
  height: 0;
  position: absolute;
  width: 0;
}
.btn-contacto:before {
  border-right: var(--border);
  border-top: var(--border);
  left: 0;
  top: 0;
}
.btn-contacto:hover:before {
  --border: 2px solid #000000;
  -webkit-animation: border-top-and-right 1s forwards;
  animation: border-top-and-right 1s forwards;
}
.btn-contacto:after {
  border-bottom: var(--border);
  border-left: var(--border);
  bottom: 0;
  right: 0;
  z-index: -1;
}
.btn-contacto:hover:after {
  --border: 2px solid #000000;
  -webkit-animation: border-bottom-and-left 1s forwards;
  animation: border-bottom-and-left 1s forwards;
}





/*--------------------------------------------------------------
# footer Section
--------------------------------------------------------------*/
footer .container:before {
  background: #e3e8ee;
  content: "";
  display: block;
  height: 1px;
  left: 5%;
  position: absolute;
  top: 5px;
  width: 90%;
}
footer ul.list-inline {
margin-bottom: 3rem;
}

footer .container h5{
font-size: 1.4em;
font-weight: 500;
}

footer .list-inline-item{
margin-right: 2rem!important;
}


@media (min-width: 1300px) {
  footer ul.list-inline {
    margin-bottom: 0rem;
    }
}


/*--------------------------------------------------------------
# FIXED 
--------------------------------------------------------------*/
.whatsapp-btn {
  position: fixed;
  bottom: 10px;
  right: 8px;
  background-color: #25D366;
  color: white;
  padding: 10px;
  border-radius: 50%;
  z-index: 99999;
}
.whatsapp-btn:hover{
  background-color: #787878;
}

/*--------------------------------------------------------------
# PAGE 
--------------------------------------------------------------*/
.page-404 h1{ text-align: center;font-size: 6rem;}
.page-404 p{ text-align: center;}
.page h1{  margin: 50px 0 40px;}
.page h2{  margin: 30px 0 15px;}
#contact-form h4.error{ display: none;color: #be001d;}


div.loader {
	display: none;
	background-image: url(../img/cargador_gris.svg);
	background-size: 60px;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: 70px;
	margin: 10px auto;
	position: relative;
    overflow: hidden;
}
/*--------------------------------------------------------------
# brands Section
--------------------------------------------------------------*/

#brands h2 {
  font-weight: 600;
  text-align: center;
}

#carouselbrands {
padding: 1em;}

#carouselbrands .carousel-inner {
  padding: 0;
  display: flex;
}
#carouselbrands .card {
  margin: 0 1em;
  border: none;
  color: #fff;
}

#carouselbrands .carousel-item {
  margin-right: 0;
  flex: 0 0 50%;
  display: block;
}

#carouselbrands .carousel-control-prev,
#carouselbrands .carousel-control-next {
  border: 2px solid #484848;
  width: 5vh;
  height: 5vh;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}


#carouselbrands .carousel-control-prev{
  margin-left: -35px;
}
#carouselbrands .carousel-control-next {
right: -35px;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 600px) {
  #carouselbrands .carousel-control-prev,
  #carouselbrands .carousel-control-next {
    width: 4vh;
    height: 4vh;
  }
    
}

@media (min-width: 768px) {
  #brands h2 {
    text-align: left;
  }
  
  #carouselbrands {
    padding: 0;}
  #carouselbrands .carousel-item {
    margin-right: 0;
    flex: 0 0 25%;
    display: block;
  }
  #carouselbrands .carousel-inner {
    padding: 1em;
    display: flex;
  }
  #carouselbrands .carousel-control-prev{
    margin-left: -50px;
  }
  #carouselbrands .carousel-control-next {
  right: -50px;
  }

  #carouselbrands .card{
  padding: 1em;}

  #carouselbrands .carousel-control-prev,
  #carouselbrands .carousel-control-next {
    width: 4vh;
    height: 4vh;
  }

  .carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2rem;
    height: 2rem;
  }
  
}


@media (min-width: 1100px) {
  #brands h2 {
    text-align: left;
  }
  
  #carouselbrands {
    padding: 0;}
  #carouselbrands .carousel-item {
    margin-right: 0;
    flex: 0 0 20%;
    display: block;
  }
  #carouselbrands .carousel-inner {
    padding: 1em;
    display: flex;
  }
  #carouselbrands .carousel-control-prev{
    margin-left: -50px;
  }
  #carouselbrands .carousel-control-next {
  right: -50px;
  }

  #carouselbrands .card{
  padding: 1em;}

  #carouselbrands .carousel-control-prev,
  #carouselbrands .carousel-control-next {
    width: 6vh;
    height: 6vh;
  }

  .carousel-control-next-icon, .carousel-control-prev-icon {
    width: 2rem;
    height: 2rem;
  }
  
}
#carouselbrands .card .img-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (min-width: 1300px) {
#carouselbrands .carousel-control-prev{
  margin-left: -60px;
}
#carouselbrands .carousel-control-next {
right: -60px;
}
}

/*--------------------------------------------------------------
todos los articulos
--------------------------------------------------------------*/
.todo-articulos .bg-body-secondary{background-size: cover;filter: grayscale(70%);}
.todo-articulos .bg-body-secondary h1{color: #fff; font-size: 3rem;}
.todo-articulos .bg-body-secondary p{color: #fff; font-size: 1.1rem;}
/*.todo-articulos .imgLiquid{width: 100%; height: 230px;}*/
.todo-articulos .imgLiquid{width: 100%;height: 100%;}
.todo-articulos .imgLiquid img {width: 100%;}
.card-blog .btn.btn-arrow:before{ right: 20px;}
.card-blog h3{font-size: 1.5rem; }
.card-blog p{font-size: 0.9rem;color: #000000;}
.card-blog small{font-size: 0.8rem; color: #484848;}
@media (min-width: 768px) {
  .todo-articulos .bg-body-secondary{border-radius:0.375rem!important;}
}

@media (min-width: 1023px) {
.card-blog .card-txt{min-height: 350px;}
}


.page-link{color: #000;}
.page-link:hover,.page-link:focus{color: #32353a;}

/*--------------------------------------------------------------
single
--------------------------------------------------------------*/
.articulo{ font-family:'Garet';}
.articulo .blog-post {padding: 20px;}
.articulo .blog-post p{text-align: justify;}
.articulo .bg-body-secondary{background-size: cover;filter: grayscale(70%);}
.articulo .blog-post-meta{color: #fff;}
.articulo .tiktok-embed iframe{ min-height: 500px;}
.articulo iframe{
  width: 100%!important;
  height: 100%!important;
  min-height: 250px;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 20px;
  border: 1px solid #ccc;
}
.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}
.articulo .size-full img{height: 100%; width: 100%;}
.articulo h4{margin: 35px 0px 35px; font-size: 1.3rem;font-weight: 500;}
.articulo h2{margin: 50px 0px 25px; font-size: 1.8rem;font-weight: 500;}
.articulo h3{margin: 50px 0px 15px; font-size: 1.4rem;font-weight: 500;}
.wp-block-heading.has-text-align-center {margin: 20px auto 40px;text-align: center;max-width: 1000px;}
@media (min-width: 768px) {
.articulo .bg-body-secondary{border-radius:0.375rem!important;}
.articulo iframe{ min-height: 380px;}
.articulo .size-full img{ padding: 10px;}
.articulo .tiktok-embed iframe{ min-height: 650px; }
.articulo h4{font-size: 1.3rem;}
.articulo h2{font-size: 1.8rem;}
.articulo h3{font-size: 1.4rem;}
}
@media (min-width: 1024px) {
  .articulo iframe{ min-height: 450px;}
}

.articulo .size-large img{height: 100%;width: 100%;}


#miCarrusel { height: 330px;}
#miCarrusel .carousel-caption {
top: 0;
right: 0;
left: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
padding: 30px;
z-index: 99;
}
#miCarrusel .carousel-caption h6{text-align:left;color: #ffffff;font-size: 1.8rem;font-weight: 500;}
#miCarrusel .carousel-item{ height: 350px;background-size: cover!important;background-position: 40% 50%!important;background-repeat: no-repeat!important;}

.carousel-indicators{z-index: 9999;}
.carousel-indicators  [data-bs-target] {
width: 50px;
height: 6px;}

@media (min-width: 768px) {
    #miCarrusel {height: 500px;}
    #miCarrusel .carousel-caption {padding: 100px 0 0 100px;}
    #miCarrusel .carousel-caption h6{font-size: 2rem;width: 400px; border-left: 4px solid #fff; padding-left: 20px;}
    #miCarrusel .carousel-item{ height: 500px;}
}
