@font-face {
  font-family: Roboto;
  font-weight: 400;
  src: url(../resources/fonts/Roboto-Thin.ttf);
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  src: url(../resources/fonts/Roboto-Light.ttf);
}
@font-face {
  font-family: Roboto;
  font-weight: 600;
  src: url(../resources/fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: Roboto;
  font-weight: 700;
  src: url(../resources/fonts/Roboto-Medium.ttf);
}
@font-face {
  font-family: Roboto;
  font-weight: 800;
  src: url(../resources/fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: Roboto;
  font-weight: 900;
  src: url(../resources/fonts/Roboto-Black.ttf);
}

:root {
  --primaryColor: #dd3492;
  --primaryBoldColor: #af0202;
  --primaryBlackColor: #9f0f21;
  --secondaryColor: #ffffff;
  --opaqueBackground: #000000e6;
  --mainCanvasBackground: #141414;
  --primaryTextSize: 15px;
  --primaryTextSizeS: 10px;
  --letterSpacing: 5px;
  --radius: 4px;
  --contentTransitionDuration: 600ms;
  --contentTransitionBezier: cubic-bezier(.83,.39,.21,.96);
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style: none;
}

li {
  color: var(--secondaryColor);
  font: 600 14px Roboto, sans-serif;
  text-align: left;
}
li::before {
  content: "-";
  color: var(--primaryColor);
  display: inline-block; 
  width: 15px;
  margin-left: -1em;
}

body {
  margin: 0;
  padding: 0;
  overscroll-behavior: contain;
  width: 100%;
  height: auto;
  overflow: hidden;
}

canvas {
	display: block;
}

.ui-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-indent {
  /* border-left: 3px solid var(--primaryBoldColor); */
  /* padding-left: 20px; */
  width: 100%;

  letter-spacing: 0.5px;

}

.emphasize {
  font-weight: bold;
}

.flex {
  display: flex;
}
.flex--center {
  justify-content: center;
  align-items: center;
}

/***** LOADED PAGE ANIMATIONS *****/
.ui-wrapper.page-not-loaded .loader {
  animation: none;
}
.ui-wrapper.page-not-loaded .loader__text::after {
  animation: none;
}
.ui-wrapper.page-not-loaded .fixed-content {
  opacity: 0;
}

/***** LOADER *****/

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mainCanvasBackground);
  z-index: 2;
  animation: loaderFinished 3s 3s forwards;
}

.loader__text {
  font: 700 2vw Roboto, sans-serif;
  position: relative;
  letter-spacing: 10px;
  color: white;
  user-select: none;
  
}

.loader__text::after {
  content: '</>';
  color: var(--primaryColor);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mainCanvasBackground);
  animation: loaderStarted 3s ease forwards;
}

@keyframes loaderStarted {
  to { width: 0%; }
}
@keyframes loaderFinished {
  50% { background-color: transparent; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

/***** MAIN MENU *****/

.home{
  width: 120px;
  height: 120px;
}
/*
header div div a{
  height: 200px;
  display: block;
} */
.menu {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--opaqueBackground);
}

.menu-list {
  list-style-type: none;
  z-index: 1;
  padding: 0;
}

.menu-list__item {
  color: var(--secondaryColor);
  position: relative;
  font: 800 60px Roboto, sans-serif;
  letter-spacing: var(--letterSpacing);
  cursor: pointer;
  padding-left: 30px;
  -webkit-tap-highlight-color: transparent;
}
.menu-list__item::before,
.menu-list__item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: '';
  background-color: var(--primaryBoldColor);
  z-index: -1;
  transition: width 400ms ease;
  margin: 0;
}
.menu-list__item:hover::before {
  width: 100%;
  transition: width 300ms ease;
  background-color: var(--primaryBoldColor);
}
.menu-list__item:hover::after {
  width: 20px;
  transition: width 200ms 200ms ease;
  background-color: var(--primaryBlackColor);
}
.menu-list__item:last-of-type {
  margin-bottom: 0;
}

.menu-opened .menu {
  display: flex;
}
.menu-opened .scroll-letters,
.menu-opened .paging__page,
.menu-opened .fixed-content-header__contact,
.menu-opened .fixed-content-paging {
  opacity: 0;
  visibility: hidden;
}
.menu-opened .content {
  z-index: -1;
}

/***** POPUP *****/

.popup {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  background: var(--opaqueBackground);
  z-index: 2;
}
.popup--active {
  display: flex;
}

