body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body main {
  overflow-x: hidden;
}
body main section.hero {
  background-color: #0D123D;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 999;
}
body main section.hero form {
  position: relative;
}
body main section.hero form .form-control {
  background-color: #ffffff;
  border: solid 2px white;
  border-radius: 8px;
  padding: 14px 42px 14px 24px;
  color: #000000;
  font-size: 20px;
  box-shadow: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
body main section.hero form .form-control::placeholder {
  color: #333333;
}
body main section.hero form .form-control::-webkit-search-cancel-button {
  display: none;
}
body main section.hero form .form-control:hover, body main section.hero form .form-control:focus {
  border: solid 2px #28a9e0;
}
body main section.hero form .btn {
  background-color: transparent;
  padding: 10px 7px;
  border: none;
  border-radius: 50%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-26px, 15px);
  user-select: none;
}
body main section.hero form .btn img {
  height: auto;
  width: 18px;
  user-select: none;
  pointer-events: none;
  transition: all 0.1s ease;
  transform-origin: center;
}
body main section.hero form .btn:hover, body main section.hero form .btn:focus {
  background-color: rgba(13, 18, 61, 0.1);
}
body main section.hero form .btn.active img {
  transform: rotate(180deg);
}
body main section.hero form .search-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  font-size: 16px;
  text-align: start;
  border: solid 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  max-height: 138px;
  position: absolute;
  top: 100%;
  transform: translate(0, 2px);
  display: none;
}
body main section.hero form .search-list li {
  background-color: #ffffff;
  padding: 10px 24px;
  border-bottom: solid 1px rgba(13, 18, 61, 0.1);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
body main section.hero form .search-list li:hover {
  background-color: rgba(13, 18, 61, 0.1);
  color: #0D123D;
}
body main section.hero form .search-list li:last-child {
  border-bottom: none;
}
body main section.hero form .search-list.show {
  display: block;
}
body main section.find .card {
  border: none;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 56px 48px;
  z-index: 1;
}
body main section.find .card img.card-img {
  width: 100%;
  max-width: 50%;
}
body main section.find .card .card-body {
  width: 100%;
  max-width: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
}
body main section.find .card .card-body .content_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main section.find .card .card-body .content_wrapper img.logo {
  height: 80px;
}
body main section.find .card .card-body .content_wrapper .title {
  position: relative;
}
body main section.find .card .card-body .content_wrapper .title:before {
  content: "";
  background-color: #ffffff;
  height: 4px;
  width: 60%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -12px);
}
body main section.find .card .card-body .content_wrapper .btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  max-width: 238px;
}
body main section.find .card .card-body .content_wrapper .btn-wrapper a {
  display: flex;
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.2s ease;
  overflow: hidden;
}
body main section.find .card .card-body .content_wrapper .btn-wrapper a:hover, body main section.find .card .card-body .content_wrapper .btn-wrapper a:focus {
  background-color: #ffffff;
  transform: scale(1.2);
}
body main section.find .card .card-body .content_wrapper .btn-wrapper a:hover img, body main section.find .card .card-body .content_wrapper .btn-wrapper a:focus img {
  filter: invert(1);
}
@keyframes card_before_animation {
  0% {
    opacity: 0;
    transform: translate(-100%, 0);
  }
  1% {
    opacity: 1;
    transform: translate(-100%, 0);
  }
  100% {
    opacity: 1;
    transform: translate(100%, 0);
  }
}
body main section.find .card:before {
  content: "";
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, 0);
  z-index: -1;
  transition: all 0.4s linear;
  pointer-events: none;
  user-select: none;
}
body main section.find .card:hover:before, body main section.find .card:focus:before, body main section.find .card:active:before {
  animation: 0.4s card_before_animation linear;
}

@media (max-width: 1580px) {
  body main section.find .card .card-body .content_wrapper img.logo {
    height: 60px;
  }
  body main section.find .card .card-body .content_wrapper .title:before {
    height: 2px;
    transform: translate(-50%, -13px);
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper {
    max-width: 196px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper a img {
    height: auto;
    width: 50px;
  }
}
@media (max-width: 1380px) {
  body main section.find .card {
    padding: 46px 28px;
  }
  body main section.find .card .card-body .content_wrapper img.logo {
    height: 60px;
  }
  body main section.find .card .card-body .content_wrapper .title:before {
    height: 2px;
    transform: translate(-50%, -13px);
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper {
    max-width: 196px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper a img {
    width: 50px;
  }
}
@media (max-width: 992px) {
  body main section.hero {
    padding: 60px 0;
  }
  body main section.hero .logo {
    max-width: 239px;
  }
  body main section.find .card {
    padding: 56px 48px;
    height: auto !important;
  }
  body main section.find .card .card-body .content_wrapper img.logo {
    height: 80px;
  }
  body main section.find .card .card-body .content_wrapper .title:before {
    height: 4px;
    transform: translate(-50%, -12px);
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper {
    max-width: 238px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper a img {
    width: 64px;
  }
}
@media (max-width: 767px) {
  body main section.find .card {
    padding: 56px 48px;
  }
  body main section.find .card .card-body .content_wrapper img.logo {
    height: 60px;
  }
  body main section.find .card .card-body .content_wrapper .title:before {
    height: 2px;
    transform: translate(-50%, -13px);
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper {
    max-width: 196px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper a img {
    width: 50px;
  }
}
@media (max-width: 567px) {
  body main section.find .card {
    padding: 36px 20px 36px 0;
  }
  body main section.find .card .card-body .content_wrapper img.logo {
    height: 50px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper {
    max-width: 166px;
  }
  body main section.find .card .card-body .content_wrapper .btn-wrapper a img {
    width: 40px;
  }
}
@media (max-width: 380px) {
  body main section.find .card {
    padding: 30px 20px;
    flex-wrap: wrap;
  }
  body main section.find .card img.card-img {
    max-width: 100%;
  }
  body main section.find .card .card-body {
    max-width: 100%;
    padding-top: 20px;
  }
}

/*# sourceMappingURL=home.css.map */
