@charset "UTF-8";
/**
*   style.scss
*   @description: Constructor de la hoja de estilos
*   @variables: dev: boolean: Activa las opciones de desarrollo
*/
/*  
* 1.- Componentes: Todos los elementos posibles
*/
/*      Core       */
/**
*   dev.scss
*   @description: Todas las opciones de desarrollo
*/
/*  INFORMATION
   =============================
    
	- File:           trejocode.css
	- Versión:        1.2
	- Licence:        Mozilla Public Licence. 
	- Author:         TrejoCode
    - Update:         11/06/2019
    - Client:         iGate
*/
/* RESET
   =============================
   - These properties able the cross compatibility for browsers and removes default properties from browsers.
*/
* {
  padding: 0;
  margin: 0; }

html {
  font-size: 100%; }

*, *:before, *:after {
  box-sizing: border-box; }

body {
  overflow-x: hidden;
  background-color: #F5F4F4; }

input, textarea, select, option, button {
  margin: 0;
  border: 0;
  padding: 0;
  outline: none; }

table {
  border-spacing: 0;
  overflow-x: auto; }

table th {
  white-space: nowrap; }

input:focus, select:focus {
  outline: none;
  transition: 400ms ease-in-out; }

ul, ol {
  list-style: none; }

a {
  color: inherit;
  word-break: keep-all;
  text-decoration: none;
  align-self: flex-start; }

img {
  max-width: 100%;
  height: auto; }

/* CLASES
   =============================
	1. = FLEX LAYOUT
	2. = ALIGNMENT
    3. = WHITE SPACES
    4. = TABLES
    5. = IMAGES
    6. = DECORATORS & COLORS
*/
/*    FLEX LAYOUT
    - This stylesheet is based on flexbox.
    - W3 CSS Flexible Box Layout Module:
       https://www.w3.org/TR/css-flexbox-1
    
*/
.flex {
  width: 100%;
  display: flex; }

.container {
  width: 90%;
  display: flex; }

.responsive-img {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; }

.row {
  display: flex;
  flex-direction: row; }

.row-responsive {
  display: flex;
  flex-direction: row; }

.column {
  display: flex;
  flex-direction: column; }

.wrap {
  flex-wrap: wrap;
  display: flex; }

/*    ALIGNMENT    */
.justify-center {
  width: 100%;
  display: flex;
  justify-content: center; }

.justify-start {
  width: 100%;
  display: flex;
  justify-content: flex-start; }

.justify-end {
  width: 100%;
  display: flex;
  justify-content: flex-end; }

.justify-between {
  width: 100%;
  display: flex;
  justify-content: space-between; }

.justify-around {
  width: 100%;
  display: flex;
  justify-content: space-around; }

.align-center {
  width: 100%;
  display: flex;
  align-items: center; }

.align-start {
  width: 100%;
  display: flex;
  align-items: flex-start; }

.align-end {
  width: 100%;
  display: flex;
  align-items: flex-end; }

.auto {
  width: auto;
  display: flex; }

.full {
  width: 100%; }

.threequarter {
  width: 75%; }

.half {
  width: 50%; }

.quart {
  width: 25%; }

/*    TEXT ALIGNMENT    */
.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-end {
  text-align: end; }

.text-justify {
  text-align: justify; }

.text-right {
  text-align: right; }

/*    TABLES    */
.table-responsive {
  overflow-x: auto; }

.table-responsive table {
  width: 100%; }

.table-auto {
  table-layout: auto; }

.table-equal {
  table-layout: fixed; }

/*    IMAGES    */
.cover-img {
  object-fit: cover; }

.contain-img {
  object-fit: contain; }

/*    DECORATORS    */
.hidden {
  display: none !important; }

.cursor-pointer {
  cursor: pointer; }

/*    LARGE DEVICES    */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px; } }
/*    NOTEBOOKS, IPADS DEVICES    */
/*    TABLETS DEVICES    */
@media screen and (max-width: 768px) {
  .row-responsive {
    flex-direction: column; }

  .white-space-64 {
    height: 32px; } }
/*    MOBILE DEVICES    */
@media screen and (max-width: 576px) {
  .container {
    width: 92%; } }
