*, ::after, ::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb;
}

body, html {
	font-family: 'Rubik', sans-serif !important;
	font-size: 16px;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	margin: 0;
	padding: 0;
	  scroll-behavior: smooth;

}

.touch {
  height: 100%;
  overflow: hidden;
}

.is-transitioning main {
  opacity: 0;
}
.container{
	max-width: 1100px !important;
}
/*---------UTILITIES----------*/
.bold {
  font-weight: bold;
}

.text-dark {
  color: #262340;
}

.white {color: white;}

a{color: #1f1f25;text-decoration: none;}
a:hover{color: #E4325B;}
.z-0{z-index: 0;}
.z-10{z-index: 10;}
.z-20{z-index: 20;}
.z-30{z-index: 30;}
.z-40{z-index: 40;}
.z-50{z-index: 50;}
.z-auto{z-index: auto;}
.gap-0{gap: 0.25rem}
.gap-1{gap: 0.5rem}
.gap-2{gap: 0.75rem}
.gap-3{gap: 1rem}
.gap-4{gap: 1.25rem}
.gap-5{gap: 1.5rem}
.gap-6{gap: 1.75rem}
.gap-7{gap: 2rem}
.gap-8{gap: 2.25rem}
.gap-9{gap: 2.25rem}
.gap-10{gap: 2.75rem}

ul {
  list-style: none;
  padding: 0;
}

.border-overlay {
  border: solid 60px white;
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

#main {
  height: 100%;
}

.cursor-wrapper .cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  background-color: rgba(38, 35, 64, 0.05);
  border: 1px solid rgba(35, 38, 64, 0.2);
  border-radius: 50px;
  z-index: 1000000;
  pointer-events: none;
  cursor: none;
  top: -15px;
  left: -15px;
}

.cursor-wrapper .cursor-center {
  position: fixed;
  width: 8px;
  height: 8px;
  top: -4px;
  left: -4px;
  background-color: #E4325B;
  border-radius: 50%;
  z-index: 1000000;
  pointer-events: none;
  cursor: none;
}

.cursor-wrapper.hover .cursor {
  background-color: rgba(38, 35, 64, 0.15);
  border: 1px solid rgba(228, 50, 91, 0.534);
  width: 50px;
  height: 50px;
  top: -25px;
  left: -25px;
}

.menu-toggler {
  margin-top: -15px;
  height: 100vh;
  top: 0;
  left: 0;
  padding-left: 40px;
  margin-top: -15px;
  position: fixed;
}

.menu-toggler.hidden {
  opacity: 0;
  pointer-events: none;
}

#social-networks.hidden {
  opacity: 0;
  pointer-events: none;
}
#social-networks a {
	color: black;
}

.menu {
  position: fixed;
  top: 0;
  left: -1000px;
  max-width: 80%;
  z-index: 18;
  height: 100vh;
  width: 1000px;
  padding: 0 120px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu .menu-item {
	color: black ;
  line-height: 100px;
  font-size: 40px;
  letter-spacing: 10px;
  position: relative;
}

.menu .menu-item:hover {
  color: #E4325B;
}

.menu .menu-item:hover:before {
  opacity: 1;
}

.menu .menu-item:before {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
  content: '';
  position: absolute;
  left: -30px;
  top: 38px;
  width: 22px;
  opacity: 0;
  height: 22px;
  background: #E4325B;
}


.contact{
	position: fixed;
	bottom: 0;
	right: -800px;
	background-color: #dd1b47;
	width: 800px;
	height: 600px;
	max-width: 100%;
	z-index: 30;
	padding: 40px;
}

.contact.hidden{
	display:none;
}
.contact-toggler{
	display:block;
}
.contact-toggler.hidden{
	display:none;
}



#video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 10;
  max-width: 100%;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -99;
  background-color: rgba(0, 0, 0, 0.407);
}

#loader-overlay {
  display: none;
  border: solid 60px white;
  background-color: #FFB6C7;
  z-index: 15;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*------------HOME-------------*/
.section {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 80px;
  font-weight: bold;
}

.section {
  background: #FFB6C7;
}

/*------------PROYECTOS-------------*/

.back-arrow {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 20;
  color: #b7b5cc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(70, 70, 72, 0.13);
  border: solid 1px rgba(70, 70, 72, 0.23);
}

.back-arrow i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.back-arrow:hover i {
  -webkit-transform: scale(2);
          transform: scale(2);
}

.prev-project {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: fixed;
  bottom: -90px;
  left: -250px;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 600px;
  gap: 10px;
}

.next-project {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: fixed;
  bottom: -90px;
  right: -250px;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 600px;
  gap: 10px;
}

.projects {
  padding: 15em 10em;
  text-align: center;
  font-family: 'Staatliches', cursive;
}

.projects .project-title {
  cursor: pointer;
  -webkit-text-stroke: 1px white;
  font-size: 6em;
  color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.projects .project-title:hover {
  color: white;
}

.projects .project-title.active {
  color: white;
}

#project-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  background-size: cover;
  -webkit-transition: background-image 0.3s ease-in-out;
  transition: background-image 0.3s ease-in-out;
  background-position: center;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -99;
  background-color: rgba(0, 0, 0, 0.407);
}
/*# sourceMappingURL=comodo.css.map */



/*------------SOLUTION-------------*/
.solution{
	border-left: solid 4px #e9365e;
	background-color: #e9365e0f;
}
.solution .header{
	padding: 25px;
	font-weight: 500;
	font-size: 18px;
}
.solution .content{
	padding: 0 25px 25px 25px;
}

.more-icon{
	transition: all 0.3s;
}
.more-icon.close{
	transform: rotate(45deg);
}


.contact-btn{
	background-color: #ffd2d2 !important;
    color: black !important;
    width: 100% !important;
    border: none !important;
    font-family: 'Rubik' !important;
    font-weight: bold !important;
}