@font-face {
  font-family: Microtype;
  src: url('../fonts/Microtype-ExtraLight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Microtype;
  src: url('../fonts/Microtype-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Microtype;
  src: url('../fonts/Microtype-ExtraBold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --base-color:#16093A;
  --invert-color:white;
  --padding--padding-xxl: 4.8rem;
  --padding--pading-l: 3.2rem;
  --padding--padding-m: 2.4rem;
  --padding--padding-s: 1.6rem;
  --blue: #4110ff;
  --pink: #f7d3f4;
  --pink-transp:#FDF4FF;
  --green: #a3db98;
  --sky: #b1e0ea;
  --dark-blue: #140938;
  --padding--padding-xl: 4rem;
  --black: black;
}

* {
  box-sizing: border-box;
  line-height: 140%;
  margin: 0;
  font-family: 'Microtype';
}
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,
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,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    color: var(--base-color);
}
span {
  color: inherit;
}
body {
  background: var(--invert-color);
  transition: background 0.5s ease, color 0.5s ease, background-color 0.5s ease;
}

.container {
    max-width: 1496px;
    width: 100%;
    padding: 0 100px;
    margin: auto;
    z-index: 3
}

@media screen and (max-width: 1040px) {
    .container {
        padding:0 30px;
    }
}
.grid-flex {
  display:flex;
  flex-direction:row;
  align-items:flex-start;
  justify-content:flex-start;
}
.grid-between {
  justify-content:space-between;
}
header {
  background-color:transparent;
  position:fixed;
  z-index:1000;
  width:100%;
transition: background-color 0.3s ease;
}
header.scrolled {
  background-color:var(--pink-transp); /* Ð±Ñ–Ð»Ð¸Ð¹ Ñ„Ð¾Ð½ */
}
header .grid-flex {
  align-items:center;
}
.site-branding {
  width:200px;
  max-width:50%;
  margin:10px 0;
  height:auto;
}
.custom-logo-link, .custom-logo-link svg {
	width:100%;
	height:auto;
}

header .site-header .header-right .main-navigation {
    display: flex;
    align-items: center
}

header .site-header .header-right .main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap:40px;
    align-items:center;
}
header .site-header .header-right .main-navigation ul li {
    display:block;
}

header .site-header .header-right .main-navigation ul li a {
  cursor: pointer;
  text-decoration:none;
  transition: all .3s linear;
}

header .site-header .header-right .main-navigation ul li:first-child a {
    border:1px solid var(--base-color);
  padding:12px 16px;
  border-radius:40px;
    display:block;
    
}
header .site-header .header-right .main-navigation ul li a:hover {
  color: var(--blue)
}
header .site-header .header-right .main-navigation ul li:first-child a:hover {
  color: var(--blue);
  border:1px solid var(--blue);
  background-color:var(--invert-color);
}
.menu-toggle {
    display: none
}
header .site-header .header-right .main-navigation .menu-toggle {
    width: 42px;
    height: 40px;
    position: relative;
    z-index: 9
}

@media (max-width: 1360px) {
    header .site-header .header-right .main-navigation {
        margin-right:0
    }
header .site-header .header-right .main-navigation ul li:first-child a {/* margin-bottom:20px; */}
    header .site-header .header-right .main-navigation .menu {
        display: none;
        position: absolute;
        width: 250px;
        right: 10px;
        top: 70px;
        gap:20px;
        background-color: #fff;
        height: auto;
        overflow: auto;
        box-shadow: #00000033 1px 2px 10px 0px;
		height:0;
        padding:15px 20px 20px;
        transition: height .3s linear;
    }
header .site-header .header-right .main-navigation .menu.active {
        display: flex;
height:auto;
    }

    header .site-header .header-right .main-navigation .menu ul li {
        width: 100%;
        padding: 10px 22px;
        margin: 5px 0 0
    }

    header .site-header .header-right .main-navigation .menu ul li a{
        font-size: 16px;
        display: block
    }
header .site-header .header-right .main-navigation .menu-toggle {
        display: block
    }
}
header .site-header .header-right .main-navigation .menu-toggle.menu-toggle>span,header .site-header .header-right .main-navigation .menu-toggle.menu-toggle>span::before,header .site-header .header-right .main-navigation .menu-toggle.menu-toggle>span:after {
    position: absolute;
    width: 28px;
    height: 2px;
    top: 19px;
    border-radius: 3px;
    left: 9px;
    background-color: #54565a;
    transition: .3s
}

header .site-header .header-right .main-navigation .menu-toggle.menu-toggle>span::before {
    content: '';
    top: -7px;
    left: 0
}

header .site-header .header-right .main-navigation .menu-toggle.menu-toggle>span::after {
    content: '';
    top: 7px;
    left: 0
}

header .site-header .header-right .main-navigation.activ .menu-toggle>span {
    transform: rotate(45deg)
}

header .site-header .header-right .main-navigation.activ .menu-toggle>span::after {
    top: 0;
    transform: rotate(90deg)
}
.wp-block-columns {
	margin-bottom: 60px;
}
.wp-block-columns div:first-child p {
	font-size: 30px;
}
.wp-block-columns div:last-child p {
	font-size: 18px;
}
.page-title {
	font-size: 48px;
    margin-bottom: 60px;
}
@media (max-width: 980px) {
	.wp-block-columns div:first-child p {
		font-size: 26px;
	}
}
@media (max-width: 768px) {
	.page-title {
		font-size: 30px;
		margin-bottom: 30px;
	}
	.wp-block-columns div:first-child p {
		font-size: 18px;
	}
	.wp-block-columns div:last-child p {
	font-size: 14px;
}
.wp-block-columns.is-layout-flex {
                gap: 40px;
            }
.wp-block-columns {
	margin-bottom: 40px;
}
}

/* footer */
footer .container {
	text-align: center;
	margin: 100px 0 50px 0;
}
.footer-logos {
	display: flex;
    justify-content: center;
    gap: 30px;
	flex-wrap: wrap;
}
.footer-social {
	  list-style-type: none;
	  display: flex;
	  justify-content: center;
	  gap: 30px;
}
@media screen and (max-width: 600px) {
    .container {
        padding:0 10px;
    }
}
/* Base */
.ef-footer { background:#fff; color:#0d0d0f; padding:48px 0 40px; font-size:16px; line-height:1.5; }
.ef-footer .container {/* max-width:1200px; */margin:0 auto;}

/* Layout */
.ef-footer__grid {
  display:grid;
  grid-template-columns: 1fr 1fr; /* left | right */
  gap:48px;
  align-items:start;
  position:relative;
  Padding: 20px 0;
}

/* vertical divider on desktop */
.ef-footer__grid::after{
  content:"";
  position:absolute;
  left:50%; top:0; bottom:0;
  width:2px; background:#151515; opacity:.18;
}

/* Left column */
.ef-footer__text p + p { margin-top:14px; }
.ef-footer__social {list-style:none;display:flex;gap:16px;margin: 30px 0 0;padding:0;}
.ef-footer__social img.ef-footer__social-icon { width:22px; height:22px; object-fit:contain; display:block; }
.ef-footer__copyright {margin-top:16px;font-size:14px;opacity:.8;text-align: right;color:}
.ef-footer__text {text-align:left;max-width:525px;margin-bottom: 50px;}
.ef-footer__copyright p {color:#777777;}

/* Right column (logos grid) */
.ef-footer__left {order:-1; text-align:left}
.ef-footer__right {padding-left:32px;display: flex;flex-direction: column;justify-content: space-between;height: 100%;}
.ef-footer__logos { list-style:none; display:grid; grid-template-columns:repeat(2, minmax(120px, 1fr)); gap:40px 30px; margin:0; padding:0; }
.ef-footer__logo { display:flex; align-items:center; justify-content:center; }
.ef-footer__logo-img { width:180px; max-width:100%; max-height:56px;height:auto; object-fit:contain; }

/* Responsive */
@media (max-width:1024px){
  .ef-footer__logos { grid-template-columns:repeat(2, minmax(120px, 1fr)); }
}
.mobile {display:none}
@media (max-width:768px){
  .ef-footer__grid {
    grid-template-columns:1fr; gap:28px;
  }
  .ef-footer__grid::after { display:none; }
  /* order: FIRST logos, THEN text+socials */
  .ef-footer__right { order:1; padding-left:0; }
  .ef-footer__left  { order:2; }
  .ef-footer__logos { grid-template-columns:repeat(2, minmax(100px, 1fr)); gap:20px; }
.ef-footer__logo-img { width:120px; max-width:100%; max-height:40px;height:auto; object-fit:contain; }
.ef-footer__text {font-size:14px;}
.ef-footer__copyright {text-align: center;margin-top:30px}
	.mobile {display:block}
	.desktop {display:none}
	.ef-footer {padding:48px 0 10px; font-size:14px;}

}
/* Ð¿Ð»Ð°Ð²Ð½Ð° Ð°Ð½Ñ–Ð¼Ð°Ñ†Ñ–Ñ */
.whom-drop-content { transition: max-height 300ms ease; }

/* ÐºÑƒÑ€ÑÐ¾Ñ€/Ñ„Ð¾ÐºÑƒÑ Ð´Ð»Ñ Ð·Ð°Ð³Ð¾Ð»Ð¾Ð²ÐºÑ–Ð² */
.whom-drop-title { cursor: pointer; }

#index .educational-field-page {
	padding-top:0!important;
}
.empry-filters {
	min-height:30vh;
	padding-top:50px;
}