.popup__inner {
  width: 70%;
  height: 70%;
  padding: 50px 100px;
  background: #00000070;
  filter: drop-shadow(2px 4px 100px #1b1b1be6);
  overflow-y: auto;
}

.popup__title {
  opacity: 0;
  transform: translateY(50px);
  color: var(--secondaryColor);
  font: 800 40px Roboto, sans-serif;
  margin-bottom: 0;
}

.popup__subtitle {
  color: var(--secondaryColor);
  margin: 0;
  letter-spacing: 1px;
  opacity: 0;
  font: 500 18px Roboto, sans-serif;
  margin-bottom: 30px;
}
.popup__subtitle2 {
  color: rgba(255, 255, 255, .9);
  margin: 0;
  letter-spacing: 1px;
  opacity: 0;
  font: 500 18px Roboto, sans-serif;
  /* margin-bottom: 30px; */
}
.popup--animated .popup__title {
  transform: translateY(0);
  opacity: 1;
  transition: var(--contentTransitionDuration) 400ms var(--contentTransitionBezier);
}
.popup--animated .popup__subtitle {
  transform: translateY(0);
  opacity: 0.5;
  transition: var(--contentTransitionDuration) 600ms var(--contentTransitionBezier);
}
.popup--animated .popup__subtitle2 {
  transform: translateY(0);
  opacity: 0.5;
  transition: var(--contentTransitionDuration) 600ms var(--contentTransitionBezier);
}


/** POPUP SUBSECTIONS START**/
/* WHAT WE OFFER */

.popup__offers {
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
}

.popup__offer {
  flex-basis: 25%;
}

.popup__offer-title {
  color: var(--secondaryColor);
  font: 500 30px Roboto, sans-serif;
}

.popup--animated .popup__offers {
  transform: translateY(0);
  opacity: 1;
  transition: var(--contentTransitionDuration) 300ms var(--contentTransitionBezier);
}

/* VIDEO */

.video__inner {
  padding: 0;
  overflow: hidden;
}

iframe {
  filter: drop-shadow(2px 4px 100px #1b1b1be6);
  border: none;
}

/** POPUP SUBSECTIONS END **/

/***** FIXED CONTENT SECTIONS *****/
.fixed-content-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2% 2% 0 2%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1;
}

.fixed-content-header__contact {
  opacity: 1 !important;


}

.fixed-content-header__logo {
  z-index: 1;
  /* color: var(--secondaryColor);
  font: 900 30px Roboto, sans-serif;
  letter-spacing: 5px;
  user-select: none;
  margin-left: -20px; */
}

/* .fixed-content-header__logo::first-letter {
  color: var(--primaryColor);
} */

/* aaaaa */
.fixed-content-paging {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 6%;
  width: 50px;
  z-index: 1;
}

.fixed-content-paging img{
  display: none;
}

.fixed-content-paging:hover img{
  padding: 0px;
  display: unset;
}

.fixed-content-paging:hover .paging__page {
  height: 35px;
  width: 35px;
  transition: 300ms ease;
  border-radius: var(--radius);
}

.tooltip {
  position: absolute;
  left: 45px;
  /* font-size: 14px; */
  /* font-weight: 400; */
  font: 600 15px Roboto, sans-serif;
  pointer-events: none;
  background-color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  transform: translateY(-25px);
  opacity: 0;
  transition: all 0.2s linear;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.paging__page:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}
.tooltip::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
}

.paging__page {
  background-color: var(--secondaryColor);
  width: 100%;
  height: 3px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 300ms;
  opacity: 1 !important;
}
.paging__page.section--hidden,
.paging__page.section--hidden-reverse {
  width: 30px;
  opacity: 0.5 !important;
}

.paging__page:last-of-type {
  margin-bottom: 0;
}

.fixed-content-footer {
  position: fixed;
  height: 60px;
  bottom: 0;
  width: 100%;
  padding: 0 4% 3% 4%;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  flex-direction: column;
  z-index: 1;
}
.social-links{
  padding-bottom: 10px;
}

.social-links__anchor {
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
}
.social-links__anchor:last-of-type {
  margin-right: 0;
}

.social-links__image {
  filter: invert(90%);
  vertical-align: bottom;
  cursor: pointer;
}

.social-links__image1 {
  filer: invert(10%)
  vertical-align: bottom;
  cursor: pointer;
}

.social-links__image:hover {
  filter: invert(100%);
}

