:root {
  --blue: #0b49f9;
  --orange: #ee6a35;
  --darkOrange: #d15e30;
  --black: #000;
  --white: #fff;
  --primaryFont: 'EB Garamond', serif;
}

* {
  font-size: 1.1rem;
}

a {
  color: inherit;
  text-decoration: none !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

a:hover {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color: inherit;
}

.df, .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.df.c, .row.c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.df.c.cc, .row.c.cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.c.cs, .row.c.cs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.df.c.sc, .row.c.sc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.c.ce, .row.c.ce {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.df.c.se, .row.c.se {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.df.c.ec, .row.c.ec {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.c.es, .row.c.es {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.df.c.sb, .row.c.sb {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.df.c.sbi, .row.c.sbi {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.c.isb, .row.c.isb {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.r, .row.r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.df.r.cc, .row.r.cc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.r.cs, .row.r.cs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.df.r.sc, .row.r.sc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.r.ce, .row.r.ce {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.df.r.ec, .row.r.ec {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.df.r.sb, .row.r.sb {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.df.r.sbi, .row.r.sbi {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.df.r.sei, .row.r.sei {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

/* BACKGROUND */
.bg-blue {
  background: var(--blue);
}

.bg-gray {
  background: var(--gray);
}

.bg-darkOrange {
  background: var(--darkOrange);
}

.bg-orange {
  background: var(--orange);
}

.bg-lightOrange {
  background: var(--lightOrange);
}

/* BORDERS */
.b-brown {
  border: 4px solid var(--brown);
}

.b-gray {
  border: 4px solid var(--gray);
}

.b-darkOrange {
  border: 4px solid var(--orange);
}

.b-orange {
  border: 4px solid var(--orange);
}

.b-lightOrange {
  border: 4px solid var(--lightOrange);
}

.bb-blue {
  border-bottom: 6px solid var(--blue);
}

.bb-orange {
  border-bottom: 6px solid var(--orange);
}

.bt-blue {
  border-top: 6px solid var(--blue);
}

.bt-orange {
  border-top: 6px solid var(--orange);
}

.bl-blue {
  border-left: 6px solid var(--blue);
}

.bl-orange {
  border-left: 6px solid var(--orange);
}

.br-blue {
  border-right: 6px solid var(--blue);
}

.br-orange {
  border-right: 6px solid var(--orange);
}

/* FONT SIZE */
.megatitle {
  font-size: 4.5rem;
}

.supertitle {
  font-size: 3.2rem;
}

.title {
  font-size: 1.9rem;
}

.subtitle {
  font-size: 1.5rem;
}

/* FONT COLOR */
.blue {
  color: var(--blue);
}

.orange {
  color: var(--orange);
}

.black {
  color: var(--black) !important;
}

.white {
  color: var(--white) !important;
}

/* FONT WEIGHT */
.lighter {
  font-weight: lighter;
}

.bold {
  font-weight: bold;
}

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

/* BUTTON */
.btn {
  padding: 10px 20px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  border-radius: 0;
  background: var(--white);
  border: 2px solid var(--white);
  color: var(--blue);
}

.btn-blue {
  background: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: var(--white) !important;
  border: 2px solid var(--white) !important;
  color: var(--blue) !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn-orange {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--white) !important;
  border: 2px solid var(--white) !important;
  color: var(--orange) !important;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.btn-border {
  background: transparent !important;
  border: 2px solid var(--white) !important;
  color: var(--white) !important;
}

.btn-border-orange {
  background: transparent !important;
  border: 2px solid var(--orange) !important;
  color: var(--white) !important;
}

.btn-border-orange:hover {
  background: var(--orange) !important;
  background: var(--orange) !important;
  color: var(--white) !important;
}

.btn-border:hover {
  background: var(--white) !important;
  border: 2px solid var(--white) !important;
  color: var(--blue) !important;
}

.btn:hover {
  background: var(--blue);
  border: 2px solid var(--blue);
  color: var(--white);
}
/*# sourceMappingURL=layout.css.map */