/* HEADER */
/* TOP MENU */
/* SEARCH */
/* FOOTER */


@font-face {
	font-family: 'Gotham Pro';
	src: url('../status/assets/fonts/GothamPro.eot');
	src: local('Gotham Pro'), local('GothamPro'),
		url('../status/assets/fonts/GothamPro.eot?#iefix') format('embedded-opentype'),
		url('../status/assets/fonts/GothamPro.woff') format('woff'),
		url('../status/assets/fonts/GothamPro.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../status/assets/fonts/GothamPro-Medium.eot');
	src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
		url('../status/assets/fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
		url('../status/assets/fonts/GothamPro-Medium.woff') format('woff'),
		url('../status/assets/fonts/GothamPro-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../status/assets/fonts/GothamPro-Bold.eot');
	src: local('Gotham Pro Bold'), local('GothamPro-Bold'),
		url('../status/assets/fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'),
		url('../status/assets/fonts/GothamPro-Bold.woff') format('woff'),
		url('../status/assets/fonts/GothamPro-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

:root {
    --mainFont: 'Gotham Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --mainColor: #2E4B95;
    --blackColor: #000;
    --grayColor: #808080;
    --headingSize: 50px;
    --textSize: 18px;
    --transition: .2s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--mainFont);
}

h2 {
    font-weight: bold;
    font-size: 80px;
    line-height: 114.97%;
    color: #000;
    letter-spacing: -0.04em;
}

a:hover,
a:focus,
a:active {
	color: var(--mainColor);
}

.container {
    width: 100%;
    max-width: 1735px;
    margin: 0 auto;
}

.fixed {
    position: fixed;
}

.page:not(.home) #primary {
    border-top: 1px solid #D5D5D5;
}

/* HEADER */

.site-header {
    margin-bottom: 20px;
}

.header-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(330px, 1fr) 4fr 2fr 1fr;
    grid-template-columns: minmax(330px, 1fr) 4fr 2fr 1fr;
}

.site-branding {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 30px;
}

/* TOP MENU */

.header-wrapper .main-navigation a {
    font-size: 15px;
    line-height: 1;
    color: var(--blackColor);
    font-weight: 500;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.header-wrapper .main-navigation a:before {
    content: '';
    display: block;
    border-top: 4px solid transparent;
    margin-bottom: 47px;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}

.header-wrapper .main-navigation a:hover {
    color: var(--mainColor);
}

.header-wrapper .main-navigation a:hover:before {
    border-color: var(--mainColor);
}

.header-wrapper .main-navigation li:first-child a {
    padding: 0 20px 0 0;
}

.header-wrapper .main-navigation li:not(:first-child) a {
    padding: 0 20px;
}

/* SEARCH */

#searchform {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 24px;
    margin-top: 47px;
    border: 1px solid rgba(46, 75, 149, 0.49);
    width: 100%;
    max-width: 190px;
    border-radius: 10px;
    padding: 0 6px;
}

#searchform input[type="submit"] {
    text-indent: -9999px;
    background-image: url(/wp-content/uploads/status/magnifier.svg);
    background-repeat: no-repeat;
    padding: 0;
    width: 24px;
    height: 22px;
    background-position: center;
    background-color: transparent;
    background-size: 16px;
    border: 0;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

#searchform input[type="submit"]:hover {
    -webkit-filter: brightness(.5);
            filter: brightness(.5);
}

#searchform input[type="text"] {
    border: 0;
    max-width: 100px;
}

#searchform input[type="text"]:focus {
    outline: none;
}

.fast-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.fast-links a {
    margin-top: 47px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    display: block;
    font-weight: 500;
}

.fast-links button {
    display: block;
    padding: 0;
    width: 31px;
    height: 31px;
    margin-top: 42px;
    background: transparent;
    border: 0;
    cursor: pointer;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.fast-links button:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

/* MOBILE MENU */

.mobile-header {
    position: relative;
    padding-top: 10px;
    padding-left: 40px;
    margin-left: 15px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 10px 0 20px;
}

.overlay {
    height: 100%;
    width: 17%;
    position: fixed;
    z-index: 9999;
    left: -1000px;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.5, 0.05, 0.36, 1);
    -o-transition-timing-function: cubic-bezier(0.5, 0.05, 0.36, 1);
    transition-timing-function: cubic-bezier(0.5, 0.05, 0.36, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.45));
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.45));
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: left;
}

.overlay-content a {
    padding: 10px 20px 10px 0;
    margin-left: 10px;
    text-decoration: none;
    color: #000;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
    border-bottom: 2px solid transparent;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

.overlay-content a:hover {
    border-bottom: 2px solid  var(--mainColor);
}

.overlay a:hover, .overlay a:focus {
  color: var(--mainColor);
}

.overlay .closebtn {
    width: 25px;
    height: 25px;
    padding: 0;
    padding-right: 5px;
    font-size: unset;
    position: absolute;
    top: 10px;
    right: 20px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.overlay .closebtn:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
}

.overlay .closebtn svg {
    width: 25px;
    height: 25px;
}

.mobile-footer {
    margin-right: 15px;
    margin-left: 15px;
}

.mobile-footer .social {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: unset;
    padding-bottom: 32px;
}

.mobile-footer .social a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    line-height: 18px;
}

.mobile-footer .social a:hover,
.mobile-footer .social a:focus {
    color: #141414;
}

.mobile-footer .contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 32px;
}

.mobile-footer .contacts a {
    color: var(--mainColor);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    padding-left: 25px;
}

.mobile-footer .copyright {
    font-weight: normal;
    font-size: 10px;
    line-height: 12px;
    color: #fff;
    padding-bottom: 36px;
}

.mobile-nav #search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 40px;
}

.mobile-nav #search form {
    margin: 0;
}

.mobile-nav .main-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 30px;
}



/* FOOTER */

.site-footer {
    border-top: 1px solid #D5D5D5;
    padding-top: 50px;
    margin-top: 55px;
}

.footer-header,
.site-footer form label {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: #000;
}

.footer-header {
    margin-bottom: 42px;
}

.site-footer p {
    margin: 0;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 3fr 2fr 1fr 2fr;
    grid-template-columns: 3fr 2fr 1fr 2fr;
}

.site-footer form {
    max-width: 334px;
}

.site-footer form input[type="email"] {
    border: 0;
    border-bottom: 1px solid var(--mainColor) !important;
}

.site-footer .mailpoet_form_columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.site-footer .mailpoet_form_columns div:last-child .mailpoet_paragraph {
    text-align: end;
}

.site-footer .mailpoet_form_columns .mailpoet_submit {
    background: var(--mainColor);
    color: #fff;
    width: 53px;
    height: 53px;
    cursor: pointer;
    border-radius: 26px;
}

.footer-menu li {
    margin-bottom: 26px;
}

.footer-menu a {
    font-size: 15px;
    color: var(--grayColor);
    text-decoration: none;
}

.footer-contacts {
    -ms-grid-column-align: end;
        justify-self: end;
    text-align: right;
}

.site-info {
    margin-top:40px;
}

.site-info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
}

.footer-social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.copyright, .copyright + a {
    font-size: 15px;
}

.copyright + a {
    color: var(--mainColor);
}

.developer a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}