.configuration__letters {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.configuration__letters--hidden {
  display: none;
}

.configuration__letters-text {
  font: 900 11vw Roboto, sans-serif;
  position: relative;
  letter-spacing: 20px;
  color: var(--primaryColor);
  user-select: none;
  text-shadow: 1px 1px 1px var(--primaryBoldColor),
  1px 2px 1px var(--primaryBoldColor),
  1px 3px 1px var(--primaryBoldColor),
  1px 4px 1px var(--primaryBoldColor),
  1px 5px 1px var(--primaryBoldColor),
  1px 6px 1px var(--primaryBoldColor),
  1px 7px 1px var(--primaryBoldColor),
  1px 8px 1px var(--primaryBoldColor),
  1px 9px 1px var(--primaryBoldColor),
  1px 10px 1px var(--primaryBoldColor),
  1px 18px 6px rgba(16,16,16,0.4),
  1px 22px 10px rgba(16,16,16,0.2),
  1px 25px 35px rgba(16,16,16,0.2),
  1px 30px 60px rgba(16,16,16,0.4);
}

.scroll-letters {
  display: flex;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}
.scroll-letters__letter {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  color: var(--secondaryColor);
  font: 600 var(--primaryTextSize) Roboto, sans-serif;
  font-size: 25px;
  animation: scrollLetterDrops 4s linear forwards infinite;
}
.scroll-letters__letter::after {
  content: attr(title);
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
}
.scroll-letters__letter:last-of-type {
  margin-right: 0;
}

.scroll-letters__letter:nth-of-type(1) {
  animation-delay: 100ms;
}
.scroll-letters__letter:nth-of-type(2) {
  animation-delay: 200ms;
}
.scroll-letters__letter:nth-of-type(3) {
  animation-delay: 300ms;
}
.scroll-letters__letter:nth-of-type(4) {
  animation-delay: 400ms;
}
.scroll-letters__letter:nth-of-type(5) {
  animation-delay: 500ms;
}
.scroll-letters__letter:nth-of-type(6) {
  animation-delay: 600ms;
}
.scroll-letters__letter:nth-of-type(7) {
  animation-delay: 600ms;
}

@keyframes scrollLetterDrops {
  25%, 100% { transform: translate3d(0, 100%, 0); }
}

.fixed-content-footer__copy {
  color: var(--secondaryColor);
  font: 600 var(--primaryTextSize) Roboto, sans-serif;
}

/***** MAIN CONTENT SECTIONS *****/

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 1250px;
  height: 80%;
}

.content-section {
  width: 100%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: 100ms ease-out;
}
.content-section.section--hidden {
  display: none;
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}
.content-section.section--hidden-reverse {
  display: none;
  opacity: 0;
  transform: translate3d(0, -100%, 0);
}

.content-section.section--hidden .content-section__title,
.content-section.section--hidden .content-section__text,
.content-section.section--hidden .content-section__button,
.content-section.section--hidden .content-section__image-holder,
.content-section.section--hidden .content-section__buttons-holder,
.content-section.section--hidden .content-services__service,
.content-section.section--hidden .content-section__cards
 {
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.content-section.section--hidden-reverse .content-section__title,
.content-section.section--hidden-reverse .content-section__text,
.content-section.section--hidden-reverse .content-section__button,
.content-section.section--hidden-reverse .content-section__image-holder,
.content-section.section--hidden-reverse .content-section__buttons-holder,
.content-section.section--hidden-reverse .content-services__service,
.content-section.section--hidden-reverse .content-section__cards {
  opacity: 0;
  transform: translate3d(0, -50px, 0);
}

.content-section.section--hidden .content-section__title::after,
.content-section.section--hidden-reverse .content-section__title::after,
.content-section.section--hidden .content-section__cards::after,
.content-section.section--hidden-reverse .content-section__cards::after {
  width: 100%;
}
/* Portfolio single image holder */
.content-section.section--hidden .content-portfolio__image-holder,
.content-section.section--hidden-reverse .content-portfolio__image-holder {
  opacity: 0;
  transform: translate3d(50px, 50px, 0) rotate(60deg);
}
/* Portfolio single image */
.content-section.section--hidden .content-portfolio__image,
.content-section.section--hidden-reverse .content-portfolio__image {
  transform: rotate(-70deg);
}


.content-section--column-align {
  flex-direction: column;
}
.content-section__cards{
  display: flex;
  flex-direction: row;
}
.div-logo{
  display: flex;
}
#link-img{
  width: 120px;
  height: 120px;
}

/*CSS PARA POPUP TEAM*/

#close_popup_team{
  position: absolute;
  color: var(--primaryBoldColor);
  text-decoration: none;
  left: 94%;
  top: 	3%;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 20px;
}

/*CSS PARA POPUP OFFERS*/

#close_popup_offers{
  position: absolute;
  color: var(--primaryBoldColor);
  text-decoration: none;
  left: 92%;
  top: 	3%;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 20px;
}

/*body{
  margin: 0;
  overflow: hidden;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  background: #000;
}*/

.strip{
  position: absolute;
  height: 50vh;
  background: #fff;
  width: 0.0625rem;
  opacity: .3;
}

