@charset "ISO-8859-1";
/* Reset CSS
 * --------------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
  position: relative;
}
a {
  text-decoration: none;
}
table {
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}
strong {
  font-weight: bold;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: #000;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
}

nobr {
  white-space: nowrap;
  hyphens: none;
}

/* Custom CSS
 * --------------------------------------- */
body {
  font-family: "Karla", Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 20px;
  margin: 3.75em 0 0;
}
.wrap {
  margin-left: auto;
  margin-right: auto;
  width: 960px;
  position: relative;
}
.center {
  text-align: center;
}
.col {
  display: inline-block;
  width: calc(50% - 1.2em);
  vertical-align: top;
}
.col.gut {
  margin-right: 2em;
}
nav {
  position: fixed;
  display: block;
  height: 3.75em;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background-color: #fff;
  box-sizing: border-box;
  border-bottom: 2px solid #fa4c80;
  z-index: 10;
}
nav .logo,
footer .logo {
  width: 225px;
  height: 100%;
  left: 2em;
  background: url(../images/logo-chicago-black-red.png) no-repeat left 50%;
  background-size: contain;
  transition: all;
  transition-delay: 0.3s;
}
nav .menu {
  position: absolute;
  right: 0;
  height: 100%;
  cursor: pointer;
  top: 0;
}
nav li {
  display: inline-block;
  padding: 0 1em;
  height: 100%;
  line-height: 4.25em;
  font-size: 0.8em;
}
nav li:hover,nav li.active {
  border-bottom: 4px solid #fa4c80;
}
nav a {
  color: #c12856;
  padding: 2em 0;
}
nav .trade {
  display: none;
}

footer #mail {
  position: fixed;
  bottom: 1em;
  width: 3em;
  height: 3em;
  right: 1.2em;
  filter: sepia(1) hue-rotate(300deg) saturate(0.4);
}

footer {
  position: relative;
  padding: 1em;
  font-size: 0.8em;
  margin: 0;
  min-height: 8em;
}
footer .logo {
  height: 2.5em;
}
footer a {
  /*! display: block; */
}
footer ul {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  left: 14em;
  top: 1em;
  width: calc(100% - 14em);
  max-width: unset;
}
footer li a {
  padding: 0 1.5em 0.5em;
}
footer .trade {
  position: absolute;
  bottom: 1em;
  left: 6em;
}

/**************
  burger menu 
***************/
.bar1,
.bar2,
.bar3 {
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.3s;
}

/* Rotate first bar */
.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
  transform: rotate(-45deg) translate(-9px, 6px);
}
/* Fade out the second bar */
.change .bar2 {
  opacity: 0;
}
/* Rotate last bar */
.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
  transform: rotate(45deg) translate(-8px, -8px);
}

* {
  box-sizing: border-box;
}

/*****************
 Slideshow container 
 *****************/
#section-testimonials .content {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  height: 20em;
}

/* Hide the images by default */
.mySlides {
  top: 50%;
  display: none;
  padding: 0 4em;
  transform: translateY(-50%);
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 46%;
  left: -1.5em;
  width: auto;
  margin-top: -1em;
  padding: 8px;
  color: #fa4c80;
  font-weight: bold;
  font-size: 1em;
  transition: 0.6s ease;
  border-radius: 5px 0 0 5px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  left: unset;
  right: -1.5em;
  border-radius: 0 5px 5px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* ***************** */

p {
  font-size: 1em;
  position: relative;
  opacity: 0.8;
}

.red {
  color: #fa4c80;
}
.gray {
  color: #444;
}
.bg-red {
  background-color: #f81566 !important;
}

h1,
h2 {
  font-size: 2.75em;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  line-height: 1.25;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.25em;
  font-weight: 600;
}
h5 {
  font-size: 1em;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
}

ul {
  max-width: 44em;
  text-align: left;
  margin: 0 auto;
}
ul.check {
  list-style-type: none;
  padding: 0;
}
.check li {
  background: url(../images/Checkmark.svg) no-repeat left 5px;
  background-size: 0.8em;
  padding-left: 1.25em;
  padding-top: 0;
  padding-bottom: 0.5em;
  opacity: 0.8;
}

.vcenter {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
}

/* make separate bg element to apply effects to it only */

.section .gr {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0.6;
  z-index: -1;
}

.section.gray-bg .gr {
  opacity: 0.6;
}

.section .content {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 60%;
  max-width: 54em;
  min-width: 38em;
  padding: 1em 4em;
  margin-top: 2em;
  /*border-top: 2px solid #fa4c80;
  background: rgba(255,255,255,0.6);
  box-shadow: 0 0 8px white;*/
}

.left {
  float: left;
}
.right {
  float: right;
}

.section {
  position: relative;
  width: 100%;
  text-align: left;
  margin-bottom: 2em;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 20em;
  text-shadow: 0 0 6px white;
}

.section p {
  line-height: 1.25;
}

.gray-bg {
  background-color: rgba(230, 230, 230, 0.7);
}

.quote > p {
  position: relative;
  font-size: 1.2em;
  line-height: 1.35;
  font-family: "Playfair Display", script;
  font-style: italic;
  transform: scale(1.1,1);
  transform-origin: center center;
  margin: 0 auto;
  text-align: center;
}
.quote > p:before,
.quote > p:after {
  font-size: 8em;
  opacity: 0.1;
  line-height: 0.5;
}
.quote > p:before {
  content: "\201C";
  float: left;
  margin: 0 -0.2em;
}
.quote > p:after {
  position: relative;
  content: "\201D";
  float: right;
  bottom: -0.1em;
  margin-left: -0.3em;
}
.byline {
  padding-top: 1em;
  font-size: 0.8em;
  font-family: "Karla", Arial, Helvetica, sans-serif;
  font-style: normal;
}
.icon-red {
  position: relative;
  background: #f81566 no-repeat center 1.2em;
  background-size: 4em;
  border-radius: 10%;
  display: inline-block;
  height: 8em;
  width: 8em;
  margin: 1.5em 1em;
}
.icon-red h5 {
  position: absolute;
  margin: 70% auto 0;
  width: 100%;
  font-size: 0.8em;
}
.icon {
  position: relative;
  background: no-repeat center top;
  background-size: 5em 5.5em;
  display: inline-block;
  width: 12em;
  margin: 0em 1em 2em;
  padding-top: 6em;
  vertical-align: top;
}

.icon p {
  margin-block-start: 0.5em;
}

/* chrome only bugs */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
}

