@import url('../css/button/styleButton.css');

:root {
  --primary: #00b4e8;
  --secondary: #01566b;
  --tertiary: #26d0f4;
  --fourth: #4b4a4a;
  --btn-color: #00b4e8;
  --title: #1a1919;
  --text: #141414;
  --btn-hover-color: #0e98be;
  --btn-border-color: #045a72;
}

body {
  overflow-x: hidden;
}

/* Estilos para el scrollbar */
::-webkit-scrollbar {
  width: 12px;
  /* Ancho de la barra de desplazamiento */
}

/* Handle del scrollbar */
::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color);
  /* Color del handle */
  border-radius: 6px;
  /* Bordes redondeados */
}


.scroolbarSubBlock::-webkit-scrollbar {
  width: 6px;
  /* Ancho de la barra de desplazamiento */

}

.scroolbarSubBlock::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color);
  /* Nuevo color del handle */
  border-radius: 8px;
  /* Bordes redondeados */
}

.scroolbarSubBlock::-webkit-scrollbar-track {
  background: var(--btn-color);
  /* Color de fondo de la barra de desplazamiento */
  border-radius: 8px;
  /* Bordes redondeados */

}

/* ***************************************************************************************************************** */

/* estilo de gallery masonry */

.my-masonry-grid {
  display: -webkit-box;
  /* Not needed if autoprefixing */
  display: -ms-flexbox;
  /* Not needed if autoprefixing */
  display: flex;
  justify-content: center;
  margin-left: -30px;
  /* gutter size offset */
  width: auto;
}

.my-masonry-grid_column {
  padding-left: 30px;
  /* gutter size */
  background-clip: padding-box;
}

/* Style your items */
.my-masonry-grid_column>div {
  /* change div to reference your elements you put in <Masonry> */
  background: grey;
  margin-bottom: 20px;
}

/* ***************************************************************************************************************** */

.bgmenu {
  background: rgb(105, 134, 26);
  background: linear-gradient(128deg, var(--primary) 4%, rgba(255, 255, 255, 0) 4%, rgba(255, 255, 255, 0) 6%, rgb(255, 255, 255) 6%);
}

.bgmenu2 {
  background: rgb(105, 134, 26);
  background: linear-gradient(128deg, var(--primary) 95.3%, rgba(255, 255, 255, 0) 95.3%);
}

.bgmenu3 {
  background: rgb(105, 134, 26);
  background: linear-gradient(128deg, rgba(105, 134, 26, 1) 57%, rgba(105, 134, 26, 0) 57%);
}

/* ***************************************************************************************************************** */

:after,
:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn--huge {
  cursor: pointer;
  position: relative;
  height: 45px;
  background-color: var(--btn-color);
  text-transform: uppercase;
  display: inline-block;
  color: #000;
  font-family: Arial;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 0 20px 0 50px;
  white-space: nowrap;
}

.btn--huge:before {
  -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.5s cubic-bezier(0.785, 0.15, 0.15, 0.86);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #dbdbdb;
}

.btn--huge:after {
  -webkit-transition: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.5s cubic-bezier(0.785, 0.15, 0.15, 0.86);
  content: '→';
  font-size: 14px;
  line-height: 1;
  color: white;
  position: absolute;
  left: 20px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  background: var(--secondary);
  z-index: 2;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

.btn--huge__text {
  position: relative;
  top: -1px;
  -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  height: 100%;
  display: flex;
  align-items: center;
}

.btn--huge__text div {
  position: relative;
  color: white;
}

.btn--huge__text span {
  -webkit-transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  top: 0;
  left: 0;
  color: white;
  width: 0;
}

.btn--huge:hover:after {
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

.btn--huge:hover:before {
  width: 0;
}

.btn--huge:hover .btn--huge__text span {
  width: 100%;
}

/* ***************************************************************************************************************** */
.swiper {
  overflow: visible !important;
}

.clipphoto {
  clip-path: polygon(0 0, 87% 0, 100% 18%, 100% 100%, 0 100%);
}

.clipphoto2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/****************************************************/
.form_styles {
  gap: 10px !important;
}

/****************************************************/

.bg3 {
  background: rgb(138,137,135);
background: linear-gradient(53deg, rgba(138,137,135,1) 8%, rgba(179,179,179,1) 21%, rgba(231,231,231,1) 44%, rgba(179,179,179,1) 68%, rgba(138,137,135,1) 84%, rgba(138,137,135,1) 84%);;
}