.one{
  left: 28.5%;
}        

.two{
  left: 41.5%;
}

.three{
  left: 58.5%;
}
.four{
  left:75%;
}
.five{
  left: 92%;
}

.container{
  width:100%;
  height:100%;
  align-items: center;
  display: flex;
  justify-content: center;
}

.card-grid{
  font-family: Roboto;
  display: grid;
  grid-column-gap: 1.5rem;
  max-width: 75rem;
  width: 95%;
  grid-template-columns: 1fr 3fr ;
}

/* @media(min-width: 75rem){
  .card-grid{
    grid-template-columns: 1fr 3fr ;
  }
} */

.card{
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-img{
  /* width: 150px;
  height: 150px;
  display: block;
  border-radius: 8px; */
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  /*transition: filter .2s linear, transform 350ms linear;*/
}
.card::before{
  content: '';
  display: block;
  /* padding-bottom: 150%; */
}

.card-background{
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  /* bottom: 0; */
  /* left: 0; */
  /* position: absolute; */
  /* right: 0; */
  /* top: 5%; */
  transition: filter .2s linear, transform 350ms linear;
  width: 100%;
  /* height: 80%; */
  flex: 1;
}

.card-background:hover{
  transform: scale(1.05) translateZ(0);
}

.card-content{
  padding-top: 10px;
  /* left: -6px; */
  /* padding-top: 13rem; */
  /* position: absolute; */
  /* top: 32%; */
  transition: filter .2s linear, transform 450ms linear;
  flex: 2;
}
.social-links-team{
  width: 20px;
  height: 20px;
}
.social-links-team-img{
  filter: invert(90%);
  vertical-align: bottom;
  cursor: pointer;
  position: fixed;
}
.card-category{
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  text-transform: uppercase;
  margin-top: 0.175rem;
}

.card-heading{
  color: rgba(255, 255, 255, .9);
  font-size: 1.9rem;
  text-shadow: 0.125rem 0.125rem 1.25rem rgba(0 , 0, 0, .2);
  margin: 0;
}


/*--------------------------------------------*/
.content-holder--left-align {
  text-align: left;
  flex-basis: 50%;
}
.content-section__title {
  position: relative;
  color: var(--secondaryColor);
  font: 800 40px Roboto, sans-serif;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  transition: var(--contentTransitionDuration) 300ms var(--contentTransitionBezier);
}

.content-section__text {
  width: 70%;
  color: var(--secondaryColor);
  font: 600 18px Roboto, sans-serif;
  pointer-events: none;
  /* line-height: 10px; */
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  transform: translate3d(0, 0, 0);
  transition: var(--contentTransitionDuration) 500ms var(--contentTransitionBezier);
}

.content-section__buttons-holder {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: var(--contentTransitionDuration) 700ms var(--contentTransitionBezier);
}
.content-section__buttons-holder .content-section__button:first-of-type {
  margin-right: 20px;
  left: 0;
  transition: 300ms ease;
}
.content-section__buttons-holder .content-section__button:first-of-type:hover {
  padding-right: 100px;
  left: -10px;
  transition: 300ms ease;
}
.content-section__buttons-holder .content-section__button:first-of-type:hover .button__invisible-email {
  display: block;
}
.content-section__buttons-holder .content-section__button:first-of-type:hover .button__text {
  display: none;
}

.button__invisible-email {
  display: none;
  z-index: 1;
}

.content-section__button {
  transform: translate3d(0, 0, 0);
  transition: var(--contentTransitionDuration) 700ms var(--contentTransitionBezier);
}

/* Content services section */

.content-services {
  display: flex;
  margin-bottom: 40px;
}

.content-services__service {
  position: relative;
  margin-right: 50px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-bottom: 2px solid var(--primaryBlackColor);
  border-radius: var(--radius);
  transform: translate3d(0, 0, 0);
  transition: var(--contentTransitionDuration) var(--contentTransitionBezier);
  will-change: transform;
}
.content-services__service::before {
  content: '';
  width: 100%;
  height: 0;
  background-color: var(--primaryBlackColor);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 200ms var(--contentTransitionBezier);
}
.content-services__service:nth-of-type(1) {
  transition-delay: 700ms;
}
.content-services__service:nth-of-type(2) {
  transition-delay: 800ms;
}
.content-services__service:nth-of-type(3) {
  transition-delay: 900ms;
}
.content-services__service:nth-of-type(4) {
  transition-delay: 1s;
}
.content-services__service:hover{
  /* border-top: 2px solid var(--primaryBlackColor); */
  /* border-right: 2px solid var(--primaryBlackColor);
  border-left: 2px solid var(--primaryBlackColor); */

  transition: 200ms;
}

.content-services__service:hover::before {
  height: 100%;
  transition: 200ms var(--contentTransitionBezier);
}
.content-services__service:hover .content-service__image {
  transform: translateY(-40px);
  opacity: 0;
  transition: 200ms var(--contentTransitionBezier);
}
.content-services__service:hover .content-service__text {
  transform: translateY(-100px);
  transition: 200ms var(--contentTransitionBezier);
}
.content-services__service:hover .extended-services {
  transform: translateY(-40px);
  opacity: 1;
  transition: 200ms var(--contentTransitionBezier);
}

.content-service__image {
  filter: invert(100%);
  width: 45px;
  transition: 200ms var(--contentTransitionBezier);
}

.content-service__text {
  color: var(--secondaryColor);
  font: 800 18px Roboto, sans-serif;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
  transition: 200ms var(--contentTransitionBezier);
}

.extended-services {
  padding: 0;
  z-index: 1;
  position: absolute;
  bottom: 0;
  opacity: 0;
  transition: 200ms var(--contentTransitionBezier);
}

.content-section__images {
  position: relative;
  flex-basis: 50%;
  height: 100%;
}

.content-section__image-holder {
  height: 210px;
  width: 15vw;
  max-width: 210px;
  max-height: 210px;
  border-radius: 50%;
  flex-basis: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: 400ms 100ms var(--contentTransitionBezier);
  border: 10px solid var(--primaryBlackColor);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 1);
}

