.con_sec_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.con_sec_wrap .left_sec {
  padding: 20px 100px 20px 100px;
  display: flex;
  align-items: center;
}

.con_sec_wrap .left_sec h2 {
  margin-bottom: 5px;
  letter-spacing: .02em;
  font-weight: 600;
  line-height: 1.1;
  font-size: 40px;
  color: #222;
}

.con_sec_wrap .left_sec p {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 17px;
}

.con_sec_wrap .btn_wrap {
  margin: 20px 0px 20px 0px;
  display: inline-block;
  width: 100%;
}

.con_sec_wrap .btn_wrap a {
  line-height: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
}

/* ==Pop Up== */
.con_sec_wrap .popup__Overlay {
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.85);
  position: fixed;
  overflow: auto;
  inset: 0px;
  z-index: 10001;
  min-height: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  transition: all 1100ms ease 0.3s;
}

.con_sec_wrap .popup__Overlay .popup__BaseWrapper {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  max-width: 100%;
  z-index: 10001;
  min-width: 360px;
  min-height: 360px;
  transition: all 1700ms ease-out 0s;
  width: 800px;
  height: 100%;
  top: 0px;
  right: -100%;
}

.con_sec_wrap .popup__Overlay .popup__BaseWrapper img {
  position: absolute;
  padding: 8px;
  cursor: pointer;
  width: initial;
  max-width: initial;
  top: 12px;
  left: -38px;
  right: auto;
}

/* body class */
.contact-pop-open .con_sec_wrap .popup__Overlay {
  visibility: visible;
  opacity: 1;
  transition: all 200ms ease 0s;
}

.contact-pop-open .con_sec_wrap .popup__Overlay .popup__BaseWrapper {
  right: 0;
  visibility: visible;
  opacity: 1;
  transition: all 1000ms ease-out 0s;
}

@media (min-width: 1025px) {
  .con_sec_wrap .left_sec {
	 width: 60%;
  }

  .con_sec_wrap .right_sec {
	 width: 40%;
  }
}

@media (max-width: 1024px) {
  .con_sec_wrap .left_sec {
	 padding: 100px 70px 100px 70px;
  }
}
@media (max-width: 860px) {
  .con_sec_wrap .popup__Overlay .popup__BaseWrapper {
	 width: calc(100% - 50px);
	 min-width: auto;
  }
}
@media (max-width: 767px) {
  .con_sec_wrap .left_sec {
	 padding: 100px 15px 100px 15px;
  }

  .con_sec_wrap .left_sec h2 {
	 font-size: 33px;
  }
}