.search-popup {
    position: fixed;
    left: 0px;
    top: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.80);
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
  }

  .search-popup.popup-visible {
    top: 0;
    visibility: visible;
    opacity: 1;
  }

  .search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
  }

  .search-popup .close-search:hover {
    opacity: 0.70;
  }

  .search-popup .search-form {
    position: relative;
    padding: 0px 15px 50px;
    padding-top: 200px;
    max-width: 1024px;
    margin: 0 auto;
  }

  .contact-popup-wrap {
    text-align: center;
    position: relative;
    padding: 0px 15px 50px;
    padding-top: 200px;
    max-width: 1024px;
    margin: 0 auto;
    font-size: 18px;
    color: #fff;
  }
  .contact-popup-wrap .contact-popup-item {
    margin-bottom: 15px;
  }
  .contact-popup-wrap .contact-popup-item  .fa {
    padding: 0 5px;
    display: none;
  }
  .home-image-popup__wrap {
    height: 100vh;
  }

  .home-image-popup__image {
    max-width: 80%;
    
  }

  .d-inline-block{
    display: inline-block;
  }
  .align-items-center {
    -webkit-box-align: center !important;
    align-items: center !important;
}
.justify-content-center {
  -webkit-box-pack: center !important;
  justify-content: center !important;
}
.d-flex {
  display: -webkit-box !important;
  display: flex !important;
}