.content-section__image-holder:nth-of-type(1) {
  transform: translate(0, -50%);
  transition: 400ms 100ms var(--contentTransitionBezier);
}
.content-section__image-holder:nth-of-type(2) {
  transform: translate(100px, -50%);
  transition: 400ms 150ms var(--contentTransitionBezier);
}
.content-section__image-holder:nth-of-type(3) {
  transform: translate(200px, -50%);
  transition: 400ms 200ms var(--contentTransitionBezier);
}
.content-section__image-holder:nth-of-type(4) {
  transform: translate(300px, -50%);
  transition: 400ms 250ms var(--contentTransitionBezier);
} */



.content-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Content portfolio section */

.content-portfolio__images {
  margin-bottom: 50px;
}

.content-portfolio__image-holder {
  width: 170px;
  height: 400px;
  margin-right: 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transform: translate3d(0, 0, 0) rotate(45deg);
  transition: 1500ms 800ms ease-in-out;
  position: relative;
}
.content-portfolio__image-holder:last-of-type {
  margin-right: 0;
}

.content-portfolio__image {
  height: 100%;
  transform: rotate(-45deg);
  object-fit: cover;
  transition: 1500ms 800ms ease-in-out;
}

.content-portfolio__image-holder:nth-of-type(1),
.content-portfolio__image:nth-of-type(1) {
  transition-delay: 100ms;
}
.content-portfolio__image-holder:nth-of-type(2),
.content-portfolio__image:nth-of-type(2) {
  transition-delay: 200ms;
}
.content-portfolio__image-holder:nth-of-type(3),
.content-portfolio__image:nth-of-type(3) {
  transition-delay: 300ms;
}

.content-portfolio__name {
  font: 600 20px Roboto, sans-serif;
  position: absolute;
  bottom: 0;
  left: 25px;
  transform-origin: left;
  color: var(--secondaryColor);
  z-index: 1;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.content-portfolio__image-holder::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, var(--opaqueBackground) 0%, rgba(255,0,0,0) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

/***** MEDIA QUERIES *****/
@media only screen and (max-width: 10000px){
  .container_Contacto{
    display: flex;
    flex-direction: row;
    /* width: 70%; */
  }
  .container_cv{
    flex-direction: row;
    /* width: 70%; */
  }
  .container_cv_row p{
    width: 100%;
  }
  .container_cv_row .container_form_contacto{
    padding-top: 70px;
  }
}

@media only screen and (max-width: 1200px) {
  .menu-list__item {
    font: 900 9vw Roboto, sans-serif;
  }
  
  .content-section__image-holder {
    width: 150px;
    height: 150px;
    left: 50%;
  }
  .content-section__image-holder:nth-of-type(1) {
    transform: translate(-50%, -100px);
  }
  .content-section__image-holder:nth-of-type(2) {
    transform: translate(-50%, -50px);
  }
  .content-section__image-holder:nth-of-type(3) {
    transform: translate(-50%, 0);
  }
  .content-section__image-holder:nth-of-type(4) {
    transform: translate(-50%, 50px);
  }

  .popup {
    align-items: flex-start;
    width: 90%;
    height: 94%;
    left: 5%;
    top: 3%;
  }
  .popup__inner {
    width: 100%;
    height: 95%;
    max-height: 100%;
    padding: 0px 5%;
    padding-bottom: 5%;
    overflow-y: auto;
  }
  .popup__inner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: calc(50% - 20px);
    width: 20px;
    height: 2px;
    background: var(--primaryBlackColor);
  }
  .popup__offers {
    flex-direction: column;
    overflow-y: hidden;
}
  
}

