
  /*Resize the wrap to see the search bar change!*/
  .wrap {
    width: 30%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .wrap {
      width: 30%;
    }
  }
  
  @media only screen and (max-width: 767px) {
    .wrap {
      width: 50%;
    }
  }
  
  .wrap .search {
    width: 100%;
    position: relative;
  }
  
  .wrap .search .searchTerm {
    float: left;
    width: 100%;
    border: 1px solid rgba(48, 214, 236, 0.5);
    padding: 15px;
    height: 20px;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    background: none;
    color: #f8faf9;
  }
  
  .wrap .search .searchTerm:focus {
    color: white;
  }
  
  .wrap .search .searchButton {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 32px;
    border: 1px solid rgba(0, 180, 204, 0.39);
    background: none;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: none;
    font-size: 20px;
  }
  
  .wrap .search .searchButton span {
    display: block;
    font-size: 15px;
  }
  
  #colorlib-page {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  #colorlib-aside {
    padding-top: 5em;
    padding-bottom: 40px;
    padding-left: 2em;
    padding-right: 2em;
    width: 25%;
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    z-index: 998;
    background: #fff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-right: 1px solid #e6e6e6;
  }
  
  @media (min-width: 992px) {
    #colorlib-aside {
      width: 25%;
    }
  }
  
  @media (max-width: 991.98px) {
    #colorlib-aside {
      width: 320px;
      -webkit-transform: translateX(-320px);
      transform: translateX(-320px);
      padding-top: 2em;
      background: rgba(0, 0, 0, 0.04);
    }
  }
  
  #colorlib-aside #colorlib-logo {
    display: block;
    width: 100%;
    font-weight: normal;
    font-size: 32px;
    font-family: "Abril Fatface", cursive;
  }
  
  @media (max-width: 1199.98px) {
    #colorlib-aside #colorlib-logo {
      font-size: 32px;
    }
  }
  
  #colorlib-aside #colorlib-logo p {
    line-height: 1;
    font-weight: normal;
    font-size: 18px;
    font-family: "Abril Fatface", cursive;
    color: rgba(95, 90, 90, 0.849);
  }
  
  @media (max-width: 1199.98px) {
    #colorlib-aside #colorlib-logo p {
      font-size: 14px;
    }
  }
  
  #colorlib-aside #colorlib-logo span {
    display: block;
  }
  
  @media (max-width: 991.98px) {
    #colorlib-aside #colorlib-logo {
      margin-bottom: 20px;
    }
  }
  
  #colorlib-aside #colorlib-logo a {
    background-color: #4285F4;
    padding: 5px;
    display: inline-block;
    text-align: left;
    color: #000000;
    overflow: hidden;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: rgba(0, 0, 0, 0.6);
    text-shadow: 2px 6px 4px rgba(0, 0, 0, 0.2), 0px -5px 35px rgba(255, 255, 255, 0.3);
  }
  
  #colorlib-aside #colorlib-main-menu {
    padding: 0 20px;
  }
  
  #colorlib-aside #colorlib-main-menu ul {
    margin: 0;
    padding: 0;
  }
  
  #colorlib-aside #colorlib-main-menu ul li {
    margin: 0 0 10px 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
  }
  
  #colorlib-aside #colorlib-main-menu ul li a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    font-family: "Poppins", Arial, sans-serif;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  #colorlib-aside #colorlib-main-menu ul li a:after {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 7px;
    left: 0;
    right: 0;
    background-color: #1eafed;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  #colorlib-aside #colorlib-main-menu ul li a:hover {
    text-decoration: none;
    color: black;
  }
  
  #colorlib-aside #colorlib-main-menu ul li a:hover:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  
  #colorlib-aside #colorlib-main-menu ul li.colorlib-active {
    font-weight: 600;
  }
  
  #colorlib-aside #colorlib-main-menu ul li.colorlib-active a {
    color: #1eafed;
  }
  
  #colorlib-aside #colorlib-main-menu ul li.colorlib-active a:after {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  
  #colorlib-aside .colorlib-footer {
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
  }
  
  #colorlib-aside .colorlib-footer h3 {
    font-size: 18px;
    font-weight: 600;
  }
  
  #colorlib-aside .colorlib-footer a {
    color: #000000;
  }
  
  #colorlib-aside .colorlib-footer .pfooter {
    font-size: 12px;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form {
    width: 100%;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group input {
    padding-right: 40px;
    background: #fff !important;
    border: 1px solid #7cd1f5 !important;
    color: rgba(0, 0, 0, 0.4) !important;
    font-size: 14px;
    border-radius: 0;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.4) !important;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.4) !important;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.4) !important;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.4) !important;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .form-group .form-control {
    bordeR: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 400;
  }
  
  #colorlib-aside .colorlib-footer .colorlib-subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar {
    width: 0px;
    scrollbar-width: thin;
    background: transparent;
    /* make scrollbar transparent */
  }
  
  #colorlib-main {
    width: 100%;
    float: right;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  @media (min-width: 992px) {
    #colorlib-main {
      width: 75%;
    }
  }
  
  .colorlib-nav-toggle {
    cursor: pointer;
    text-decoration: none;
  }
  
  .colorlib-nav-toggle.active i::before, .colorlib-nav-toggle.active i::after {
    background: #000000;
  }
  
  .colorlib-nav-toggle.dark.active i::before, .colorlib-nav-toggle.dark.active i::after {
    background: #000000;
  }
  
  .colorlib-nav-toggle:hover, .colorlib-nav-toggle:focus, .colorlib-nav-toggle:active {
    outline: none;
    border-bottom: none !important;
  }
  
  .colorlib-nav-toggle i {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 2px;
    color: #000000;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #000000;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
  
  .colorlib-nav-toggle i::before, .colorlib-nav-toggle i::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #000000;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .colorlib-nav-toggle.dark i {
    position: relative;
    color: #000000;
    background: #000000;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
  }
  
  .colorlib-nav-toggle.dark i::before, .colorlib-nav-toggle.dark i::after {
    background: #000000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  
  .colorlib-nav-toggle i::before {
    top: -7px;
  }
  
  .colorlib-nav-toggle i::after {
    bottom: -7px;
  }
  
  .colorlib-nav-toggle:hover i::before {
    top: -10px;
  }
  
  .colorlib-nav-toggle:hover i::after {
    bottom: -10px;
  }
  
  .colorlib-nav-toggle.active i {
    background: transparent;
  }
  
  .colorlib-nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  
  .colorlib-nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
  }
  
  .colorlib-nav-toggle {
    position: fixed;
    left: -12px;
    top: 0px;
    z-index: 9999;
    cursor: pointer;
    opacity: 1;
    visibility: hidden;
    padding: 0 0 0 20px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  @media (max-width: 991.98px) {
    .colorlib-nav-toggle {
      opacity: 1;
      visibility: visible;
    }
  }
  
  .ftco-about .img {
    width: 100%;
    display: block;
  }
  
  .ftco-about .text h2 {
    font-size: 50px;
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
  }
  
  .ftco-about .text h2 span {
    font-weight: 900;
    color: #1eafed;
  }
  
  .btn {
    cursor: pointer;
    border-radius: 30px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  
  .btn:hover, .btn:active, .btn:focus {
    outline: none;
  }
  
  .btn.btn-primary {
    background: #1eafed;
    border: 1px solid #1eafed;
    color: #fff;
  }
  
  .btn.btn-primary:hover {
    border: 1px solid #1eafed;
    background: transparent;
    color: #1eafed;
  }
  
  .btn.btn-primary.btn-outline-primary {
    border: 1px solid #1eafed;
    background: transparent;
    color: #1eafed;
  }
  
  .btn.btn-primary.btn-outline-primary:hover {
    border: 1px solid transparent;
    background: #1eafed;
    color: #fff;
  }
  
  .btn.btn-white {
    background: #fff;
    border: 1px solid #fff;
    color: #000000;
  }
  
  .btn.btn-white:hover, .btn.btn-white:focus, .btn.btn-white:active {
    border: 1px solid #fff;
    color: #1eafed;
  }
  
  .btn.btn-white.btn-outline-white {
    border-color: rgba(255, 255, 255, 0.8);
    background: none;
    border-radius: 30px;
    border-width: 1px;
    color: #fff;
  }
  
  .btn.btn-white.btn-outline-white:hover, .btn.btn-white.btn-outline-white:focus, .btn.btn-white.btn-outline-white:active {
    background: #fff;
    border-color: #fff;
    color: #1eafed;
  }
  
  .ftco-bread {
    background: #1eafed !important;
    padding: 4em 1.8em !important;
  }
  
  .ftco-bread .breadcrumbs {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    z-index: 99;
  }
  
  .ftco-bread .breadcrumbs span {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    color: black;
  }
  
  .ftco-bread .breadcrumbs span a {
    color: rgba(0, 0, 0, 0.5);
  }
  
  .ftco-bread .bread {
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
  }
  
  .instagram .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  
  .instagram .insta-img {
    display: block;
    height: 200px;
    position: relative;
  }
  
  .instagram .insta-img .icon {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .instagram .insta-img .icon span {
    color: #fff;
    font-size: 40px;
  }
  
  .instagram .insta-img:hover .icon {
    opacity: 1;
  }
  
  .blog-entry {
    width: 100%;
    margin-bottom: 3em;
  }
  
  .blog-entry .img {
    display: block;
    height: 150px;
    width: 150px;
    border-radius: 50%;
  }
  
  @media (max-width: 767.98px) {
    .blog-entry .img {
      margin: 0 auto;
      margin-bottom: 20px;
    }
  }
  
  .blog-entry .text {
    position: relative;
    z-index: 0;
    width: 100%;
    width: calc(100% - 150px);
  }
  
  @media (max-width: 767.98px) {
    .blog-entry .text {
      width: 100%;
      text-align: center;
    }
  }
  
  .blog-entry .text h3 {
    font-weight: 400;
    font-size: 30px;
  }
  
  .blog-entry .text h3 a {
    color: #000000;
  }
  
  .blog-entry .text .meta-wrap {
    width: 100%;
    display: block;
  }
  
  .blog-entry .text .meta-wrap .meta span {
    font-size: 14px;
    margin: 0 10px 0 0;
    color: #bfbfbf;
  }
  
  .blog-entry .text .meta-wrap .meta span a {
    color: #000000;
  }
  
  .blog-entry-2 {
    margin-bottom: 6em;
  }
  
  .blog-entry-2 .img {
    display: block;
    height: 400px;
  }
  
  .blog-entry-2 .img.img-2 {
    height: 300px;
  }
  
  .blog-entry-2 .text {
    position: relative;
    z-index: 0;
  }
  
  .blog-entry-2 .text h3 {
    font-weight: normal;
    font-size: 32px;
  }
  
  .blog-entry-2 .text h3 a {
    color: #000000;
  }
  
  .blog-entry-2 .text .meta-wrap {
    width: 100%;
    display: block;
  }
  
  .blog-entry-2 .text .meta-wrap .half {
    width: 50%;
  }
  
  .blog-entry-2 .text .meta-wrap .meta span {
    margin: 0 5px;
    color: #b3b3b3;
  }
  
  .blog-entry-2 .text .meta-wrap .meta span i {
    margin-right: 10px;
  }
  
  .blog-entry-2 .author .img {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
  }
  
  .blog-entry-2 .author .info {
    width: calc(100% - 80px);
  }
  
  .blog-entry-2 .author .info h3 {
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 400;
  }
  
  .blog-entry-2 .author .info h3 a {
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
  }
  
  .blog-entry-2 .author .info h3 span {
    color: #000000;
  }
  
  .blog-entry-2 .author span {
    font-size: 18px;
    color: #b3b3b3;
  }
  
  .blog-entry-2 .text-2 .big {
    position: absolute;
    top: -10px;
    left: -20px;
    font-size: 60px;
    font-family: "Lora", Arial, serif;
    line-height: .8;
    z-index: -1;
    color: #ebebeb;
  }
  
  .blog-entry-2 .text-2 h3 {
    font-size: 24px;
    font-weight: 600;
  }
  
  .blog-entry-2 .author .img {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
  }
  
  .blog-entry-2 .author .info {
    width: calc(100% - 60px);
  }
  
  .blog-entry-2 .author .info h3 {
    font-size: 18px;
  }
  
  .blog-entry-2 .author span {
    font-size: 16px;
  }
  
  .aside-stretch {
    background: #4dc0f1;
  }
  
  .aside-stretch:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    content: '';
    width: 360%;
    background: #4dc0f1;
  }
  
  @media (max-width: 767.98px) {
    .aside-stretch {
      background: transparent;
    }
    .aside-stretch:after {
      background: transparent;
      display: none;
    }
  }
  
  .form-control {
    border-radius: 0px;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  
  textarea.form-control {
    height: inherit !important;
  }
  
  .ftco-animate {
    /* opacity: 0;
    visibility: hidden; */
  }
  
  .about-author img {
    border-radius: 50%;
  }
  
  .about-author .desc h3 {
    font-size: 20px;
  }
  
  .ftco-section {
    padding: 5em 0;
    position: relative;
  }
  
  @media (max-width: 991.98px) {
    .ftco-section {
      padding: 3em 0;
    }
  }
  
  .ftco-no-pt {
    padding-top: 0;
  }
  
  .ftco-no-pb {
    padding-bottom: 0;
  }
  
  .ftco-section-3 {
    padding: 1.8em;
  }
  
  .ftco-footer {
    font-size: 14px;
    background: #242423;
    padding: 6em 0;
  }
  
  .ftco-footer .ftco-footer-logo {
    text-transform: uppercase;
    letter-spacing: .1em;
  }
  
  .ftco-footer .ftco-footer-widget h2 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  .ftco-footer .ftco-footer-widget ul li a span {
    color: #fff;
  }
  
  .ftco-footer .ftco-footer-widget .btn-primary {
    background: #fff !important;
    border: 2px solid #fff !important;
  }
  
  .ftco-footer .ftco-footer-widget .btn-primary:hover {
    background: #fff;
    border: 2px solid #fff !important;
  }
  
  .ftco-footer ul.photo {
    width: 100%;
  }
  
  .ftco-footer ul.photo li {
    width: 33.33%;
    height: 100px;
    float: left;
  }
  
  .ftco-footer ul.photo li a {
    width: 100%;
    height: 100px;
    display: block;
  }
  
  .ftco-footer p {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .ftco-footer a {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .ftco-footer a:hover {
    color: #fff;
  }
  
  .ftco-footer .ftco-heading-2 {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
  }
  
  .ftco-footer .categories li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
  }
  
  .ftco-footer .categories li a {
    color: rgba(255, 255, 255, 0.5) !important;
  }
  
  .ftco-footer .categories li a span {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  .footer-small-nav > li {
    display: inline-block;
  }
  
  .footer-small-nav > li a {
    margin: 0 10px 10px 0;
  }
  
  .footer-small-nav > li a:hover, .footer-small-nav > li a:focus {
    color: #1eafed;
  }
  
  .media .ftco-icon {
    width: 100px;
  }
  
  .media .ftco-icon span {
    color: #1eafed;
  }
  
  .ftco-social {
    padding: 0;
  }
  
  .ftco-social li {
    list-style: none;
    margin: 0 10px 0 0;
    display: inline-block;
  }
  
  .ftco-social li a {
    height: 50px;
    width: 50px;
    display: block;
    float: left;
    background: white;
    border-radius: 50%;
    position: relative;
  }
  
  .ftco-social li a span {
    position: absolute;
    font-size: 26px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #000000;
  }
  
  .ftco-social li a:hover {
    color: #fff;
  }
  
  #map {
    width: 100%;
  }
  
  @media (max-width: 991.98px) {
    #map {
      height: 300px;
    }
  }
  
  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(30, 175, 237, 0.4);
    }
    70% {
      -webkit-box-shadow: 0 0 0 30px rgba(30, 175, 237, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(30, 175, 237, 0);
    }
  }
  
  @keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 rgba(30, 175, 237, 0.4);
              box-shadow: 0 0 0 0 rgba(30, 175, 237, 0.4);
    }
    70% {
      -webkit-box-shadow: 0 0 0 30px rgba(30, 175, 237, 0);
              box-shadow: 0 0 0 30px rgba(30, 175, 237, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(30, 175, 237, 0);
              box-shadow: 0 0 0 0 rgba(30, 175, 237, 0);
    }
  }
  
  .heading-section .subheading {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  .heading-section h2 {
    font-size: 24px;
    font-weight: 900;
  }
  
  @media (max-width: 767.98px) {
    .heading-section h2 {
      font-size: 28px;
    }
  }
  
  .heading-section.heading-section-white .subheading {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .heading-section.heading-section-white h2 {
    font-size: 40px;
    color: #fff;
  }
  
  .heading-section.heading-section-white p {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .heading-section.heading-section-2 h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  
  .author-img,
  .hero-wrap,
  .img,
  .blog-img,
  .insta-img,
  .user-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  
  .bg-light {
    background: #f8f9fa !important;
  }
  
  .bg-primary {
    background: #1eafed !important;
  }
  
  .image-popup {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  
  .mfp-with-zoom .mfp-container,
  .mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
  }
  
  .mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
  }
  
  .mfp-with-zoom.mfp-removing .mfp-container,
  .mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
  }
  
  .block-18 {
    width: 100%;
  }
  
  .block-23 ul {
    padding: 0;
  }
  
  .block-23 ul li, .block-23 ul li > a {
    display: table;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  
  .block-23 ul li span {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .block-23 ul li .icon, .block-23 ul li .text {
    display: table-cell;
    vertical-align: top;
  }
  
  .block-23 ul li .icon {
    width: 40px;
    font-size: 18px;
    padding-top: 2px;
    color: white;
  }
  
  .block-27 ul {
    padding: 0;
    margin: 0;
  }
  
  .block-27 ul li {
    display: inline-block;
    margin-bottom: 4px;
    font-weight: 400;
  }
  
  .block-27 ul li a, .block-27 ul li span {
    border: 1px solid #1eafed;
    text-align: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
  }
  
  .block-27 ul li.active a, .block-27 ul li.active span {
    background: #1eafed;
    color: #fff;
    border: 1px solid transparent;
  }
  
  .contact-section .contact-info p a {
    color: #1a1a1a;
  }
  
  .contact-section .info {
    width: 100%;
  }
  
  .contact-section .contact-form {
    width: 100%;
  }
  
  .block-9 .form-control {
    outline: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    font-size: 15px;
  }
  
  .block-21 .blog-img {
    display: block;
    height: 80px;
    width: 80px;
  }
  
  .block-21 .text {
    width: calc(100% - 100px);
  }
  
  .block-21 .text .heading {
    font-size: 16px;
  }
  
  .block-21 .text .heading a {
    color: #000000;
  }
  
  .block-21 .text .heading a:hover, .block-21 .text .heading a:active, .block-21 .text .heading a:focus {
    color: #1eafed;
  }
  
  .block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
  }
  
  .block-21 .text .meta > div a {
    color: gray;
  }
  
  .tagcloud {
    padding: 0;
  }
  
  .tagcloud a {
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 7px;
    margin-right: 4px;
    border-radius: 4px;
    color: #000000;
    border: 1px solid #ccc;
    font-size: 11px;
  }
  
  .tagcloud a:hover {
    border: 1px solid #000;
  }
  
  .comment-form-wrap {
    clear: both;
  }
  
  .comment-list {
    padding: 0;
    margin: 0;
  }
  
  .comment-list .children {
    padding: 50px 0 0 40px;
    margin: 0;
    float: left;
    width: 100%;
  }
  
  .comment-list li {
    padding: 0;
    margin: 0 0 30px 0;
    float: left;
    width: 100%;
    clear: both;
    list-style: none;
  }
  
  .comment-list li .vcard {
    width: 80px;
    float: left;
  }
  
  .comment-list li .vcard img {
    width: 50px;
    border-radius: 50%;
  }
  
  .comment-list li .comment-body {
    float: right;
    width: calc(100% - 80px);
  }
  
  .comment-list li .comment-body h3 {
    font-size: 20px;
  }
  
  .comment-list li .comment-body .meta {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .1em;
    color: #ccc;
  }
  
  .comment-list li .comment-body .reply {
    padding: 5px 10px;
    background: #e6e6e6;
    color: #000000;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .1em;
    font-weight: 400;
    border-radius: 4px;
  }
  
  .comment-list li .comment-body .reply:hover {
    color: #fff;
    background: black;
  }
  
  .search-form {
    background: #fafafa;
    padding: 10px;
  }
  
  .search-form .form-group {
    position: relative;
    margin-bottom: 0;
  }
  
  .search-form .form-group input {
    padding-right: 50px;
    font-size: 14px;
  }
  
  .search-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  
  .subs-wrap {
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 0;
  }
  
  @media (max-width: 767.98px) {
    .subs-wrap {
      padding: 20px !important;
    }
  }
  
  .subs-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .6;
    background: #000000;
    z-index: -1;
  }
  
  .subs-wrap h3 {
    color: #fff;
  }
  
  .subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
  }
  
  .subscribe-form .form-group input {
    background: transparent !important;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 16px;
    border-radius: 0;
  }
  
  .subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  .subscribe-form .form-group .form-control {
    bordeR: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
  }
  
  .subscribe-form .form-group .submit {
    color: #000000 !important;
    display: block;
    width: 100%;
    height: 52px;
    font-size: 16px;
    background: #fff !important;
    border-radius: 0;
  }
  
  .subscribe-form .form-group .submit:hover {
    cursor: pointer;
  }
  
  .subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
  }
  
  .sidebar-box {
    margin-bottom: 40px;
    padding: 0 25px;
    font-size: 15px;
    width: 100%;
  }
  
  .sidebar-box h3.sidebar-heading {
    font-size: 20px;
    font-weight: normal;
    font-style: italic;
    margin-bottom: 30px;
  }
  
  @media (max-width: 767.98px) {
    .sidebar-box {
      padding: 0;
    }
  }
  
  .categories, .sidelink {
    padding: 0;
  }
  
  .categories li, .sidelink li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dee2e6;
    list-style: none;
  }
  
  .categories li:last-child, .sidelink li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .categories li a, .sidelink li a {
    display: block;
    color: #000000;
  }
  
  .categories li a span, .sidelink li a span {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
  }
  
  .categories li.active a, .sidelink li.active a {
    color: #000000;
    font-style: italic;
  }
  
  #ftco-loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
            box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000;
  }
  
  #ftco-loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
            transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  #ftco-loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }
  
  #ftco-loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
            animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  
  #ftco-loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
            animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
  }
  
  @-webkit-keyframes loader-rotate {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @keyframes loader-rotate {
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  
  @-webkit-keyframes loader-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
    }
    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -136px;
    }
  }
  
  @keyframes loader-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
    }
    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -136px;
    }
  }
  /*# sourceMappingURL=style.css.map */