body {
  margin: 0px;
}

.certification {
  position: absolute;
  bottom: 3%;
  right: 3%;
  display: none;
}

.certification img {
  width: 100%;
}

.content {
  background-image: url(../images/Bg.jpg);
  background-size: cover;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.content .contentWrapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.content .contentWrapper .txtZone {
  width: 50%;
  padding: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content .contentWrapper .txtZone .logoFrame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .contentWrapper .txtZone .logoFrame img {
  height: 8vh;
}

.content .contentWrapper .txtZone .logoFrame img.jj {
  display: none;
}

.content .contentWrapper .txtZone .logoFrame span {
  display: block;
  width: 3px;
  height: 10vh;
  background-color: #d9d9d9;
  margin: 1.8vw;
  display: none;
}

.content .contentWrapper .txtZone .txtFrame {
  width: 53%;
}

.content .contentWrapper .txtZone .txtInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: arial;
  color: #ffffff;
  text-align: justify;
}

.content .contentWrapper .txtZone .txtInner h1 {
  font-size: 1.7vw;
  font-weight: bold;
  text-align: center;
  margin: 7px 0px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffffff;
}

.content .contentWrapper .txtZone .txtInner h2 {
  text-align: center;
}

.content .contentWrapper .txtZone .txtInner p {
  font-size: 0.8vw;
  text-align: center;
  margin-top: 0px;
  line-height: 2;
  font-family: arial;
}

.content .contentWrapper .txtZone .txtInner p span {
  color: #1db889;
}

.content .contentWrapper .txtZone .btnFrame {
  display: flex;
  width: 100%;
  justify-content: center;
}

.content .contentWrapper .txtZone .btn {
  padding: 3% 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8vw;
  border: 0px;
  background: #116c50 !important;
  color: #ffffff !important;
  transition: 0.3s ease-out;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.content .contentWrapper .txtZone .btn:last-child {
  margin-right: 0%;
}

.content .contentWrapper .txtZone .btn:active {
  transform: scale(1.2);
}

.content .contentWrapper .txtZone .btn-hover .txt {
  color: #ffffff !important;
  z-index: 1;
}

.content .contentWrapper .txtZone .btn .circle {
  position: absolute;
  width: 1px;
  height: 1px;
  background-color: #fff;
  border-radius: 50%;
}

.aniBtnOut {
  animation: aniBtnOut 1.5s 1 forwards;
}

.aniBtnIn {
  animation: aniBtnIn 1.5s 1 forwards;
}

@keyframes aniBtnOut {
  0% {
    transform: scale(1);
    background-color: #ffffff;
    opacity: 0;
  }

  10% {
    transform: scale(1);
    background-color: #1db889;
    opacity: 0.5;
  }

  100% {
    transform: scale(400);
    background-color: #1db889;
    opacity: 1;
  }
}

@keyframes aniBtnIn {
  0% {
    transform: scale(400);
    background-color: #1db889;
    opacity: 1;
  }

  20% {
    transform: scale(1);
    background-color: #1db889;
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    background-color: #ffffff;
    opacity: 0;
  }
}

.content .contentWrapper .picZone {
  width: 43%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
}

.content .contentWrapper .picZone img {
  width: 100%;
}

/*animation*/
.aniLogo {
  animation: aniLogo 1.5s infinite;
}

@keyframes aniLogo {
  0% {
    background-position-y: 0px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    background-position-y: 5px;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
  }

  100% {
    background-position-y: 0px;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

/*rwd*/
@media (max-width: 1048px) {
  .content .contentWrapper {
    width: 100%;
    flex-direction: COLUMN-REVERSE;
  }

  .content .contentWrapper .picZone {
    width: 60%;
    padding-top: 5%;
  }

  .content .contentWrapper .txtZone .btnFrame {
    justify-content: center;
  }

  .content .contentWrapper .txtZone .btn {
    margin-right: 3%;
    font-size: 1.8vw;
  }

  .content .contentWrapper .txtZone {
    width: 54%;
    padding-top: 7%;
  }

  .content .contentWrapper .txtZone {
    width: 60%;
  }

  .content .contentWrapper .txtZone .txtFrame {
    width: 100%;
  }

  .content .contentWrapper .txtZone .txtInner h1 {
    font-size: 4.2vw;
  }

  .content .contentWrapper .txtZone .txtInner p {
    font-size: 2vw;
  }
}

/* ipad-pro Landscape*/

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
}

/* ipad-pro Portrait*/
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .content .contentWrapper .picZone {
    align-items: center;
    justify-content: center;
    padding-top: 0%;
    width: 90%;
  }
}

@media (max-width: 912px) {
  .content .contentWrapper .txtZone {
    width: 80%;
    padding-top: 11%;
  }

  .content .contentWrapper .picZone {
    height: auto;
  }

  .content .contentWrapper .txtZone .txtInner h1 {
    font-size: 5.5vw;
  }

  .content .contentWrapper .txtZone .txtInner p {
    font-size: 2.7vw;
  }
}

@media (max-width: 640px) {
  .content .contentWrapper {
    justify-content: center;
  }

  .content .contentWrapper .txtZone {
    padding-top: 0%;
  }

  .content .contentWrapper .picZone {
    width: 72%;
    padding-top: 6%;
  }
}

@media (max-width: 540px) {
  .content .contentWrapper .txtZone {
    margin-top: 7%;
  }
}

@media (max-width: 500px) {
  .content .contentWrapper .txtZone {
    padding-top: 15%;
    width: 76%;
  }

  .content .contentWrapper .picZone {
    width: 78%;
    padding-top: 5%;
  }

  .content .contentWrapper .txtZone .btn {
    padding: 4% 16%;
    font-size: 4vw;
    width: 100%;
  }

  .content .contentWrapper .txtZone .txtInner p {
    font-size: 2.6vw;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .content .contentWrapper .txtZone .logoFrame img {
    height: 5vh;
  }

  .content .contentWrapper .txtZone .logoFrame span {
    height: 6vh;
  }

  .content .contentWrapper .txtZone .logoFrame img {
    height: 5vh;
  }

  .content .contentWrapper .picZone {
    width: 116%;
    padding-top: 10%;
  }

  .certification {
    top: 2.5%;
    right: 3.6%;
  }

  .certification img {
    width: 76%;
    float: right;
  }
}

@media (max-width: 414px) {
  .content .contentWrapper .txtZone .logoFrame img {
    height: 6vh;
  }

  .content .contentWrapper .txtZone .logoFrame span {
    height: 7vh;
  }

  .content .contentWrapper .txtZone .txtInner h1 {
    font-size: 6vw;
  }

  .content .contentWrapper .txtZone .txtInner p {
    font-size: 3.1vw;
  }

  .content .contentWrapper .picZone {
    width: 116%;
    padding-top: 9%;
  }

  .content .contentWrapper .txtZone {
    width: 95%;
  }
}

@media (max-width: 375px) {
  .certification {
    top: 1.5%;
    right: 2.6%;
  }

  .certification img {
    width: 64%;
    float: right;
  }
}

@media (max-width: 280px) {
  .content .contentWrapper .picZone {
    padding-top: 15%;
  }
}