@media only screen and (max-width: 1000px) {
  .home{
    height:80px ;
    width: 80px;
  }
  .content {
    width: 90%;
  }

  .fixed-content-paging {
    display: none;
  }

  .scroll-letters__letter,
  .fixed-content-footer__copy {
    font-size: var(--primaryTextSizeS);
  }

  .fixed-content-header__logo {
    font-size: var(--primaryTextSize);
    letter-spacing: var(--letterSpacing);

  }

  .menu-list__item {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .content-section__title {
    font-size: 26px;
  }
  .content-section__text {
    font-size: 15px;
    width: 100%;
  }

  .content-services {
    flex-wrap: wrap;
    justify-content: center;
  }
  .content-services__service {
    padding: 1px;
    margin: 0;
    flex-basis: 50%;
    border-bottom: none;
    pointer-events: none;
  }
  .content-service__image {
    width: 35px;
  }
  .content-service__text {
    font-size: 15px;
  }

  .content-portfolio__image-holder {
    width: 90px;
    height: 200px;
    margin-right: 60px;
  }
  .content-portfolio__name {
    font-size: 12px;
    left: 15px;
  }

  .content-section__text-team {
    text-align: initial;
  }

  .content-section__image-holder {
    width: 100px;
    height: 100px;
  }
  .popup__header{
    margin:auto;
    
  }
  .popup__title {
    font-size: 30px;
  }
  .popup__subtitle {
    font-size: 12px;
  }
  .popup__subtitle2 {
    font-size: 12px;
  }

  .popup__offers {
    justify-content: space-between;
  }
  .popup__offer {
    flex-basis: 50%;
  }

  .content-section__buttons-holder .content-section__button:first-of-type:hover {
    padding-right: 25px;
    left: 0;
    transition: 300ms ease;
  }
  .content-section__buttons-holder .content-section__button:first-of-type:hover .button__invisible-email {
    display: none;
  }
  .content-section__buttons-holder .content-section__button:first-of-type:hover .button__text {
    display: block;
  }
}
@media only screen and (max-width: 418px) {
.container_Contacto .container_Contacto_Columna{
  width: 90%;
  padding-left: 5%;
}
.language-button{
  top: 2%;
}
.content-services{
  display:grid;
  grid-template-columns: 140px 140px;
  grid-row: auto auto;
  grid-row-gap: 20px;
  padding: 5px;
}
#form-contacto{
  width: 300px;
}
.container_Contacto .container_Contacto_Columna{
  padding-bottom: 0px;
  padding-top: 0px;
}
#contacto-t{
  margin-top: 30px;
}
}
@media (max-width: 800px){
  .container_Contacto{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container_cv{
    flex-direction: column;
    align-items: center;
  }
  .container_cv_row p{
    transition: none;
    position: absolute;
    opacity: 0;
  }
  .container_cv_row .container_form_contacto{
    padding-top: 0px;
  
  }
  .text__meet{
    /* margin-top: 86%;
    margin-right: 2%; */
  }
  
  
}
@media (max-width: 550px){
  .card-grid{
    grid-template-columns: 1fr;
  }
  .card{
    flex-direction: row;
  }
  .card-content{
    padding-left: 30px;
  }
  .card-background{
    width: 50%;
    height: 90%;
  }
  .popup--animated .popup__subtitle2{
    padding-top: 10px;
  }
}
@media only screen and (max-width: 1400px){
  .popup__inner {
    padding: 10px 50px;
  }
  .card-background {
    /* left: 17%;
    width: 74%;
    height: 74%; */
  }
  .one{
    display: none;
  }
  .card-content {
    /* padding-top: 13rem; */
    /* transition: none; */
    /* padding-bottom: 1005px; */
    /* left: 35px; */
  }
  .card:hover .card-content{
    transform: scale(1.1) translateY(20px);
  }
  .card-heading {
    font-size: 1rem;
  }
  .text__meet {
  /* margin-top: -16%;
  margin-right: -6%; */
  }
  
  .card {
    /* top: 11%; */
  }
  .close_popup { 
    left: 89%;
  }
/*   
  .popup--animated .popup__subtitle {
    transform: none;
    opacity: 0.5;
    transition:none;
    /* padding-top: 4%;
  } */
  .popup--animated .popup__subtitle2 {
    transform: none;
    opacity: 0.5;
    /* transition:none; */
    /* padding-top: 4%; */
  }
  .card:hover .card-content {
    /* padding: 15rem 0.25rem; */
    transform: none;
  }
  .paddingOne{
    padding-right: 20px;
  }
}
/* Minimum device height; */
@media only screen and (max-height: 450px) {
  .content-services,
  .content-section__images,
  .content-portfolio__images {
    display: none;
  }

  .content-holder--left-align {
    flex-basis: 100%;
  }

  .content-section__text-team {
    margin-bottom: 17px;
  }
  

}

.logo_yamana{
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0% 0% 0% 0%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  margin-left: 5px;
}

.burger__align{
 position: fixed;
  top: 0;
  width: 168%;
  padding: 4% 2% 0 2%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}
/* @media only screen and (max-width: 450px){
  .burger__align{
 position: fixed;
  top: 0;
  width: 138%;
  padding: 9% 2% 0 2%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}}

@media only screen and (max-width:663px){
  .burger__align{
  position: fixed;
  top: 0;
  width: 148%;
  padding: 9% 2% 0 2%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}} */

@media only screen and (max-width:757px){
  .burger__align{
  position: fixed;
  top: 0;
  width: 139%;
  padding: 8% 2% 1% 1%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1; 
  }
  
}
.fontyamana{
  font-family: 'Quicksand', sans-serif;
}

.img__meet{
  margin-left: 10px;
  margin-left: 10px;
  margin-bottom: 5px;
  margin-right: 10px;
  float: left;
}

.text__meet{
  /* margin-top: 16%;
  margin-right: 2%; */
}

.icon_linkedin{
  margin-bottom: 15px;
}
.text_center{
  /* text-align: center; */
  margin-left: 150px;
  margin-top: 40px;
}
.button_team{
  margin-left: 0px;
}

.paging__page img{
  transition: 0ms;
  height: 0px;
}
.fixed-content-paging:hover .paging__page img{
  transition: 0ms;
}

/* MODAL CONTACTO */

.modal_Contacto{
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #141414bd;
  /* background:none; */
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s .9s;
  --transform: translateY(-100vh);
  --transition: transform .8s;
}

.modal_Contacto--show{
  opacity: 1;
  pointer-events: unset;
  transition: opacity .6s;
  --transform: translateY(0);
  --transition: transform .8s .8s;
}

.modal_container_Contacto{
  width: 90%;
  background:none;
  margin: auto;
  max-width: 600px;
  max-height: 90%;
  border-radius: 6px;
  padding: 3em 2.5em;
  display: grid;
  gap: 1em;
  place-items: center;
  grid-auto-columns: 100%;
  transform: var(--transform);
  transition: var(--transition);
}

.modal_close_Contacto{
  text-decoration: none;
  color: #fff;
  background-color: #F26250;
  padding: 0.5em 0.5em;
  margin-top: 0.7em;
  border: 1px solid;
  border-radius: 6px;
  display: inline-block;
  font-weight: 300;
  transition: background-color .3s;
}

.modal_close_Contacto:hover{
  color: #F26250;
  background-color: #fff;
}



/* CONTACTO */

.text_center--contact{
  margin-left: 15px;
  width: 70%;
  display: flex;
  justify-content: center;
}
.container_form_contacto{
  transition: 3000ms;
}
.form-contacto {
  background: #4f4f4f;
  width: 350px;
  position: absolute;
  top: 50%;
  border-radius: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  /* box-shadow: 7px 13px 37px rgba(0, 0, 0, 0.8); */
  box-shadow: 1px 1px 30px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
} 

.contacto {
  padding: .8rem;
  overflow: hidden;
  color: rgb(220, 218, 218); 
}
.contacto label {
  font-weight: 700; 
  padding-bottom: 8px;
}
.contacto textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}

