/* ================================================================================================ */
/* ================================================================================================ */
@charset "UTF-8";

div {
  box-sizing: border-box;
}
html {
  height: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.modal_research .modal-dialog {
  margin-top: 200px;
}

.modal_research .modal-content {
  background-color: #fff;
  border-radius: inherit;
}

.modal_research .modal-header {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}

.modal_research button.close {
  padding: 0px 4px;
  border: 1px solid #000;
  border-radius: 50%;
  opacity: 1;
  font-weight: normal;
  text-shadow: unset;
}

.modal_research .modal-body {
  padding: 40px 80px;
}

@media (max-width: 768px) {
  .modal_research .modal-dialog {
    margin-top: 70px;
  }

  .modal_research .modal-body {
    padding: 40px 30px;
  }
}

.modal_research .modal-body p {
  font-family: "Barlow", serif;
  padding-bottom: 12px;
}

.modal_research .modal-body p:nth-child(1) {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}

.modal_research .modal-body p:nth-child(2) {
  font-size: 21px;
  font-weight: 300;
  line-height: 20px;
}

.modal_research .modal-body p:nth-child(3) {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
}

.modal-body p:nth-child(3) a {
  width: max-content;
  padding-top: 15px;
  padding-bottom: 3px;
  border-bottom: 1px solid;
}

.modal_research .modal-body p:nth-child(4) {
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}

.modal_research .modal-body p:nth-child(5) {
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
}

.modal.fade .modal-dialog {
    opacity: 0;
    transform: translateY(-25px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(0);
    }
}

.modal.in .modal-dialog {
    animation: fadeInDown .8s ease-out forwards;
}

.modal.fade:not(.in) .modal-dialog {
    animation: fadeOut 0.5s ease-out forwards;
}

.modal_alert .modal-content {
  margin-top: 200px;
  font-size: 20px;
}
.modal_alert .modal-page-body {
  padding: 0 50px 50px;
}
.modal_alert .modal-body p {
  font-family: "Barlow", serif;
}
.modal_alert .modal-page-body strong {
  font-weight: bold;
}
.modal_alert button.close {
  padding: 0px 4px;
  border: 1px solid #000;
  border-radius: 50%;
  opacity: 1;
}
@media (max-width: 768px) {
  .modal_alert .modal-content {
    margin-top: 70px;
  }

  .modal_alert .modal-page-body {
    padding: 0 2rem 1.5rem;
  }
}