@keyframes magnifier {
  0% {
    transform: translate(0, 0);
  }
  17% {
    transform: translate(40px, 0);
  }
  34% {
    transform: translate(0, 0);
  }
  51% {
    transform: translate(40px, 0);
  }
  68% {
    transform: translate(40px, -50px);
  }
  85% {
    transform: translate(40px, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes bubble {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  60% {
    transform: translateX(0px);
    opacity: 1;
  }
  to {
    transform: translateX(10px);
    opacity: 0;
  }
}
.sect-head {
  padding: 24px 0;
  border-bottom: 1px solid #414042;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .sect-head {
    margin-bottom: 20px;
  }
}

.database {
  padding-bottom: 80px;
  margin-top: -50px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .database {
    padding-bottom: 40px;
    margin-top: 0;
  }
}
.database .wrapper {
  padding-top: 30px;
  padding-bottom: 18px;
}
@media screen and (max-width: 991px) {
  .database .wrapper {
    padding-left: 24px;
  }
}
.database .wrapper:before {
  content: "";
  background-color: #F4F4F4;
  border-radius: 0px 0px 0px 200px;
  position: absolute;
  top: 0;
  left: -68px;
  z-index: -1;
  width: calc(100% + 180px);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .database .wrapper:before {
    border-radius: 140px 0px 0px 0px;
    left: 32px;
    width: calc(100% + 32px);
  }
}
.database .item {
  background-color: #ffffff;
  border-radius: 20px 0px;
  box-shadow: 0px 4px 10px 0px rgba(88, 89, 91, 0.1);
  border: 1px solid rgba(88, 89, 91, 0.2);
  margin-right: 32px;
  margin-bottom: 24px;
  width: calc((100% - 96px) / 4);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .database .item {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
  }
}
@media screen and (min-width: 992px) {
  .database .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .database .item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  .database .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .database .item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .database .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .database .item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .database .item {
    margin-bottom: 16px;
    padding: 24px 32px;
  }
}
@media screen and (max-width: 991px) {
  .database .item .wrap {
    text-align: center;
  }
}
.database .item .logo {
  width: 100%;
  height: 50px;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .database .item .logo {
    margin-bottom: 16px;
  }
}
.database .item .logo img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.database .item .desc {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 991px) {
  .database .item .desc {
    font-size: 1.125em;
    letter-spacing: 0.36px;
  }
}
.database .item .btn-container {
  margin-top: 24px;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .database .item .btn-container {
    text-align: center;
    margin-top: 16px;
  }
}
.database .item .btn-container .com-btn {
  border-radius: 8px;
  font-size: 1em;
  line-height: 2;
  letter-spacing: 1.6px;
  padding: 8px 16px;
}
@media screen and (max-width: 991px) {
  .database .item .btn-container .com-btn {
    font-size: 0.875em;
  }
}

.tools {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .tools {
    margin-bottom: 16px;
  }
}
.tools .sect-head {
  color: #827611;
}
.tools .wrapper {
  padding-top: 44px;
}
@media screen and (max-width: 991px) {
  .tools .wrapper {
    padding-bottom: 28px;
  }
}
.tools .wrapper:before {
  content: "";
  background-color: #FFFDEF;
  border-radius: 0px 200px 0px 0px;
  position: absolute;
  top: 0;
  left: -108px;
  z-index: -1;
  width: calc(100% + 160px);
  height: 100%;
}
.tools .row {
  display: flex;
  flex-wrap: wrap;
}
.tools .item {
  border-radius: 40px 0px;
  border: 1px solid rgba(88, 89, 91, 0.5);
  background-color: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(88, 89, 91, 0.1);
  padding: 40px;
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .tools .item:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .tools .item {
    width: calc((100% - 20px) / 2);
  }
  .tools .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 575px) {
  .tools .item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .tools .item {
    margin-bottom: 20px;
    padding: 16px 24px 24px;
  }
}
.tools .item .title {
  color: #827611;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.72px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(88, 89, 91, 0.3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .tools .item .title {
    min-height: 117px;
  }
}
@media screen and (max-width: 991px) {
  .tools .item .title {
    font-size: 1em;
    line-height: 1.5;
    letter-spacing: 0.32px;
    border-bottom: 0;
    margin-bottom: 12px;
    padding-bottom: 0;
  }
}
.tools .item .desc {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.4px;
  color: #58595B;
}
@media screen and (max-width: 991px) {
  .tools .item .desc {
    font-size: 1em;
    line-height: 1.75;
    letter-spacing: 0.32px;
  }
}
.tools .item .btn-container {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .tools .item .btn-container {
    margin-top: 16px;
  }
}
.tools .item .btn-container .com-btn {
  padding: 8px 16px;
  font-size: 1em;
  border-radius: 8px;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 991px) {
  .tools .item .btn-container .com-btn {
    font-size: 0.875em;
  }
}

.policy {
  color: #0C8295;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .policy {
    margin-bottom: 36px;
  }
}
.policy .wrapper {
  padding-top: 40px;
  padding-bottom: 70px;
}
.policy .wrapper:before {
  content: "";
  background-color: #ffffff;
  border-radius: 0px 0px 0px 200px;
  position: absolute;
  top: 0;
  left: -68px;
  z-index: -1;
  width: calc(100% + 180px);
  height: 100%;
}
@media screen and (max-width: 991px) {
  .policy .outer-row {
    flex-direction: column-reverse;
  }
}
.policy .col-desc {
  width: 55%;
  padding-right: 64px;
}
@media screen and (max-width: 991px) {
  .policy .col-desc {
    width: 100%;
    padding-right: 0;
  }
}
.policy .col-desc .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 991px) {
  .policy .col-desc .row {
    padding: 16px 0;
  }
}
.policy .col-desc .title {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.72px;
  color: #58595B;
}
@media screen and (max-width: 991px) {
  .policy .col-desc .title {
    font-size: 1.125em;
    line-height: 1.55;
    letter-spacing: 0.54px;
  }
}
.policy .col-desc .com-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1em;
  letter-spacing: 1.6px;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  .policy .col-desc .com-btn {
    font-size: 0.875em;
    padding: 8px 24px;
  }
}
.policy .col-bg {
  width: 45%;
}
@media screen and (max-width: 991px) {
  .policy .col-bg {
    width: 100%;
  }
}
.policy .col-bg .bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 991px) {
  .sty-industry {
    margin-top: 58px;
    padding-bottom: 52px;
  }
}
.sty-industry .top {
  border-bottom: 1px solid #414042;
  padding-bottom: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .sty-industry .top {
    margin-bottom: 20px;
  }
}
.sty-industry .top p {
  color: #58595B;
  margin: 0;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 991px) {
  .sty-industry .top p {
    line-height: 1.75;
  }
}
.sty-industry .sect-head {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 32px;
  padding-right: 200px;
}
@media screen and (max-width: 991px) {
  .sty-industry .sect-head {
    padding-top: 46px;
    padding-right: 0;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 991px) {
  .sty-industry .wrapper {
    padding-bottom: 52px;
  }
}
.sty-industry .wrapper:before {
  border-radius: 200px 0px 0px 0px;
}
@media screen and (max-width: 991px) {
  .sty-industry .wrapper:before {
    border-radius: 140px 0px 0px 0px;
  }
}
.sty-industry .wrapper:after {
  content: "";
  display: block;
  border-radius: 50px;
  width: 1136px;
  height: 113px;
  position: absolute;
  z-index: -1;
  background-image: linear-gradient(to left, rgba(249, 244, 198, 0) 53.67%, #F9F4C6 112.2%);
  left: -263px;
  top: 400px;
  z-index: -2;
}
@media screen and (max-width: 991px) {
  .sty-industry .wrapper:after {
    width: 1136px;
    height: 113px;
  }
}
@media screen and (min-width: 992px) {
  .sty-industry .btn-more {
    position: absolute;
    right: 50px;
    top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .sty-industry .btn-more {
    position: relative;
  }
}
@media screen and (max-width: 991px) {
  .sty-industry .btn-more .arrow-btn {
    justify-content: center;
  }
}

.sec-support .row-thumbnail:nth-child(odd) .wrap, .sec-support .row-thumbnail .col-thumbnail:before {
  border-color: #E52D5E;
}
.sec-support .row-thumbnail .topic-row .topic {
  color: #A31B3F;
}

.visit-more {
  margin: 40px 0 80px;
}
@media screen and (max-width: 991px) {
  .visit-more {
    margin: 48px 0 92px;
  }
}
.visit-more .wrapper {
  width: 74%;
  margin-left: -170px;
  background-color: #FCFCFC;
  border-radius: 0px 40px 0px 0px;
  border: 1px solid #58595B;
  padding: 48px 80px 56px 170px;
}
@media screen and (max-width: 991px) {
  .visit-more .wrapper {
    border-left: 0;
    padding: 32px 32px 32px 56px;
    margin-left: -32px;
  }
}
@media screen and (max-width: 767px) {
  .visit-more .wrapper {
    width: calc(100% + 32px);
  }
}
.visit-more .row {
  justify-content: space-between;
  align-items: center;
}
.visit-more .title {
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 991px) {
  .visit-more .title {
    font-size: 1.5em;
    line-height: 1.33;
    letter-spacing: 0.72px;
  }
}/*# sourceMappingURL=member-resources.css.map */