.div-form-contacto {
  border-radius: 1px solid grey;
  display: flex;
  justify-content: center;
}

.x--contacto{
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
}

.titulo--contacto {
  width: 100%;
  padding: 10px;
  background: none;
  color: grey; 
}

.contacto label, .contacto input, .contacto textarea {
  display: block;
  width: 100%;
  margin-bottom: 0px;
  margin-top: 0px;
  background: none;  
}

.contacto input:not([type="submit"]), .contacto textarea {
  border: none;
  border-bottom: 2px solid;
  margin-bottom: 30px;
  font-size: 20px;
  outline: none;
  color: white; 
}

@media (max-width: 600px){
  .form-contacto{
      width: 70%;
  }
}

.z_index_0{
  z-index: 0;
}




/* .wrapper{
  height: 350px;
  width: 320px;
  position: relative;
  transform-style: preserve-3d;
	perspective: 1000px;
}
.wrapper .card{
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 5px;
  background: #fff;
  border-radius: 10px;
  transform: translateY(0deg);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  transition: transform 0.7s cubic-bezier(0.4,0.2,0.2,1);
}
.wrapper:hover > .front-face{
  transform: rotateY(-180deg);
}
.wrapper .card img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.wrapper .back-face{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  transform: rotateY(180deg);
}
.wrapper:hover > .back-face{
  transform: rotateY(0deg);
}
.wrapper .back-face img{
  height: 150px;
  width: 150px;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
}
.wrapper .back-face .info{
  text-align: center;
}
.back-face .info .title{
  font-size: 30px;
  font-weight: 500;
}
.back-face ul{
  display: flex;
}
.back-face ul a{
  display: block;
  height: 40px;
  width: 40px;
  color: #fff;
  text-align: center;
  margin: 0 5px;
  line-height: 38px;
  border: 2px solid transparent;
  border-radius: 50%;
  background: linear-gradient(375deg, #1cc7d0, #2ede98);
  transition: all 0.5s ease;
}
.back-face ul a:hover{
  color: #1cc7d0;
  border-color: #1cc7d0;
  background: linear-gradient(375deg, transparent, transparent);
}

#galeria{
  display: flex;
  width: 600px;
  height: 430px;
}

#galeria img{
  width: 0px;
  flex-grow: 1;
  object-fit: cover;
  opacity: .8;
  transition: .5s ease;
}
#galeria img:hover{
  cursor: crosshair;
  width: 300px;
  opacity: 1;
  filter: contrast(120%);
} */

