/* common */
body {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3125;
  background-color: #fff;
  color: #27343c;
}

a {
  text-decoration: none !important;
  color: #be398d;
}
a:hover {
  color: #f6a900;
}

a,
a:before,
a:after,
input,
textarea,
select,
button {
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, opacity 0.2s ease-out;
}

input,
textarea,
select,
button {
  appearance: none;
  outline: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

textarea {
  resize: none;
}

/* pulse */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
/* master */
.master {
  min-width: 320px;
}

/* main */
.main {
  overflow: hidden;
}

/* transformed-table */
.transformed-table {
  display: table;
  width: 100%;
  height: 100%;
}
.transformed-table-row {
  display: table-row;
}
.transformed-table-cell {
  display: table-cell;
}

/* valign */
.valign-top {
  vertical-align: top;
}
.valign-bottom {
  vertical-align: bottom;
}
.valign-middle {
  vertical-align: middle;
}

/* talign */
.talign-left {
  text-align: left;
}
.talign-right {
  text-align: right;
}
.talign-center {
  text-align: center;
}

/* embed-responsive */
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* header */
.header {
  position: relative;
  z-index: 10;
  background-color: #fff;
  border-top-color: #f6a900;
  border-top-style: solid;
  box-shadow: 0 8px 15px 1px rgba(15, 15, 15, 0.36);
}

/* xs - sm */
@media (max-width: 1023px) {
  .header {
    padding: 15px 0;
    border-top-width: 50px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .header {
    padding: 25px 0;
    border-top-width: 15px;
  }
  .header > .container-fluid {
    max-width: 1440px;
  }
}
/* footer */
.footer {
  background-color: #212c33;
  color: #80868c;
}

.copyright,
.author {
  margin: 0;
  padding: 0;
  text-align: center;
}
.copyright a,
.author a {
  color: #80868c;
}
.copyright a:hover,
.author a:hover {
  color: #e4e5e6;
}

.back-to-top a,
.social-links a {
  display: inline-block;
  margin: 0 4px;
  text-align: center;
}

.back-to-top a {
  width: 42px;
  height: 42px;
  font-size: 24px;
  line-height: 38px;
  border: #f6a900 solid 2px;
  border-radius: 50%;
  color: #f6a900;
}
.back-to-top a:hover {
  border-color: #be398d;
  color: #be398d;
}

.social-links a {
  width: 34px;
  height: 34px;
  line-height: 34px;
  background-color: #f6a900;
  border-radius: 10px;
  color: #212c33;
}
.social-links a:hover {
  background-color: #be398d;
}

/* xs - sm */
@media (max-width: 1023px) {
  .footer {
    padding: 20px 0;
  }

  .back-to-top,
  .social-links {
    margin-bottom: 15px;
    text-align: center;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .footer {
    padding: 35px 0;
  }

  .back-to-top,
  .social-links {
    position: absolute;
    top: 50%;
  }

  .back-to-top {
    right: 11px;
    margin-top: -21px;
  }

  .social-links {
    left: 11px;
    margin-top: -17px;
  }
}
/* logo */
.logo {
  display: inline-block;
}
.logo img {
  width: auto;
  vertical-align: top;
}

/* xs */
@media (max-width: 767px) {
  .logo img {
    height: 40px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .logo img {
    height: 60px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .logo img {
    height: 71px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .logo img {
    height: 77px;
  }
}
/* toolbar */
.toolbar {
  position: absolute;
}
.toolbar a {
  float: left;
  height: 34px;
  border-radius: 10px;
  color: #fff;
}
.toolbar a:hover {
  opacity: 0.85;
}
.toolbar-social a {
  width: 34px;
  text-align: center;
}
.toolbar-newsletter a {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* xs - sm */
@media (max-width: 1023px) {
  .toolbar {
    top: -57px;
    right: 15px;
    left: 15px;
  }
  .toolbar-social a, .toolbar-newsletter a {
    line-height: 30px;
    border: #fff solid 2px;
  }
  .toolbar-social {
    float: left;
  }
  .toolbar-newsletter {
    float: right;
  }
  .toolbar-newsletter a {
    font-size: 12px;
  }
}
/* xs */
@media (max-width: 767px) {
  .toolbar-social a {
    margin-right: 8px;
  }
  .toolbar-newsletter a {
    padding: 0 8px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .toolbar-social a {
    margin-right: 12px;
  }
  .toolbar-newsletter a {
    padding: 0 12px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .toolbar {
    top: 0;
    right: 15px;
  }
  .toolbar-social, .toolbar-newsletter {
    float: left;
  }
  .toolbar-social a, .toolbar-newsletter a {
    line-height: 34px;
  }
  .toolbar-social a {
    margin-right: 12px;
    background-color: #f6a900;
  }
  .toolbar-newsletter a {
    padding: 0 15px;
    font-size: 14px;
    background-color: #be398d;
  }
}
/* nav */
.nav ul,
.nav li {
  margin: 0;
  padding: 0;
}
.nav ul {
  list-style: none;
}
.nav a {
  display: block;
  color: #27343c;
}
.nav a:hover, .nav a.active {
  color: #f6a900;
}
.nav > ul > li > a {
  text-transform: uppercase;
}

/* xs - sm */
@media (max-width: 1023px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #f6a900;
    transition: right .2s ease-out;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle .icon {
    display: none;
  }
  .nav-toggle.is-closed {
    position: absolute;
    top: 50%;
    right: 15px;
    z-index: 2;
    color: #27343c;
  }
  .nav-toggle.is-closed .icon-bar {
    display: block;
  }
  .nav-toggle.is-closed:hover {
    color: #f6a900;
  }
  .nav-toggle.is-opened {
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    width: 15%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
  }
  .nav-toggle.is-opened .icon-close {
    display: block;
  }
  .nav-toggle.is-opened:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .nav.is-shown {
    right: 0;
  }
  .nav > ul {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    box-sizing: content-box;
  }
  .nav > ul > li {
    border-bottom: #f0f0f0 solid 1px;
  }
  .nav > ul > li.has-child {
    position: relative;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  .nav > ul > li.has-child > a {
    position: relative;
    z-index: 2;
  }
  .nav > ul > li.has-child > .icon {
    position: absolute;
    z-index: 1;
    display: none;
    line-height: 1;
  }
  .nav > ul > li.has-child.is-closed > .icon-down {
    display: block;
  }
  .nav > ul > li.has-child.is-opened > .icon-up {
    display: block;
  }
  .nav > ul > li > ul {
    display: none;
    background-color: #f8f8f8;
    box-shadow: inset 0 0 16px 4px rgba(35, 32, 30, 0.09);
  }
  .nav > ul > li > ul > li {
    border-top: #efefef solid 1px;
  }
}
/* xs */
@media (max-width: 767px) {
  .nav-toggle.is-closed {
    margin-top: -20px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
  }
  .nav-toggle.is-opened {
    height: 54px;
    font-size: 24px;
    line-height: 54px;
  }
  .nav a {
    padding: 15px 20px;
    font-size: 18px;
  }
  .nav > ul > li.has-child > .icon {
    top: 15px;
    right: 20px;
    font-size: 24px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-toggle.is-closed {
    margin-top: -30px;
    height: 60px;
    font-size: 32px;
    line-height: 60px;
  }
  .nav-toggle.is-opened {
    height: 103px;
    font-size: 48px;
    line-height: 103px;
  }
  .nav a {
    padding: 30px 50px;
    font-size: 32px;
  }
  .nav > ul > li.has-child > .icon {
    top: 27px;
    right: 50px;
    font-size: 48px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .nav {
    position: absolute;
    right: 5px;
    bottom: -5px;
    display: block !important;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav .icon {
    display: none !important;
  }
  .nav > ul {
    float: right;
  }
  .nav > ul > li {
    float: left;
  }
  .nav > ul > li:first-child {
    margin-left: 0;
  }
  .nav > ul > li.has-child {
    position: relative;
  }
  .nav > ul > li.has-child:hover > ul {
    display: block !important;
  }
  .nav > ul > li > a {
    position: relative;
    z-index: 2;
    padding: 0 10px;
  }
  .nav > ul > li > ul {
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0;
    display: none !important;
    width: 240px;
    padding-top: 20px;
    font-size: 18px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 15px 1px rgba(15, 15, 15, 0.36);
  }
  .nav > ul > li > ul:before {
    position: absolute;
    top: -10px;
    left: -5%;
    display: block;
    width: 110%;
    height: 30px;
    background-color: #fff;
    content: "";
  }
  .nav > ul > li > ul > li {
    border-top: #eee solid 1px;
  }
  .nav > ul > li > ul > li > a {
    position: relative;
    padding-top: 15px;
    padding-right: 40px;
    padding-bottom: 15px;
    padding-left: 20px;
  }
  .nav > ul > li > ul > li > a:before {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -0.5625em;
    font-family: "fontello";
    content: "\e807";
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .nav > ul > li {
    margin-left: 5px;
  }
  .nav > ul > li > a {
    font-size: 18px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .nav > ul > li {
    margin-left: 15px;
  }
  .nav > ul > li > a {
    font-size: 20px;
  }
}
/* newsletter */
.newsletter {
  position: relative;
}
.newsletter.at-top {
  z-index: 11;
  display: none;
  background-color: #f6a900;
}
.newsletter.at-bottom {
  background-color: #27343c;
}
.newsletter-message, .newsletter-close {
  text-align: center;
  
}
.newsletter-message em {
  display: block;
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.newsletter-message span {
  font-family: "museo-slab-n3", "museo-slab", serif;
  font-weight: 300;
  color: #fff;
}


.newsletter-close {
  position: absolute;
  left: 50%;
  width: 40px;
  margin-left: -20px;
  font-size: 20px;
}
.newsletter-close:hover {
  color: #27343c;
}
.newsletter-button, .newsletter-control {
  display: block;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 25px;
}
.newsletter-button {
  padding: 0;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 3px 7px rgba(15, 15, 15, 0.28);
  color: #fff;
}
.at-top .newsletter-button {
  background-color: #be398d;
}
.at-bottom .newsletter-button {
  background-color: #f6a900;
}
.newsletter-button:hover {
  opacity: 0.85;
}
.newsletter-control {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
  background-color: #e4e5e6;
  box-shadow: inset 2px 1px 8px 1px rgba(6, 6, 5, 0.56);
  color: #212c33;
}
.newsletter-control:focus {
  background-color: #fff;
}
.newsletter-control.placeholder {
  color: #80868c;
}

/* xs - sm */
@media (max-width: 1023px) {
  .newsletter {
    padding: 40px 0;
  }
  .newsletter.at-top {
    border-bottom: rgba(255, 255, 255, 0.25) solid 1px;
  }
  .newsletter-message em {
    font-size: 28px;
  }
  .newsletter-message span {
    font-size: 18px;
  }
  .newsletter-close {
    bottom: 5px;
  }
  .newsletter-button, .newsletter-control {
    height: 55px;
  }
  .oldie .newsletter-button, .oldie .newsletter-control {
    line-height: 55px;
  }
  .newsletter-button {
    font-size: 21px;
  }
  .newsletter-control {
    padding: 0 35px;
    font-size: 18px;
  }
}
/* xs */
@media (max-width: 767px) {
  .newsletter-button, .newsletter-control {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
  .newsletter-control {
    margin-bottom: 20px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .newsletter.at-top {
    padding: 40px 0;
  }
  .newsletter.at-bottom {
    padding: 60px 0;
  }
  .newsletter-message em {
    font-size: 38px;
  }
  .newsletter-message span {
    font-size: 23px;
  }
  .newsletter-close {
    bottom: 0;
  }
  .newsletter-button, .newsletter-control {
    height: 70px;
  }
  .oldie .newsletter-button, .oldie .newsletter-control {
    line-height: 70px;
  }
  .newsletter-button {
    font-size: 25px;
  }
  .newsletter-control {
    padding: 0 45px;
    font-size: 20px;
  }
}
/* banner */
.banner {
  position: relative;
  background-color: #212c33;
}
.banner-image {
  display: block;
  width: 100%;
  height: auto;
}
.banner-button, .banner-content {
  position: absolute;
}
.banner-button {
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.banner-button a {
  font-size: 48px;
  color: #fff;
}
.banner-button a:hover {
  color: #f6a900;
}
.banner-content {
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.banner-quote, .banner-quote p {
  margin: 0;
  padding: 0;
}
.banner-quote {
  border: 0;
}
.banner-quote p,
.banner-quote cite {
  font-weight: 700;
  text-shadow: 0 4px 5px rgba(15, 15, 15, 0.15);
}
.banner-quote p {
  font-family: "museo-slab-n7", "museo-slab", serif;
  line-height: 1;
}
.banner-quote cite {
  display: block;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-style: normal;
  text-transform: uppercase;
}

/* xs - sm */
@media (max-width: 1023px) {
  .banner .control {
    display: none;
  }
}
/* xs */
@media (max-width: 767px) {
  .banner-button a {
    font-size: 32px;
  }
  .banner-quote p {
    font-size: 32px;
  }
  .banner-quote cite {
    margin-top: 10px;
    font-size: 14px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .banner-quote p {
    font-size: 56px;
  }
  .banner-quote cite {
    margin-top: 25px;
    font-size: 20px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .banner .control {
    position: absolute;
    top: 50%;
    margin-top: -52px;
    font-size: 80px;
    color: #fff;
    color: rgba(255, 255, 255, 0.3);
  }
  .banner .control:hover {
    color: #fff;
  }
  .banner .control-prev {
    left: 5px;
  }
  .banner .control-next {
    right: 5px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .banner-quote p {
    font-size: 60px;
  }
  .banner-quote cite {
    margin-top: 35px;
    font-size: 20px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .banner-quote p {
    font-size: 70px;
  }
  .banner-quote cite {
    margin-top: 45px;
    font-size: 22px;
  }
}
/* title */
.title {
  position: relative;
}
.title:before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(190, 57, 141, 0.65);
  content: "";
}
.title h2 {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  margin: -0.5em 0 0;
  padding: 0;
  font-family: "museo-slab-n3", "museo-slab", serif;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-shadow: 0 4px 5px rgba(15, 15, 15, 0.15);
  color: #fff;
}
.title img {
  width: 100%;
  height: auto;
}

/* xs */
@media (max-width: 767px) {
  .title h2 {
    font-size: 36px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .title h2 {
    font-size: 68px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .title h2 {
    font-size: 50px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .title h2 {
    font-size: 68px;
  }
}
/* modal */
.modal-backdrop {
  background-color: #f6a900;
}
.modal-backdrop.in {
  opacity: 0.9;
}
.modal-dialog {
  width: 95%;
  max-width: 768px;
}
.modal-content {
  border: #c8c8c8 solid 1px;
  box-shadow: 2px 4px 38px rgba(0, 1, 1, 0.5);
}
.modal-header {
  position: relative;
  min-height: auto;
  padding: 15px 30px;
  border-bottom: 0;
}
.modal-header .close,
.modal-header .email {
  font-size: 18px;
}



.modal-header .close {
  position: absolute;
  top: 15px;
  right: 30px;
  margin: 0;
  background-color: #fff;
  color: #babec0;
}
.modal-header .close:hover {
  color: #27343c;
}
.modal-footer {
  padding: 30px;
  text-align: center;
  border-top: 0;
}
.modal-footer .close {
  padding: 7px 15px;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border: #ccc solid 1px;
  border-radius: 5px;
  color: #62696e;
}
.modal-footer .close:hover {
  border-color: #27343c;
  color: #27343c;
}
.modal-body {
  padding: 0 40px;
}

/* xs */
@media (max-width: 767px) {
  .modal-header, .modal-body {
    padding: 10px 20px;
  }
  .modal-header .close {
    top: 10px;
    right: 20px;
  }
  .modal-footer {
    padding: 20px;
  }
}
/* popover */
.popover {
  margin: 0;
  padding: 0;
  pointer-events: none;
  max-width: 480px;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
  border-color: #27343c;
  border-radius: 0;
  box-shadow: 2px 4px 38px rgba(0, 1, 1, 0.5);
}
.popover:after, .popover:before {
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  pointer-events: none;
  border: solid transparent;
  content: " ";
}
.popover:after {
  border-top-color: #fff;
}
.popover:before {
  border-top-color: #27343c;
}
.popover .arrow, .popover-title {
  display: none;
}
.popover-content {
  overflow: hidden;
}

/* xs */
@media (max-width: 767px) {
  .popover {
    font-size: 16px;
    line-height: 1.5;
    border-width: 3px;
    margin-right: 15px;
    margin-left: 5px;
  }
  .popover.top {
    margin-top: 90px;

  }
  .popover:after {
    border-width: 15px;
    margin-left: -15px;
  }
  .popover:before {
    border-width: 19px;
    margin-left: -19px;
  }
  .popover-content {
    padding: 15px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .popover {
    border-width: 5px;
  }
  .popover.top {
    margin-top: 80px;
  }
  .popover:after {
    border-width: 30px;
    margin-left: -30px;
  }
  .popover:before {
    border-width: 37px;
    margin-left: -37px;
  }
  .popover-content {
    padding: 20px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .popover {
    border-width: 5px;
  }
  .popover.top {
    margin-top: 80px;
  }
  .popover:after {
    border-width: 30px;
    margin-left: -30px;
  }
  .popover:before {
    border-width: 37px;
    margin-left: -37px;
  }
  .popover-content {
    padding: 20px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .popover {
    border-width: 7px;
  }
  .popover.top {
    margin-top: 100px;
  }
  .popover:after {
    border-width: 30px;
    margin-left: -30px;
  }
  .popover:before {
    border-width: 40px;
    margin-left: -40px;
  }
  .popover-content {
    padding: 30px;
  }
}
/* gallery */
.gallery {
  background-color: #f6f6f6;
}
.gallery-image {
  width: 100%;
  height: auto;
}
.gallery .owl-carousel {
  box-shadow: -1px 5px 21px rgba(35, 32, 30, 0.45);
}
.gallery .control {
  position: absolute;
  top: 50%;
  text-align: center;
  opacity: 0.85;
  background-color: #be398d;
  color: #fff;
}
.gallery .control:hover {
  opacity: 1;
}
.gallery .control-prev {
  left: 15px;
}
.gallery .control-next {
  right: 15px;
}

/* xs */
@media (max-width: 767px) {
  .gallery {
    padding: 30px 0;
  }
  .gallery .control {
    margin-top: -20px;
    width: 30px;
    height: 40px;
    font-size: 28px;
    line-height: 40px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery {
    padding: 50px 0;
  }
  .gallery .control {
    margin-top: -35px;
    width: 50px;
    height: 70px;
    font-size: 50px;
    line-height: 70px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .gallery {
    padding: 60px 0;
  }
  .gallery .control {
    margin-top: -35px;
    width: 50px;
    height: 70px;
    font-size: 50px;
    line-height: 70px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .gallery {
    padding: 70px 0;
  }
  .gallery .control {
    margin-top: -45px;
    width: 70px;
    height: 90px;
    font-size: 60px;
    line-height: 90px;
  }
}
/* kid */
.kid {
  text-align: center;
}
.kid-title {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 0;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 32px;
  font-weight: 300;
}
.kid-title em {
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-weight: 700;
  color: #be398d;
}
.kid-description {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.kid-description strong {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
}
.kid-description em {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
}
.kid-description a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.kid-description p {
  margin: 0;
  padding: 0;
}
.kid-formula img {
  height: auto;
  vertical-align: top;
}
.kid-formula span {
  display: block;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.kid-formula a {
  color: #27343c;
}
.kid-formula a:hover {
  color: #f6a900;
}
.kid-formula-parameter:hover img {
  -webkit-animation: pulse 0.5s ease-out both;
          animation: pulse 0.5s ease-out both;
}
.kid-content {
  margin-top: 60px;
}
.kid-footer {
  margin-top: 85px;
  margin-bottom: -35px;
  border-top: #f6f6f6 solid 5px;
}
.kid-button {
  position: relative;
  top: -35px;
  display: inline-block;
  width: 200px;
  height: 64px;
  margin: 0 20px;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase;
  background: url(../img/white-gradient.png) repeat-x;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(15, 15, 15, 0.18);
  color: #fff !important;
}
.kid-button.purple {
  background-color: #be398d;
}
.kid-button.purple:hover {
  background-color: #bd2986;
}
.kid-button.cyan {
  background-color: #30ba9a;
}
.kid-button.cyan:hover {
  background-color: #2ca88b;
}

/* xs */
@media (max-width: 767px) {
  .kid {
    padding: 40px 0 20px;
  }
  .kid-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .kid-content {
    margin-top: 30px;
  }
  .kid-formula span {
    font-size: 18px;
    margin-top: 20px;
  }
  .kid-formula-parameter img {
    width: 240px;
  }
  .kid-formula-operator {
    margin: 30px 0;
  }
  .kid-formula-operator img {
    width: 30px;
  }
  .kid-footer {
    margin-top: 35px;
    margin-bottom: 0;
    padding-top: 35px;
  }
  .kid-button {
    top: 0;
    margin: 0 10px 20px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .kid {
    padding: 55px 0;
  }
  .kid-description {
    font-size: 20px;
  }
  .kid-formula span {
    margin-top: 40px;
  }
  .kid-formula-parameter img {
    width: 320px;
  }
  .kid-formula-operator {
    margin: 60px 0;
  }
  .kid-formula-operator img {
    width: 40px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .kid {
    padding: 70px 0;
  }
  .kid-description {
    font-size: 21px;
  }
  .kid-formula {
    width: 960px;
    margin: 0 auto;
  }
  .kid-formula:after, .kid-formula:before {
    content: " ";
    display: table;
  }
  .kid-formula:after {
    clear: both;
  }
  .kid-formula-parameter, .kid-formula-operator {
    float: left;
  }
  .kid-formula-parameter {
    width: 280px;
  }
  .kid-formula-parameter img {
    height: 206px;
    width: 206px;
  }
  .kid-formula-operator {
    width: 60px;
    margin-top: 90px;
  }
  .kid-formula-operator img {
    height: 25px;
    width: 25px;
  }
  .kid-formula span {
    margin-top: 20px;
  }
}
/* media */
.media {
  position: relative;
  background-color: #27343c;
}
.media-image {
  position: relative;
  text-align: center;
}
.media-image:before {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 100%;
  opacity: 0.75;
  background-color: #27343c;
  content: ' ';
}
.media-image img {
  width: 100%;
  height: auto;
}
.media-body {
  position: absolute;
  top: 50%;
  width: 100%;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 40px;
  font-weight: 300;
  text-align: center;
  color: #fff;
}
.media-button {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #f6a900;
  background-color: rgba(246, 169, 0, 0.85);
  border-radius: 50%;
  color: #fff !important;
}
.media-button:before {
  position: absolute;
  z-index: 1;
  display: block;
  background-color: rgba(246, 169, 0, 0);
  border-radius: 50%;
  content: "";
}
.media-button:hover:before {
  background-color: rgba(246, 169, 0, 0.85);
}
.media-button img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
}

/* xs */
@media (max-width: 767px) {
  .media-body {
    margin-top: -40px;
    font-size: 20px;
  }
  .media-button {
    width: 80px;
    height: 80px;
    margin: 0 5px;
  }
  .media-button:before {
    top: -5px;
    left: -5px;
    width: 90px;
    height: 90px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .media-body {
    margin-top: -70px;
  }
  .media-button {
    width: 140px;
    height: 140px;
    margin: 0 25px;
  }
  .media-button:before {
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .media-body {
    margin-top: -70px;
  }
  .media-button {
    width: 140px;
    height: 140px;
    margin: 0 25px;
  }
  .media-button:before {
    top: -10px;
    left: -10px;
    width: 160px;
    height: 160px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .media-body {
    margin-top: -90px;
  }
  .media-button {
    width: 180px;
    height: 180px;
    margin: 0 30px;
  }
  .media-button:before {
    top: -12px;
    left: -12px;
    width: 204px;
    height: 204px;
  }
}
/* result */
.result {
  text-align: center;
  background-color: #f6a900;
  background-image: url(../img/result-background.png);
  background-position: center center;
  color: #fff;
}
.result-title, .result-list, .result-list li {
  margin: 0;
  padding: 0;
}
.result-list {
  list-style: none;
}
.result-list:after, .result-list:before {
  content: " ";
  display: table;
}
.result-list:after {
  clear: both;
}
.result-title {
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
}
.result-item {
  font-size: 20px;
  line-height: 1.2;
}
.result-item span,
.result-item em {
  display: block;
  line-height: 1;
}

.result-item span.gap-small,
.result-item em.gap-small {
  margin-bottom: 5px;
}
.result-item span.gap-medium,
.result-item em.gap-medium {
  margin-bottom: 10px;
}
.result-item em {
  font-family: "museo-slab-n5", "museo-slab", serif;
  font-style: normal;
  font-weight: 500;
}

/* xs - sm */
@media (max-width: 1023px) {
  .result-body {
    margin-right: -15px;
    margin-left: -15px;
  }
  .result-title {
    position: relative;
  }
  .result-title:before {
    position: absolute;
    left: 50%;
    display: block;
    background-color: #fff;
    content: "";
  }
  .result-list, .result-list li {
    border-top: rgba(255, 255, 255, 0.15) solid 3px;
  }
  .result-list:first-child, .result-list li:first-child {
    border-top: 0;
  }
}
/* xs */
@media (max-width: 767px) {
  .result {
    padding-top: 30px;
  }
  .result-body {
    margin-top: 20px;
  }
  .result-title {
    font-size: 22px;
  }
  .result-title:before {
    bottom: -10px;
    width: 55px;
    height: 2px;
    margin-left: -27.5px;
  }
  .result-item {
    padding: 40px 15px;
    font-size: 16px;
  }
  .result-item span.small {
    font-size: 18px;
  }
  .result-item span.medium {
    font-size: 20px;
  }
  .result-item span.large {
    font-size: 24px;
  }
  .result-item em.small {
    font-size: 36px;
  }
  .result-item em.medium {
    font-size: 60px;
  }
  .result-item em.large {
    font-size: 80px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .result {
    padding-top: 40px;
  }
  .result-body {
    margin-top: 30px;
  }
  .result-title:before {
    bottom: -20px;
    width: 65px;
    height: 4px;
    margin-left: -32.5px;
  }
  .result-item {
    padding: 70px 30px;
  }
  .result-item span.small {
    font-size: 20px;
  }
  .result-item span.medium {
    font-size: 24px;
  }
  .result-item span.large {
    font-size: 32px;
  }
  .result-item em.small {
    font-size: 52px;
  }
  .result-item em.medium {
    font-size: 96px;
  }
  .result-item em.large {
    font-size: 140px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .result {
    padding: 40px 0;
  }
  .result-body {
    margin-top: 50px;
  }
  .result-list {
    border-top: rgba(255, 255, 255, 0.15) solid 3px;
  }
  .result-list:first-child {
    border-top: 0;
  }
  .result-list li {
    float: left;
    width: 50%;
    height: 340px;
    border-left: rgba(255, 255, 255, 0.15) solid 3px;
  }
  .result-list li:first-child {
    border-left: 0;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .result-item {
    padding: 0 30px;
  }
  .result-item span.small {
    font-size: 20px;
  }
  .result-item span.medium {
    font-size: 24px;
  }
  .result-item span.large {
    font-size: 32px;
  }
  .result-item em.small {
    font-size: 52px;
  }
  .result-item em.medium {
    font-size: 96px;
  }
  .result-item em.large {
    font-size: 140px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .result-item {
    padding: 0 40px;
  }
  .result-item span.small {
    font-size: 24px;
  }
  .result-item span.medium {
    font-size: 26px;
  }
  .result-item span.large {
    font-size: 32px;
  }
  .result-item em.small {
    font-size: 64px;
  }
  .result-item em.medium {
    font-size: 108px;
  }
  .result-item em.large {
    font-size: 148px;
  }
}
/* partner */
.partner-title {
  margin-top: 0;
  padding: 0;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.partner-title em {
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-weight: 700;
  color: #be398d;
}
.partner-content {
  position: relative;
}
.partner-image {
  max-width: 90%;
  height: auto;
}
.partner .control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  font-size: 24px;
  text-align: center;
  background-color: #fff;
  border: #cbced0 solid 4px;
  color: #cbced0;
}
.partner .control:hover {
  border-color: #27343c;
  color: #27343c;
}
.partner .control i {
  display: block;
  line-height: 42px;
}
.partner .control-prev {
  left: 20px;
}
.partner .control-next {
  right: 20px;
}

/* xs - sm */
@media (max-width: 1023px) {
  .partner {
    padding: 40px 0;
  }
  .partner-title {
    margin-bottom: 40px;
  }
  .partner-title em {
    display: block;
  }
}
/* xs */
@media (max-width: 767px) {
  .partner-title {
    font-size: 22px;
  }
  .partner .control {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 16px;
    border-width: 2px;
  }
  .partner .control i {
    line-height: 26px;
  }
  .partner .control-prev {
    left: 5px;
  }
  .partner .control-next {
    right: 5px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .partner {
    padding: 60px 0;
  }
  .partner-title {
    margin-bottom: 60px;
  }
}
/* team */
.team-quote blockquote,
.team-quote p {
  margin: 0;
  padding: 0;
}
.team-quote blockquote {
  text-align: center;
}
.team-quote p {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.team-quote em {
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-weight: 700;
  color: #be398d;
}
.team-quote footer {
  margin-top: 20px;
  overflow: hidden;
  font-family: "museo-sans-i1", "museo-sans", sans-serif;
  font-weight: 100;
  line-height: 1.25;
}
.team-quote footer cite {
  position: relative;
}
.team-quote footer cite:after, .team-quote footer cite:before {
  position: absolute;
  top: 50%;
  display: block;
  width: 120px;
  height: 1px;
  background-color: #a9aeb1;
  background-color: rgba(39, 52, 60, 0.45);
  content: "";
}
.team-quote footer cite:after {
  right: 100%;
  margin-right: 12px;
}
.team-quote footer cite:before {
  left: 100%;
  margin-left: 12px;
}
.team-description {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
}
.team-description strong {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
}
.team-description em {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
}
.team-description a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.team-description p {
  margin: 0;
  padding: 0;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
}
.team-group {
  border-top: #f6f6f6 solid 5px;
}
.team-group-header, .team-group-body  {
  text-align: center;
}




.team-group-title {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.team-group-title:after {
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 3px;
  background-color: #f6a900;
  content: "";
}
.team-group-title span {
  display: block;
}
.team-member {
  display: inline-block;
  padding: 0 35px;
  line-height: 1.2;
  vertical-align: top;
  background-color: #fff;
  text-align: center;
}
.team-member:hover {
  -webkit-animation: pulse 0.5s ease-out both;
          animation: pulse 0.5s ease-out both;
}
.team-member img {
  height: auto;
  background-color: #be398d;
  border: #be398d solid 4px;
  border-radius: 50%;
}
.team-member strong {
  display: block;
  margin-top: 15px;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.team-member em,
.team-member span {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
  font-weight: 300;
  color: #415663;
}
.team-member span {
  display: block;
  font-style: italic;
}
.team-member span:after {
  content: " -";
}
.team-member span:before {
  content: "- ";
}
.team-member-portrait {
  text-align: center;
}
.team-member-portrait .team-member {
  margin-top: 0;
  padding-right: 0;
  padding-left: 0;
}
.team-member-group {
  margin-right: -35px;
  margin-left: -35px;
  padding-top: 35px;
}
.team-member-info {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
  text-align: left;
}
.team-member-info strong {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
}
.team-member-info em {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
}
.team-member-info a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.team-member-info h1,
.team-member-info h2,
.team-member-info h3,
.team-member-info h4,
.team-member-info h5,
.team-member-info h6,
.team-member-info p,
.team-member-info ul,
.team-member-info ol,
.team-member-info li {
  margin: 0;
  padding: 0;
}
.team-member-info h1,
.team-member-info h2,
.team-member-info h3,
.team-member-info h4,
.team-member-info h5,
.team-member-info h6 {
  margin-top: 0.5em;
  line-height: 1.25;
}
.team-member-info p,
.team-member-info ul,
.team-member-info ol {
  margin-top: 1em;
}
.team-member-info ul,
.team-member-info ol {
  margin-left: 2em;
}
.team-member-info h1 {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 2em;
  font-weight: 300;
}
.team-member-info h2,
.team-member-info h4,
.team-member-info h5,
.team-member-info h6 {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.team-member-info h2 {
  font-size: 1.5em;
}
.team-member-info h3 {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
}
.team-member-info h2,
.team-member-info h5 {
  color: #be398d;
}
.team-member-info h4,
.team-member-info h5,
.team-member-info h6 {
  font-size: 1em;
}

/* xs - sm */
@media (max-width: 1023px) {
  .team-description p {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
/* xs */
@media (max-width: 767px) {
  .team-quote {
    padding-top: 30px;
  }
  .team-quote p {
    font-size: 20px;
  }
  .team-quote footer {
    position: relative;
    margin-top: 15px;
    padding-top: 10px;
    font-size: 14px;
  }
  .team-quote footer:after {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 1px;
    background-color: #80868c;
    content: "";
  }
  .team-quote footer cite:after, .team-quote footer cite:before {
    display: none;
  }
  .team-description {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
  }
  .team-group {
    padding: 35px 0;
  }
  .team-member {
    margin-top: 35px;
  }
  .team-member img {
    width: 240px;
  }
  .team-member-info {
    font-size: 16px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .team-quote {
    padding-top: 50px;
  }
  .team-quote p {
    font-size: 24px;
  }
  .team-description, .team-group {
    padding: 50px 0;
  }
  .team-member {
    margin-top: 50px;
  }
  .team-member img {
    width: 300px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .team-member {
    margin-top: 45px;
  }
  .team-member img {
    width: 226px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .team-quote {
    padding-top: 40px;
  }
  .team-quote p {
    font-size: 26px;
  }
  .team-description, .team-group {
    padding: 40px 0;
  }
}
/* lg */
@media (min-width: 1200px) {
  .team-quote {
    padding-top: 60px;
  }
  .team-quote p {
    font-size: 28px;
  }
  .team-description, .team-group {
    padding: 60px 0;
  }
}
/* step */
.step {
  border-top: #f6f6f6 solid 5px;
}
.step:first-child {
  border-top: 0;
}
.step-icon {
  text-align: center;
}
.step-icon img {
  width: 100%;
  height: auto;
  max-width: 230px;
}
.step-title {
  margin: 0;
  padding: 0;
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
  color: #be398d;
}
.step-info {
  margin-top: 10px;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
}
.step-info strong {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
}
.step-info em {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
}
.step-info a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.step-info p {
  margin: 0;
  padding: 0;
}

/* xs - sm */
@media (max-width: 1023px) {
  .step-title {
    text-align: center;
  }
}
/* xs */
@media (max-width: 767px) {
  .step {
    padding: 30px 0;
  }
  .step-title {
    margin-top: 15px;
    font-size: 26px;
  }
  .step-info {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .step {
    padding: 40px 0;
  }
  .step-title {
    margin-top: 20px;
    font-size: 34px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .step {
    padding: 50px 0;
  }
  .step-title {
    font-size: 30px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .step {
    padding: 65px 0;
  }
  .step-title {
    font-size: 36px;
  }
}
/* component */
.component {
  background-color: #f6f6f6;
}
.component-title, .component-body {
  text-align: center;
}
.component-title {
  margin: 0;
  padding: 0;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.component-connector img {
  width: 100%;
  height: auto;
}
.component-item img {
  height: auto;
}

/* xs - sm */
@media (max-width: 1023px) {
  .component-item {
    position: relative;
    margin-right: auto;
    margin-left: auto;
  }
  .component-item:first-child {
    margin-top: 0;
  }
  .component-item:first-child:before {
    display: none;
  }
  .component-item:before {
    position: absolute;
    left: 50%;
    margin-left: -2px;
    display: block;
    width: 4px;
    background-color: #27343c;
    content: "";
  }
  .component-item img {
    width: 100%;
  }
}
/* xs */
@media (max-width: 767px) {
  .component {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .component-title {
    font-size: 22px;
  }
  .component-body {
    margin-top: 30px;
  }
  .component-item {
    width: 240px;
    margin-top: 35px;

  }
  .component-item:before {
    top: -35px;
    height: 35px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .component {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .component-title {
    font-size: 26px;
  }
  .component-body {
    margin-top: 50px;
  }
  .component-item {
    width: 400px;
    margin-top: 60px;
  }
  .component-item:before {
    top: -60px;
    height: 60px;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .component-body {
    position: relative;
  }
  .component-item {
    position: absolute;
  }
  .component-item.i1, .component-item.i2 {
    top: 0;
  }
  .component-item.i3, .component-item.i4, .component-item.i5 {
    bottom: 0;
  }
  .component-item.i4 {
    left: 50%;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .component {
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .component-title {
    font-size: 28px;
  }
  .component-body {
    margin-top: 50px;
  }
  .component-item img {
    width: 204px;
  }
  .component-item.i1 {
    left: 202px;
  }
  .component-item.i2 {
    right: 202px;
  }
  .component-item.i3 {
    left: 38px;
  }
  .component-item.i4 {
    margin-left: -101px;
  }
  .component-item.i5 {
    right: 38px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .component {
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .component-title {
    font-size: 30px;
  }
  .component-body {
    margin-top: 60px;
  }
  .component-item img {
    width: 246px;
  }
  .component-item.i1 {
    left: 244px;
  }
  .component-item.i2 {
    right: 244px;
  }
  .component-item.i3 {
    left: 46px;
  }
  .component-item.i4 {
    margin-left: -123px;
  }
  .component-item.i5 {
    right: 46px;
  }
}
/* feature */
.feature-header {
  position: relative;
}
.feature-header:before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
}
.feature-banner {
  width: 100%;
  height: auto;
}
.feature-title {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  left: 0;
  margin: -0.5em 0 0;
  padding: 0;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}
.feature-button {
  display: inline-block;
  width: 200px;
  margin-top: 15px;
  padding: 15px 0;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  background-color: #be398d;
  border-radius: 20px;
  color: #fff !important;
}
.feature-button:hover {
  opacity: 0.85;
}
.feature-body, .feature-footer {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.667;
}
.feature-body p, .feature-footer p {
  margin: 0;
  padding: 0;
}
.feature-body strong {
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-weight: 700;
}
.feature-body em {
  font-family: "museo-sans-i3", "museo-sans", sans-serif;
}
.feature-body a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.feature-footer {
  text-align: center;
}
.feature-footer strong {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}

/* xs - sm */
@media (max-width: 1023px) {
  .feature > .container {
    width: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .feature-body, .feature-footer {
    font-size: 16px;
    line-height: 1.5;
  }
  .feature-panel {
    background-color: #f6f6f6;
  }
}
/* xs */
@media (max-width: 767px) {
  .feature-title {
    font-size: 20px;
  }
  .feature-body, .feature-footer {
    margin-top: 20px;
  }
  .feature-panel {
    margin-top: 20px;
    padding: 20px 0;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .feature-title {
    font-size: 44px;
  }
  .feature-body, .feature-footer {
    margin-top: 30px;
  }
  .feature-panel {
    margin-top: 30px;
    padding: 30px 0;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .feature {
    margin-right: auto;
    margin-left: auto;
  }
  .feature-list {
    float: left;
  }
  .feature-list ul,
  .feature-list li {
    margin: 0;
    padding: 0;
  }
  .feature-list ul {
    list-style: none;
  }
  .feature-list li {
    margin-bottom: 2px;
  }
  .feature-list a {
    display: block;
    padding: 20px 0;
    font-family: "museo-sans-n7", "museo-sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    border-right: #fff solid 4px;
    color: #80868c;
  }
  .feature-list a:hover, .feature-list a.active {
    border-right-color: #be398d;
    color: #be398d;
  }
  .feature-group {
    float: right;
    background-color: #f6f6f6;
  }
  .feature-panel {
    display: none;
  }
  .feature-panel > .container {
    width: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .feature-panel.active {
    display: block;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .feature {
    width: 940px;
    margin-top: 50px;
  }
  .feature-list {
    width: 25%;
  }
  .feature-group {
    width: 75%;
    padding: 30px 50px;
  }
  .feature-title {
    font-size: 40px;
  }
  .feature-body, .feature-footer {
    margin-top: 20px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .feature {
    width: 1140px;
    margin-top: 55px;
  }
  .feature-list {
    width: 20%;
  }
  .feature-group {
    width: 80%;
    padding: 40px 65px;
  }
  .feature-title {
    font-size: 52px;
  }
  .feature-body, .feature-footer {
    margin-top: 30px;
  }
}
/* location */
.location-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
.location-title:after, .location-title:before {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f6a900;
  content: "";
}
.location-title:after {
  right: 100%;
  margin-right: 12px;
}
.location-title:before {
  left: 100%;
  margin-left: 12px;
}
.location-button {
  display: inline-block;
  padding: 0.625em 1.25em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  color: #fff !important;
}
.location-button:hover {
  opacity: 0.85;
}
.location-button.gray {
  background-color: #2e2b34;
}
.location-button.cyan {
  background-color: #30ba9a;
}
.location-header {
  text-align: center;
  text-transform: uppercase;
}
.location-summary, .location-body {
  font-family: "museo-sans-n1", "museo-sans", sans-serif;
  font-weight: 100;
}
.location-summary strong, .location-body strong {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.location-summary em, .location-body em {
  font-family: "museo-sans-i1", "museo-sans", sans-serif;
}
.location-summary a, .location-body a {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.location-summary p, .location-body p {
  margin: 0;
  padding: 0;
}
.location-summary {
  line-height: 1.125;
}

/* xs - sm */
@media (max-width: 1023px) {
  .location-header {
    margin-bottom: 40px;
  }
  .location-summary {
    margin-bottom: 20px;
  }
  .location-footer {
    margin-top: 30px;
    text-align: center;
  }
}
/* xs */
@media (max-width: 767px) {
  .location {
    padding: 30px 0;
  }
  .location-title {
    font-size: 18px;
  }
  .location-title:after, .location-title:before {
    display: none;
  }
  .location-button {
    display: block;
    width: 80%;
    max-width: 320px;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  .location-header {
    position: relative;
  }
  .location-header:after {
    position: absolute;
    bottom: -20px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 3px;
    background-color: #f6a900;
    content: "";
  }
  .location-summary {
    font-size: 20px;
  }
  .location-body {
    line-height: 1.5;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .location {
    padding: 50px 0;
  }
  .location-title {
    font-size: 20px;
  }
  .location-button {
    margin: 0 15px;
    font-size: 20px;
  }
  .location-summary {
    font-size: 24px;
  }
  .location-body {
    font-size: 18px;
    line-height: 1.667;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .location-button {
    margin-right: 20px;
  }
  .location-summary {
    padding-right: 1.25em;
  }
  .location-header {
    margin-bottom: 50px;
  }
  .location-body {
    line-height: 1.5;
  }
  .location-footer {
    margin-top: 40px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .location {
    padding: 60px 0;
  }
  .location-title {
    font-size: 22px;
  }
  .location-summary {
    font-size: 32px;
  }
  .location-body {
    font-size: 20px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .location {
    padding: 70px 0;
  }
  .location-title {
    font-size: 24px;
  }
  .location-summary {
    font-size: 38px;
  }
  .location-body {
    font-size: 22px;
  }
}
/* support */
.support {
  text-align: center;
}
.support-info {
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.support-info p {
  margin: 0;
  padding: 0;
}
.support-info em {
  font-family: "museo-slab-i7", "museo-slab", serif;
  font-weight: 700;
  color: #be398d;
}
.support-button a {
  display: block;
  width: 260px;
  height: 70px;
  margin-right: auto;
  margin-left: auto;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  background: #30ba9a url(../img/white-gradient.png) repeat-x;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(15, 15, 15, 0.18);
  color: #fff !important;
}
.support-button a:hover {
  background-color: #2ca88b;
}

/* xs - sm */
/* xs */
@media (max-width: 767px) {
  .support {
    padding: 30px 0;
  }
  .support-info {
    font-size: 20px;
  }
  .support-button {
    margin-top: 30px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .support {
    padding: 50px 0;
  }
  .support-info {
    font-size: 24px;
  }
  .support-button {
    margin-top: 50px;
  }
}
/* md - lg */
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .support {
    padding: 40px 0;
  }
  .support-info {
    font-size: 26px;
  }
  .support-button {
    margin-top: 40px;
  }
}
/* lg */
@media (min-width: 1200px) {
  .support {
    padding: 60px 0;
  }
  .support-info {
    font-size: 28px;
  }
  .support-button {
    margin-top: 60px;
  }
}
/* form */
.form {
  background-color: #f6f6f6;
}
.form-header {
  text-align: center;
}
.form-body, .form-footer {
  margin-top: 30px;
}
.form-footer {
  position: relative;
}
.form-icon {
  font-size: 40px;
  color: #be398d;
}
.form-title, .form-description {
  margin: 0;
  padding: 0;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-weight: 300;
}
.form-title {
  font-size: 32px;
}
.form-description {
  margin-top: 5px;
  font-size: 18px;
}
.form-description a {
  font-family: "museo-sans-n5", "museo-sans", sans-serif;
  font-weight: 500;
}
.form-support {
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -0.5em;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  color: #80868c;
}
.form-button {
  display: block;
  width: 150px;
  height: 60px;
  font-family: "museo-sans-n7", "museo-sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  background-color: #27343c;
  border-radius: 3px;
  color: #fff !important;
}
.form-button:hover {
  background-color: #be398d;
}
.form-control {
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  font-family: "museo-sans-n3", "museo-sans", sans-serif;
  font-size: 18px;
  font-weight: 300;
  background-color: #fff;
  border: #c8c8c8 solid 1px;
  color: #27343c;
}
.form-control:focus {
  border-color: #27343c;
}
.form-control.placeholder {
  color: #80868c;
}

/* xs */
@media (max-width: 767px) {
  .form {
    padding: 20px 0;
  }
  .form-body, .form-footer {
    margin-top: 20px;
  }
  .form-footer {
    text-align: center;
  }
  .form-title {
    font-size: 22px;
  }
  .form-description {
    font-size: 16px;
  }
  .form-support {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .form-button {
    margin-right: auto;
    margin-left: auto;
  }
  .form-control {
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
  }
}
/* sm */
@media (min-width: 768px) and (max-width: 1023px) {
  .form {
    padding: 30px 0;
  }
}
/* md - lg */
@media (min-width: 1024px) {
  .form-left-gutter {
    padding-left: 10px;
  }
  .form-right-gutter {
    padding-right: 10px;
  }
}
/* md */
@media (min-width: 1024px) and (max-width: 1199px) {
  .form {
    padding: 40px 0;
  }
}
/* lg */
@media (min-width: 1200px) {
  .form {
    padding: 50px 0;
  }
}
