* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

a {
  text-decoration: none;
  color: #191919;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  width: 100vw;
  height: 10vh;
  box-shadow: 0 5px 10px 1px #eee;
}

header .nav1 {
    display: flex;
    align-items: center;
    cursor: pointer;
}

header .nav1 svg {
    width: 18px;
    margin-right: 7px;
    stroke: #191919;
}

header .nav1 span {
    font-size: 13px;
    padding-top: 3px;
    color: #191919;
    letter-spacing: .1em;
    padding-left: 10px;
}

header .nav2 {
    display: flex;
    align-items: center;
}

header .nav2 nav ul{
    display: flex;
    list-style: none;
    align-items: center;
    font-size: 11px;
    color: #191919;
}

header nav li {
    position: relative;
    cursor: pointer;
}

header .nav2 nav ul li:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    background: #000;
    transition: width 120ms ease-in-out, opacity 210ms ease-in-out;
    opacity: 0;
}

header .nav2 nav ul li:hover:after {
    width: 100%;
    opacity: 1;
}

header .nav2 nav ul li {
    margin: 0 20px;
    letter-spacing: .3em;
}

header .nav3 button {
    border: none;
    background: none;
    font-size: 13px;
    position: relative;
    color: #191919;
    cursor: pointer;
    letter-spacing: .1em;
}

header .nav3 button:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: gray;
}

.article {
  display: flex;
  height: 87.3vh;
  margin: 0px 20px;
}

.article .left {
  width: 50%;
  height: 100%;
  background: teal;
  margin-bottom: 20px;
  position: relative;
}

.article .left img {
    object-fit: cover;
}

.article .left h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #FFEDD3;
    transform: translate(-50%, -50%);
    font-size: 50px;
    text-decoration: underline;
    letter-spacing: .01em;    
}

.article .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.article .right .content {
  display: flex;
  flex-direction: column;
  width: 530px;
  margin: 40px 0;
  margin-bottom: 60px;
  height: 400px;
  margin-top: 100px;
}

.article .right .content span {
  font-size: 15px;
  padding: 20px 0;
  border-top: 1px solid #ddd;
}

.article .right .content :nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.article .right .content p {
  padding-top: 20px;
  font-size: 17px;
}

.right button {
  margin-top: -60px;
  margin-right: 330px;
  padding: 18px 53px;
  border: none;
  background: #191919;
  color: snow;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.right button svg {
  width: 15px;
  position: absolute;
  transform: translate(-90%, 0);
  opacity: 0;
  transition: opacity 330ms ease;
}

.right button p {
  transition: transform 430ms ease;
}

.right button:hover p {
  transform: translate(12%, 0);
}

.right button:hover svg {
  opacity: 1;
}