@keyframes hueShift {
  0% {
    filter: hue-rotate(0deg);
  }
  50% {
    filter: hue-rotate(180deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul,
li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

*,
ul,
li,
h1,
h2,
h3,
p,
div {
  font-family: var(--font-family);
  color: white;
}

html {
  scroll-behavior: smooth;
}

button {
  background: none;
  padding: none;
  border: none;
  cursor: pointer;
}

.burger_btn {
  width: 35px;
}
@media screen and (min-width: 1001px) {
  .burger_btn {
    width: calc(100vw * 35 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .burger_btn {
    width: 35px;
  }
}
.burger_btn {
  height: 35px;
}
@media screen and (min-width: 1001px) {
  .burger_btn {
    height: calc(100vw * 35 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .burger_btn {
    height: 35px;
  }
}
.burger_btn {
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .burger_btn {
    width: 38px;
    height: 38px;
  }
}
.burger_btn:hover {
  opacity: 0.7;
}
.burger_btn svg {
  width: 100%;
  height: 100%;
}

.btn {
  height: 47px;
}
@media screen and (min-width: 1001px) {
  .btn {
    height: calc(100vw * 47 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn {
    height: 47px;
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
}
@media screen and (min-width: 1001px) {
  .btn {
    width: calc(100vw * 190 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn {
    width: 190px;
  }
}
.btn {
  border-radius: 1000px;
}
@media screen and (max-width: 1000px) {
  .btn {
    width: 180px;
    height: 36px;
  }
}
.btn p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .btn p {
    font-size: calc(100vw * 14 / 1920);
  }
}
.btn p {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  transform: translateY(0.1041666667vw);
}
@media screen and (max-width: 1000px) {
  .btn p {
    font-size: 14px;
  }
}
.btn {
  transition: opacity 0.3s ease;
}
.btn:hover {
  opacity: 0.7;
}
.btn.transparent {
  border: 2px solid var(--accentcolor);
   border-width: 2px;
}
@media screen and (min-width: 1001px) {
  .btn.transparent {
     border-width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.transparent {
     border-width: 2px;
  }
}
.btn.solid {
  border: 2px solid var(--accentcolor);
  background: var(--accentcolor);
   border-width: 2px;
}
@media screen and (min-width: 1001px) {
  .btn.solid {
     border-width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.solid {
     border-width: 2px;
  }
}
.btn.solid p {
  color: var(--blurcolor);
}
.btn.short {
  height: 30px;
}
@media screen and (min-width: 1001px) {
  .btn.short {
    height: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.short {
    height: 30px;
  }
}
.btn.short {
  font-size: clamp(15px, 15px + (30 - 15) * (100vw - 1000px) / (1920 - 1000), 30px);
}
@media screen and (min-width: 1921px) {
  .btn.short {
    font-size: calc(100vw * 30 / 1920);
  }
}
.btn.wide {
  width: 230px;
}
@media screen and (min-width: 1001px) {
  .btn.wide {
    width: calc(100vw * 230 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.wide {
    width: 230px;
  }
}
.btn.second {
  border: 2px solid var(--textcolorsecond);
}
.btn.with_arrow {
  justify-content: space-between;
  padding-left: 6px;
}
@media screen and (min-width: 1001px) {
  .btn.with_arrow {
    padding-left: calc(100vw * 6 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.with_arrow {
    padding-left: 6px;
  }
}
.btn.with_arrow {
  padding-right: 6px;
}
@media screen and (min-width: 1001px) {
  .btn.with_arrow {
    padding-right: calc(100vw * 6 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.with_arrow {
    padding-right: 6px;
  }
}
.btn.with_arrow {
  border: 2px solid white;
   border-width: 1px;
}
@media screen and (min-width: 1001px) {
  .btn.with_arrow {
     border-width: calc(100vw * 1 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn.with_arrow {
     border-width: 1px;
  }
}
.btn.with_arrow p {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .btn.with_arrow {
    padding-right: 4px;
  }
}
.btn .circle {
  width: 35px;
}
@media screen and (min-width: 1001px) {
  .btn .circle {
    width: calc(100vw * 35 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn .circle {
    width: 35px;
  }
}
.btn .circle {
  height: 35px;
}
@media screen and (min-width: 1001px) {
  .btn .circle {
    height: calc(100vw * 35 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn .circle {
    height: 35px;
  }
}
.btn .circle {
  border-radius: 100%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 1000px) {
  .btn .circle {
    width: 27px;
    height: 27px;
  }
}
.btn .circle svg {
  width: 7px;
}
@media screen and (min-width: 1001px) {
  .btn .circle svg {
    width: calc(100vw * 7 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn .circle svg {
    width: 7px;
  }
}
.btn .circle svg {
  height: 8.5px;
}
@media screen and (min-width: 1001px) {
  .btn .circle svg {
    height: calc(100vw * 8.5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn .circle svg {
    height: 8.5px;
  }
}
@media screen and (max-width: 1000px) {
  .btn .circle svg {
    width: 5px;
    height: 6px;
  }
}

.btn_slider {
  width: 48px;
}
@media screen and (min-width: 1001px) {
  .btn_slider {
    width: calc(100vw * 48 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_slider {
    width: 48px;
  }
}
.btn_slider {
  height: 48px;
}
@media screen and (min-width: 1001px) {
  .btn_slider {
    height: calc(100vw * 48 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_slider {
    height: 48px;
  }
}
.btn_slider {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 2px solid var(--textcolorsecond);
  transition: all 0.3s ease;
  border-width: 2px;
}
@media screen and (min-width: 1001px) {
  .btn_slider {
    border-width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_slider {
    border-width: 2px;
  }
}
.btn_slider svg {
  width: 19px;
}
@media screen and (min-width: 1001px) {
  .btn_slider svg {
    width: calc(100vw * 19 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_slider svg {
    width: 19px;
  }
}
.btn_slider svg {
  height: 24px;
}
@media screen and (min-width: 1001px) {
  .btn_slider svg {
    height: calc(100vw * 24 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_slider svg {
    height: 24px;
  }
}
.btn_slider svg path {
  transition: all 0.3s ease;
}
.btn_slider:hover {
  background-color: var(--textcolorsecond);
}
.btn_slider:hover svg path {
  stroke: white;
}

header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
@media screen and (min-width: 1001px) {
  header {
    padding-top: calc(100vw * 32 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding-top: 32px;
  }
}
header {
  padding-right: 61px;
}
@media screen and (min-width: 1001px) {
  header {
    padding-right: calc(100vw * 61 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding-right: 61px;
  }
}
header {
  padding-bottom: 22px;
}
@media screen and (min-width: 1001px) {
  header {
    padding-bottom: calc(100vw * 22 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding-bottom: 22px;
  }
}
header {
  padding-left: 61px;
}
@media screen and (min-width: 1001px) {
  header {
    padding-left: calc(100vw * 61 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding-left: 61px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}
header.blur {
  backdrop-filter: blur(10px);
  z-index: 50;
}
@media screen and (max-width: 1000px) {
  header {
    padding: 14px 14px;
  }
}
header .btns_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 102px;
}
@media screen and (min-width: 1001px) {
  header .btns_block {
    gap: calc(100vw * 102 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  header .btns_block {
    gap: 102px;
  }
}
@media screen and (max-width: 1000px) {
  header .btns_block .btn {
    display: none;
  }
}

.logo_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1001px) {
  .logo_wrap {
    gap: calc(100vw * 8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .logo_wrap {
    gap: 8px;
  }
}
.logo_wrap .carriage {
  width: 5px;
}
@media screen and (min-width: 1001px) {
  .logo_wrap .carriage {
    width: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .logo_wrap .carriage {
    width: 5px;
  }
}
.logo_wrap .carriage {
  height: 20px;
}
@media screen and (min-width: 1001px) {
  .logo_wrap .carriage {
    height: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .logo_wrap .carriage {
    height: 20px;
  }
}
.logo_wrap .carriage {
  background: var(--accentcolor);
  transform: translateY(-0.1041666667vw);
}
@media screen and (max-width: 1000px) {
  .logo_wrap .carriage {
    width: 2px;
    height: 15px;
    transform: translateY(-2px);
  }
}
.logo_wrap .logo {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(13px, 13px + (26 - 13) * (100vw - 1000px) / (1920 - 1000), 26px);
}
@media screen and (min-width: 1921px) {
  .logo_wrap .logo {
    font-size: calc(100vw * 26 / 1920);
  }
}
.logo_wrap .logo {
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 1000px) {
  .logo_wrap .logo {
    font-size: 18px;
  }
}

.main_navigation {
  transform: translateX(4.6875vw);
}
@media screen and (max-width: 1000px) {
  .main_navigation {
    display: none;
  }
}
.main_navigation ul {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  gap: 30px;
}
@media screen and (min-width: 1001px) {
  .main_navigation ul {
    gap: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .main_navigation ul {
    gap: 30px;
  }
}
.main_navigation ul {
  align-items: center;
}
.main_navigation ul a {
  text-transform: uppercase;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .main_navigation ul a {
    font-size: calc(100vw * 14 / 1920);
  }
}
.main_navigation ul a {
  line-height: 71%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #777;
}
.main_navigation ul li {
  position: relative;
}
.main_navigation ul li .carriage {
  transform: translateY(-0.1041666667vw);
  opacity: 0;
  position: absolute;
  left: -10px;
}
@media screen and (min-width: 1001px) {
  .main_navigation ul li .carriage {
    left: calc(100vw * -10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .main_navigation ul li .carriage {
    left: -10px;
  }
}
.main_navigation ul li .carriage {
  width: 3px;
}
@media screen and (min-width: 1001px) {
  .main_navigation ul li .carriage {
    width: calc(100vw * 3 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .main_navigation ul li .carriage {
    width: 3px;
  }
}
.main_navigation ul li .carriage {
  height: 100%;
  background: var(--accentcolor);
  transition: opacity 0.3s ease;
}
.main_navigation ul li.active a {
  color: #fff;
}
.main_navigation ul li.active .carriage {
  opacity: 1;
}
.main_navigation ul li:hover a {
  color: #fff;
}
.main_navigation ul li:hover .carriage {
  opacity: 1;
}

footer {
  padding-bottom: 85px;
}
@media screen and (min-width: 1001px) {
  footer {
    padding-bottom: calc(100vw * 85 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer {
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 1000px) {
  footer {
    padding-bottom: 22px;
  }
}
footer .wrap_footer {
  display: flex;
  flex-flow: column nowrap;
  gap: 75px;
}
@media screen and (min-width: 1001px) {
  footer .wrap_footer {
    gap: calc(100vw * 75 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
    gap: 75px;
  }
}
footer .wrap_footer {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
   padding-top: 53px;
}
@media screen and (min-width: 1001px) {
  footer .wrap_footer {
     padding-top: calc(100vw * 53 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
     padding-top: 53px;
  }
}
footer .wrap_footer {
  padding-left: 38px;
}
@media screen and (min-width: 1001px) {
  footer .wrap_footer {
    padding-left: calc(100vw * 38 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
    padding-left: 38px;
  }
}
footer .wrap_footer {
  adding-right: 38px;
}
@media screen and (min-width: 1001px) {
  footer .wrap_footer {
    adding-right: calc(100vw * 38 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
    adding-right: 38px;
  }
}
footer .wrap_footer {
  border-top: 1px solid rgba(30, 75, 91, 0.4);
  margin-top: 230px;
}
@media screen and (min-width: 1001px) {
  footer .wrap_footer {
    margin-top: calc(100vw * 230 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
    margin-top: 230px;
  }
}
@media screen and (max-width: 1000px) {
  footer .wrap_footer {
    flex-direction: row-reverse;
    border: none;
    margin-top: 97px;
    padding: 0 10px 37px 15px;
    justify-content: space-between;
  }
}
footer .top_footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
footer .top_footer .col {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.logo_col .logo_wrap {
    display: none;
  }
}
footer .top_footer .col.footer_navigation ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 45px;
}
@media screen and (min-width: 1001px) {
  footer .top_footer .col.footer_navigation ul {
    gap: calc(100vw * 45 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.footer_navigation ul {
    gap: 45px;
  }
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.footer_navigation ul {
    flex-direction: column;
    gap: 20px;
  }
}
footer .top_footer .col.footer_navigation ul li a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  footer .top_footer .col.footer_navigation ul li a {
    font-size: calc(100vw * 14 / 1920);
  }
}
footer .top_footer .col.footer_navigation ul li a {
  letter-spacing: -0.03em;
  text-decoration: none;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  color: #777;
  white-space: nowrap;
}
footer .top_footer .col.footer_navigation ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.footer_navigation ul li a {
    font-size: 14px;
    letter-spacing: -0.03em;
    text-align: right;
  }
}
footer .top_footer .col.btn_col {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  gap: 50px;
}
@media screen and (min-width: 1001px) {
  footer .top_footer .col.btn_col {
    gap: calc(100vw * 50 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.btn_col {
    gap: 50px;
  }
}
footer .top_footer .col.btn_col .footer_note {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(10px, 10px + (20 - 10) * (100vw - 1000px) / (1920 - 1000), 20px);
}
@media screen and (min-width: 1921px) {
  footer .top_footer .col.btn_col .footer_note {
    font-size: calc(100vw * 20 / 1920);
  }
}
footer .top_footer .col.btn_col .footer_note {
  line-height: 150%;
  letter-spacing: -0.03em;
  text-align: right;
  text-transform: uppercase;
  color: rgba(188, 188, 188, 0.2);
  max-width: 250px;
}
@media screen and (min-width: 1001px) {
  footer .top_footer .col.btn_col .footer_note {
    max-width: calc(100vw * 250 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.btn_col .footer_note {
    max-width: 250px;
  }
}
@media screen and (max-width: 1000px) {
  footer .top_footer .col.btn_col {
    display: none;
  }
}
footer .bottom_footer {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 33px;
}
@media screen and (min-width: 1001px) {
  footer .bottom_footer {
    gap: calc(100vw * 33 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer {
    gap: 33px;
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer {
    align-items: flex-start;
    gap: 29px;
  }
}
footer .bottom_footer .description_footer {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(14px, 14px + (28 - 14) * (100vw - 1000px) / (1920 - 1000), 28px);
}
@media screen and (min-width: 1921px) {
  footer .bottom_footer .description_footer {
    font-size: calc(100vw * 28 / 1920);
  }
}
footer .bottom_footer .description_footer {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .description_footer {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    max-width: 230px;
  }
}
footer .bottom_footer .description_footer span {
  color: var(--textcolorsecond);
}
footer .bottom_footer .social_links ul {
  display: flex;
  flex-flow: row nowrap;
  gap: 43px;
}
@media screen and (min-width: 1001px) {
  footer .bottom_footer .social_links ul {
    gap: calc(100vw * 43 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul {
    gap: 43px;
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul {
    flex-direction: column;
    gap: 19px;
  }
}
footer .bottom_footer .social_links ul a {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
@media screen and (min-width: 1001px) {
  footer .bottom_footer .social_links ul a {
    gap: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul a {
    gap: 5px;
  }
}
footer .bottom_footer .social_links ul a {
  align-items: center;
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul a {
    gap: 11px;
  }
}
footer .bottom_footer .social_links ul a img {
  width: 20px;
}
@media screen and (min-width: 1001px) {
  footer .bottom_footer .social_links ul a img {
    width: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul a img {
    width: 20px;
  }
}
footer .bottom_footer .social_links ul a img {
  height: 20px;
}
@media screen and (min-width: 1001px) {
  footer .bottom_footer .social_links ul a img {
    height: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul a img {
    height: 20px;
  }
}
footer .bottom_footer .social_links ul a span {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  footer .bottom_footer .social_links ul a span {
    font-size: calc(100vw * 16 / 1920);
  }
}
footer .bottom_footer .social_links ul a span {
  line-height: 63%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #777;
  transform: translateY(0.2604166667vw);
}
@media screen and (max-width: 1000px) {
  footer .bottom_footer .social_links ul a span {
    font-size: 14px;
    line-height: 71%;
  }
}
footer .footer_info {
  margin-top: 45px;
}
@media screen and (min-width: 1001px) {
  footer .footer_info {
    margin-top: calc(100vw * 45 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .footer_info {
    margin-top: 45px;
  }
}
footer .footer_info {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(7px, 7px + (13 - 7) * (100vw - 1000px) / (1920 - 1000), 13px);
}
@media screen and (min-width: 1921px) {
  footer .footer_info {
    font-size: calc(100vw * 13 / 1920);
  }
}
footer .footer_info {
  line-height: 100%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-flow: column nowrap;
  gap: 7px;
  gap: 7px;
}
@media screen and (min-width: 1001px) {
  footer .footer_info {
    gap: calc(100vw * 7 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  footer .footer_info {
    gap: 7px;
  }
}
@media screen and (max-width: 1000px) {
  footer .footer_info {
    font-size: 10px;
  }
}
footer .footer_info p {
  color: rgba(119, 119, 119, 0.6);
  text-align: center;
}
footer .footer_info .logo_wrap {
  display: none;
}
@media screen and (max-width: 1000px) {
  footer .footer_info .logo_wrap {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.5;
    margin-bottom: 13px;
  }
  footer .footer_info .logo_wrap .logo {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.8);
  }
}

#mobile_menu {
  position: fixed;
  top: -120%;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: var(--blackcolor);
  transition: all 0.5s ease;
}
#mobile_menu.active {
  top: 0;
}
#mobile_menu .wrap_menu {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 24px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .wrap_menu {
    padding-top: calc(100vw * 24 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .wrap_menu {
    padding-top: 24px;
  }
}
#mobile_menu .wrap_menu {
  padding-right: 14px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .wrap_menu {
    padding-right: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .wrap_menu {
    padding-right: 14px;
  }
}
#mobile_menu .wrap_menu {
  padding-bottom: 46px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .wrap_menu {
    padding-bottom: calc(100vw * 46 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .wrap_menu {
    padding-bottom: 46px;
  }
}
#mobile_menu .wrap_menu {
  padding-left: 14px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .wrap_menu {
    padding-left: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .wrap_menu {
    padding-left: 14px;
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .wrap_menu {
    padding: 24px 14px 46px 14px;
  }
}
#mobile_menu .header_menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
#mobile_menu .header_menu button svg {
  width: 30px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .header_menu button svg {
    width: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .header_menu button svg {
    width: 30px;
  }
}
#mobile_menu .header_menu button svg {
  height: 30px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .header_menu button svg {
    height: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .header_menu button svg {
    height: 30px;
  }
}
#mobile_menu .navigation_block ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 40px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .navigation_block ul {
    gap: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .navigation_block ul {
    gap: 40px;
  }
}
#mobile_menu .navigation_block ul {
  align-items: center;
}
@media screen and (max-width: 1000px) {
  #mobile_menu .navigation_block ul {
    gap: 40px;
  }
}
#mobile_menu .navigation_block ul li a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(12.6px, 12.6px + (18 - 12.6) * (100vw - 1000px) / (1920 - 1000), 18px);
}
@media screen and (min-width: 1921px) {
  #mobile_menu .navigation_block ul li a {
    font-size: calc(100vw * 18 / 1920);
  }
}
#mobile_menu .navigation_block ul li a {
  letter-spacing: -0.03em;
  text-align: center;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  color: #777;
}
@media screen and (max-width: 1000px) {
  #mobile_menu .navigation_block ul li a {
    font-size: 18px;
  }
}
#mobile_menu .social_links {
  display: flex;
  flex-flow: column nowrap;
  gap: 52px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .social_links {
    gap: calc(100vw * 52 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links {
    gap: 52px;
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links {
    gap: 52px;
  }
}
#mobile_menu .social_links .btn_block {
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .social_links .btn_block {
    gap: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links .btn_block {
    gap: 10px;
  }
}
#mobile_menu .social_links .btn_block {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links .btn_block {
    gap: 10px;
  }
}
#mobile_menu .social_links .btn {
  align-self: center;
}
#mobile_menu .social_links ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .social_links ul {
    gap: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links ul {
    gap: 40px;
  }
}
#mobile_menu .social_links ul img {
  width: 20px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .social_links ul img {
    width: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links ul img {
    width: 20px;
  }
}
#mobile_menu .social_links ul img {
  height: 20px;
}
@media screen and (min-width: 1001px) {
  #mobile_menu .social_links ul img {
    height: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links ul img {
    height: 20px;
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links ul img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1000px) {
  #mobile_menu .social_links ul {
    gap: 40px;
  }
}

:root {
  --accentcolor: #57ffa6;
  --blackcolor: #010d0f;
  --blurcolor: #2b303e;
  --textcolorwhhite: #cecece;
  --textcolorsecond: #1e4b5b;
  --texcolorwhitesecond: #bcbcbc;
  --colortitlesecond: #1e4b5b;
  --colortitlefirst: #cecece;
  --font-family: "Helvetica Neue", sans-serif;
  --second-family: "Cascadia Mono", sans-serif;
  --mono-family: "JetBrains Mono", monospace;
}

html,
body {
  background: var(--blackcolor);
}

.description_header {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}
@media screen and (min-width: 1001px) {
  .description_header {
    gap: calc(100vw * 16 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .description_header {
    gap: 16px;
  }
}
.description_header.right p {
  text-align: right;
}
.description_header.left p {
  text-align: left;
}
.description_header p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .description_header p {
    font-size: calc(100vw * 16 / 1920);
  }
}
.description_header p {
  line-height: 163%;
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
  margin-top: -6px;
}
@media screen and (min-width: 1001px) {
  .description_header p {
    margin-top: calc(100vw * -6 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .description_header p {
    margin-top: -6px;
  }
}
.description_header p {
  margin-bottom: -8px;
}
@media screen and (min-width: 1001px) {
  .description_header p {
    margin-bottom: calc(100vw * -8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .description_header p {
    margin-bottom: -8px;
  }
}
@media screen and (max-width: 1000px) {
  .description_header p {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
  }
}
.description_header .side_line {
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .description_header .side_line {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .description_header .side_line {
    width: 2px;
  }
}
.description_header .side_line {
  background: var(--accentcolor);
}

.background_top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 1580px;
}
@media screen and (min-width: 1001px) {
  .background_top {
    height: calc(100vw * 1580 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .background_top {
    height: 1580px;
  }
}
@media screen and (max-width: 1000px) {
  .background_top {
    height: 800px;
  }
}
.background_top .bg_wrap {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .background_top .bg_wrap {
    height: 100%;
  }
}
.background_top .radial_gradient {
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgb(18, 43, 52) 0%, rgba(18, 43, 52, 0) 100%);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}
.background_top img.bg_lines {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.hero_section {
  margin-top: 180px;
}
@media screen and (min-width: 1001px) {
  .hero_section {
    margin-top: calc(100vw * 180 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section {
    margin-top: 180px;
  }
}
.hero_section {
  height: 100vh;
}
@media screen and (max-width: 1000px) {
  .hero_section {
    margin-top: 20vh;
    height: 80vh;
  }
}
.hero_section .wrap_section {
  position: relative;
}
.hero_section .title_wrap {
  text-align: right;
  width: fit-content;
  margin-left: 70px;
}
@media screen and (min-width: 1001px) {
  .hero_section .title_wrap {
    margin-left: calc(100vw * 70 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .title_wrap {
    margin-left: 70px;
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .title_wrap {
    margin-left: 0;
    width: 100%;
  }
}
.hero_section .title_wrap h1 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(30px, 30px + (60 - 30) * (100vw - 1000px) / (1920 - 1000), 60px);
}
@media screen and (min-width: 1921px) {
  .hero_section .title_wrap h1 {
    font-size: calc(100vw * 60 / 1920);
  }
}
.hero_section .title_wrap h1 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #bdbcbc;
}
@media screen and (max-width: 1000px) {
  .hero_section .title_wrap h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
  }
}
.hero_section .title_wrap .description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .hero_section .title_wrap .description {
    font-size: calc(100vw * 14 / 1920);
  }
}
.hero_section .title_wrap .description {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .hero_section .title_wrap .description {
    font-size: 14px;
    text-align: center;
  }
}
.hero_section .mac_block {
  position: absolute;
  top: 120px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_block {
    top: calc(100vw * 120 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block {
    top: 120px;
  }
}
.hero_section .mac_block {
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
  width: 1093px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_block {
    width: calc(100vw * 1093 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block {
    width: 1093px;
  }
}
.hero_section .mac_block {
  height: 706px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_block {
    height: calc(100vw * 706 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block {
    height: 706px;
  }
}
.hero_section .mac_block {
  transition: transform 1s ease;
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block {
    width: 100%;
    height: auto;
    top: 120px;
  }
}
.hero_section .mac_block img {
  width: 100%;
  height: 100%;
}
.hero_section .mac_block.loading_event {
  position: fixed;
  top: 300px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_block.loading_event {
    top: calc(100vw * 300 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block.loading_event {
    top: 300px;
  }
}
.hero_section .mac_block.loading_event {
  transform: translateX(-50%) scale(1.7);
  z-index: 55;
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_block.loading_event {
    transform: translateX(-50%);
  }
}
.hero_section .mac_swiper {
  width: 100%;
  padding-top: 90px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_swiper {
    padding-top: calc(100vw * 90 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_swiper {
    padding-top: 90px;
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_swiper {
    padding-top: 100px;
  }
}
@media screen and (max-width: 780px) {
  .hero_section .mac_swiper {
    padding-top: 90px;
  }
}
@media screen and (max-width: 500px) {
  .hero_section .mac_swiper {
    padding-top: 80px;
  }
}
.hero_section .mac_swiper .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 883px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_swiper .swiper-slide {
    width: calc(100vw * 883 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_swiper .swiper-slide {
    width: 883px;
  }
}
.hero_section .mac_swiper .swiper-slide {
  height: 496px;
}
@media screen and (min-width: 1001px) {
  .hero_section .mac_swiper .swiper-slide {
    height: calc(100vw * 496 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_swiper .swiper-slide {
    height: 496px;
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .mac_swiper .swiper-slide {
    aspect-ratio: 18/10;
    width: 82%;
    height: auto;
  }
}
.hero_section .mac_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity 0.3s ease;
}
.hero_section .mac_swiper .swiper-slide.swiper-slide-prev img, .hero_section .mac_swiper .swiper-slide.swiper-slide-next img {
  opacity: 30%;
}

.event_back_block {
  pointer-events: none;
}
.event_back_block.loading_event .terminal {
  opacity: 1;
  transform: translateX(-50%) scale(1.7);
}
@media screen and (max-width: 1000px) {
  .event_back_block.loading_event .terminal {
    transform: translateX(-50%);
  }
}
.event_back_block.loading_event .background_start_event {
  opacity: 1;
}
.event_back_block .background_start_event {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 53;
  background: var(--blackcolor);
  transition: all 1s ease;
  opacity: 0;
}
.event_back_block .terminal {
  pointer-events: none;
  position: fixed;
  transition: all 0.5s ease;
  opacity: 0;
  top: 270px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal {
    top: calc(100vw * 270 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    top: 270px;
  }
}
.event_back_block .terminal {
  width: 883px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal {
    width: calc(100vw * 883 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    width: 883px;
  }
}
.event_back_block .terminal {
  height: 496px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal {
    height: calc(100vw * 496 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    height: 496px;
  }
}
.event_back_block .terminal {
  z-index: 54;
  padding: 20px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal {
    padding: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    padding: 20px;
  }
}
.event_back_block .terminal {
  padding-top: 40px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal {
    padding-top: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    padding-top: 40px;
  }
}
.event_back_block .terminal {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal {
    top: 340px;
    padding: 30px;
    width: 80%;
    height: 47.619047619vw;
  }
}
@media screen and (max-width: 600px) {
  .event_back_block .terminal {
    padding-top: 0px;
    padding-left: 10px;
  }
}
.event_back_block .terminal .press_enter,
.event_back_block .terminal .cursor,
.event_back_block .terminal .text_wrap,
.event_back_block .terminal .text_terminal {
  font-family: var(--mono-family);
  font-weight: 200;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .event_back_block .terminal .press_enter,
  .event_back_block .terminal .cursor,
  .event_back_block .terminal .text_wrap,
  .event_back_block .terminal .text_terminal {
    font-size: calc(100vw * 14 / 1920);
  }
}
.event_back_block .terminal .press_enter,
.event_back_block .terminal .cursor,
.event_back_block .terminal .text_wrap,
.event_back_block .terminal .text_terminal {
  letter-spacing: -0.03em;
  color: var(--accentcolor);
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal .press_enter,
  .event_back_block .terminal .cursor,
  .event_back_block .terminal .text_wrap,
  .event_back_block .terminal .text_terminal {
    font-size: 12px;
  }
}
.event_back_block .terminal .press_enter {
  margin-top: 220px;
}
@media screen and (min-width: 1001px) {
  .event_back_block .terminal .press_enter {
    margin-top: calc(100vw * 220 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal .press_enter {
    margin-top: 220px;
  }
}
.event_back_block .terminal .press_enter {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-transform: uppercase;
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .event_back_block .terminal .press_enter {
    margin-top: 16.6666666667vw;
  }
}

.services_section {
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .services_section {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .services_section {
    padding-top: 70px;
  }
  .services_section .line_wrap {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .services_section .line_wrap .marker {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #214f5e;
  }
  .services_section .line_wrap .line_vertical {
    width: 2px;
    height: 90px;
    background: repeating-linear-gradient(to bottom, #214f5e 0 6px, transparent 6px 12px);
  }
}
.services_section .wrap_section {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .services_section .wrap_section {
    overflow: hidden;
  }
}
.services_section .header_section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .services_section .header_section {
    flex-direction: column;
    gap: 40px;
  }
}
.services_section .header_section .col.title {
  width: 560px;
}
@media screen and (min-width: 1001px) {
  .services_section .header_section .col.title {
    width: calc(100vw * 560 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .header_section .col.title {
    width: 560px;
  }
}
@media screen and (max-width: 1000px) {
  .services_section .header_section .col.title {
    width: 100%;
  }
}
.services_section .header_section .col.description {
  width: 424px;
}
@media screen and (min-width: 1001px) {
  .services_section .header_section .col.description {
    width: calc(100vw * 424 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .header_section .col.description {
    width: 424px;
  }
}
@media screen and (max-width: 1000px) {
  .services_section .header_section .col.description {
    width: 100%;
    max-width: 291px;
    margin-left: auto;
  }
}
.services_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  font-size: clamp(25px, 25px + (50 - 25) * (100vw - 1000px) / (1920 - 1000), 50px);
}
@media screen and (min-width: 1921px) {
  .services_section h2 {
    font-size: calc(100vw * 50 / 1920);
  }
}
.services_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .services_section h2 {
    font-size: 32px;
    max-width: 284px;
  }
}
.services_section h2 span {
  color: var(--textcolorsecond);
}
.services_section .content_block {
  position: relative;
  padding-top: 314px;
}
@media screen and (min-width: 1001px) {
  .services_section .content_block {
    padding-top: calc(100vw * 314 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .content_block {
    padding-top: 314px;
  }
}
.services_section .content_block {
  padding-bottom: 540px;
}
@media screen and (min-width: 1001px) {
  .services_section .content_block {
    padding-bottom: calc(100vw * 540 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .content_block {
    padding-bottom: 540px;
  }
}
@media screen and (max-width: 1000px) {
  .services_section .content_block {
    padding-top: 90px;
    padding-bottom: 230px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }
}
.services_section .main_card {
  display: flex;
  gap: 19px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    gap: calc(100vw * 19 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    gap: 19px;
  }
}
.services_section .main_card {
  flex-flow: column nowrap;
  align-items: center;
  padding-left: 100px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    padding-left: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    padding-left: 100px;
  }
}
.services_section .main_card {
  padding-right: 100px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    padding-right: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    padding-right: 100px;
  }
}
.services_section .main_card {
  padding-top: 66px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    padding-top: calc(100vw * 66 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    padding-top: 66px;
  }
}
.services_section .main_card {
  padding-bottom: 44px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    padding-bottom: calc(100vw * 44 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    padding-bottom: 44px;
  }
}
.services_section .main_card {
  width: 555px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    width: calc(100vw * 555 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    width: 555px;
  }
}
.services_section .main_card {
  border: 3px solid rgba(87, 255, 166, 0.2);
  border-radius: 40px;
}
@media screen and (min-width: 1001px) {
  .services_section .main_card {
    border-radius: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    border-radius: 40px;
  }
}
.services_section .main_card {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .services_section .main_card {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    padding: 44px 51px;
    padding-bottom: 48px;
    gap: 15px;
  }
  .services_section .main_card .btn {
    margin-top: 33px;
  }
}
.services_section .main_card h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(30px, 30px + (60 - 30) * (100vw - 1000px) / (1920 - 1000), 60px);
}
@media screen and (min-width: 1921px) {
  .services_section .main_card h3 {
    font-size: calc(100vw * 60 / 1920);
  }
}
.services_section .main_card h3 {
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--accentcolor);
}
@media screen and (max-width: 1000px) {
  .services_section .main_card h3 {
    font-size: 32px;
  }
}
.services_section .main_card .description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .services_section .main_card .description {
    font-size: calc(100vw * 14 / 1920);
  }
}
.services_section .main_card .description {
  line-height: 150%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .services_section .main_card .description {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0%;
  }
}
.services_section .child_card {
  position: absolute;
  width: 214px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card {
    width: calc(100vw * 214 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card {
    width: 214px;
  }
}
.services_section .child_card {
  height: 214px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card {
    height: calc(100vw * 214 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card {
    height: 214px;
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card {
    position: static !important;
  }
}
.services_section .child_card.active .wrap_card {
  transform: scale(1.6);
  z-index: 4;
}
.services_section .child_card.active .wrap_card .description {
  opacity: 1;
  height: auto;
}
.services_section .child_card.active svg.arc_inner path {
  stroke: rgb(16, 61, 37);
}
.services_section .child_card.active svg.arc_outer path {
  stroke: rgb(12, 43, 34);
}
@media screen and (min-width: 1001px) {
  .services_section .child_card:hover .wrap_card {
    transform: scale(1.6);
    z-index: 4;
  }
  .services_section .child_card:hover .wrap_card .description {
    opacity: 1;
    height: auto;
  }
  .services_section .child_card:hover svg.arc_inner path {
    stroke: rgb(16, 61, 37);
  }
  .services_section .child_card:hover svg.arc_outer path {
    stroke: rgb(12, 43, 34);
  }
}
.services_section .child_card svg.line {
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .services_section .child_card svg.line {
    display: none;
  }
}
.services_section .child_card.first {
  position: absolute;
  top: 180px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.first {
    top: calc(100vw * 180 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.first {
    top: 180px;
  }
}
.services_section .child_card.first {
  left: 170px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.first {
    left: calc(100vw * 170 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.first {
    left: 170px;
  }
}
.services_section .child_card.first svg.line {
  position: absolute;
  top: 218px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.first svg.line {
    top: calc(100vw * 218 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.first svg.line {
    top: 218px;
  }
}
.services_section .child_card.first svg.line {
  left: 50%;
  width: 343px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.first svg.line {
    width: calc(100vw * 343 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.first svg.line {
    width: 343px;
  }
}
.services_section .child_card.first svg.line {
  height: 180px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.first svg.line {
    height: calc(100vw * 180 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.first svg.line {
    height: 180px;
  }
}
.services_section .child_card.second {
  top: 40px;
  right: 145px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.second {
    right: calc(100vw * 145 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.second {
    right: 145px;
  }
}
.services_section .child_card.second svg.line {
  position: absolute;
  top: 222px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.second svg.line {
    top: calc(100vw * 222 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.second svg.line {
    top: 222px;
  }
}
.services_section .child_card.second svg.line {
  left: -260px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.second svg.line {
    left: calc(100vw * -260 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.second svg.line {
    left: -260px;
  }
}
.services_section .child_card.second svg.line {
  width: 377px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.second svg.line {
    width: calc(100vw * 377 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.second svg.line {
    width: 377px;
  }
}
.services_section .child_card.second svg.line {
  height: 252px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.second svg.line {
    height: calc(100vw * 252 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.second svg.line {
    height: 252px;
  }
}
.services_section .child_card.third {
  right: 415px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third {
    right: calc(100vw * 415 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third {
    right: 415px;
  }
}
.services_section .child_card.third {
  top: 789px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third {
    top: calc(100vw * 789 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third {
    top: 789px;
  }
}
.services_section .child_card.third svg.line {
  position: absolute;
  top: -91px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third svg.line {
    top: calc(100vw * -91 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third svg.line {
    top: -91px;
  }
}
.services_section .child_card.third svg.line {
  left: -344px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third svg.line {
    left: calc(100vw * -344 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third svg.line {
    left: -344px;
  }
}
.services_section .child_card.third svg.line {
  width: 338px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third svg.line {
    width: calc(100vw * 338 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third svg.line {
    width: 338px;
  }
}
.services_section .child_card.third svg.line {
  height: 210px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card.third svg.line {
    height: calc(100vw * 210 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card.third svg.line {
    height: 210px;
  }
}
.services_section .child_card .wrap_card {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card {
    gap: calc(100vw * 8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card {
    gap: 8px;
  }
}
.services_section .child_card .wrap_card {
  transition: all 0.3s ease;
}
.services_section .child_card .wrap_card h3,
.services_section .child_card .wrap_card .description {
  position: relative;
  z-index: 2;
}
.services_section .child_card .wrap_card h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .services_section .child_card .wrap_card h3 {
    font-size: calc(100vw * 14 / 1920);
  }
}
.services_section .child_card .wrap_card h3 {
  line-height: 120%;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card h3 {
    font-size: 14px;
  }
}
.services_section .child_card .wrap_card .description {
  opacity: 0;
  height: 0;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(4px, 4px + (7 - 4) * (100vw - 1000px) / (1920 - 1000), 7px);
}
@media screen and (min-width: 1921px) {
  .services_section .child_card .wrap_card .description {
    font-size: calc(100vw * 7 / 1920);
  }
}
.services_section .child_card .wrap_card .description {
  max-width: 90px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card .description {
    max-width: calc(100vw * 90 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card .description {
    max-width: 90px;
  }
}
.services_section .child_card .wrap_card .description {
  line-height: 150%;
  text-align: center;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card .description {
    font-weight: 300;
    font-size: 8px;
    color: var(--textcolorwhhite);
  }
}
.services_section .child_card .wrap_card svg.arc_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: rotate 10s linear infinite;
  width: 190px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card svg.arc_inner {
    width: calc(100vw * 190 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card svg.arc_inner {
    width: 190px;
  }
}
.services_section .child_card .wrap_card svg.arc_inner {
  height: 190px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card svg.arc_inner {
    height: calc(100vw * 190 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card svg.arc_inner {
    height: 190px;
  }
}
.services_section .child_card .wrap_card svg.arc_outer {
  position: absolute;
  top: 50%;
  left: 50%;
  animation: rotate 30s linear infinite reverse;
  width: 213px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card svg.arc_outer {
    width: calc(100vw * 213 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card svg.arc_outer {
    width: 213px;
  }
}
.services_section .child_card .wrap_card svg.arc_outer {
  height: 214px;
}
@media screen and (min-width: 1001px) {
  .services_section .child_card .wrap_card svg.arc_outer {
    height: calc(100vw * 214 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .services_section .child_card .wrap_card svg.arc_outer {
    height: 214px;
  }
}

.selected_projects_section {
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section {
    padding-top: 100px;
  }
}
.selected_projects_section {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .selected_projects_section {
    padding-top: 70px;
  }
}
.selected_projects_section .header_section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  width: 92%;
}
.selected_projects_section .header_section .col.title {
  width: 535px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .header_section .col.title {
    width: calc(100vw * 535 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .header_section .col.title {
    width: 535px;
  }
}
.selected_projects_section .header_section .col.title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(40px, 40px + (80 - 40) * (100vw - 1000px) / (1920 - 1000), 80px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .header_section .col.title {
    font-size: calc(100vw * 80 / 1920);
  }
}
.selected_projects_section .header_section .col.title {
  line-height: 90%;
  letter-spacing: -0.03em;
  text-align: right;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
  margin-left: auto;
}
.selected_projects_section .header_section .col.title span {
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .header_section .col.title {
    font-size: 32px;
    width: 100%;
  }
  .selected_projects_section .header_section .col.title h2 {
    text-align: right;
    max-width: 270px;
    margin-left: auto;
  }
}
.selected_projects_section .btn_slider_block {
  position: absolute;
  bottom: 27px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .btn_slider_block {
    bottom: calc(100vw * 27 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    bottom: 27px;
  }
}
.selected_projects_section .btn_slider_block {
  right: 110px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .btn_slider_block {
    right: calc(100vw * 110 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    right: 110px;
  }
}
.selected_projects_section .btn_slider_block {
  z-index: 10;
  background: white;
  padding: 10px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .btn_slider_block {
    padding: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    padding: 10px;
  }
}
.selected_projects_section .btn_slider_block {
  border-radius: 30px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .btn_slider_block {
    border-radius: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    border-radius: 30px;
  }
}
.selected_projects_section .btn_slider_block {
  display: flex;
  flex-flow: row nowrap;
}
.selected_projects_section .btn_slider_block.mobile {
  display: none;
  position: static;
  background: none;
}
.selected_projects_section .btn_slider_block {
  gap: 9px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .btn_slider_block {
    gap: calc(100vw * 9 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    gap: 9px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .btn_slider_block {
    display: none;
  }
  .selected_projects_section .btn_slider_block.mobile {
    display: flex;
    margin-top: 24px;
    margin-left: auto;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-end;
  }
}
.selected_projects_section .content_block {
  margin-top: 65px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block {
    margin-top: calc(100vw * 65 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block {
    margin-top: 36px;
  }
}
.selected_projects_section .content_block .project_slider {
  width: 100%;
  overflow: hidden;
}
.selected_projects_section .content_block .project_card {
  position: relative;
  height: 956px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card {
    height: calc(100vw * 956 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card {
    height: 956px;
  }
}
.selected_projects_section .content_block .project_card {
  width: 92%;
  border: 1px solid var(--textcolorsecond);
  border-radius: 20px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card {
    border-radius: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card {
    border-radius: 20px;
  }
}
.selected_projects_section .content_block .project_card {
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card {
    height: 80vh;
  }
}
.selected_projects_section .content_block .project_card .card_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .card_cover {
    filter: blur(3px);
    transform: scale(1.02);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: absolute;
  inset: 0;
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-top: 100px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap {
  padding-right: 56px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-right: calc(100vw * 56 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-right: 56px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap {
  padding-bottom: 60px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-bottom: calc(100vw * 60 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-bottom: 60px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap {
  padding-left: 38px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-left: calc(100vw * 38 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    padding-left: 38px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap {
  background: linear-gradient(90deg, #000 33%, rgba(0, 0, 0, 0) 74.33%);
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap {
    justify-content: flex-end;
    padding: 20px 15px 35px 15px;
    background: linear-gradient(0deg, #000 50%, rgba(0, 0, 0, 0) 100%);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block {
  margin-left: 18px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block {
    margin-left: calc(100vw * 18 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block {
    margin-left: 18px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block {
  width: 450px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block {
    width: calc(100vw * 450 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block {
    width: 450px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block {
    width: 95%;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(40px, 40px + (80 - 40) * (100vw - 1000px) / (1920 - 1000), 80px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .title {
    font-size: calc(100vw * 80 / 1920);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .title {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .title {
    font-size: 40px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .post_title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .post_title {
    font-size: calc(100vw * 14 / 1920);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .post_title {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--texcolorwhitesecond);
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .post_title {
    font-size: 8px;
    letter-spacing: 0%;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
    font-size: calc(100vw * 16 / 1920);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
  line-height: 160%;
  color: #fff;
  margin-top: 81px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
    margin-top: calc(100vw * 81 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
    margin-top: 81px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .description {
    margin-top: 22px;
    font-size: 14px;
    line-height: 180%;
    color: rgba(255, 255, 255, 0.8);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
    font-size: calc(100vw * 14 / 1920);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
  line-height: 150%;
  letter-spacing: -0.03em;
  color: var(--accentcolor);
  margin-top: 42px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
    margin-top: calc(100vw * 42 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
    margin-top: 42px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .steck {
    font-size: 14px;
    letter-spacing: 0%;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
    gap: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
    gap: 5px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
  align-items: center;
  margin-top: 10px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
    margin-top: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block {
    display: none;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block a {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block a {
    font-size: calc(100vw * 14 / 1920);
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block a {
  line-height: 150%;
  letter-spacing: -0.03em;
  text-decoration: underline;
  color: #fff;
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block a:hover {
  text-decoration: none;
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
  width: 8px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
    width: calc(100vw * 8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
    width: 8px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
  height: 10px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
    height: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .top_block .link_block svg {
    height: 10px;
  }
}
.selected_projects_section .content_block .project_card .content_card_wrap .btn_block {
  display: flex;
  flex-flow: row nowrap;
  gap: 15px;
}
@media screen and (min-width: 1001px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .btn_block {
    gap: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .btn_block {
    gap: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .selected_projects_section .content_block .project_card .content_card_wrap .btn_block {
    margin-top: 34px;
    flex-direction: column;
    gap: 11px;
    align-items: center;
  }
  .selected_projects_section .content_block .project_card .content_card_wrap .btn_block .btn {
    width: 218px;
  }
}

.expertize_section {
  margin-top: 200px;
}
@media screen and (min-width: 1001px) {
  .expertize_section {
    margin-top: calc(100vw * 200 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section {
    margin-top: 106px;
    padding-top: 20px;
  }
}
.expertize_section .section_bg {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .expertize_section .section_bg {
    object-position: left;
    height: 100%;
    height: 1250px;
  }
}
.expertize_section .wrap_section {
  position: relative;
  background: radial-gradient(104.42% 66.33% at 100% 100%, rgba(87, 255, 166, 0.06) 0%, rgba(206, 206, 206, 0.01) 100%);
}
@media screen and (max-width: 1000px) {
  .expertize_section .wrap_section {
    padding-bottom: 75px;
  }
}
.expertize_section .content_block {
  position: absolute;
  inset: 0;
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .content_block {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .content_block {
    padding-top: 100px;
  }
}
.expertize_section .content_block {
  padding-left: 52px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .content_block {
    padding-left: calc(100vw * 52 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .content_block {
    padding-left: 52px;
  }
}
.expertize_section .content_block {
  padding-bottom: 77px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .content_block {
    padding-bottom: calc(100vw * 77 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .content_block {
    padding-bottom: 77px;
  }
}
.expertize_section .content_block {
  padding-right: 92px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .content_block {
    padding-right: calc(100vw * 92 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .content_block {
    padding-right: 92px;
  }
}
.expertize_section .content_block {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .expertize_section .content_block {
    padding: 47px 14px 68px 14px;
    justify-content: flex-start;
    gap: 105px;
  }
}
.expertize_section .header_section {
  display: flex;
  flex-flow: column nowrap;
  gap: 54px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .header_section {
    gap: calc(100vw * 54 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .header_section {
    gap: 54px;
  }
}
.expertize_section .header_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 40px;
  font-size: clamp(20px, 20px + (40 - 20) * (100vw - 1000px) / (1920 - 1000), 40px);
}
@media screen and (min-width: 1921px) {
  .expertize_section .header_section h2 {
    font-size: calc(100vw * 40 / 1920);
  }
}
.expertize_section .header_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .expertize_section .header_section h2 {
    font-size: 32px;
  }
}
.expertize_section .header_section h2 span {
  color: var(--textcolorsecond);
}
.expertize_section .header_section .description_header {
  width: 454px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .header_section .description_header {
    width: calc(100vw * 454 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .header_section .description_header {
    width: 454px;
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .header_section .description_header {
    width: 100%;
  }
  .expertize_section .header_section .description_header p {
    max-width: 335px;
  }
}
.expertize_section .card_block {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block {
    gap: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block {
    gap: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block {
    flex-direction: column;
    gap: 35px;
  }
}
.expertize_section .card_block .card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  height: 197px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card {
    height: calc(100vw * 197 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card {
    height: 197px;
  }
}
.expertize_section .card_block .card {
  flex: 1;
  border: 1px solid var(--accentcolor);
  border-radius: 15px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card {
    border-radius: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card {
    border-radius: 15px;
  }
}
.expertize_section .card_block .card {
  padding: 25px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card {
    padding: calc(100vw * 25 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card {
    padding: 25px;
  }
}
.expertize_section .card_block .card {
  background: var(--blackcolor);
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card {
    width: 100%;
    padding: 30px 23px;
    max-width: 450px;
    gap: 49px;
  }
}
.expertize_section .card_block .card .title_block {
  display: flex;
  flex-flow: row nowrap;
  gap: 33px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card .title_block {
    gap: calc(100vw * 33 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .title_block {
    gap: 33px;
  }
}
.expertize_section .card_block .card .title_block {
  align-items: flex-start;
}
.expertize_section .card_block .card .title_block img {
  width: 60px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card .title_block img {
    width: calc(100vw * 60 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .title_block img {
    width: 60px;
  }
}
.expertize_section .card_block .card .title_block img {
  height: 60px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card .title_block img {
    height: calc(100vw * 60 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .title_block img {
    height: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .title_block img {
    width: 35px;
    height: 35px;
  }
}
.expertize_section .card_block .card .title_block h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(15px, 15px + (30 - 15) * (100vw - 1000px) / (1920 - 1000), 30px);
}
@media screen and (min-width: 1921px) {
  .expertize_section .card_block .card .title_block h3 {
    font-size: calc(100vw * 30 / 1920);
  }
}
.expertize_section .card_block .card .title_block h3 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .title_block h3 {
    font-size: 20px;
  }
}
.expertize_section .card_block .card .description {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .expertize_section .card_block .card .description {
    font-size: calc(100vw * 16 / 1920);
  }
}
.expertize_section .card_block .card .description {
  line-height: 150%;
  color: var(--accentcolor);
  max-width: 260px;
}
@media screen and (min-width: 1001px) {
  .expertize_section .card_block .card .description {
    max-width: calc(100vw * 260 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .description {
    max-width: 260px;
  }
}
@media screen and (max-width: 1000px) {
  .expertize_section .card_block .card .description {
    font-family: var(--font-family);
    font-weight: 200;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: var(--accentcolor);
    max-width: 309px;
  }
}

.process_section {
  position: relative;
  z-index: 2;
  margin-top: 200px;
}
@media screen and (min-width: 1001px) {
  .process_section {
    margin-top: calc(100vw * 200 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section {
    margin-top: 200px;
  }
}
.process_section {
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .process_section {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .process_section {
    padding-top: 70px;
  }
}
.process_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(40px, 40px + (80 - 40) * (100vw - 1000px) / (1920 - 1000), 80px);
}
@media screen and (min-width: 1921px) {
  .process_section h2 {
    font-size: calc(100vw * 80 / 1920);
  }
}
.process_section h2 {
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .process_section h2 {
    font-size: 36px;
  }
}
.process_section h2 span {
  color: var(--textcolorsecond);
}
.process_section .steps_block {
  margin-top: 150px;
}
@media screen and (min-width: 1001px) {
  .process_section .steps_block {
    margin-top: calc(100vw * 150 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .steps_block {
    margin-top: 150px;
  }
}
.process_section .steps_block {
  margin-left: 100px;
}
@media screen and (min-width: 1001px) {
  .process_section .steps_block {
    margin-left: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .steps_block {
    margin-left: 100px;
  }
}
.process_section .steps_block {
  margin-right: 150px;
}
@media screen and (min-width: 1001px) {
  .process_section .steps_block {
    margin-right: calc(100vw * 150 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .steps_block {
    margin-right: 150px;
  }
}
.process_section .steps_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .process_section .steps_block {
    width: 92%;
    margin: 0;
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
  }
}
.process_section .single_card_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 49px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card_wrap {
    gap: calc(100vw * 49 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card_wrap {
    gap: 49px;
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card_wrap {
    perspective: 1000px;
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap {
    display: none;
  }
}
.process_section .col.dotted_wrap .dotted_line {
  flex-shrink: 0;
  position: relative;
  height: 2354px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.dotted_wrap .dotted_line {
    height: calc(100vw * 2354 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap .dotted_line {
    height: 2354px;
  }
}
.process_section .col.dotted_wrap .dotted_line {
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.dotted_wrap .dotted_line {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap .dotted_line {
    width: 2px;
  }
}
.process_section .col.dotted_wrap .dotted_line {
  background: repeating-linear-gradient(to bottom, #214f5e 0 0.3125vw, transparent 0.3125vw 0.625vw);
}
.process_section .col.dotted_wrap .dotted_line_accent_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.dotted_wrap .dotted_line_accent_wrap {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap .dotted_line_accent_wrap {
    width: 2px;
  }
}
.process_section .col.dotted_wrap .dotted_line_accent_wrap {
  height: 0;
  overflow: hidden;
}
.process_section .col.dotted_wrap .dotted_line_accent {
  flex-shrink: 0;
  height: 2354px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.dotted_wrap .dotted_line_accent {
    height: calc(100vw * 2354 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap .dotted_line_accent {
    height: 2354px;
  }
}
.process_section .col.dotted_wrap .dotted_line_accent {
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.dotted_wrap .dotted_line_accent {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.dotted_wrap .dotted_line_accent {
    width: 2px;
  }
}
.process_section .col.dotted_wrap .dotted_line_accent {
  background: repeating-linear-gradient(to bottom, var(--accentcolor) 0 0.3125vw, transparent 0.3125vw 0.625vw);
}
.process_section .col.cards_wrap {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  gap: 177px;
}
@media screen and (min-width: 1001px) {
  .process_section .col.cards_wrap {
    gap: calc(100vw * 177 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.cards_wrap {
    gap: 177px;
  }
}
@media screen and (max-width: 1000px) {
  .process_section .col.cards_wrap {
    gap: 62px;
    align-items: center;
  }
}
.process_section .marker_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block {
    display: none;
  }
}
.process_section .marker_block {
  gap: 14px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block {
    gap: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block {
    gap: 14px;
  }
}
.process_section .marker_block .dottted_line_gorizontal {
  height: 2px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .dottted_line_gorizontal {
    height: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .dottted_line_gorizontal {
    height: 2px;
  }
}
.process_section .marker_block .dottted_line_gorizontal {
  width: 44px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .dottted_line_gorizontal {
    width: calc(100vw * 44 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .dottted_line_gorizontal {
    width: 44px;
  }
}
.process_section .marker_block .dottted_line_gorizontal {
  transition: all 0.3s ease;
  background: repeating-linear-gradient(to right, #214f5e 0 0.3125vw, transparent 0.3125vw 0.625vw);
}
.process_section .marker_block.active .marker_outer {
  transform: scale(1.4);
  border-color: var(--accentcolor);
}
.process_section .marker_block.active .marker_outer .marker_inner {
  opacity: 1;
  background-color: var(--accentcolor);
}
.process_section .marker_block.active .dottted_line_gorizontal {
  background: repeating-linear-gradient(to right, var(--accentcolor) 0 0.3125vw, transparent 0.3125vw 0.625vw);
}
.process_section .marker_block .marker_outer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .marker_outer {
    width: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .marker_outer {
    width: 30px;
  }
}
.process_section .marker_block .marker_outer {
  height: 30px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .marker_outer {
    height: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .marker_outer {
    height: 30px;
  }
}
.process_section .marker_block .marker_outer {
  border-radius: 100%;
  border: 3px solid var(--textcolorsecond);
  border-width: 3px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .marker_outer {
    border-width: calc(100vw * 3 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .marker_outer {
    border-width: 3px;
  }
}
.process_section .marker_block .marker_outer .marker_inner {
  width: 15px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .marker_outer .marker_inner {
    width: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .marker_outer .marker_inner {
    width: 15px;
  }
}
.process_section .marker_block .marker_outer .marker_inner {
  height: 15px;
}
@media screen and (min-width: 1001px) {
  .process_section .marker_block .marker_outer .marker_inner {
    height: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .marker_block .marker_outer .marker_inner {
    height: 15px;
  }
}
.process_section .marker_block .marker_outer .marker_inner {
  border-radius: 100%;
  background-color: var(--textcolorsecond);
  opacity: 0;
  transition: all 0.3s ease;
}
.process_section .single_card {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 104px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card {
    gap: calc(100vw * 104 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    gap: 104px;
  }
}
.process_section .single_card {
  padding: 120px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card {
    padding: calc(100vw * 120 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    padding: 120px;
  }
}
.process_section .single_card {
  padding-bottom: 92px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card {
    padding-bottom: calc(100vw * 92 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    padding-bottom: 92px;
  }
}
.process_section .single_card {
  border-radius: 20px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card {
    border-radius: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    border-radius: 20px;
  }
}
.process_section .single_card {
  height: 411px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card {
    height: calc(100vw * 411 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    height: 411px;
  }
}
.process_section .single_card {
  background: rgba(0, 127, 148, 0.08);
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .process_section .single_card {
    height: auto;
    flex-direction: column;
    padding: 36px 13px 32px 13px;
    align-items: flex-start;
    gap: 80px;
    max-width: 550px;
    transform-style: preserve-3d;
    will-change: transform;
  }
}
.process_section .single_card .col_number {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(100px, 100px + (200 - 100) * (100vw - 1000px) / (1920 - 1000), 200px);
}
@media screen and (min-width: 1921px) {
  .process_section .single_card .col_number {
    font-size: calc(100vw * 200 / 1920);
  }
}
.process_section .single_card .col_number {
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(206, 206, 206, 0.2);
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .col_number {
    font-size: 150px;
  }
}
.process_section .single_card .col_content {
  margin-top: -25px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .col_content {
    margin-top: calc(100vw * -25 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .col_content {
    margin-top: -25px;
  }
}
.process_section .single_card .col_content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  gap: 30px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .col_content {
    gap: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .col_content {
    gap: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .col_content {
    align-items: flex-end;
    gap: 24px;
  }
}
.process_section .single_card .title_card {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 18px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .title_card {
    gap: calc(100vw * 18 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card {
    gap: 18px;
  }
}
.process_section .single_card .title_card svg {
  width: 16px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .title_card svg {
    width: calc(100vw * 16 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card svg {
    width: 16px;
  }
}
.process_section .single_card .title_card svg {
  height: 34px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .title_card svg {
    height: calc(100vw * 34 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card svg {
    height: 34px;
  }
}
.process_section .single_card .title_card svg {
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card svg {
    width: 14px;
    height: 26px;
  }
}
.process_section .single_card .title_card svg path {
  stroke: var(--textcolorsecond);
  transition: all 0.3s ease;
}
.process_section .single_card .title_card h3 {
  margin-top: 7px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .title_card h3 {
    margin-top: calc(100vw * 7 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card h3 {
    margin-top: 7px;
  }
}
.process_section .single_card .title_card h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(25px, 25px + (50 - 25) * (100vw - 1000px) / (1920 - 1000), 50px);
}
@media screen and (min-width: 1921px) {
  .process_section .single_card .title_card h3 {
    font-size: calc(100vw * 50 / 1920);
  }
}
.process_section .single_card .title_card h3 {
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  color: var(--textcolorsecond);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .title_card h3 {
    font-size: 31px;
  }
}
.process_section .single_card .description_card {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .process_section .single_card .description_card {
    font-size: calc(100vw * 16 / 1920);
  }
}
.process_section .single_card .description_card {
  line-height: 150%;
  color: var(--texcolorwhitesecond);
  opacity: 0.6;
   max-width: 510px;
}
@media screen and (min-width: 1001px) {
  .process_section .single_card .description_card {
     max-width: calc(100vw * 510 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .description_card {
     max-width: 510px;
  }
}
.process_section .single_card .description_card {
  opacity: 0.6;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .process_section .single_card .description_card {
    font-weight: 300;
    font-size: 14px;
    text-align: justify;
  }
}
.process_section .single_card.active .col_number {
  color: var(--textcolorwhhite);
}
.process_section .single_card.active .title_card h3 {
  color: var(--accentcolor);
}
.process_section .single_card.active .title_card svg path {
  stroke: var(--accentcolor);
}
.process_section .single_card.active .description_card {
  opacity: 1;
  color: var(--texcolorwhitesecond);
}

.about_section {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .about_section {
    margin-top: 170px;
    padding-top: 70px;
  }
}
.about_section .wrap_section {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .about_section .wrap_section {
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .about_section .image_col {
    display: none;
  }
}
.about_section .image_col img {
  position: relative;
  width: 836px;
}
@media screen and (min-width: 1001px) {
  .about_section .image_col img {
    width: calc(100vw * 836 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .image_col img {
    width: 836px;
  }
}
.about_section .image_col img {
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .about_section .image_col img {
    width: 100%;
  }
}
.about_section .content_col {
  padding-top: 250px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col {
    padding-top: calc(100vw * 250 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col {
    padding-top: 250px;
  }
}
.about_section .content_col {
  padding-right: 69px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col {
    padding-right: calc(100vw * 69 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col {
    padding-right: 69px;
  }
}
.about_section .content_col {
  padding-left: 82px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col {
    padding-left: calc(100vw * 82 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col {
    padding-left: 82px;
  }
}
.about_section .content_col {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .about_section .content_col {
    padding: 0;
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .header_section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.about_section .content_col .header_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 90px;
  font-size: clamp(45px, 45px + (90 - 45) * (100vw - 1000px) / (1920 - 1000), 90px);
}
@media screen and (min-width: 1921px) {
  .about_section .content_col .header_section h2 {
    font-size: calc(100vw * 90 / 1920);
  }
}
.about_section .content_col .header_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
  text-align: right;
  margin-bottom: 27px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .header_section h2 {
    margin-bottom: calc(100vw * 27 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .header_section h2 {
    margin-bottom: 27px;
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .header_section h2 {
    font-size: 50px;
  }
}
.about_section .content_col .header_section h2 span {
  color: var(--textcolorsecond);
}
.about_section .content_col .header_section .description_header {
  max-width: 422px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .header_section .description_header {
    max-width: calc(100vw * 422 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .header_section .description_header {
    max-width: 422px;
  }
}
.about_section .content_col .header_section .description_header {
  margin-left: auto;
}
.about_section .content_col .header_section .description_header p {
  text-align: right;
}
.about_section .content_col .content_section {
   margin-top: 152px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .content_section {
     margin-top: calc(100vw * 152 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section {
     margin-top: 152px;
  }
}
.about_section .content_col .content_section {
  max-width: 678px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .content_section {
    max-width: calc(100vw * 678 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section {
    max-width: 678px;
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section {
    margin-top: -100px;
  }
}
.about_section .content_col .content_section .dev_foto_mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .dev_foto_mobile {
    position: relative;
    z-index: 2;
    display: inline;
    width: 100%;
  }
}
.about_section .content_col .content_section .content_text {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .content_section .content_text {
    gap: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .content_text {
    gap: 20px;
  }
}
.about_section .content_col .content_section .content_text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .about_section .content_col .content_section .content_text {
    font-size: calc(100vw * 16 / 1920);
  }
}
.about_section .content_col .content_section .content_text {
  line-height: 150%;
  color: var(--texcolorwhitesecond);
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .content_text {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
}
.about_section .content_col .content_section .btn_block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 25px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .content_section .btn_block {
    gap: calc(100vw * 25 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .btn_block {
    gap: 25px;
  }
}
.about_section .content_col .content_section .btn_block {
  margin-top: 33px;
}
@media screen and (min-width: 1001px) {
  .about_section .content_col .content_section .btn_block {
    margin-top: calc(100vw * 33 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .btn_block {
    margin-top: 33px;
  }
}
@media screen and (max-width: 1000px) {
  .about_section .content_col .content_section .btn_block {
    flex-direction: column;
    gap: 9px;
    margin-top: 44px;
  }
  .about_section .content_col .content_section .btn_block .btn {
    width: 218px;
  }
}
.about_section .background_about {
  position: absolute;
  width: 100%;
  pointer-events: none;
  height: 3000px;
}
@media screen and (min-width: 1001px) {
  .about_section .background_about {
    height: calc(100vw * 3000 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .about_section .background_about {
    height: 3000px;
  }
}
.about_section .background_about {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background: radial-gradient(50% 50% at 0 50%, rgba(87, 255, 166, 0.1) 0%, transparent 90%);
}
@media screen and (max-width: 1000px) {
  .about_section .background_about {
    height: 800px;
  }
}

.faq_section {
  margin-top: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section {
    margin-top: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section {
    margin-top: 80px;
  }
}
.faq_section {
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .faq_section {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_section {
    margin-top: 70px;
    padding-top: 70px;
  }
}
.faq_section .header_section {
  padding-left: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section .header_section {
    padding-left: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section .header_section {
    padding-left: 80px;
  }
}
.faq_section .header_section {
  padding-right: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section .header_section {
    padding-right: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section .header_section {
    padding-right: 80px;
  }
}
.faq_section .header_section {
  margin-bottom: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section .header_section {
    margin-bottom: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section .header_section {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_section .header_section {
    padding-left: 14px;
    padding-right: 14px;
    margin-bottom: 50px;
  }
}
.faq_section .header_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(45px, 45px + (90 - 45) * (100vw - 1000px) / (1920 - 1000), 90px);
}
@media screen and (min-width: 1921px) {
  .faq_section .header_section h2 {
    font-size: calc(100vw * 90 / 1920);
  }
}
.faq_section .header_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
@media screen and (max-width: 1000px) {
  .faq_section .header_section h2 {
    font-size: 60px;
  }
}
.faq_section ul.faq_wrap {
  display: flex;
  flex-flow: column nowrap;
  gap: 110px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap {
    gap: calc(100vw * 110 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap {
    gap: 110px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap {
    gap: 40px;
  }
}
.faq_section ul.faq_wrap li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding-left: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li {
    padding-left: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li {
    padding-left: 80px;
  }
}
.faq_section ul.faq_wrap li {
  padding-right: 80px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li {
    padding-right: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li {
    padding-right: 80px;
  }
}
.faq_section ul.faq_wrap li {
  cursor: pointer;
   margin-top: -10px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li {
     margin-top: calc(100vw * -10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li {
     margin-top: -10px;
  }
}
.faq_section ul.faq_wrap li {
  margin-bottom: -50px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li {
    margin-bottom: calc(100vw * -50 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li {
    margin-bottom: -50px;
  }
}
.faq_section ul.faq_wrap li {
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li {
    padding-left: 14px;
    padding-right: 10px;
    margin-top: 0;
    margin-bottom: -80px;
  }
}
.faq_section ul.faq_wrap li .col.col_text {
  display: flex;
  flex-flow: column nowrap;
  gap: 23px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .col.col_text {
    gap: calc(100vw * 23 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .col.col_text {
    gap: 23px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .col.arrow {
    display: none;
  }
}
.faq_section ul.faq_wrap li .col.arrow svg {
  width: 23px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .col.arrow svg {
    width: calc(100vw * 23 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .col.arrow svg {
    width: 23px;
  }
}
.faq_section ul.faq_wrap li .col.arrow svg {
  height: 23px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .col.arrow svg {
    height: calc(100vw * 23 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .col.arrow svg {
    height: 23px;
  }
}
.faq_section ul.faq_wrap li .col.arrow svg {
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
  opacity: 0.6;
}
.faq_section ul.faq_wrap li h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(21px, 21px + (42 - 21) * (100vw - 1000px) / (1920 - 1000), 42px);
}
@media screen and (min-width: 1921px) {
  .faq_section ul.faq_wrap li h3 {
    font-size: calc(100vw * 42 / 1920);
  }
}
.faq_section ul.faq_wrap li h3 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li h3 {
    font-size: 20px;
    line-height: 120%;
  }
}
.faq_section ul.faq_wrap li .answer {
  display: flex;
  flex-flow: row nowrap;
  gap: 16px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer {
    gap: calc(100vw * 16 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer {
    gap: 16px;
  }
}
.faq_section ul.faq_wrap li .answer {
  padding-left: 104px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer {
    padding-left: calc(100vw * 104 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer {
    padding-left: 104px;
  }
}
.faq_section ul.faq_wrap li .answer {
  max-width: 800px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer {
    max-width: calc(100vw * 800 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer {
    max-width: 800px;
  }
}
.faq_section ul.faq_wrap li .answer {
  transform: scaleY(0);
  transition: all 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer {
    padding-left: 48px;
  }
}
.faq_section ul.faq_wrap li .answer p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .faq_section ul.faq_wrap li .answer p {
    font-size: calc(100vw * 16 / 1920);
  }
}
.faq_section ul.faq_wrap li .answer p {
  line-height: 163%;
  color: var(--texcolorwhitesecond);
  margin-top: -6px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer p {
    margin-top: calc(100vw * -6 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer p {
    margin-top: -6px;
  }
}
.faq_section ul.faq_wrap li .answer p {
  margin-bottom: -8px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer p {
    margin-bottom: calc(100vw * -8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer p {
    margin-bottom: -8px;
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer p {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
  }
}
.faq_section ul.faq_wrap li .answer .side_line {
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li .answer .side_line {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li .answer .side_line {
    width: 2px;
  }
}
.faq_section ul.faq_wrap li .answer .side_line {
  background: var(--accentcolor);
}
.faq_section ul.faq_wrap li.open {
  background: rgba(87, 255, 166, 0.1);
  padding-top: 71px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li.open {
    padding-top: calc(100vw * 71 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li.open {
    padding-top: 71px;
  }
}
.faq_section ul.faq_wrap li.open {
  padding-bottom: 85px;
}
@media screen and (min-width: 1001px) {
  .faq_section ul.faq_wrap li.open {
    padding-bottom: calc(100vw * 85 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li.open {
    padding-bottom: 85px;
  }
}
.faq_section ul.faq_wrap li.open {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .faq_section ul.faq_wrap li.open {
    padding-top: 32px;
    padding-bottom: 26px;
    margin-bottom: 20px;
  }
}
.faq_section ul.faq_wrap li.open h3 {
  opacity: 1;
}
.faq_section ul.faq_wrap li.open .answer {
  transform: scaleY(1);
}
.faq_section ul.faq_wrap li.open .col.arrow svg {
  transform: rotate(0deg);
  opacity: 1;
}

.form_section {
  margin-top: 100px;
}
@media screen and (min-width: 1001px) {
  .form_section {
    margin-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section {
    margin-top: 100px;
  }
}
.form_section {
  padding-top: 100px;
}
@media screen and (min-width: 1001px) {
  .form_section {
    padding-top: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .form_section {
    margin-top: 60px;
    padding-top: 70px;
  }
}
.form_section .wrap_section {
  position: relative;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid var(--textcolorsecond);
  border-radius: 20px;
}
@media screen and (min-width: 1001px) {
  .form_section .wrap_section {
    border-radius: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .wrap_section {
    border-radius: 20px;
  }
}
.form_section .wrap_section {
  background: rgba(30, 75, 91, 0.1);
  min-height: 960px;
}
@media screen and (min-width: 1001px) {
  .form_section .wrap_section {
    min-height: calc(100vw * 960 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .wrap_section {
    min-height: 960px;
  }
}
.form_section .wrap_section {
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .form_section .wrap_section {
    min-height: 100vh;
  }
}
.form_section .radial_form_gradient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  animation: hueShift 6s linear infinite;
  background: radial-gradient(50% 50% at 100% 100%, rgba(87, 255, 166, 0.1) 0%, rgba(87, 255, 166, 0.05) 100%);
}
.form_section .sphere_animation {
   width: 800px;
}
@media screen and (min-width: 1001px) {
  .form_section .sphere_animation {
     width: calc(100vw * 800 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .sphere_animation {
     width: 800px;
  }
}
.form_section .sphere_animation {
   height: 800px;
}
@media screen and (min-width: 1001px) {
  .form_section .sphere_animation {
     height: calc(100vw * 800 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .sphere_animation {
     height: 800px;
  }
}
.form_section .sphere_animation {
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .form_section .sphere_animation {
    width: 620px;
    height: 620px;
    transform: translateX(50%);
    margin-top: 126px;
  }
}
.form_section .content_section {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 86px;
}
@media screen and (min-width: 1001px) {
  .form_section .content_section {
    padding: calc(100vw * 86 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .content_section {
    padding: 86px;
  }
}
.form_section .content_section {
  padding-bottom: 81px;
}
@media screen and (min-width: 1001px) {
  .form_section .content_section {
    padding-bottom: calc(100vw * 81 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .content_section {
    padding-bottom: 81px;
  }
}
@media screen and (max-width: 1000px) {
  .form_section .content_section {
    padding: 59px 14px 41px 14px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
  }
}
.form_section .header_section {
  display: flex;
  flex-flow: column;
  gap: 20px;
}
@media screen and (min-width: 1001px) {
  .form_section .header_section {
    gap: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .header_section {
    gap: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .form_section .header_section {
    gap: 14px;
  }
}
.form_section .header_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(30px, 30px + (60 - 30) * (100vw - 1000px) / (1920 - 1000), 60px);
}
@media screen and (min-width: 1921px) {
  .form_section .header_section h2 {
    font-size: calc(100vw * 60 / 1920);
  }
}
.form_section .header_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--texcolorwhitesecond);
}
@media screen and (max-width: 1000px) {
  .form_section .header_section h2 {
    font-size: 40px;
  }
}
.form_section .header_section h2 span {
  color: var(--textcolorsecond);
}
.form_section .header_section .description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .form_section .header_section .description {
    font-size: calc(100vw * 16 / 1920);
  }
}
.form_section .header_section .description {
  line-height: 163%;
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
  max-width: 410px;
}
@media screen and (min-width: 1001px) {
  .form_section .header_section .description {
    max-width: calc(100vw * 410 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .header_section .description {
    max-width: 410px;
  }
}
@media screen and (max-width: 1000px) {
  .form_section .header_section .description {
    font-size: 14px;
    line-height: 150%;
    max-width: 260px;
  }
}
.form_section .form_block {
  margin-top: 86px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block {
    margin-top: calc(100vw * 86 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block {
    margin-top: 86px;
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block {
    margin-top: 15px;
  }
}
.form_section .form_block form {
  display: flex;
  flex-flow: column nowrap;
  max-width: 413px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form {
    max-width: calc(100vw * 413 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form {
    max-width: 413px;
  }
}
.form_section .form_block form {
  gap: 76px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form {
    gap: calc(100vw * 76 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form {
    gap: 76px;
  }
}
.form_section .form_block form .wrap_inputs {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  gap: 26px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs {
    gap: calc(100vw * 26 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs {
    gap: 26px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  border-radius: 5px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    border-radius: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    border-radius: 5px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  height: 36px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    height: calc(100vw * 36 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    height: 36px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    font-size: calc(100vw * 16 / 1920);
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  line-height: 163%;
  color: rgb(30, 75, 91);
  padding: 5px 20px;
  padding-top: 5px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-top: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-top: 5px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  padding-bottom: 5px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-bottom: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-bottom: 5px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  padding-lef: 20px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-lef: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-lef: 20px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  padding-right: 20px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-right: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    padding-right: 20px;
  }
}
.form_section .form_block form .wrap_inputs input,
.form_section .form_block form .wrap_inputs textarea {
  border: none;
  outline: none;
  background: #d9d9d9;
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs input,
  .form_section .form_block form .wrap_inputs textarea {
    font-size: 16px;
  }
}
.form_section .form_block form .wrap_inputs input::placeholder,
.form_section .form_block form .wrap_inputs textarea::placeholder {
  color: rgba(30, 75, 91, 0.2);
}
.form_section .form_block form .wrap_inputs input.error,
.form_section .form_block form .wrap_inputs textarea.error {
  background: rgba(100, 16, 16, 0.98);
  background: var(--accentcolor);
  font-weight: 300;
}
.form_section .form_block form .wrap_inputs input.error::placeholder,
.form_section .form_block form .wrap_inputs textarea.error::placeholder {
  color: var(--blackcolor);
  opacity: 0.6;
  font-weight: 300;
}
.form_section .form_block form .wrap_inputs textarea {
  height: 206px;
}
@media screen and (min-width: 1001px) {
  .form_section .form_block form .wrap_inputs textarea {
    height: calc(100vw * 206 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs textarea {
    height: 206px;
  }
}
.form_section .form_block form .wrap_inputs textarea {
  resize: none;
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs textarea {
    height: 150px;
  }
}
.form_section .form_block form .wrap_inputs .form_notice {
  position: absolute;
  top: 105%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .form_section .form_block form .wrap_inputs .form_notice {
    font-size: calc(100vw * 14 / 1920);
  }
}
.form_section .form_block form .wrap_inputs .form_notice {
  line-height: 186%;
  color: var(--accentcolor);
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form .wrap_inputs .form_notice {
    font-size: 14px;
  }
}
.form_section .form_block form button[type=submit] {
  margin-left: auto;
  margin-right: auto;
  border-color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .form_section .form_block form button[type=submit] {
    border: 2px solid var(--textcolorsecond);
    border-radius: 1000px;
    width: 218px;
    height: 47px;
    background: var(--textcolorsecond);
  }
  .form_section .form_block form button[type=submit] p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
  }
}
.form_section .form_block form button[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.pseudo_select {
  position: relative;
}
.pseudo_select .dropdown_btn {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
   border-radius: 5px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
     border-radius: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
     border-radius: 5px;
  }
}
.pseudo_select .dropdown_btn {
  height: 36px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
    height: calc(100vw * 36 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    height: 36px;
  }
}
.pseudo_select .dropdown_btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .pseudo_select .dropdown_btn {
    font-size: calc(100vw * 16 / 1920);
  }
}
.pseudo_select .dropdown_btn {
  line-height: 163%;
  color: rgb(30, 75, 91);
  padding-top: 5px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
    padding-top: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    padding-top: 5px;
  }
}
.pseudo_select .dropdown_btn {
  padding-bottom: 5px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
    padding-bottom: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    padding-bottom: 5px;
  }
}
.pseudo_select .dropdown_btn {
  padding-left: 20px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
    padding-left: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    padding-left: 20px;
  }
}
.pseudo_select .dropdown_btn {
  padding-right: 20px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn {
    padding-right: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    padding-right: 20px;
  }
}
.pseudo_select .dropdown_btn {
  border: none;
  outline: none;
  background: #d9d9d9;
  width: 100%;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn {
    font-size: 16px;
  }
}
.pseudo_select .dropdown_btn.error {
  background: var(--accentcolor);
  font-weight: 300;
}
.pseudo_select .dropdown_btn.error p {
  color: var(--blackcolor);
  opacity: 0.6;
}
.pseudo_select .dropdown_btn svg {
  width: 16px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn svg {
    width: calc(100vw * 16 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn svg {
    width: 16px;
  }
}
.pseudo_select .dropdown_btn svg {
  height: 10px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_btn svg {
    height: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_btn svg {
    height: 10px;
  }
}
.pseudo_select .dropdown_btn svg {
  transition: transform 0.3s ease;
}
.pseudo_select .dropdown_btn.open svg {
  transform: rotate(-180deg);
}
.pseudo_select .dropdown_btn.active p {
  color: rgb(30, 75, 91);
}
.pseudo_select .dropdown_btn p {
  color: rgba(30, 75, 91, 0.2);
  text-align: left;
}
.pseudo_select .dropdown_menu {
  position: absolute;
  top: 110%;
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  z-index: 2;
  background-color: #d9d9d9;
  gap: 20px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_menu {
    gap: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu {
    gap: 20px;
  }
}
.pseudo_select .dropdown_menu {
  border-radius: 5px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_menu {
    border-radius: calc(100vw * 5 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu {
    border-radius: 5px;
  }
}
.pseudo_select .dropdown_menu {
  border: 1px solid var(--textcolorsecond);
  padding-top: 15px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_menu {
    padding-top: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu {
    padding-top: 15px;
  }
}
.pseudo_select .dropdown_menu {
  padding-bottom: 15px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_menu {
    padding-bottom: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu {
    padding-bottom: 15px;
  }
}
.pseudo_select .dropdown_menu {
  padding-left: 15px;
}
@media screen and (min-width: 1001px) {
  .pseudo_select .dropdown_menu {
    padding-left: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu {
    padding-left: 15px;
  }
}
.pseudo_select .dropdown_menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pseudo_select .dropdown_menu.active {
  opacity: 1;
}
.pseudo_select .dropdown_menu button {
  text-align: left;
}
.pseudo_select .dropdown_menu button span {
  color: rgb(30, 75, 91);
  text-align: left;
  font-size: clamp(7px, 7px + (14 - 7) * (100vw - 1000px) / (1920 - 1000), 14px);
}
@media screen and (min-width: 1921px) {
  .pseudo_select .dropdown_menu button span {
    font-size: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .pseudo_select .dropdown_menu button span {
    font-size: 14px;
  }
}

.cv_section {
  background: var(--blackcolor);
}
.cv_section .wrap_section {
  display: flex;
  flex-flow: row-reverse nowrap;
  border-bottom: 10px solid #081419;
  border-width: 10px;
}
@media screen and (min-width: 1001px) {
  .cv_section .wrap_section {
    border-width: calc(100vw * 10 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .wrap_section {
    border-width: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .wrap_section {
    flex-direction: column-reverse;
  }
}
.cv_section .col_wrap {
  padding-top: 200px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap {
    padding-top: calc(100vw * 200 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap {
    padding-top: 200px;
  }
}
.cv_section .col_wrap {
  padding-bottom: 100px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap {
    padding-bottom: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}
.cv_section .col_wrap.main_info_col {
  width: 60%;
  padding-left: 80px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col {
    padding-left: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col {
    padding-left: 80px;
  }
}
.cv_section .col_wrap.main_info_col {
  display: flex;
  flex-flow: column nowrap;
  gap: 80px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col {
    gap: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col {
    gap: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 0;
  }
}
.cv_section .col_wrap.main_info_col h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(45px, 45px + (90 - 45) * (100vw - 1000px) / (1920 - 1000), 90px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col h2 {
    font-size: calc(100vw * 90 / 1920);
  }
}
.cv_section .col_wrap.main_info_col h2 {
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col h2 {
    display: none;
  }
}
.cv_section .col_wrap.main_info_col h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 16px + (32 - 16) * (100vw - 1000px) / (1920 - 1000), 32px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col h3 {
    font-size: calc(100vw * 32 / 1920);
  }
}
.cv_section .col_wrap.main_info_col h3 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col h3 {
    display: none;
  }
}
.cv_section .col_wrap.main_info_col h3.job_title {
  text-transform: capitalize;
}
.cv_section .col_wrap.main_info_col p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12.6px, 12.6px + (18 - 12.6) * (100vw - 1000px) / (1920 - 1000), 18px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col p {
    font-size: calc(100vw * 18 / 1920);
  }
}
.cv_section .col_wrap.main_info_col p {
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8em;
  }
}
.cv_section .col_wrap.main_info_col .header_info_col {
  display: flex;
  flex-flow: column nowrap;
  gap: 11px;
  gap: 11px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .header_info_col {
    gap: calc(100vw * 11 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .header_info_col {
    gap: 11px;
  }
}
.cv_section .col_wrap.main_info_col .header_info_col {
  margin-bottom: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .header_info_col {
    margin-bottom: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .header_info_col {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .header_info_col {
    margin-bottom: 0;
  }
}
.cv_section .col_wrap.main_info_col .description_block {
  display: flex;
  flex-flow: column nowrap;
  gap: 22px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .description_block {
    gap: calc(100vw * 22 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .description_block {
    gap: 22px;
  }
}
.cv_section .col_wrap.main_info_col .description_block {
  max-width: 785px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .description_block {
    max-width: calc(100vw * 785 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .description_block {
    max-width: 785px;
  }
}
.cv_section .col_wrap.main_info_col .wrap_timline_outer {
  display: flex;
  flex-flow: column nowrap;
  gap: 100px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .wrap_timline_outer {
    gap: calc(100vw * 100 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .wrap_timline_outer {
    gap: 100px;
  }
}
.cv_section .col_wrap.main_info_col .wrap_timline_outer {
  margin-top: 120px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .wrap_timline_outer {
    margin-top: calc(100vw * 120 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .wrap_timline_outer {
    margin-top: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .wrap_timline_outer {
    margin-top: 10px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .time_line_title {
   margin-bottom: 30px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .time_line_title {
     margin-bottom: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .time_line_title {
     margin-bottom: 30px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description {
    gap: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description {
    gap: 30px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
  width: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    width: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    width: 20px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
  height: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    height: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    height: 20px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
  margin: 8px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    margin: calc(100vw * 8 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    margin: 8px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point .line {
  width: 2px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point .line {
    width: calc(100vw * 2 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point .line {
    width: 2px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.point .line {
  height: 100%;
  background-color: var(--textcolorsecond);
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content {
  display: flex;
  flex-flow: column nowrap;
  gap: 15px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content {
    gap: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content {
    gap: 15px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content h4 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 16px + (32 - 16) * (100vw - 1000px) / (1920 - 1000), 32px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content h4 {
    font-size: calc(100vw * 32 / 1920);
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content h4 {
  letter-spacing: -0.03em;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content h4 {
    font-size: 22px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: clamp(11px, 11px + (22 - 11) * (100vw - 1000px) / (1920 - 1000), 22px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
    font-size: calc(100vw * 22 / 1920);
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
  line-height: 1.2em;
  color: var(--texcolorwhitesecond);
  margin-bottom: 7px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
    margin-bottom: calc(100vw * 7 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5em;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
  padding-left: 40px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    padding-left: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    padding-left: 40px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
  padding-bottom: 50px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    padding-bottom: calc(100vw * 50 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    padding-bottom: 50px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 7px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    gap: calc(100vw * 7 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    gap: 7px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    padding-left: 15px;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(12.6px, 12.6px + (18 - 12.6) * (100vw - 1000px) / (1920 - 1000), 18px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
    font-size: calc(100vw * 18 / 1920);
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #fff;
  list-style: disc;
  padding-left: 15px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
    padding-left: calc(100vw * 15 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5em;
  }
}
.cv_section .col_wrap.main_info_col .time_line_block .single_description:last-child .col.content ul {
  padding-bottom: 0;
}
.cv_section .col_wrap.briefing_col {
  width: 40%;
  background: #081419;
  display: flex;
  flex-flow: column nowrap;
  gap: 314px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col {
    gap: calc(100vw * 314 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col {
    gap: 314px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col {
    width: 100%;
    gap: 30px;
  }
}
.cv_section .col_wrap.briefing_col .avatar_wrap {
  border-radius: 1000px;
  height: 416px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    height: calc(100vw * 416 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    height: 416px;
  }
}
.cv_section .col_wrap.briefing_col .avatar_wrap {
  width: 416px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    width: calc(100vw * 416 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    width: 416px;
  }
}
.cv_section .col_wrap.briefing_col .avatar_wrap {
  overflow: hidden;
  background-color: var(--textcolorsecond);
  border: 14px solid #112932;
  border-width: 14px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    border-width: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    border-width: 14px;
  }
}
.cv_section .col_wrap.briefing_col .avatar_wrap {
  align-self: center;
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    margin-bottom: 25px;
  }
}
.cv_section .col_wrap.briefing_col .avatar_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 430px) {
  .cv_section .col_wrap.briefing_col .avatar_wrap {
    aspect-ratio: 1/1;
    width: 97%;
    height: auto;
  }
}
.cv_section .col_wrap.briefing_col .header_info {
  display: none;
  flex-flow: column nowrap;
  gap: 11px;
  gap: 11px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .header_info {
    gap: calc(100vw * 11 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .header_info {
    gap: 11px;
  }
}
.cv_section .col_wrap.briefing_col .header_info {
  margin-bottom: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .header_info {
    margin-bottom: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .header_info {
    margin-bottom: 20px;
  }
}
.cv_section .col_wrap.briefing_col .header_info {
  padding-left: 5%;
}
.cv_section .col_wrap.briefing_col .header_info h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
}
.cv_section .col_wrap.briefing_col .header_info .job_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .header_info {
    display: flex;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing {
  padding-left: 109px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing {
    padding-left: calc(100vw * 109 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing {
    padding-left: 109px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing {
  display: flex;
  flex-flow: column nowrap;
  gap: 80px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing {
    gap: calc(100vw * 80 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing {
    gap: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing {
    padding-left: 5%;
    gap: 10px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block {
    gap: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block {
    gap: 20px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block .title_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 20px;
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block .title_wrap img {
  display: none;
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block .title_wrap img {
    display: inline;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block {
    flex: 1;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block.contacts ul li img,
.cv_section .col_wrap.briefing_col .content_briefing .brief_block.contacts ul li svg {
  transform: translateY(1px);
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 16px + (32 - 16) * (100vw - 1000px) / (1920 - 1000), 32px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block h3 {
    font-size: calc(100vw * 32 / 1920);
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block h3 {
  letter-spacing: -0.03em;
  color: var(--textcolorsecond);
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 19px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul {
    gap: calc(100vw * 19 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul {
    gap: 19px;
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul {
    transition: all 0.3s ease;
    gap: 14px;
    transform: scaleY(0);
    height: 0;
    overflow: hidden;
  }
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul.active {
    height: auto;
    transform: scaleY(1);
    padding-bottom: 40px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 17px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    gap: calc(100vw * 17 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    gap: 17px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
  max-width: 410px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    max-width: calc(100vw * 410 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    max-width: 410px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 150%;
  font-size: clamp(12.6px, 12.6px + (18 - 12.6) * (100vw - 1000px) / (1920 - 1000), 18px);
}
@media screen and (min-width: 1921px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    font-size: calc(100vw * 18 / 1920);
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
  letter-spacing: 0.01em;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li {
    font-size: 16px;
    gap: 17px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
  width: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
    width: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
    width: 20px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
  height: 20px;
}
@media screen and (min-width: 1001px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
    height: calc(100vw * 20 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
  .cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
    height: 20px;
  }
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li img,
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li svg {
  transform: translateY(0.2604166667vw);
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li span {
  color: rgba(255, 255, 255, 0.5);
}
.cv_section .col_wrap.briefing_col .content_briefing .brief_block ul li span.blue {
  color: var(--textcolorsecond);
}

.btn_block_CV {
  margin-top: 200px;
}
@media screen and (min-width: 1001px) {
  .btn_block_CV {
    margin-top: calc(100vw * 200 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .btn_block_CV {
    margin-top: 200px;
  }
}
.btn_block_CV {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .btn_block_CV {
    margin-top: 40px;
  }
}

@page {
  size: A4 portrait;
  margin: 10mm;
}
@media print {
  html,
  body {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #fff !important;
  }
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body > *:not(main),
  main > *:not(.cv_section) {
    display: none !important;
  }
  main {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .cv_section.popup {
    display: block !important;
    position: static !important;
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: #fff !important;
  }
  .cv_section.popup,
  .cv_section.popup * {
    animation: none !important;
    transition: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .cv_section.popup a {
    color: inherit !important;
    text-decoration: underline;
    text-decoration-thickness: 0.2mm;
    text-underline-offset: 0.35mm;
  }
  .cv_section.popup .wrap_section {
    display: flex !important;
    flex-flow: row-reverse nowrap !important;
    align-items: stretch;
    width: 100%;
    border: 0 !important;
    background: #fff;
  }
  .cv_section.popup .col_wrap {
    min-width: 0;
    margin: 0 !important;
  }
  .cv_section.popup .col_wrap.main_info_col {
    display: flex !important;
    flex: 0 0 68%;
    flex-flow: column nowrap;
    gap: 5mm !important;
    width: 68% !important;
    padding: 0 0 0 7mm !important;
    background: #fff !important;
  }
  .cv_section.popup .col_wrap.main_info_col h2 {
    display: block !important;
    margin: 0;
    color: #081419 !important;
    font-size: 22pt !important;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .cv_section.popup .col_wrap.main_info_col h3 {
    display: block !important;
    color: #1e4b5b !important;
    font-size: 11pt !important;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .cv_section.popup .col_wrap.main_info_col p {
    color: #172126 !important;
    font-size: 8.5pt !important;
    font-weight: 400;
    line-height: 1.42;
    letter-spacing: 0;
  }
  .cv_section.popup .col_wrap.main_info_col .header_info_col {
    display: flex !important;
    gap: 1.5mm !important;
    margin: 0 0 1mm !important;
  }
  .cv_section.popup .col_wrap.main_info_col .header_info_col .job_title {
    color: #1e4b5b !important;
    font-size: 12pt !important;
  }
  .cv_section.popup .col_wrap.main_info_col .description_block {
    gap: 2mm !important;
    max-width: none !important;
  }
  .cv_section.popup .col_wrap.main_info_col .wrap_timline_outer {
    gap: 7mm !important;
    margin: 1mm 0 0 !important;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block {
    break-inside: auto;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .time_line_title {
    margin: 0 0 3mm !important;
    padding-bottom: 1.5mm;
    border-bottom: 0.35mm solid #1e4b5b;
    break-after: avoid;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description {
    display: flex !important;
    gap: 2.5mm !important;
    break-inside: avoid-page;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.point {
    flex: 0 0 3mm;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.point img {
    width: 2.5mm !important;
    height: 2.5mm !important;
    margin: 1.2mm 0 !important;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.point .line {
    width: 0.35mm !important;
    min-height: 3mm;
    background: #1e4b5b !important;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.content {
    flex: 1 1 auto;
    gap: 1.3mm !important;
    padding-bottom: 4mm;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.content h4 {
    color: #1e4b5b !important;
    font-size: 9.5pt !important;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    break-after: avoid;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.content .post_title {
    margin: 0 !important;
    color: #26363d !important;
    font-size: 8.5pt !important;
    font-weight: 500;
    line-height: 1.35;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.content ul {
    display: block !important;
    margin: 0;
    padding: 0 0 0 4mm !important;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description .col.content ul li {
    margin: 0 0 0.8mm;
    padding: 0 !important;
    color: #172126 !important;
    font-size: 8.2pt !important;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
    list-style: disc;
  }
  .cv_section.popup .col_wrap.main_info_col .time_line_block .single_description:last-child .col.content {
    padding-bottom: 0;
  }
  .cv_section.popup .col_wrap.briefing_col {
    display: flex !important;
    flex: 0 0 32%;
    flex-flow: column nowrap;
    gap: 7mm !important;
    width: 32% !important;
    padding: 0 6mm 0 0 !important;
    border-right: 0.35mm solid #c8d3d7;
    background: #fff !important;
  }
  .cv_section.popup .col_wrap.briefing_col .avatar_wrap {
    align-self: flex-start;
    width: 30mm !important;
    height: 30mm !important;
    border: 1.2mm solid #d9e2e5 !important;
    border-radius: 50%;
    background: #d9e2e5 !important;
  }
  .cv_section.popup .col_wrap.briefing_col .avatar_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cv_section.popup .col_wrap.briefing_col .header_info {
    display: none !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing {
    display: flex !important;
    flex-flow: column nowrap;
    gap: 5mm !important;
    padding: 0 !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block {
    display: flex !important;
    flex-flow: column nowrap;
    gap: 2mm !important;
    break-inside: avoid-page;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .title_wrap {
    display: block !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .title_wrap h3 {
    color: #1e4b5b !important;
    font-size: 9.5pt !important;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .title_wrap img {
    display: none !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list {
    display: flex !important;
    flex-flow: column nowrap !important;
    gap: 1.8mm !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li {
    display: flex !important;
    align-items: flex-start;
    gap: 1.5mm !important;
    max-width: none !important;
    color: #172126 !important;
    font-size: 7.7pt !important;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li p,
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li a {
    min-width: 0;
    color: #172126 !important;
    overflow-wrap: anywhere;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li span,
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li span.blue {
    color: #42565e !important;
  }
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li > img,
  .cv_section.popup .col_wrap.briefing_col .content_briefing .brief_block .info_list li > svg {
    flex: 0 0 3mm;
    width: 3mm !important;
    height: 3mm !important;
    margin-top: 0.3mm;
    transform: none !important;
  }
}
.not_fount_section {
  margin-top: 300px;
}
.not_fount_section .wrap_section {
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
.not_fount_section h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(45px, 45px + (90 - 45) * (100vw - 1000px) / (1920 - 1000), 90px);
}
@media screen and (min-width: 1921px) {
  .not_fount_section h2 {
    font-size: calc(100vw * 90 / 1920);
  }
}
.not_fount_section h2 {
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--textcolorwhhite);
}
.not_fount_section h2 span {
  color: var(--textcolorsecond);
}
.not_fount_section .post_title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(16px, 16px + (32 - 16) * (100vw - 1000px) / (1920 - 1000), 32px);
}
@media screen and (min-width: 1921px) {
  .not_fount_section .post_title {
    font-size: calc(100vw * 32 / 1920);
  }
}
.not_fount_section .post_title {
  line-height: 163%;
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
}
@media screen and (max-width: 1000px) {
  .not_fount_section .post_title {
    margin-top: 20px;
    font-size: 22px;
  }
}
.not_fount_section .description {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: clamp(8px, 8px + (16 - 8) * (100vw - 1000px) / (1920 - 1000), 16px);
}
@media screen and (min-width: 1921px) {
  .not_fount_section .description {
    font-size: calc(100vw * 16 / 1920);
  }
}
.not_fount_section .description {
  line-height: 150%;
  letter-spacing: -0.03em;
  color: var(--texcolorwhitesecond);
  margin-bottom: 40px;
}
@media screen and (min-width: 1001px) {
  .not_fount_section .description {
    margin-bottom: calc(100vw * 40 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .description {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .description {
    font-weight: 300;
    font-size: 14px;
    margin-top: 6px;
  }
}
.not_fount_section .back_home_link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-top: 30px;
}
@media screen and (min-width: 1001px) {
  .not_fount_section .back_home_link {
    margin-top: calc(100vw * 30 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .back_home_link {
    margin-top: 30px;
  }
}
.not_fount_section .back_home_link {
  gap: 12px;
}
@media screen and (min-width: 1001px) {
  .not_fount_section .back_home_link {
    gap: calc(100vw * 12 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .back_home_link {
    gap: 12px;
  }
}
.not_fount_section .back_home_link {
  width: fit-content;
}
.not_fount_section .back_home_link svg {
  width: 14px;
}
@media screen and (min-width: 1001px) {
  .not_fount_section .back_home_link svg {
    width: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .back_home_link svg {
    width: 14px;
  }
}
.not_fount_section .back_home_link svg {
  height: 14px;
}
@media screen and (min-width: 1001px) {
  .not_fount_section .back_home_link svg {
    height: calc(100vw * 14 / 1920);
  }
}
@media screen and (max-width: 1000px) {
  .not_fount_section .back_home_link svg {
    height: 14px;
  }
}
.not_fount_section .back_home_link svg {
  transform: translateY(-0.1041666667vw);
}
.not_fount_section .back_home_link p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(10px, 10px + (20 - 10) * (100vw - 1000px) / (1920 - 1000), 20px);
}
@media screen and (min-width: 1921px) {
  .not_fount_section .back_home_link p {
    font-size: calc(100vw * 20 / 1920);
  }
}
.not_fount_section .back_home_link p {
  line-height: 150%;
  letter-spacing: -0.03em;
  color: var(--textcolorsecond);
}
@media screen and (max-width: 1000px) {
  .not_fount_section .back_home_link p {
    font-size: 16px;
  }
}

/*# sourceMappingURL=styles.css.map */