/* CV */
.container_cv{
  display: flex;
  /* flex-direction: row; */
  width: 70%;
  justify-content: center;
  align-items: center;
}
.container_cv_row{
  flex: 1;
  padding: 10px;
}
.container_cv_row p{
  /* width: 100%; */
}

/* Prueba contacto */
.container_Contacto_Columna{
  width: 40%;
  padding: 10px;
  padding-left: 15%;
  align-items: center;
}
.container_Contacto_Columna p{
  width: 100%;
}
.form {
  background: #E5E5E5;
  opacity: 0.9;
  width: 350px;
  /* border-radius: 20px; */
  box-shadow: 1px 1px 30px;
  font-family: Arial, Helvetica, sans-serif;
  margin: auto;
  padding: 10px 20px;
  box-sizing: border-box;
} 

.form label {
  font-weight: 600; 
  padding-bottom: 5px;
  text-align: left;
}
.form textarea {
  min-height: 200px;
  max-height: 200px;
  max-width: 100%;
  min-width: 100%;
}

.form h1 {
  padding-top: 10px;
  margin-top: 0;
}

.form label, .form input, .form textarea {
  display: block;
  width: 100%;
  background: none;
  /* font-weight: 400; */
  font-size: 15px;
}

.form input:not([type="submit"]), .form textarea {
  border: 1px solid lightgray;
  /* border-bottom: 1px solid; */
  margin-bottom: 15px;
  font-size: 13px;
  outline: none;
  color: rgb(0, 0, 0);
  border-radius: 5px;
  min-height: 30px;
}

.form input[type="submit"] {
  padding: 10px;
  border: none;
  background-color: rgb(42, 41, 41);
  opacity: 1;
  color: #fff;
  font-size: 15px;
  cursor: pointer; 
}
.fix-button{
  justify-content: center;
}

.whatsapp-icon {
  position: fixed;
  margin-left: 5px;
  bottom: 3%;
  right: 3%;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  /* transition: 3000ms; */
}

.whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  /* z-index: 2; */
}

.whatsapp-icon:hover {
  background-color: #128c7e;
  cursor: pointer;
}


/* ##### Input file #####*/

/* Ocultar el botón de navegación de archivos predeterminado */
input[type="file"] {
  /* display: none; */
}

/* Estilizar el elemento de entrada de archivo personalizado */
.custom-file-input {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Cambiar el estilo del elemento de entrada de archivo cuando se pasa el cursor sobre él */
.custom-file-input:hover {
  background-color: #e9ecef;
}

/* Cambiar el estilo del elemento de entrada de archivo cuando está enfocado */
.custom-file-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Cambiar el estilo del nombre de archivo seleccionado */
.custom-file-input::after {
  content: "Seleccionar archivo";
}

/* Cambiar el estilo del nombre de archivo seleccionado cuando se selecciona un archivo */
.custom-file-input.selected::after {
  content: attr(data-file-name);
}
