@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -o-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 0; }

  50% {
    opacity: 1; }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    -moz-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    -o-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    opacity: 0; } }

html {
  position: relative;
  min-height: 100%; }

body {
  font-family: "Josefin Sans", 'Calibri', Arial;
  padding-bottom: 38px;
  min-height: 100%;
  font-size: 16px;
  color: #646464; }
  @media (max-width: 650px) {
  body {
    padding-bottom: 58px; } }

footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0; }

a {
  position: relative;
  color: #ee7798; }
  a:hover {
    color: #ee7798; }

a, a:before, a:after, a *, button, button:before, .button:after, .button *, .btn, .btn:before, .btn:after, .btn * {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

h1 {
  margin: 0 0 15px 0;
  font-weight: 300;
  font-size: 30px; }

h2 {
  margin: 0 0 15px 0;
  font-weight: 300;
  font-size: 27px; }

h3 {
  margin: 0 0 15px 0;
  font-weight: 300;
  font-size: 23px; }

h4 {
  margin: 0 0 15px 0;
  font-weight: 300;
  font-size: 20px; }

h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0; }

h6 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0; }

section {
  background-color: #fff;
  padding: 60px 0; }

p {
  margin: 0 0 18px 0; }

.skills .btn {
  margin-bottom: 4px;
  margin-right: 4px; }

.text-primary {
  color: #ee7798; }

.btn-like {
  -webkit-transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -ms-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer; }
  .btn-like:hover {
    color: #ee7798; }

header {
  border-bottom: solid 3px #ee7798;
  background-color: #fff;
  position: relative;
  z-index: 3; }
  header .btn {
    border-right: solid 1px #efc3cf;
    padding: 7px 12px;
    color: #646464; }
    header .btn:first-child {
      border-left: solid 1px #efc3cf; }
  header .social-media .btn {
    text-align: center;
    line-height: 24px;
    min-width: 40px; }
  header [class^="col-"], header [class*=" col-"] {
    background-color: #fff; }
    header [class^="col-"] .btn:first-child, header [class*=" col-"] .btn:first-child {
      border-left: solid 1px #efc3cf; }
  header .dropdown {
    display: inline-block; }
  header .float-right, header .social-media {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex; }

nav {
  background: url(../../images/bg-nav.png) no-repeat top right #f3bfcd;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2; }
  nav .responsive-menu {
    padding: 18px 10px;
    font-size: 24px;
    display: none;
    color: #fff; }
    nav .responsive-menu .icon-bars {
      position: relative;
      margin-right: 7px;
      margin-top: 13px;
      display: block;
      width: 20px; }
      nav .responsive-menu .icon-bars, nav .responsive-menu .icon-bars:before, nav .responsive-menu .icon-bars:after {
        background-color: #fff;
        height: 3px; }
      nav .responsive-menu .icon-bars:before, nav .responsive-menu .icon-bars:after {
        position: absolute;
        display: block;
        content: "";
        width: 100%;
        left: 0; }
      nav .responsive-menu .icon-bars:before {
        top: -6px; }
      nav .responsive-menu .icon-bars:after {
        bottom: -6px; }
  nav .open .responsive-menu .icon-bars {
    height: 0; }
    nav .open .responsive-menu .icon-bars:after {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      bottom: -3px; }
    nav .open .responsive-menu .icon-bars:before {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      top: 0; }
    nav .open ul {
      transition-delay: 0s, 0s, 0.3s;
      visibility: visible;
      opacity: 1; }
  @media (max-width: 995px) {
  nav .responsive-menu {
    display: flex; } }
  nav:before {
    background-color: #fff;
    width: calc(50% - 565px);
    position: absolute;
    display: block;
    height: 100%;
    content: "";
    left: 0;
    top: 0; }
  @media (max-width: 995px) {
  nav:before {
    width: calc(50% - 250px); } }
  nav .logo {
    padding: 10px 10px 10px 0;
    background-color: #fff;
    margin-right: 55px;
    position: relative;
    display: block;
    float: left; }
    nav .logo:after {
      border-right: solid 55px transparent;
      border-top: solid 70px #fff;
      border-left: solid 0 #fff;
      position: absolute;
      display: block;
      content: "";
      left: 100%;
      height: 0;
      width: 0;
      top: 0; }
  nav ul, nav li {
    list-style: none;
    padding: 0;
    margin: 0; }
  @media (max-width: 995px) {
  nav ul {
    transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    background-color: #f3bfcd;
    position: absolute;
    visibility: hidden;
    padding: 20px 0;
    z-index: 10;
    width: 100%;
    opacity: 0;
    top: 70px;
    left: 0; }
    nav ul li {
      margin: 0 0 0 15px;
      float: none;
      padding: 0; } }
  nav li {
    margin: 10px 0 0 10px;
    float: left; }
    nav li:first-child {
      margin-left: 20px; }
    nav li a {
      position: relative;
      font-size: 18px;
      display: block;
      padding: 10px;
      color: #fff; }
    nav li a span {
      display: inline-block;
      text-align: center;
      width: 20px;
      top: 2px; }
    nav li a:before {
      -webkit-transform: rotate(-30deg) scale(0);
      -moz-transform: rotate(-30deg) scale(0);
      -ms-transform: rotate(-30deg) scale(0);
      -o-transform: rotate(-30deg) scale(0);
      transform: rotate(-30deg) scale(0);
      font-family: FontAwesome;
      position: absolute;
      content: "\f004";
      font-size: 32px;
      color: #ee7798;
      z-index: -1;
      opacity: 0;
      left: 4px;
      top: 2px; }
    nav li a:hover, nav li a.active {
      text-decoration: none;
      color: #fff; }
    nav li a:hover:before, nav li a.active:before {
      -webkit-transform: rotate(-30deg) scale(1);
      -moz-transform: rotate(-30deg) scale(1);
      -ms-transform: rotate(-30deg) scale(1);
      -o-transform: rotate(-30deg) scale(1);
      transform: rotate(-30deg) scale(1);
      opacity: 1; }
    nav li a.active {
      color: #da3e6a; }
    nav li a.active span {
      color: #fff; }
    nav li a.active:before {
      color: #204d74; }

.banner {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  background-color: #222;
  position: relative;
  min-height: 190px;
  overflow: hidden; }
  .banner img {
    position: absolute;
    min-height: 190px;
    min-width: 100%;
    opacity: 0.7;
    z-index: 1;
    left: 0;
    top: 0; }
  .banner .banner-text {
    vertical-align: middle;
    position: relative;
    line-height: 35px;
    padding-top: 60px;
    font-size: 25px;
    color: #fff;
    z-index: 2; }
    .banner .banner-text big {
      font-weight: bold;
      font-size: 35px;
      display: block; }

footer {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  background: #444;
  color: #fff; }
  footer .footer-content {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    padding: 25px 0; }
    @media (max-width: 650px) {
  footer .footer-content {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    text-align: center; }
    footer .footer-content ul {
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      -o-justify-content: center;
      justify-content: center; } }
  footer .footer-bottom {
    background: #333; }
  footer .footer-bottom .footer-content {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    font-size: 13px;
    padding: 10px 0; }
    footer .footer-bottom .footer-content a {
      color: #fff; }
    footer .footer-bottom .footer-content a:hover {
      text-decoration: none;
      color: #ee7798; }
    footer .footer-bottom .footer-content ul {
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      -o-align-items: center;
      align-items: center;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: -o-flex;
      display: flex; }
    footer .footer-bottom .footer-content ul, footer .footer-bottom .footer-content ul li {
      padding: 0;
      margin: 0; }
    footer .footer-bottom .footer-content ul li {
      padding-left: 10px;
      margin-left: 20px;
      font-size: 10px;
      color: #bbb; }
    footer .footer-bottom .footer-content ul li a {
      font-size: 13px;
      color: #fff; }
      footer .footer-bottom .footer-content ul li a:hover {
        text-decoration: none;
        color: #ee7798; }
    footer .footer-bottom .footer-content ul li:first-child {
      list-style: none; }
  footer .footer-column {
    width: 100%; }
  footer h2 {
    margin: 0 0 15px 0;
    font-weight: 900;
    font-size: 22px; }
    footer h2 span {
      color: #ee7798; }

.float-right {
  float: right; }

.icon {
  display: inline-block;
  width: 22px;
  top: 2px; }

.category-buttons {
  margin: 0 0 40px 0; }
  .category-buttons .btn {
    margin: 0 3px 3px 0; }

.large-pink-heading {
  font-weight: 900;
  font-size: 45px;
  color: #ee7798; }

.notes-list, .notes-list li {
  list-style: none;
  padding: 0;
  margin: 0; }
  .notes-list li {
    position: relative;
    padding-left: 14px; }
    .notes-list li:before {
      position: absolute;
      font-size: 22px;
      content: "*";
      top: 1px;
      left: 0; }

.portfolio-list .portfolio-item {
  padding-bottom: 30px; }
  .portfolio-list .portfolio-item .portfolio-activities {
    background-color: #ddd;
    display: inline-block;
    padding: 5px 10px;
    font-size: 13px;
    color: #646464; }
  .portfolio-list .portfolio-item .portfolio-activities a {
    text-decoration: none;
    color: #646464; }
  .portfolio-list .portfolio-item .portfolio-activities span, .portfolio-list .portfolio-item .portfolio-activities a {
    display: inline-block;
    margin-left: 3px;
    font-size: 14px; }
  .portfolio-list .portfolio-item .portfolio-activities .text-primary {
    margin: 0; }
  .portfolio-list .portfolio-item .portfolio-activities .text-primary span {
    margin-left: 3px; }
  .portfolio-list .portfolio-item .portfolio-activities .active {
    color: #ee7798; }
  .portfolio-list .portfolio-item .portfolio-activities .bullet-seperator {
    margin-left: 10px; }
  .portfolio-list .portfolio-item .bullet-seperator {
    display: inline-block;
    margin: 0 10px; }
  .portfolio-list .portfolio-link {
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    text-decoration: none !important;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background-color: #204d74;
    text-align: center;
    position: absolute;
    line-height: 25px;
    padding: 5px 10px;
    font-size: 20px;
    display: block;
    color: #fff;
    height: 35px;
    right: 20px;
    opacity: 0;
    top: 20px; }
  .portfolio-list .portfolio-link:hover {
    background-color: #da3e6a;
    color: #fff; }
  .portfolio-list .portfolio-link small {
    vertical-align: middle;
    display: inline-block;
    margin-top: -8px;
    margin-left: 2px;
    font-weight: 500;
    font-size: 16px; }
  .portfolio-list img {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    display: block;
    height: auto;
    opacity: 0.6;
    width: 100%; }
  .portfolio-list .portfolio-image {
    background-color: #eee;
    border: solid 1px #ddd;
    position: relative;
    overflow: hidden;
    display: block;
    padding: 10px; }
  .portfolio-list .portfolio-image:hover .portfolio-link {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  .portfolio-list .portfolio-image:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    opacity: 1; }
  .portfolio-list .portfolio-info {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: absolute;
    width: 100%;
    bottom: 30%;
    right: 1px; }
  .portfolio-list .portfolio-info .portfolio-title {
    padding: 6px 12px 8px 12px;
    background-color: #204d74;
    display: inline-block;
    font-weight: normal;
    font-size: 17px;
    color: #fff; }
  .portfolio-list .portfolio-info .portfolio-title:hover {
    background-color: #da3e6a;
    text-decoration: none;
    color: #fff; }
  .portfolio-list .portfolio-info .portfolio-categories {
    background-color: #ee7798;
    position: absolute;
    padding: 4px 10px;
    font-size: 13px;
    color: #fff;
    left: 20px;
    top: 30px; }
  .portfolio-list .portfolio-info .portfolio-categories a {
    color: #fff; }
  .portfolio-list .portfolio-info .portfolio-categories a:hover {
    text-decoration: underline;
    color: #fff; }
  .portfolio-list .award-winning .portfolio-image {
    background-color: rgba(197, 179, 88, 0.4);
    border-color: #c5b358; }
  .portfolio-list .award-winning .portfolio-activities {
    background-color: #c5b358;
    color: #fff; }
  .portfolio-list .award-winning .portfolio-activities a {
    color: #fff; }
  .portfolio-list .award-winning-label {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    background-color: #c5b358;
    position: absolute;
    padding: 5px 10px;
    color: #fff;
    left: 10px;
    top: 10px; }

.portfolio-page h1 small {
  margin-top: 5px;
  font-size: 15px;
  display: block;
  width: 100%; }
  .portfolio-page h1 small .bullet-seperator {
    display: inline-block;
    margin: 0 10px 0 13px; }
  .portfolio-page .portfolio-summary {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    padding: 10px 15px; }
  .portfolio-page .portfolio-summary > span, .portfolio-page .portfolio-summary > a {
    display: inline-block;
    margin-right: 25px; }
  .portfolio-page .portfolio-summary i {
    display: inline-block;
    font-style: normal;
    margin-right: 5px; }
  .portfolio-page .portfolio-summary a {
    text-decoration: none;
    color: #646464; }
  .portfolio-page .portfolio-summary a:hover {
    color: #ee7798; }
  .portfolio-page .portfolio-comments, .portfolio-page .portfolio-summary, .portfolio-page .portfolio-content, .portfolio-page .portfolio-downloads {
    border-bottom: solid 1px #ddd; }
  .portfolio-page .portfolio-comments, .portfolio-page .portfolio-content, .portfolio-page .portfolio-downloads {
    padding: 40px 15px; }
  .portfolio-page .portfolio-content strong {
    font-weight: 600; }
  .portfolio-page .next-prev-btns {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    padding: 10px 15px; }
  .portfolio-page .next-prev-btns a {
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    -o-align-content: center;
    align-content: center;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    line-height: 16px;
    color: #000; }
  .portfolio-page .next-prev-btns a .fa {
    display: inline-block;
    font-weight: normal;
    font-size: 30px;
    opacity: 0.7; }
  .portfolio-page .next-prev-btns a .fa.fa-angle-left {
    margin-right: 10px; }
  .portfolio-page .next-prev-btns a .fa.fa-angle-right {
    margin-left: 10px; }
  .portfolio-page .next-prev-btns a:hover {
    color: #ee7798; }
  .portfolio-page .next-prev-btns a:hover .fa {
    opacity: 1; }
  .portfolio-page .next-prev-btns a:hover, .portfolio-page .next-prev-btns a:active, .portfolio-page .next-prev-btns a:focus {
    text-decoration: none !important; }

.portfolio-item section {
  padding-bottom: 3px; }

.portfolio-downloads ul, .portfolio-downloads li {
  list-style: none;
  padding: 0;
  margin: 0; }
  .portfolio-downloads li {
    margin: 0 0 5px; }
  .portfolio-downloads li > a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    background-color: #eee;
    border: solid 1px #ddd;
    text-decoration: none;
    padding: 7px 15px;
    color: #646464; }
  .portfolio-downloads li > a:hover {
    background-color: #ddd;
    color: #222; }

.slick-dots {
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -o-justify-content: left;
  justify-content: left;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  position: absolute;
  margin: 15px 0 0 0;
  padding: 0;
  top: 100%;
  right: 15px; }
  .dots-next-h2 .slick-dots {
    top: -40px;
    margin: 0;
    right: 0; }
  .slick-dots li {
    list-style: none;
    margin: 0 2px 0 0;
    padding: 0; }
  .slick-dots li button {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -o-justify-content: center;
    justify-content: center;
    background-color: #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    color: transparent;
    outline: none;
    height: 15px;
    width: 15px;
    padding: 0;
    border: 0; }
  .slick-dots li button:hover {
    background-color: #f3bfcd; }
  .slick-dots li.slick-active button {
    background-color: #da3e6a; }
  @media (max-width: 1024px) {
  .slick-dots {
    display: none !important; } }

.slick-prev, .slick-next {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -webkit-align-content: stretch;
  -moz-align-content: stretch;
  -ms-align-content: stretch;
  -o-align-content: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  position: absolute;
  font-size: 40px;
  color: #fff;
  outline: none;
  border: none;
  height: 100%;
  width: 60px;
  opacity: 0;
  z-index: 2;
  padding: 0;
  margin: 0;
  top: 0; }
  @media (max-width: 1024px) {
  .slick-prev, .slick-next {
    display: none !important; } }

.slick-prev {
  left: 0; }

.slick-next {
  right: 0; }

.slick-slide img {
  display: block;
  height: auto;
  width: 100%; }

.description {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  display: block;
  color: #000; }

.slick-slider {
  background-color: #eee;
  border: solid 1px #ddd;
  padding: 10px; }
  .slick-slider:hover .slick-prev, .slick-slider:hover .slick-next {
    opacity: 1; }

.btn, .dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  font-size: 15px;
  border: none; }

.btn {
  font-size: 16px; }
  .btn:hover {
    background-color: #f3bfcd;
    color: #fff; }

.form-control, .alert {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }

.btn-default {
  border: solid 1px #f3bfcd;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  color: #646464; }

span.btn-default {
  border: solid 1px #f3bfcd !important;
  background-color: #fff !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  color: #646464 !important;
  cursor: auto; }

.btn .badge {
  margin-left: 3px;
  padding: 3px 6px;
  font-weight: 400;
  min-width: 18px;
  font-size: 13px;
  color: #646464;
  top: -2px; }

.btn-primary {
  background-color: #f3bfcd;
  border: solid 1px #f3bfcd;
  color: #fff; }
  .btn-primary:hover {
    background-color: #204d74;
    border-color: #204d74;
    color: #fff; }
  .btn-primary:hover .badge {
    background-color: #da3e6a;
    color: #fff; }

.btn-secondary {
  background-color: #204d74;
  border: solid 1px #204d74;
  color: #fff; }
  .btn-secondary:hover {
    background-color: #ee7798;
    border-color: #ee7798;
    color: #fff; }
  .btn-secondary:hover .badge {
    background-color: #f3bfcd;
    color: #204d74; }

.dropdown-menu {
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  transform: translateY(-2em);
  background: #ee7798;
  visibility: hidden;
  display: block;
  border: none;
  z-index: -1;
  opacity: 0; }
  .open .dropdown-menu {
    transition-delay: 0s, 0s, 0.3s;
    transform: translateY(0%);
    visibility: visible;
    opacity: 1; }
  .dropdown-menu > li > a {
    color: #fff;
    margin: 0 5px; }
  .dropdown-menu .divider {
    background-color: #f4a4ba;
    margin: 5px 0; }
  .float-right .dropdown-menu {
    left: auto;
    right: 0; }

.open .caret {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-top: -4px; }
  .open .dropdown-menu > li > a:hover {
    background-color: #da3e6a;
    color: #fff; }
  .open.dropdown .dropdown-toggle {
    background-color: #204d74;
    color: #fff;
    position: relative; }
  .open.dropdown .dropdown-toggle:after, .open.dropdown .dropdown-toggle:before {
    background-color: #204d74;
    position: absolute;
    display: block;
    height: 100%;
    content: "";
    right: -1px;
    width: 1px;
    top: 0; }
  .open.dropdown .dropdown-toggle:before {
    right: auto;
    left: -1px; }

.caret {
  border-top-width: 5px;
  margin-top: -2px; }

.progress {
  height: auto;
  margin-bottom: 1px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }
  .progress .progress-bar {
    line-height: 25px;
    text-align: left;
    font-size: 15px; }
  .progress .progress-bar .indent {
    padding-left: 15px; }
  .progress .progress-bar-primary {
    background-color: #ee7798; }

.tooltip .tooltip-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }

@media (max-width: 1199px) {
  nav:before {
    width: calc(50% - 400px); } }

@media (max-width: 767px) {
  header [class^="col-"], header [class*=" col-"] {
    width: auto;
    padding: 0; }

  header .row {
    margin: 0; }

  nav:before {
    width: 30px; }

  .social-media .btn:last-child {
    border-right: 0; } }

@media (max-width: 550px) {
  .banner .banner-text {
    line-height: 30px;
    padding-top: 65px;
    font-size: 20px; }
    .banner .banner-text big {
      font-size: 30px; } }

@media (max-width: 400px) {
  .banner .banner-text {
    line-height: 25px;
    padding-top: 70px;
    font-size: 15px; }
    .banner .banner-text big {
      font-size: 25px; } }