@keyframes bg-anim {
  0% {
    filter: sepia(0.5) hue-rotate(290deg) saturate(0.5) brightness(0.1)
      blur(5px);
  }
  50% {
    filter: sepia(0.5) hue-rotate(290deg) saturate(2) brightness(0.6) blur(1px);
  }
  100% {
    filter: sepia(0.25) hue-rotate(290deg) saturate(3) brightness(1.2) blur(0);
  }
}

.btn {
  padding: 10px 25px;
  border-radius: 25px;
  display: inline-block;
  cursor: pointer;
  font-size: 1em;
  color: white;
  border: none;
  text-transform: uppercase;
}

/* 
Defining each section background and styles
* --------------------------------------- */

.section.studies {
  display: flex;
  flex-wrap: wrap;
  padding: 1em 3em;
}

.section.studies .gr {
  height: 18em;
  margin-left: -3em;
  background: url(../images/star/bg5.png) 0 0 no-repeat;
  background-size: 18em;
  z-index: -1;
}

.section.studies h2,
.section.studies h1 {
  flex: 100%;
  margin: 10px;
}

.section.studies a {
  position: relative;
  flex: calc(50% - 20px);
  padding: 1em;
  padding-bottom: 3em;
  margin: 10px;
  color: #000;
  border-radius: 0.4em;
}

.section.studies a span {
  position: absolute;
  bottom: 1em;
}

#contact-form {
  width: 100%;
}
#contact-form > div {
  display: inline-block;
  width: 49%;
}
label {
  display: block;
  padding: 0.5em 0;
  font-size: 1em;
}
label:before {
  content: '*';
  color: #fa4c80;
}
input {
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #888;
  width: 100%;
  margin-bottom: 1em;
  padding: 2px;
  font-size: 0.8em;
}

textarea {
  box-sizing: border-box;
  width: 100%;
  height: 10em;
  padding: 4px;
}

@media only screen and (max-width: 900px) {
  body {
    font-size: 16px;
  }
  nav {
    padding: 0.5em;
  }
  nav #logo {
    width: 225px;
    height: 2em;
  }
  .section .content {
    width: 75%;
  }
}

@media only screen and (max-width: 650px) {
  nav {
    height: 5em;
    padding: 1em 0;
  }
  nav .logo {
    width: 100%;
    height: 45%;
    left: 0;
    background-position: top center;
  }
  nav .menu {
    position: absolute;
    text-align: center;
    top: auto;
    right: auto;
    width: 100%;
    height: 2em;
    bottom: 0;
  }

  nav li {
    position: relative;
    line-height: 1.1;
    padding: 0 0.5em;
    bottom: 0;
  }
  nav a {
    padding: 1em 0;
  }

  h1 {
    font-size: 2.25em;
  }
  .section .content {
    width: 100%;
    min-width: 10em;
    padding: 1em 2em;
  }
  .section .gr {
    opacity: 0.2;
  }
  .section.studies {
    padding: 1em;
  }
  .section.studies a {
    flex: 100%;
  }
  .slideshow-container {
    height: 22em;
  }
  .mySlides {
    padding: 0 0.8em;
  }
  #section-contact .content {
    width: 100%;
  }
  #contact-form {
    width: calc(100% - 1em);
  }
}

@media only screen and (max-width: 480px) {
  nav .menu {
    height: 2.2em;
  }
  nav li {
    max-width: 4.5em;
    vertical-align: middle;
    padding: 0 0.2em;
  }
  .quote > p {
    font-size: 1em;
  }
}

@media only screen and (max-width: 360px) {
  footer {
    min-height: 12em;
  }
}

#fullpage {
  display: block !important;
}
