@charset "utf-8";

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	padding: 80px 20px;
	-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*--------------------------------------------------------------------------------

	about & interview

---------------------------------------------------------------------------------*/
.remodal {
	max-width: 1120px;
    width: 100%;
    margin-bottom: 10px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff;
	padding: 60px;
	margin: 20px 0;
	outline: solid 8px #243F7E;
}
.remodal .flexbox {margin-bottom: 2rem;}
.remodal figure {width: 50%;}
.remodal .flexbox div {
	background: #243F7E;
	color: #fff;
	outline: solid 1px #59657d;
	outline-offset: -10px;
	padding: 35px;	
	width: 50%;
}
.remodal h2 {margin-bottom: 2rem;font-size: 2.2rem;}
.remodal h3 {margin-bottom: 3rem;font-size: 1.6rem;text-align: right;}
.remodal h4 {margin-bottom: 2rem;font-size: 1.6rem;}
.remodal .box {
	outline: solid 1px #59657d;
	outline-offset: -10px;
	margin-bottom: 2rem;
	padding: 35px;	
	width: 100%;
	background: #243F7E;
	color: #fff;
}
/*------------------------button------------------------*/
.remodal_close {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    overflow: visible;
    width: 100%;
    height: 45px;
    margin: 0 auto;
    padding: 0;
    cursor: pointer;
	text-decoration: none;
    color: #243F7E;
    text-align: center;
    background: #fff;
	border: 5px solid #243F7E;
	transition: .5s;
}
.remodal_close:hover,
.remodal_close:focus {
	color: #fff;
	background: #243F7E;
}
.remodal_close:before {
	font-family: 'Century Gothic';
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 2px;
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: auto;
    content: "CLOSE";
    text-align: center;
}
@media only screen and ( max-width : 896px ) {
	.remodal {padding: 40px;}
	.remodal figure {width: 100%;}
	.remodal .flexbox div {width: 100%;}
}
@media only screen and ( max-width : 500px ) {
	.remodal {padding: 20px 10px;}
}