@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
 */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}
/* Default theme styles of the overlay */
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the modal dialog */
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}
/* Close button */
/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal_close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal {width: 700px;}
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 {
	background: rgba(23, 34, 57, .6);
	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;
}
.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}
/*--------------------------------------------------

	MODAL

--------------------------------------------------*/
/*---------------------------
	COMMON
---------------------------*/
.remodal {
	position: relative;
	transform: translate3d(0, 0, 0);
  width: 100%;
	max-width: 960px;
	margin: 0 auto;
  padding-bottom: clamp(50px, calc(50px + 50 * ((100vw - 375px) / 1545)), 100px);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
	text-align: center;
}
/* Cancel */
.remodal .cancel {position: absolute;top: 15px;right: 15px;width: 18px;height: 18px;border: none;background: transparent;}
.remodal .cancel::before,
.remodal .cancel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 2px;
  height: 100%;
  background: #FF0000;
}
.remodal .cancel::before {transform: translate(-50%, -50%) rotate(45deg);}
.remodal .cancel::after {transform: translate(-50%, -50%) rotate(-45deg);}
/* Main block */
.remodal .main_block {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(40px, calc(40px + 20 * ((100vw - 375px) / 1545)), 60px);
}
.remodal .main_block figure {width: 30%;}
.remodal .main_block .wrap {
  flex: 1;
  margin: 10% 0 3%;
  padding: 3% 0 3% clamp(20px, calc(20px + 20 * ((100vw - 375px) / 1545)), 40px);
  background: #F5F5F5;
}
.remodal .main_block .wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: url(../img/front/interview/img_map.svg) no-repeat top right / 100%;
}
.remodal .main_block .wrap h2 {
  margin-bottom: clamp(10px, calc(10px + 5 * ((100vw - 375px) / 1545)), 15px);
  font-weight: 600;
  font-size: clamp(18px, calc(18px + 6 * ((100vw - 375px) / 1545)), 24px);
  line-height: 1;
}
.remodal .main_block .wrap p {
  margin-bottom: 10px;
  color: #FC9000;
  font-weight: 600;
  font-size: clamp(24px, calc(24px + 4 * ((100vw - 375px) / 1545)), 28px);
}
.remodal .main_block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);
  position: relative;
  z-index: 2;
}
.remodal .main_block ul li {
  display: inline-block;
  padding: 2px 13px;
  border: 1px solid #FC9000;
  border-radius: 20px;
  background: #fff;
  color: #FC9000;
  font-size: clamp(12px, calc(12px + 2 * ((100vw - 375px) / 1545)), 14px);
  text-align: center;
}
.remodal .inner {width: 80%;max-width: 784px;}
/* FAQ block */
.remodal .faq_block ul li {margin-bottom: clamp(40px, calc(40px + 20 * ((100vw - 375px) / 1545)), 60px);}
.remodal .faq_block ul li.flexbox:nth-child(odd) {flex-direction: row-reverse;}
.remodal .faq_block ul li.flexbox figure {width: 35%;}
.remodal .faq_block ul li.flexbox .wrap {width: 55%;}
.remodal .faq_block ul li .wrap h3 {
  position: relative;
  margin-bottom: clamp(10px, calc(10px + 10 * ((100vw - 375px) / 1545)), 20px);
  color: #FB9000;
  font-weight: bold;
}
.remodal .faq_block ul li .wrap h3::before {
  content: 'Q';
  position: absolute;
  top: 70%;
  left: 2%;
  transform: translate(-50%, -50%);
  color: rgba(251, 144, 0, 17%);
  font-family: "poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(83px, calc(83px + 30 * ((100vw - 375px) / 1545)), 113px);
}
.remodal .faq_block ul li .wrap h3 span {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(16px, calc(16px + 2 * ((100vw - 375px) / 1545)), 18px);
  line-height: 1.4;
}
.remodal .message_block {align-items: flex-end;padding-bottom: 40px;}
.remodal .message_block figure {width: 177px;}
.remodal .message_block figure figcaption {margin: 0 auto 5px;text-align: center;}
.remodal .message_block figure figcaption span {
  display: inline-block;
  position: relative;
  padding: 10px 30px;
  color: #FB9000;
  font-weight: bold;
  text-align: center;
}
.remodal .message_block figure figcaption span::before,
.remodal .message_block figure figcaption span::after {
  content: '';
  position: absolute;
  top: 17%;
  width: 28px;
  height: 100%;
  background: no-repeat center / 100%;
}
.remodal .message_block figure figcaption span::before {left: 0;background-image: url(../img/front/interview/img_frameL.svg);}
.remodal .message_block figure figcaption span::after {right: 0;background-image: url(../img/front/interview/img_frameR.svg);}
.remodal .message_block .wrap {
  flex: 1;
  position: relative;
  margin-left: clamp(30px, calc(30px + 10 * ((100vw - 375px) / 1545)), 40px);
}
.remodal .message_block .wrap::before {
  content: '';
  position: absolute;
  top: 18%;
  left: calc(30% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: linear-gradient(#FFEDA5, #FEE9D9);
}
.remodal .message_block .wrap h3 {
  color: rgba(251, 144, 0, 10%);
  font-size: clamp(47px, calc(47px + 20 * ((100vw - 375px) / 1545)), 67px);
}
@media only screen and ( max-width : 767px ) {
  .remodal {max-width: 500px;}
  .remodal .main_block {background: #F5F5F5;}
  .remodal .main_block figure {width: 100%;}
  .remodal .main_block .wrap {position: relative;margin: 0;padding: 30px 20px;}
  .remodal .main_block .wrap::after {width: 47%;}
  .remodal .faq_block ul li.flexbox figure {width: 100%;margin-bottom: 30px;}
  .remodal .faq_block ul li.flexbox .wrap {width: 100%;}
  .remodal .message_block {padding-bottom: 30px;}
  .remodal .message_block figure {margin: 0 auto 10px;}
  .remodal .message_block .wrap {flex: initial;margin-left: 0;}
  .remodal .message_block .wrap::before {left: calc(50% - 50vw);}
  .remodal .message_block .wrap h3 {text-align: center;}
}