/**
*   colors.scss
*   @description: Variables de colores
*/
/* Classes de colores para textos  #4f867d;*/
.color-white {
  color: #FFFFFF; }

.color-black {
  color: #000000; }

.color-red {
  color: #EA545F; }

.color-gray {
  color: #6c757d; }

.color-turquoise {
  color: #4f867d; }

.color-orange {
  color: #e8aa47; }

/* Clases de colores para backgrounds */
.bg-white {
  background-color: #FFFFFF; }

.bg-black {
  background-color: #000000; }

.bg-orange {
  background-color: #e8aa47; }

/**
*   fonts.scss
*   @description: Estilos de fuente y tipografía
*/
/*    Font families    */
@font-face {
  font-family: 'coffee';
  src: url("font/kenyan coffee rg.ttf"); }
/*    Font sizes    */
.font-fifth {
  font-size: 5rem; }

.font-fourth {
  font-size: 4rem; }

.font-triple {
  font-size: 3rem; }

.font-double {
  font-size: 2rem; }

.font-huge {
  font-size: 1.8rem; }

.font-large {
  font-size: 1.6rem; }

.font-medium {
  font-size: 1.4rem; }

.font-regular {
  font-size: 1.2rem; }

.font-small {
  font-size: 1rem; }

.font-text {
  font-size: 0.93rem; }

.font-tiny {
  font-size: 0.9rem; }

.font-mini {
  font-size: 0.8rem; }

/*    Font weight   */
.weight-ultra {
  font-weight: 800; }

.weight-bold {
  font-weight: 700; }

.weight-semi {
  font-weight: 600; }

.weight-medium {
  font-weight: 500; }

.weight-regular {
  font-weight: 400; }

a {
  font-family: "Mitr", "coffee", "Mukta", sans-serif;
  font-size: 1rem; }

li {
  font-family: "Mitr", "coffee", "Mukta", sans-serif;
  font-size: 1rem; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
span,
td,
td,
tr {
  src: url("font/kenyan coffee rg.ttf") format("truetype");
  color: #4e4a4a;
  font-family: "Mitr", "coffee", "Mukta", sans-serif; }

h1 {
  font-size: 1.8rem;
  font-weight: 700; }

h2 {
  font-size: 1.6rem;
  font-weight: 700; }

h3 {
  font-size: 1.4rem;
  font-weight: 600; }

h4 {
  font-size: 1.2rem;
  font-weight: 500; }

h5 {
  font-size: 0.93rem;
  font-weight: 500; }

h6 {
  font-size: 1.4rem;
  font-weight: 400; }

p,
b,
span {
  font-size: 0.93rem;
  line-height: 22px;
  color: #000000; }

/*   Decorators    */
.uppercase {
  text-transform: uppercase; }

.lowercase {
  text-transform: lowercase; }

.capitalize {
  text-transform: capitalize; }

.underline {
  text-decoration: underline; }

.line-through {
  text-decoration: line-through; }

::selection {
  color: #FFFFFF;
  background-color: #000000; }

/**
*   spacing.scss
*   @description: Espacios en blanco, margenes y paddings
*/
/*      Paddings       */
/*      Margins       */
/*      Whitespaces       */
.white-space-8 {
  height: 8px; }

.white-space-16 {
  height: 16px; }

.white-space-24 {
  height: 24px; }

.white-space-32 {
  height: 32px; }

.white-space-48 {
  height: 48px; }

.white-space-64 {
  height: 64px; }

.padding-normal {
  padding: 8px; }

.padding-medium {
  padding: 16px; }

.padding-semi {
  padding: 24px; }

.padding-large {
  padding: 32px; }

.padding-huge {
  padding: 48px; }

.padding-extra {
  padding: 64px; }

.margin-normal {
  margin: 8px; }

.margin-medium {
  margin: 16px; }

.margin-semi {
  margin: 24px; }

.margin-large {
  margin: 32px; }

.margin-huge {
  margin: 48px; }

.margin-extra {
  margin: 64px; }

/*      Libs     */
/*      Helpers      */
/*      Componentes      */
.input {
  font-size: 1rem;
  font-family: "Mitr", "coffee", "Mukta", sans-serif;
  font-weight: 600;
  outline: 1px solid transparent;
  background-color: #EFEFEF;
  padding: 8px 16px; }

.input-form {
  width: 100%;
  color: black;
  background-color: #f2f2f2cc;
  padding: 8px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1.5px solid #f2f2f2;
  transition: background .300s ease-in-out; }

.input-form:focus {
  background-color: #ececec; }

header {
  padding: 8px 0;
  background-color: transparent;
  position: fixed;
  z-index: 3;
  top: 0;
  transition: background-color 0.4s ease-out;
  width: 100%; }
  header img {
    height: 60px; }
  header .logo {
    width: 25%; }
  header .nav-icon {
    display: none; }
  header .nav-item {
    padding: 0 8px;
    border-bottom: 2px solid transparent; }
    header .nav-item a {
      color: #FFFFFF;
      transition: color 300ms ease-in-out;
      font-size: 1rem; }
      header .nav-item a:hover {
        color: #EA545F; }
    header .nav-item i {
      padding-right: 4px; }

header.scroll {
  background-color: #000000;
  color: #eef; }

@media screen and (max-width: 992px) {
  header {
    padding-bottom: 4px; }
    header .nav-icon {
      display: block;
      margin: 1em;
      width: 35px;
      position: absolute;
      right: 5px;
      bottom: 2px;
      z-index: 2; }
      header .nav-icon:after, header .nav-icon:before, header .nav-icon div {
        background-color: #fff;
        border-radius: 3px;
        content: '';
        display: block;
        height: 4px;
        margin: 5px 0;
        transition: all .3s ease-in-out; }
      header .nav-icon:hover:after, header .nav-icon:hover:before, header .nav-icon:hover div {
        background-color: #EA545F; }
    header .nav-icon-active:before {
      transform: translateY(10px) rotate(135deg); }
    header .nav-icon-active:after {
      transform: translateY(-9px) rotate(-135deg); }
    header .nav-icon-active div {
      transform: scale(0); }
    header img {
      height: 50px;
      margin-bottom: 6px; }
    header .logo {
      width: 100%; }
    header .main {
      flex-direction: column;
      padding: 64px 24px;
      top: 0;
      right: 0;
      width: 35%;
      z-index: 1;
      height: 100vh;
      position: fixed;
      background-color: #000000;
      transform: translateX(100%);
      transition: all 300ms ease-in-out; }
      header .main .nav-item {
        margin-bottom: 24px; }
    header .main-appear {
      transform: translateX(0); }
    header .main-hide {
      transform: translateX(100%); } }
@media screen and (max-width: 768px) {
  header .main {
    width: 60%; } }
.card-info {
  background-color: #FFFFFF;
  width: 25%;
  padding: 8px;
  height: 200px;
  border-radius: 4px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  transition: box-shadow .300s ease-in-out; }
  .card-info:hover {
    box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1); }

.card-info-small {
  background-color: #FFFFFF;
  width: 23%;
  padding: 8px;
  height: 200px;
  border-radius: 4px;
  border: 2px solid #FFFFFF;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.1);
  transition: box-shadow .300s ease-in-out; }
  .card-info-small:hover {
    box-shadow: 1px 5px 12px 4px rgba(0, 0, 0, 0.1); }

@media screen and (max-width: 992px) {
  .card-info {
    width: 30%;
    margin-bottom: 16px; }

  .card-info-small {
    background-color: #FFFFFF;
    width: 24%;
    margin-bottom: 16px; }
    .card-info-small h3 {
      font-size: 1.2rem; }
    .card-info-small p {
      font-size: 0.8rem; } }
@media screen and (max-width: 768px) {
  .card-info {
    width: 100%;
    margin-bottom: 16px; }

  .card-info-small {
    background-color: #FFFFFF;
    width: 100%;
    margin-bottom: 16px; } }
.btn-login {
  padding: 6px 32px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #4f867d;
  border-radius: 4px;
  width: 30%;
  color: #FFFFFF;
  font-family: "Mitr", "coffee", "Mukta", sans-serif;
  transition: background .300s ease-in-out; }
  .btn-login:hover {
    background: #9ca0a3; }

/*      Páginas      */
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory; }

.bm-img {
  background-size: cover;
  background-position: center;
  scroll-snap-align: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  position: relative;
  height: 100vh; }

.landing {
  position: absolute; }
  .landing .overlay {
    background: #000000; }
  .landing .preview {
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    height: 100vh; }
    .landing .preview .info-preview {
      width: 100%; }
      .landing .preview .info-preview h1 {
        font-size: 4rem;
        color: #EA545F; }
      .landing .preview .info-preview img {
        width: 45%; }

@media screen and (max-width: 992px) {
  .landing .preview p {
    font-size: 1.8rem;
    line-height: 1.5em;
    align-content: center; } }
@media screen and (max-width: 768px) {
  .landing .preview .info-preview {
    width: 100%; }
    .landing .preview .info-preview p {
      font-size: 2rem;
      line-height: 1.5em;
      text-align: center; } }
@media screen and (max-width: 576px) {
  .landing .preview .info-preview img {
    width: 100%; } }
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory; }

.agent {
  background-image: url(../img/fondo.png);
  background-size: cover;
  background-position: center;
  scroll-snap-align: center;
  background-attachment: fixed;
  background-repeat: no-repeat; }
  .agent .preview {
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    height: 60vh; }
    .agent .preview .overlay {
      background: #e8aa47; }
    .agent .preview .font-fifth {
      font-size: 3rem; }
    .agent .preview .info-preview {
      width: 100%; }
      .agent .preview .info-preview h1 {
        font-size: 4rem; }
      .agent .preview .info-preview img {
        width: 65%; }
      .agent .preview .info-preview p {
        line-height: 1.5em; }
  .agent .form-info .arrow-down {
    width: 0;
    height: 0;
    border-left: 10vh solid transparent;
    border-right: 10vh solid transparent;
    border-top: 5vh solid #e8aa47; }
  .agent .form-info .input-container {
    width: 90%; }
  .agent .form-info .input-container-full {
    width: 100%; }
  .agent .form-info .overlay {
    background: rgba(79, 134, 125, 0.685); }
  .agent .form-info .reverse {
    flex-direction: row-reverse; }
  .agent .form-info h4 {
    color: #FFFFFF; }
  .agent .form-info .column-info {
    width: 100%; }
    .agent .form-info .column-info form {
      width: 100%;
      border-radius: 10px; }
      .agent .form-info .column-info form .row .column .btn-option {
        margin-left: 8px; }
        .agent .form-info .column-info form .row .column .btn-option button {
          border-radius: 4px; }
      .agent .form-info .column-info form .btn-login:hover {
        background: #9ca0a3; }

@media screen and (max-width: 992px) {
  .landing .preview p {
    font-size: 1.8rem;
    line-height: 1.5em;
    align-content: center; }
  .landing .contact-info .column-info {
    align-items: center; }
    .landing .contact-info .column-info form {
      width: 90%; }
      .landing .contact-info .column-info form .btn-login {
        width: 60%; }
  .landing .contact-info .input-container {
    width: 98%; }
  .landing .contact-info .input-container-full {
    width: 100%; }
  .landing .contact-info p {
    font-size: 2rem;
    line-height: 1.5em;
    text-align: center; } }
@media screen and (max-width: 768px) {
  .font-huge {
    font-size: 1.2rem; }

  .landing .preview .info-preview {
    width: 100%; }
    .landing .preview .info-preview p {
      font-size: 2rem;
      line-height: 1.5em;
      text-align: center; }
  .landing .contact-info .column-info {
    align-items: center; }
    .landing .contact-info .column-info form {
      width: 90%; }
      .landing .contact-info .column-info form .btn-login {
        width: 100%; }
  .landing .contact-info .input-container {
    width: 98%; }
  .landing .contact-info .input-container-full {
    width: 100%; }
  .landing .contact-info p {
    line-height: 1.5em;
    text-align: center; } }
@media screen and (max-width: 992px) {
  body {
    background: gray; } }
@media screen and (max-width: 768px) {
  body {
    background: lightgrey; } }
@media screen and (max-width: 576px) {
  body {
    background: white; } }

/*# sourceMappingURL=style.css.map */
