@font-face {
  font-family: 'Cambon';
  src: url('../fonts/Cambon-Bold.woff2') format('woff2'),
       url('../fonts/Cambon-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cambon';
  src: url('../fonts/Cambon-BoldItalic.woff2') format('woff2'),
       url('../fonts/Cambon-BoldItalic.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
    font-family: 'Biotif';
    src: url('../fonts/Biotif-Regular.woff2') format('woff2'),
        url('../fonts/Biotif-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Biotif';
    src: url('../fonts/Biotif-RegularItalic.woff2') format('woff2'),
        url('../fonts/Biotif-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
  font-family: 'Biotif';
  src: url('../fonts/Biotif-SemiBold.woff2') format('woff2'),
      url('../fonts/Biotif-SemiBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

/* Basic */
body {
    color: #656270;
    font-family: 'Biotif', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    background: #fefaf6;
    /*background: #F7F9FB;*/
}
body::before {
  z-index:999;
  content:"";
  position: fixed;
  width: 100%;
  height: 40px;
  bottom: 0px;
  background: rgb(254,250,246);
  background: linear-gradient(180deg, rgba(254,250,246,0) 0%, rgba(254,250,246,1) 100%);
}
html { scroll-behavior:smooth; }

/* Desktop & UP */
@media screen and (min-width: 1024px) {
  body::before { 
      height: 80px;
  }
}

strong {
  font-family: 'Biotif';
  font-weight: bold;
  color: #656270;
}

/*Links*/
a {
  color: #656270;
  text-decoration: none;
  -webkit-transition: color .2s ease-in;
  transition: color .2s ease-in;
}
a:hover {  
  color: #ED7562; 
  text-decoration: none;
}
p a {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transform: translate(-50%, -50%);
  color: #656270;
  /*color: #ED7562;*/
}
p a:hover {
  /*color: #EC407A;
  color: #ED7562;
  color: #3C3A45;*/
  color: #656270;
}
p a::after {
  content: "";
  /*background: rgba(236, 64, 122, 0.25);*/
  background: rgba(237, 117, 98, 0.25);
  position: absolute;
  left: 5px;
  bottom: -7px;
  /*
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  */
  width: calc(105% - 6px);
  height: calc(100% - 15px);

  z-index: -1;
  transition: 0.35s cubic-bezier(0.25, 0.1, 0, 2.05);
}
p a:hover:after {
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 110%;
}




/**********
 * NAVBAR *
 **********/
.navbar{
  height: 64px;
  background: rgba(254, 250, 246, 80%);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  z-index: 999!important;
}
.navbar-brand .navbar-item {
	padding:15px 16px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .navbar {
    height: 76px;
    backdrop-filter:blur(7px);
    -webkit-backdrop-filter:blur(7px);
  }
  .navbar-brand .navbar-item {
    padding:20px 32px;
  }
}

.navbar__button {
    position: fixed;
    z-index: 9999;
}
.navbar__hamburguer {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.navbar__hamburguer span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: #4a4a4a;
  margin: 3px 0;
  transition: all 0.3s ease;
    border-radius: 3px;
}
.navbar__hamburguer span:first-child {
  align-self: flex-start;
  width: 18px;
}
.navbar__hamburguer span:nth-child(2) {
  align-self: center;
}
.navbar__hamburguer span:last-child {
  align-self: flex-end;
  width: 18px;
}
.navbar__hamburguer:hover span:first-child, 
.navbar__hamburguer:hover span:last-child {
  width: 24px;
}
.navbar__hamburguer.active span {
  transform-style: preserve-3D;
  width: 26px;
}
.navbar__hamburguer.active span:first-child {
  width: 26px;
  transform: rotate(45deg) translate(6px, 6px);
  transform-origin: top center;
}
.navbar__hamburguer.active span:nth-child(2) {
  transform: rotate(-45deg);
}
.navbar__hamburguer.active span:last-child {
  width: 26px;
  transform: rotate(45deg) translate(-6px, -6px);
  transform-origin: bottom center;
}

/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .navbar__hamburguer {
display: none;
  }
}

/* OVERLAY */
.navbar__overlay {
    position: fixed;
    z-index: 9989;
    width: 100%;
    height: 100%;
    display: none;
    background-color: #fefaf6;
    overflow:auto;
    top: 0;
    z-index: 998!important;
}
.navbar__menu {
    display: table;
    height: 100%;
    width: 100%;
    padding: 24px;
}
.navbar__menu ul {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.navbar__menu ul li {
    font-size: 28px;
    margin-bottom: 24px;
}
.navbar__menu ul li.mini{
    font-size: 20px;
    margin-bottom: 8px;
}
.navbar__menu ul li:nth-last-child(7){
  margin-bottom: 16px;
}
.navbar__menu ul li:nth-last-child(3){
  margin-bottom: 18px;
  margin-top: 20px;
}
.navbar__menu ul li a {
    color: #4a4a4a;
    text-decoration: none;
    position: relative;
}
.navbar__menu ul li.mini a{
  color:#6d6d6d;
}
.navbar__menu ul li a:hover {
    color: #4a4a4a;
}
/*
.navbar__menu ul li.soon a {
  color:#666666;
  cursor: none;
  pointer-events: none;
  cursor: default;
}
*/
.navbar__footer ul{
    display: flex;
    justify-content: center;
    width: 100%;
}
.navbar__footer ul li{
    padding: 8px 24px;
    margin: 0;
}
.navbar__menu ul li a.underline::after {
  content: "";
  background: rgba(237, 117, 98, 0.25);
  position: absolute;
  left: 0px;
  bottom: -4px;
  width: calc(100% - 0px);
  height: 4px;
  z-index: -1;
  transition: 0.35s cubic-bezier(0.25, 0.1, 0, 2.05);
  transform: rotate(-1deg);
  }
  .navbar__menu ul li a.underline:hover:after {
  left: 20px;
  bottom: -2px;
  transform: rotate(-2deg);
}
.coming-soon{
  background-color: #f14668;
  font-size: 11px;
  line-height: 10px;
  color: #ffffff;
  top: -39px;
  border-radius: 5px;
  padding: 1px 3px 2px;
  margin: 0 auto;
  position: relative;
  display: table;
  font-family: arial;
  transform: rotate(
0deg);
  left: 18px;
}

/* Desktop & UP */
@media screen and (min-width: 1024px) {
    .navbar__menu {
        padding: 15%;
    }
    .navbar__menu ul{
    }
    .navbar__menu ul li {
        float: left;
        padding:0;
        width: 25%;
        list-style: none;
        text-align: center;
    }
    .navbar__menu ul li a {
        font-size: 48px;
    }
    .navbar__footer ul{
        padding-top: 10%;
    }
    .navbar__footer ul li{
        padding: 24px;
    }

}
.navbar__overlay ul li {
    opacity: 0;
    animation-name: fadeInBottom;
    animation-duration: .3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    height: 38px;
}

@keyframes fadeInBottom {
    0% {
        transform: translate(0%, 50%);
        opacity: 0;
    } 
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.navbar-item {
	font-size:20px;
	color:#656270;
}
.navbar-item,.navbar-link {
	color:#4a4a4a;
	display:block;
	line-height:1.5;
	padding:1.5rem 1.3rem;
	position:relative;
	/*background-color:sandybrown;*/
}
.navbar-link.is-active,.navbar-link:focus,.navbar-link:focus-within,.navbar-link:hover,a.navbar-item.is-active,a.navbar-item:focus,a.navbar-item:focus-within,a.navbar-item:hover {
	background-color:transparent;
	color:#333333;
}
.navbar-item.has-dropdown:hover .navbar-link {
	background-color:transparent;
}
.navbar-dropdown {
	background-color:#333;
	border-radius:20px;
	border-top:none;
	box-shadow:0 8px 8px rgb(10 10 10 / 20%);
	display:none;
	font-size:.875rem;
	left:0;
	min-width:100%;
	position:absolute;
	top:100%;
	z-index:20;
	min-width:200px;
	padding:24px 16px 24px 8px;
}
.navbar-dropdown a.navbar-item {
	color:#ffffff;
	margin-bottom:8px;
	width:fit-content;
}
.navbar-dropdown a.navbar-item span::after {
	content:"";
	background:#fad9d1;
	position:absolute;
	left:13px;
	bottom:5px;
	width:calc(82% - 28px);
	height:calc(43% - 15px);
	z-index:-1;
	transition:0.35s cubic-bezier(0.25,0.1,0,2.05);
	border-radius:3px;
	transform:rotate(-1deg);
}
.navbar-dropdown a.navbar-item:hover {
	background-color:transparent;
	color:#fad9d1;
}
.navbar-end {
	padding-right: 24px;
}



/* Project List */
.b-project-list {}
.b-project-list--1 {background-color: pink;}
.b-project-list--2 {background-color: pink;}
.b-project-list--3 {background-color: pink;}
.b-project-list--height {}
.b-project-list__label {}
.b-project-list__title {}

@media screen and (min-width: 1024px) {
    .b-project-list--height { min-height: 900px;}
}


/**********
 * project *
 **********/
.fit-image-shadow {
  margin-left: -6%;
}
.image-container {
  position: relative;
}
.project-psa-image-system {
  position:absolute; width: 78%; left:16.4%; top: 4.6%;
}
.project-psa-overlay-arrow {
  position:absolute; width: 25%; left:17%; top: 35.6%; ;
}
@media screen and (min-width: 1024px) {
  .project-psa-overlay-arrow {
    position:absolute; left:20.4%; top: 35.6%; width: 200px;
  }
}
.image-description {
  font-size: 15px;
  color: #aaaaaa;
  font-style: italic;
  text-align: center;
  margin-top: -8px;
}
.image-description-normal {
  font-size: 15px;
  color: #aaaaaa;
  font-style: italic;
  text-align: center;
  margin-top: -8px;
}
.image-description:before, .image-description-normal:before{
  content: "☝";
  font-style: normal;
  padding-right: 8px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .image-description {
    margin-top: -32px;
  }
  .image-description-normal {
    margin-top: 0px;
  }
}

/**********
 * PROJECT PSA*
 **********/


 /**********
 * PROJECT ECFR *
 **********/
 .hero-project { 
  padding: 100px 0 0 0;
}
.hero-ecfr-composition, .hero-myevent-composition{
  position: relative;
}
.hero-ecfr-ivs,.hero-ecfr-is, .hero-myevent-ivs {
  background-color: #AF9F93;
  -webkit-filter: blur(18px);
  -moz-filter: blur(18px);
  -o-filter: blur(18px);
  -ms-filter: blur(18px);
  filter: blur(18px);
  position: absolute;
}
.hero-ecfr-iv {
  z-index: 4;
  position:relative;
  margin-top: 10%;
  left: 25%;
  width: 65%;
}
.hero-ecfr-ivs {
  z-index: 3;
  top: 20%;
  left: 25%;
  z-index: 0;
  width: 65%;
}
.hero-myevent-iv {
  z-index: 4;
  position:relative;
  margin-top: 10%;
  left: 18%;
  width: 65%;
}
.hero-myevent-ivs {
  z-index: 3;
  top: 30%;
  left: 25%;
  z-index: 0;
  width: 65%;
}
.hero-ecfr-i {
  z-index: 2;
  position: absolute;
  top: 0px;
  left: 8%;
  width: 65%;
}
.hero-ecfr-is {
  z-index: 1;
  top: 15%;
  left: 8%;
  width: 65%;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {

  .hero-ecfr-iv {
    margin-top: 10%;
    left: 40%;
    width: auto;
  }
  .hero-ecfr-ivs {
    top: 26%;
    left: 38%;
    z-index: 0;
    width: auto;
  }
  .hero-myevent-iv {
    margin-top: 10%;
    left: 35%;
    width: auto;
  }
  .hero-myevent-ivs {
    top: 24%;
    left: 35%;
    z-index: 0;
    width: auto;
    height: 540px;
  }
  .hero-ecfr-i {
    top: 0px;
    left: 20%;
    width: auto;
  }
  .hero-ecfr-is {
    top: 15%;
    left: 20%;
    width: auto;
  }
}
.size-shape {
  width:80px;
}
.pos-shape-hero-ecfr-1{
  position: absolute;
  float: right;
  top: -9%;
  right: 0;
  z-index: 100;
}
.pos-shape-hero-ecfr-2{
  position: absolute;
  float: right;
  bottom: 40%;
  left: 2%;
  filter: blur(4px);
  -webkit-filter: blur(4px);
  z-index: -1;
}
.pos-shape-hero-ecfr-3{
  position: absolute;
  float: right;
  bottom: -5%;
  left: 2%;
  z-index: 100;
}
.pos-shape-hero-myevent-1{
  position: absolute;
  float: left;
  top: -7%;
  left: -5%;
  z-index: 100;
}
.pos-shape-hero-myevent-2{
  position: absolute;
  float: right;
  bottom: -15%;
  right: -2%;
  z-index: 100;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .hero-project { 
    padding: 200px 0 100px 0;
  }
  .image-hero-ecfr {
    margin-left: auto;
  }
  .size-shape {
    width:100px;
  }
  .pos-shape-hero-ecfr-1{
    top: 5%;
    right: 2%;
  }
  .pos-shape-hero-ecfr-2{
    top: 20%;
    left: 18%;
  }
  .pos-shape-hero-ecfr-3{
    top: 70%;
    left: 8%;
  }
  .pos-shape-hero-myevent-1{
    top: 5%;
    left: 10%;
  }
  .pos-shape-hero-myevent-2{
    bottom: 0%;
    right: -10%;
  }
}
 .project-ecfr-logo {
	text-align:center;
	width:60%;
	margin:0 auto 48px;
}
.project-ecfr-logo-size {
	width:280px;
}
.project-ecfr-pencil {
	display:none;
}
.project-ecfr-colors {
	margin:0 auto;
	text-align:center;
	z-index:1;
	position:relative;
}
.project-ecfr-hands {
	margin-top:0px;
	z-index: -1;
}
.project-myevent-bike {
	margin-top:48px;
	z-index: -1;
}
/* Desktop & UP */
@media screen and (min-width:1024px) {
	.project-ecfr-logo {
		margin:32px auto 96px;
	}
	.project-ecfr-pencil {
		position:absolute;
		top:-90%;
		right:-80%;
		display:inline;
	}
	.project-ecfr-colors {
		margin:0 auto;
		text-align:center;
	}
	.project-ecfr-hands {
		margin-top:0px;
		margin-bottom:20px;
	}
  .project-myevent-bike {
		margin-top:128px;
		margin-bottom:36px;
	}
}
.interface-design-bg {
	background-image:url("../img/project-ecfr-diseno-interfaz-bg.jpg");
	background-repeat:no-repeat;
	background-position:center 172px;
	background-size:160%;
}
.interface-design-1 {
	margin:64px 0;
}
.interface-design-2 {
	margin-top: 200px;
}
.app-design-bg {
	background-image:url("../img/project-ecfr-diseno-interfaz-bg.jpg");
	background-repeat:no-repeat;
	background-position:center 172px;
	background-size:160%;
  background: none;
}
.app-design-0 {
	margin: 64px 0 0 -6%;
}
.app-design-1 {
	margin: 64px 0 0 -4%;
}
.app-design-2 {
	margin: 64px 0 0 -4%;
}
.visor-mini {
  position: absolute;
  margin-top: 21%;
  left: 6%;
  -webkit-box-shadow: -3px 12px 18px -1px rgb(32 20 11 / 48%);
  box-shadow: -3px 12px 18px -1px rgb(32 20 11 / 48%);
  border-radius: 5px;
  width: 30%;
}
/* Desktop & UP */
@media screen and (min-width:1024px) {
	.interface-design-bg {
		background-position:center 400px;
		background-size:150%;
	}
	.interface-design-1 {
		margin:120px 0;
	}
	.interface-design-2 {
		margin-top: 500px;
	}
  .app-design-bg {
		background-position:center 400px;
		background-size:150%;
	}
  .app-design-0 {
		margin: 100px 0 0 -4%;
	}
	.app-design-1 {
		margin: 100px 0 0 -4%;
	}
	.app-design-2 {
    margin: 100px 0 0 -4%;
	}
  .visor-mini {
    position: absolute;
    margin-top: 21%;
    left: 18%;
    width: auto;
    border-radius: 10px;
  }
}
.implementation-composition {
  position: relative;
  display: inline-block;
  width: 100%;
}
.implementation-image-top {
  position: relative;
  top: 0;
  z-index: 1;
  float: right;
  right: 0;
  width: 65%;
}
.implementation-image-bottom {
  position: absolute;
  top: 12%;
  left: 0;
  width: 55%;

  -webkit-box-shadow: -3px 19px 18px 3px rgb(67 42 24 / 43%); 
  box-shadow: -3px 19px 18px 3px rgb(67 42 24 / 43%);
}
.implementation-image{
  width: 100%;
  -webkit-box-shadow: 0px 10px 15px 0px rgb(67 42 24 / 43%); 
  box-shadow: 0px 10px 15px 0px rgb(67 42 24 / 43%);
  margin-bottom: 32px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .implementation-image-top {
    right: 5%;
  }
  .implementation-image-bottom {
    left: 5%;
  }
  .implementation-image{
    width: 75%;
    margin-bottom: 48px;
    -webkit-box-shadow: -3px 19px 18px 3px rgb(67 42 24 / 43%); 
    box-shadow: -3px 19px 18px 3px rgb(67 42 24 / 43%);
  }
}

/**********
 * PROJECT INFO *
 **********/
.project-info {
	border-radius:13px;
	background-color:rgba(243,235,227,0.5);
  backdrop-filter:blur(7px);
	-webkit-backdrop-filter:blur(7px);
	padding:32px 24px;

}
.no-p-b-mobile {
	padding-bottom:0px;
}
.no-p-t-mobile {
	padding-top:0px;
}
.project-info__title {
	text-transform:uppercase;
	color:#333333;
	font-size:15px;
	font-weight:bold;
	line-height:22px;
	margin-bottom:16px;
}
.project-info__item {
	font-size:18px;
	line-height:26px;
	margin-bottom:16px;
}
.project-info__item svg {
	margin-bottom: -3px;
}
/* Desktop & UP */
@media screen and (min-width:1024px) {
	.project-info {
		padding:72px 0 64px 0;
		width:90%;
		margin:0 auto;
	}
	.no-p-b-mobile {
		padding-bottom:0.75rem;
	}
	.no-p-t-mobile {
		padding-top: 0.75rem;
	}
  .project-info__item {
    margin-bottom:24px;
  }
}
/* Widescreen */
@media screen and (min-width:1216px) {
	.project-info {
		width: 75%;
	}
}






/**********
 * PROJECT NAV *
 **********/
 .section.project-nav { padding-top: 0rem; padding-bottom: 0rem; display: flex;}

.project-nav__left { width: 100%; float: left; margin-bottom: 32px; padding-left: 24px;}
.project-nav__right { width: 100%; float: left; padding-left: 24px; }
.project-nav__text-left { float: left;} 
.project-nav__arrow-left { display: none;}
.project-nav__text-right { float: left;} 
.project-nav__arrow-right { display: none;}
.project-nav__label { float: left; width: 100%;font-size: 18px; line-height: 28px;}
.project-nav__title { float: left; width: 100%;color: #333333; font-family: 'Cambon', Times, serif; font-weight: bold; font-size: 32px; line-height: 42px;}

/* Tablet */
@media screen and (min-width: 769px) {
  .project-nav__left { float: left; width: 100%; margin-bottom: 0; padding-left: 0;}
  .project-nav__right { width: 100%; float: left; padding-left: 0;}
  .project-nav__text-left { float: left;}
  .project-nav__text-right { float: right; width: min-content;} 
  .project-nav__arrow-left {
      float: left;
      margin-right: 16px;
      bottom: 0;
      vertical-align: bottom;
      margin-bottom: 0;
      padding-top: 40px;
      display:inline;
  }
  .project-nav__arrow-right {
      float: right;
      margin-left: 16px;
      bottom: 0;
      vertical-align: bottom;
      margin-bottom: 0;
      padding-top: 40px;
      display:inline;
  }
  .project-nav__label { float: left; width: 100%;}
  .project-nav__title { float: left; width: 100%;}
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .project-nav__text-right { float: right;}
  .project-nav__arrow-left {padding-top: 45px;}
  .project-nav__arrow-right {padding-top: 45px;}
  .project-nav__label {font-size: 20px; line-height: 32px;}
  .project-nav__title {font-size: 42px; line-height: 42px;}
}



.project-nav-2 {
	border-radius:13px;

  /*background-color:rgba(243,235,227,0.5);*/
  /*
  border: 8px solid;
  border-color:rgba(243,235,227,0.5);*/

	padding:32px 0px 48px;
	backdrop-filter:blur(7px);
	-webkit-backdrop-filter:blur(7px);
  display: flex;
}
/* Tablet */
@media screen and (min-width: 769px) {
	.project-nav-2 {
		padding:72px 0;
		margin:0 auto;
    display: block;
	}
}
/* Desktop & UP */
@media screen and (min-width:1024px) {
	.project-nav-2 {
		padding:40px 0;
		width:90%;
		margin:0 auto;
    display: block;
	}
}
/* Widescreen */
@media screen and (min-width:1216px) {
	.project-nav-2 {
		width: 75%;
	}
}


/**********
 * ANIMATIONS *
 **********/

/** CSS pure slide top **/
.slide-top {-webkit-animation:slide-top .8s cubic-bezier(.25,.46,.45,.94) both;animation:slide-top .8s cubic-bezier(.25,.46,.45,.94) both}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
}

.parallax-top-left {
  position: absolute;
  top: -50px;
  left: 3%;
  z-index: 998;
}
.parallax-top-left-exp {
  position: absolute;
  top: -50px;
  left: -130px;
  z-index: 998;
  width: 80px;
  opacity: 0.5;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.parallax-top-right {
  position: absolute;
  top: -50px;
  right: 3%;
  z-index: 998;
}
.parallax-top-right-exp {
  position: absolute;
  top: 50px;
  right: -90px;
  z-index: 998;
  width: 80px;
  opacity: 0;
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.parallax-bottom-left {
  position: absolute;
  bottom: -180px;
  left: 2%;
}
.parallax-bottom-right {
  position: absolute;
  bottom: -350px;
  right: 2%;
}
.parallax-bottom-right-2 {
  position: absolute;
  bottom: -380px;
  right: 0;
}
.blurred{
  filter: blur(2px);
  -webkit-filter: blur(2px);
}
.w-111{
  width: 111px;
}
.w-80{
  width: 80px;
}
.O-50 {
  opacity: 0.5;
}
/* Buttons */
/* Colors */




/* Hero Home  */
.hero-maintitle {}
.hero-maintitle span { display: block; }
.hero-subtitle {}



/*Animations*/
/* Efecto fadein en imagenes con lazy */
img[data-src] {
   opacity: 0;
}

img[data-src].lz-entered {
   -webkit-transition: opacity .5s linear 0.5s;
   -moz-transition: opacity .5s linear 0.5s;
   transition: opacity .5s linear 0.5s;
   opacity: 1;
}

.is-shadow {
    box-shadow: 0 52px 74px rgb(0 0 0 / 10%);
    border-radius: 4px;
}


/**********
 * TYPOGRAPHY *
 **********/
h1, h2, h3, h4, h5, h6 { color: #333333; font-family: 'Cambon', Times, serif; font-weight: bold;}

h1 { font-size: 34px; line-height: 44px; margin-bottom: 16px;}
h2 { font-size: 32px; line-height: 42px; margin-bottom: 16px;}
h3 { font-size: 28px; line-height: 36px; margin-bottom: 16px;}
h4 { font-size: 28px; line-height: 36px; margin-bottom: 16px;}
p  { font-size: 18px; line-height: 28px; margin-bottom: 24px;}
li  { font-size: 18px; line-height: 28px;}

/* Tablet */
@media screen and (min-width: 769px) {
  h1 { font-size: 46px; line-height: 56px; margin-bottom: 16px;}
  h2 { font-size: 42px; line-height: 52px; margin-bottom: 16px;}
  h3 { font-size: 36px; line-height: 46px; margin-bottom: 16px;}
  h4 { font-size: 28px; line-height: 38px; margin-bottom: 16px;}
}

/* Desktop & UP */
@media screen and (min-width: 1024px) {
    h1 { font-size: 50px; line-height: 60px; margin-bottom: 24px;}
    h2 { font-size: 48px; line-height: 58px; margin-bottom: 24px;}
    .project h2 { font-size: 42px; line-height: 52px; margin-bottom: 24px;}
    h3 { font-size: 36px; line-height: 46px; margin-bottom: 24px;}
    h4 { font-size: 28px; line-height: 36px; margin-bottom: 16px;}
    p  { font-size: 20px; line-height: 32px; margin-bottom: 32px;}
    li { font-size: 20px; line-height: 32px; }
}

/**********
 * SECTIONS *
 **********/
 .section.no-padding { padding-top: 0px; padding-bottom:0px; }
 .section.no-padding-bottom { padding-bottom:0px; }

 .section { padding-top: 4rem; padding-bottom:4rem; /*overflow: hidden;*/}
 footer.section { padding-top: 10rem; padding-bottom:10rem; clear: both;}

/* Tablet */
@media screen and (min-width: 769px) {
    .section { padding-top: 6rem; padding-bottom:6rem;  background-color: #94d5e0; background-color: transparent;}
    footer.section { padding-top: 12rem; padding-bottom:12rem;  background-color: #13bcda; background-color: transparent;}
}
/* Desktop */
@media screen and (min-width: 1024px) {
    .section { padding-top: 8rem; padding-bottom:8rem;  background-color: #ecba78; background-color: transparent;}
    footer.section { padding-top: 12rem; padding-bottom:14rem;  background-color: #e78709; background-color: transparent;}
}
/* Widescreen */
@media screen and (min-width: 1216px) {
    .section { padding-top: 8rem; padding-bottom:8rem;  background-color: #f184e3; background-color: transparent;}
    footer.section { padding-top: 12rem; padding-bottom:16rem;  background-color: #e709ca; background-color: transparent;}
}
/* FullHD */
@media screen and (min-width: 1408px) {
    .section { padding-top: 8rem; padding-bottom:8rem;  background-color:#78eebd; background-color: transparent;}
    footer.section { padding-top: 14rem; padding-bottom:18rem;  background-color: #09e78b; background-color: transparent;}
}
.project-divider{ padding-top: 48px; padding-bottom:48px; background-color:#ade1ff; background-color: transparent;}

/**********
 * HOME PAGE *
 **********/
 
 .hero__cube {
   position: absolute;
   width: 62px;
   bottom: -10%;
   left: 0%;
 }
 .hero__triangle {
   position: absolute;
   width: 62px;
   top: -20%;
   left: 20%;
   filter: blur(2px);
   -webkit-filter: blur(2px);
 }
 .hero__piramid {
   position: absolute;
   width: 62px;
   top: -30%;
   right: 0%;
 }
 .hero__cilinder {
  position: absolute;
  width: 42px;
   bottom: -10%;
   right: 5%;
   filter: blur(1px);
   -webkit-filter: blur(1px);
 }

 @keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
.typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  -ms-animation: blink 0.7s infinite;
  -o-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .hero__cube {
    width: 111px;
    bottom: 8%;
    left: 5%;
  }
  .hero__triangle {
    width: 80px;
    top: -57%;
    left: 24%;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    opacity: 0.7;
  }
  .hero__piramid {
    width: 111px;
    top: -30%;
    right: 10%;
  }
  .hero__cilinder {
    width: 80px;
    bottom: 0%;
    right: 10%;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }
}
/*
.scroller::after {
  content: "scroll";
  margin-left: -2px;
  font-size: 15px;
  color: #aaaaaa;
}
*/
.scroller {
	width:32px;
	height:50px;
  margin: -30% auto 0;
}
.mouse{
	width:100%;
	box-sizing:border-box;
	height:100%;
	border:2px solid;
	border-radius:35px;
	position:relative;
  animation: bound .6s ease-in infinite alternate;
  border-color: #CDC9C4;
}
.ball{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
	content:'';
	width:3px;
	height:3px;
	background: #CDC9C4;
  animation: ballAnim 1.3s linear infinite;
}
@keyframes ballAnim {
    0% {width:6px;height:6px;border-radius:5px;opacity:0;top: 3px;}
		50% {width:6px;height:6px;border-radius:5px;opacity:1;top: 20px;}
    100% {width:6px;height:6px;border-radius:5px;opacity:0;top: 36px;}
}
@keyframes bound {
    0% {transform: translateY(-10px);}
    100% {transform: translateY(0px);}
}

.hello { margin-bottom: 70px;}
.project-list{
  background: linear-gradient(0deg, #F7F2ED 0%,#FEFAF6 100%);

}
.project-list__label { 
  margin-bottom: 8px;
}
.project-list__title { 
  margin-bottom: 24px;
}
.project-list__image{ position: relative;}
.project-list__cube {
 position: absolute;
 float: left;
 bottom: -3%;
 left: -4%;
 z-index: 99;  
}
.project-list__piramid { 
 position: absolute;
 float: left;
 top: -8%;
 right: -4%;
 z-index: 99;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
.project-list--height { 
  min-height: 750px;
}
.project-list__label { 
  margin-bottom: 24px;
}
.project-list__title { 
  margin-bottom: 32px;
}
 .project-list__piramid {
   top: -8%;
   right: -5%;
 }
}
/* FullHD */
@media screen and (min-width: 1408px) {
.project-list__piramid {
   top: -8%;
   right: 10%;
 }
}
/* PROJECT LIST */
.project-list__myevent__cube,
.project-list__myevent__triangle,
.project-list__ecfr__piramid,
.project-list__ecfr__cilinder,
.project-list__psa__ball {
  position:absolute;
  z-index:1;
}
.project-list__image {
  text-align: center;
}

/* PROJECT LIST MYEVENT*/
.project-list__myevent__image {
  position: relative;
  left: -13%;
}
.project-list__myevent__cube {
  float: left;
  top: 5%;
  left: -2%;
  width: 70px;
}
.project-list__myevent__triangle { 
  float: right;
  bottom: 25%;
  right: -2%;
  width: 80px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .project-list__myevent__image {
    left:auto;
  }
  .project-list__myevent__cube {
    float: left;
    top: 3%;
    left: 12%;
    width: 100px;
    /*
    z-index:97;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    opacity: 0.7;
    */
  }
  .project-list__myevent__triangle { 
    float: right;
    bottom: 25%;
    right: -4%;
    width: 100px;
  }
}

/* PROJECT LIST PSA*/
.project-list__psa__image {
  position: relative;
  left: 0%;
}
.project-list__psa__ball {
  float: right;
  right: 1%;
  bottom: 25%;
  width: 70px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .project-list__psa__image {
    left:auto;
  }
  .project-list__psa__ball {
    float: right;
    right: 5%;
    bottom: 26%;
    width: 100px;
  }
}

/* PROJECT LIST ECFR*/
.project-list__ecfr__image {
  position: relative;
  left: -9%;
}
.project-list__ecfr__piramid {
  float: right;
  right: -3%;
  top: 5%;
  width: 70px;
}
.project-list__ecfr__cilinder { 
  float: left;
  left: -3%;
  bottom: 20%;
  width: 80px;
}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
  .project-list__ecfr__image {
    left:auto;
  }
  .project-list__ecfr__piramid {
    float: right;
    right: -5%;
    top: 10%;
    width: 100px;
  }
  .project-list__ecfr__cilinder{ 
    float: left;
    left: 0%;
    bottom: 20%;
    width: 100px;
  }
}

/* CLIENTS SECTION */
.clients {}
.clients__item {
    margin: 0;
    padding: 0;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 0;
}
.clients__item img{
    height: 54px;
}


/**********
 * ABOUT PAGE *
 **********/

 section.description { 
   padding-top: 7rem;
  }
/* Tablet */
@media screen and (min-width: 769px) {
  section.description { 
    padding-top: 11rem;
    }
}
/* Desktop & UP */
 @media screen and (min-width: 1024px) {
  section.description { 
    padding-top: 16rem;
   }
}
 .description__image { 
   position: relative;
  }
 .description__portrait{
   border-radius: 13px;
   box-shadow: 0 44px 64px rgb(0 0 0 / 14%);
 }
 .description__title {}
 .small-shape {
   width:64px;
 }
 .description__cube{
   position: absolute;
   float: left;
   bottom: -3%;
   left: -4%;
 }
 .description__piramid{
   position: absolute;
   float: left;
   top: -8%;
   right: -4%;
 }
 /* Desktop & UP */
 @media screen and (min-width: 1024px) {
   .small-shape {
     width:90px;
   }
   .description__piramid{
     top: -8%;
     right: -5%;
   }
 }
 /* FullHD */
 @media screen and (min-width: 1408px) {
   .description__piramid{
     top: -8%;
     right: 10%;
   }
 }

/* TOOLS SECTION*/
.tools {}
.tools__item {margin: 24px 0;}
.tools__item img {margin: 0 0 8px;}
/* Desktop & UP */
@media screen and (min-width: 1024px) {
    .tools__item {margin: 48px 0;}
  }

/* SKILLS SECTION */
.skills {}
.skills__item {
    border-radius: 23px;
    margin: 0;
    padding: 24px 16px;
    background: rgba(254, 250, 246, 80%);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}
.skills__item__icon {
    width: 64px;
    height: 64px;
    background-color: #F4EEE7;
    border-radius: 23px;
    margin: 0 auto 24px;
    padding: 16px;
}
.skills__item ul li {
    line-height: 38px;
}

/* Desktop & UP */
@media screen and (min-width: 1024px) {
    .skills__item {margin: 32px 0 0 0;}
  }




/* EXPERIENCE SECTION */
  .experience__item{ 
    display: flex;
  }
  .experience__item:hover{ 
  }
  .experience__timeline { 
    /*background-color: darkmagenta; */
    margin: 0 24px 0 0; 
    padding:0 0 16px 0;
  }
  /* Desktop & UP */
  @media screen and (min-width: 1024px) {
    .experience__timeline { 
      margin: 0 48px 0 32px; 
    }
  }

  .experience__icon {
    width: 48px;
    height: 48px;
    background-color: #F4EEE7;
    border-radius: 13px;
    margin: 0 auto;
    padding: 12px;
    margin-bottom: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
  }

  /* Desktop & UP */
  @media screen and (min-width: 1024px) {
    .experience__icon {
      width: 64px;
      height: 64px;
      border-radius: 23px;
      margin: 0 auto 24px;
      padding: 16px;
      margin-bottom: 16px;
    }
  }

  .experience__bar { 
    background-color:#F3EFEB; 
    width: 8px; 
    min-height: 130px; 
    border-radius: 8px; 
    margin: 0 auto;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
  }
  /* Desktop & UP */
  @media screen and (min-width: 1024px) {
    .experience__bar { 
      background-color:#F3EFEB; 
      width: 10px; 
      min-height: 84px; 
      border-radius: 8px; 
      margin: 0 auto;
    }
  }


  .experience__info { 
    width: 100%;
  }
  .experience__info h3 {
    font-size: 26px;
    line-height: 36px;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
  }
  .experience__info p {
    font-size: 18px;
    line-height: 28px;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
  }

  /* Desktop & UP */
  @media screen and (min-width: 1024px) {
    .experience__info h3 {
      font-size: 30px;
      line-height: 40px;
      margin-bottom: 8px;
    }
    .experience__info p {
      font-size: 20px;
      line-height: 30px;
    }
  }

  p.experience__date { 
    padding: 0;
    width: auto;
    font-size: 16px;
    line-height: 26px;
    color: #B2AEB3;
    text-align: left;
    margin-bottom: 8px;
    transition: 0.5s;
    transition-timing-function: ease-in-out;
  }
  /* Tablet */
  @media screen and (min-width: 769px) {
    p.experience__date { 
      padding: 12px 24px 0 0;
      width: 190px;
      text-align: right;
    }
  }
  /* Desktop & UP */
  @media screen and (min-width: 1024px) {
    p.experience__date { 
      padding: 16px 0 0 0;
      width: 210px;
      font-size: 18px;
      line-height: 32px;
      color: #B2AEB3;
      text-align: right;
    }
  }



  /*Custom Habitissimo*/
.experience__item--habitissimo .experience__icon {
  background-image: url("../img/exp-habitissimo.svg");
}
.experience__item--habitissimo:hover .experience__icon{ 
  background-color: #FCF1ED;
  background-image: url("../img/exp-habitissimo-active.svg");
}
.experience__item--habitissimo:hover .experience__bar{ 
  background-color: #FCF1ED;
}
.experience__item--habitissimo:hover h3, .experience__item--habitissimo:hover p{
  color: #d61f4a;
}


/*Custom Myevent*/
.experience__item--myevent .experience__icon {
  background-image: url("../img/exp-myevent.svg");
}
.experience__item--myevent:hover .experience__icon{ 
  background-color: #F2F4F4;
  background-image: url("../img/exp-myevent-active.svg");
}
.experience__item--myevent:hover .experience__bar{ 
  background-color: #F2F4F4;
}
.experience__item--myevent:hover h3, .experience__item--myevent:hover p{
  color: #6F9AD6;
}
/*Custom Kelisto*/
.experience__item--kelisto .experience__icon {
  background-image: url("../img/exp-kelisto.svg");
}
.experience__item--kelisto:hover .experience__icon{ 
  background-color: #F8EFF2;
  background-image: url("../img/exp-kelisto-active.svg");
}
.experience__item--kelisto:hover .experience__bar{ 
  background-color: #F8EFF2;
}
.experience__item--kelisto:hover h3, .experience__item--kelisto:hover p{
  color: #A664CC;
}
/*Custom stellantis*/
.experience__item--stellantis .experience__icon {
  background-image: url("../img/exp-stellantis.png");
}
.experience__item--stellantis:hover .experience__icon{ 
  background-color: #F2F0F1;
  background-image: url("../img/exp-stellantis-active.png");
}
.experience__item--stellantis:hover .experience__bar{ 
  background-color: #F2F0F1;
}
.experience__item--stellantis:hover h3, .experience__item--stellantis:hover p{
  color: #5A6DB7;
}
/*Custom sim*/
.experience__item--sim .experience__icon {
  background-image: url("../img/exp-sim.svg");
}
.experience__item--sim:hover .experience__icon{ 
  background-color: #FAEEEC;
  background-image: url("../img/exp-sim-active.svg");
}
.experience__item--sim:hover .experience__bar{ 
  background-color: #FAEEEC;
}
.experience__item--sim:hover h3, .experience__item--sim:hover p{
  color: #AA183F;
}
/*Custom Plenummedia*/
.experience__item--plenummedia .experience__icon {
  background-image: url("../img/exp-plenummedia.png");
}
.experience__item--plenummedia:hover .experience__icon{ 
  background-color: #F2F4F4;
  background-image: url("../img/exp-plenummedia-active.png");
}
.experience__item--plenummedia:hover .experience__bar{ 
  background-color: #F2F4F4;
}
.experience__item--plenummedia:hover h3, .experience__item--plenummedia:hover p{
  color: #65AFDE;
}
/*Custom domestika*/
.experience__item--domestika .experience__icon {
  background-image: url("../img/exp-domestika.png");
}
.experience__item--domestika:hover .experience__icon{ 
  background-color: #FCF1ED;
  background-image: url("../img/exp-domestika-active.png");
}
.experience__item--domestika:hover .experience__bar{ 
  background-color: #FCF1ED;
}
.experience__item--domestika:hover h3, .experience__item--domestika:hover p{
  color: #ED6262;
}
/*Custom daniel*/
.experience__item--daniel .experience__icon {
  background-image: url("../img/exp-daniel.svg");
}
.experience__item--daniel:hover .experience__icon{ 
  background-color: #F2F3ED;
  background-image: url("../img/exp-daniel-active.svg");
}
.experience__item--daniel:hover .experience__bar{ 
  background-color: #F2F3ED;
}
.experience__item--daniel:hover h3, .experience__item--daniel:hover p{
  color: #589880;
}
/*Custom webactiva*/
.experience__item--webactiva .experience__icon {
  background-image: url("../img/exp-webactiva.png");
}
.experience__item--webactiva:hover .experience__icon{ 
  background-color: #F2F4F4;
  background-image: url("../img/exp-webactiva-active.png");
}
.experience__item--webactiva:hover .experience__bar{ 
  background-color: #F2F4F4;
}
.experience__item--webactiva:hover h3, .experience__item--webactiva:hover p{
  color: #65AFDE;
}






/**********
 * BOT *
 **********/
.u-mrg-l-auto {
	margin-left:auto!important
}
.o-flexy {
	box-sizing:border-box;
	-ms-flex-align:center;
	align-items:center;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-pack:justify;
	justify-content:space-between
}
.o-flexy__item {
	box-sizing:border-box;
	max-width:100%;
	min-width:0
}
.my-bot {
	width:100%;
	height:100%;
	background:#fff;
	position:fixed;
	left:0;
	top:0;
	z-index:9000;
	box-shadow:0 0 0 1px rgba(0,0,0,.05),0 5px 30px 0 rgba(0,0,0,.15),0 3px 3px 0 rgba(0,0,0,.05);
	font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
	transition:all .2s cubic-bezier(.175,.885,.32,1.275);
	opacity:1;
	transform:translateZ(0)
}
@media (min-width:544px) {
	.my-bot {
		border-radius:6px;
		left:auto;
		top:auto;
		bottom:40px;
		right:40px;
		width:350px;
		height:600px
	}
}
.my-bot.hide {
	pointer-events:none!important;
	z-index:1!important;
	opacity:0;
	transform:translate3d(0,30px,0)
}
.my-bot__header {
	background:#222;
	padding:20px 16px;
	position:absolute;
	left:0;
	top:0;
	z-index:100;
	width:100%
}
@media (min-width:544px) {
	.my-bot__header {
		border-radius:6px 6px 0 0
	}
}
.my-bot__avatar {
	border-radius:50%;
	border:2px solid #fff;
	max-width:40px;
	margin-right:16px;
	box-shadow:0 4px 4px 0 rgba(0,0,0,.25)
}
.my-bot__close {
	background:#222;
	border:0;
	padding:10px 15px;
	transition:all .2s ease-in-out;
	border-radius:6px
}
.my-bot__close:active,.my-bot__close:hover {
	background:#363636
}
.my-bot__desc,.my-bot__name {
	color:#fff;
	display:block
}
.my-bot__name {
	font-size:16px;
	font-weight:700;
}
.my-bot__desc {
	font-size:13px;
	opacity:.8
}
.my-bot__content {
	height:90%;
	width:100%;
	position:absolute;
	top:80px;
	padding:0 16px 40px;
	overflow-y:scroll
}
@media (min-width:544px) {
	.my-bot__content {
		height:520px;
		top:80px
	}
}
.my-bot__agent,.my-bot__user {
	padding:16px;
	max-width:90%;
	line-height:150%;
	border-radius:10px;
	font-size:14px;
	margin-top:16px;
	clear:both
}
.my-bot__agent:after,.my-bot__options:after,.my-bot__user:after {
	content:".";
	visibility:hidden;
	display:block;
	height:0;
	clear:both
}
.my-bot__agent {
	background:#fff;
	color:#222;
	border:1px solid #c5ced6;
	float:left
}
.my-bot__agent+.my-bot__agent {
	margin-top:6px
}
.my-bot__user {
	padding:16px;
	background:#222;
	color:#fff;
	float:right
}
.my-bot__options {
	float:left;
	margin-top:16px;
	display:block
}
.my-bot__options.hide {
	display:none
}
.my-bot__button {
	background:#fff6eb;
	color:#462905;
	transition:all .2s ease-in-out;
	border-radius:20px;
	padding:12px 20px;
	border:0;
	font-size:14px;
	display:block
}
.my-bot__button:hover {
	background:#ffebd2
}
.my-bot__button:active,.my-bot__button:focus {
	outline:0;
	background:#ffdfb8
}
.my-bot__button:active {
	transform:translate3d(0,2px,0)
}
.my-bot__button+.my-bot__button {
	margin-top:10px
}
.my-bot__answer {
	display:none;
	pointer-events:none
}
.my-bot__answer.active {
	display:block;
	pointer-events:all
}
.my-bot__answer>div {
	display:none;
	opacity:0;
	pointer-events:none;
	transition:all .2s cubic-bezier(.175,.885,.32,1.275);
	transform:translate3d(0,4px,0)
}
.my-bot__answer>div.active {
	display:block;
	pointer-events:all;
	opacity:1;
	transform:translateZ(0)
}
.c-fab {
	background:#222;
	border-radius:50%;
	border:0;
	bottom:20px;
  right:20px;
	box-shadow:0 4px 7px rgba(0,0,0,.1);
	height:60px;
	margin:0;
	padding:0;
	position:fixed;
	width:60px;
	z-index:2000;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:center;
	align-items:center;
	-ms-flex-pack:center;
	justify-content:center;
	transition:all .2s cubic-bezier(.175,.885,.32,1.275);
	opacity:1;
}
button.c-fab {
  background-image: url("/img/avatar-video-2.gif");
  background-position: -15px -5px;
  background-size: 85px;
  cursor: pointer;
}
button.c-fab:hover {
  background-image: url("/img/avatar-video-2.gif");
  background-position: -15px -5px;
  background-size: 85px;
  box-shadow: 0 7px 9px rgb(0 0 0 / 20%);
}

.BeaconFabButtonFrame {
  position: fixed;
  right: 20px !important;
  bottom: 20px !important;
}
@media (min-width:544px) {
  .BeaconFabButtonFrame {
  position: fixed;
  right: 40px !important;
  bottom: 40px !important;
}
	.c-fab {
		bottom:40px;
		right:40px;
	}
  .hsds-beacon .inJOiW {right: 40px;}
  
}
.c-fab.hide {
	z-index:-1;
	pointer-events:none;
	opacity:0;
	transform:scale3d(.5,.5,.5)
}
.c-fab:hover {
	background:#3c3c3c
}
.c-fab:active,.c-fab:focus {
	outline:none
}


