/*----- FONTS -----*/
:root { --gothamPro: 'GothamPro', monospace; }

/*----- COLORS -----*/
:root { --clr-text: #000; --clr-black: #272727; --clr-white: #FFF; --clr-green: #28C262; --clr-glitch: #2F7C4C; --clr-gray: #686868; --clr-grayL: #EFEFEF; --clr-theme: #fe5619; --clr-themeH: #ff4400; --clr-theme2: #fe7800; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document ========================================================================== */
/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in iOS. */
html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ }

/* Sections ========================================================================== */
/** Remove the margin in all browsers. */
body { margin: 0; }

/** Render the `main` element consistently in IE. */
main { display: block; }

/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
h1 { font-size: 2em; margin: 0.67em 0; }

/* Grouping content ========================================================================== */
/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
hr { -webkit-box-sizing: content-box; box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }

/* Text-level semantics ========================================================================== */
/** Remove the gray background on active links in IE 10. */
a { background-color: transparent; }

/** 1. Remove the bottom border in Chrome 57- 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ }

/** Add the correct font weight in Chrome, Edge, and Safari. */
b, strong { font-weight: bolder; }

/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }

/** Add the correct font size in all browsers. */
small { font-size: 80%; }

/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }

sub { bottom: -0.25em; }

sup { top: -0.5em; }

/* Embedded content ========================================================================== */
/** Remove the border on images inside links in IE 10. */
img { border-style: none; }

/* Forms ========================================================================== */
/** 1. Change the font styles in all browsers. 2. Remove the margin in Firefox and Safari. */
button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ }

/** Show the overflow in IE. 1. Show the overflow in Edge. */
button, input { /* 1 */ overflow: visible; }

/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
button, select { /* 1 */ text-transform: none; }

/** Correct the inability to style clickable types in iOS and Safari. */
button, [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; }

/** Remove the inner border and padding in Firefox. */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }

/** Restore the focus styles unset by the previous rule. */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }

/** Correct the padding in Firefox. */
fieldset { padding: 0.35em 0.75em 0.625em; }

/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
legend { -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }

/** Add the correct vertical alignment in Chrome, Firefox, and Opera. */
progress { vertical-align: baseline; }

/** Remove the default vertical scrollbar in IE 10+. */
textarea { overflow: auto; }

/** 1. Add the correct box sizing in IE 10. 2. Remove the padding in IE 10. */
[type="checkbox"], [type="radio"] { -webkit-box-sizing: border-box; box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }

/** Correct the cursor style of increment and decrement buttons in Chrome. */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }

/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }

/** Remove the inner padding in Chrome and Safari on macOS. */
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }

/* Interactive ========================================================================== */
/* Add the correct display in Edge, IE 10+, and Firefox. */
details { display: block; }

/* Add the correct display in all browsers. */
summary { display: list-item; }

/* Misc ========================================================================== */
/** Add the correct display in IE 10+. */
template { display: none; }

/** Add the correct display in IE 10. */
[hidden] { display: none; }

* { -webkit-box-sizing: border-box; box-sizing: border-box; }

html, body { width: 100%; height: 100%; }

html { font-family: var(--gothamPro); font-weight: 400; }

body { font-family: var(--gothamPro); font-weight: 400; width: 100%; background: var(--clr-white); color: var(--clr-text); font-size: 14px; line-height: 1.36; }

a { color: var(--clr-theme); -webkit-transition: all linear .1s; -o-transition: all linear .1s; transition: all linear .1s; }

a:hover { text-decoration: none; }

.ir { font: 0/0 a; text-shadow: none; color: transparent; }

.wrapper { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; position: relative; overflow: hidden; min-height: 100%; min-width: 300px; }

.container { --side-spacing: 60px; position: relative; max-width: 1300px; margin: 0 auto; padding: 50px var(--side-spacing); }

.container--lg { padding: 146px var(--side-spacing); }

.container--lg-top { padding: 146px var(--side-spacing) 50px; }

.container--lg-bottom { padding: 50px var(--side-spacing) 146px; }

b, h1, h2, h3, h4, h5, h6 { font-family: var(--gothamPro); font-weight: 700; }

.tip { font-size: 12px; line-height: 1.26; color: #515151; }

.highlighted { font-family: var(--gothamPro); font-weight: 700; color: var(--clr-theme); }

.overlay { position: fixed; left: 0; top: 0; right: 0; bottom: 0; visibility: hidden; opacity: 0; z-index: 10; background: -o-linear-gradient(315deg, #fe5619 0%, #fe7800 100%); background: linear-gradient(135deg, #fe5619 0%, #fe7800 100%); background: var(--clr-white); }

.svg-arrow-link, .svg-calendar, .svg-face, .svg-fb, .svg-focus_1, .svg-focus_2, .svg-focus_3, .svg-focus_4, .svg-gh, .svg-location, .svg-mail, .svg-med, .svg-sl, .svg-tw, .svg-we, .svg-yt { background: url("/National_Library/20161014125122oe_/https://gitnation.org/sprite.svg") no-repeat; }

.svg-arrow-link { background-position: 0 0; }

.svg-arrow-link-dims { width: 14px; height: 13px; }

.svg-calendar { background-position: 3.835616438356164% 3.672316384180791%; }

.svg-calendar-dims { width: 32px; height: 32px; }

.svg-face { background-position: 12.364926616848557% 12.711864406779661%; }

.svg-face-dims { width: 24.98px; height: 32px; }

.svg-fb { background-position: 18.635170603674542% 21.2707182320442%; }

.svg-fb-dims { width: 16px; height: 24px; }

.svg-focus_1 { background-position: 23.835616438356166% 28.453910299752085%; }

.svg-focus_1-dims { width: 32px; height: 31.04px; }

.svg-focus_2 { background-position: 32.29570928433794% 37.570621468926554%; }

.svg-focus_2-dims { width: 28.53px; height: 32px; }

.svg-focus_3 { background-position: 40.54794520547945% 46.0148362987339%; }

.svg-focus_3-dims { width: 32px; height: 27.42px; }

.svg-focus_4 { background-position: 49.31506849315068% 54.32946740231956%; }

.svg-focus_4-dims { width: 32px; height: 30.76px; }

.svg-gh { background-position: 56.38297872340426% 61.202185792349724%; }

.svg-gh-dims { width: 21px; height: 20px; }

.svg-location { background-position: 63.83561643835616% 68.92655367231639%; }

.svg-location-dims { width: 32px; height: 32px; }

.svg-mail { background-position: 72.6027397260274% 76.55608565405525%; }

.svg-mail-dims { width: 32px; height: 25.48px; }

.svg-med { background-position: 79.2% 81.84281842818429%; }

.svg-med-dims { width: 22px; height: 17px; }

.svg-sl { background-position: 83.33333333333333% 85.79881656804733%; }

.svg-sl-dims { width: 14.2px; height: 14.2px; }

.svg-tw { background-position: 89.3048128342246% 91.5068493150685%; }

.svg-tw-dims { width: 23px; height: 21px; }

.svg-we { background-position: 93.7007874015748% 95.94594594594595%; }

.svg-we-dims { width: 16px; height: 16px; }

.svg-yt { background-position: 100% 100%; }

.svg-yt-dims { width: 24px; height: 15px; }

/*----- FONTS -----*/
@font-face { font-family: 'GothamPro'; src: url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Light.woff2) format("woff2"), url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Light.woff) format("woff"); font-style: normal; font-weight: 300; }

@font-face { font-family: 'GothamPro'; src: url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro.woff2) format("woff2"), url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro.woff) format("woff"); font-style: normal; font-weight: 400; }

@font-face { font-family: 'GothamPro'; src: url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Medium.woff2) format("woff2"), url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Medium.woff) format("woff"); font-style: normal; font-weight: 500; }

@font-face { font-family: 'GothamPro'; src: url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Bold.woff2) format("woff2"), url(/National_Library/20161014125122oe_/https://gitnation.org/fonts/GothamPro-Bold.woff) format("woff"); font-style: normal; font-weight: 700; }

/* Slider */
.slick-slider { position: relative; display: block; -webkit-box-sizing: border-box; box-sizing: border-box; -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -ms-touch-action: pan-y; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }

.slick-list { position: relative; overflow: hidden; display: block; margin: 0; padding: 0; }

.slick-list:focus { outline: none; }

.slick-list.dragging { cursor: pointer; cursor: hand; }

.slick-slider .slick-track, .slick-slider .slick-list { -webkit-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }

.slick-track { position: relative; left: 0; top: 0; display: block; margin-left: auto; margin-right: auto; }

.slick-track:before, .slick-track:after { content: ""; display: table; }

.slick-track:after { clear: both; }

.slick-loading .slick-track { visibility: hidden; }

.slick-slide { float: left; height: 100%; min-height: 1px; display: none; }

[dir="rtl"] .slick-slide { float: right; }

.slick-slide img { display: block; }

.slick-slide.slick-loading img { display: none; }

.slick-slide.dragging img { pointer-events: none; }

.slick-initialized .slick-slide { display: block; }

.slick-loading .slick-slide { visibility: hidden; }

.slick-vertical .slick-slide { display: block; height: auto; border: 1px solid transparent; }

.slick-arrow.slick-hidden { display: none; }

/*----- Hero -----*/
.hero { display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; color: var(--clr-white); background: url(/National_Library/20161014125122oe_/https://gitnation.org/img/h-bg.png) center bottom, #fe5619; background-size: cover; }

.hero.full-height { min-height: 100vh; }

.hero a { text-decoration: none; }

.hero > .container { width: 100%; min-height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-top: 130px; padding-bottom: 60px; min-height: 60vh; }

.hero__head { position: absolute; top: 0; left: 0; right: 0; z-index: 5; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; width: 100%; padding: 40px 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

.hero__head .container { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; padding-top: 0; padding-bottom: 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

.hero__burger { width: 40px; height: 40px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; cursor: pointer; display: none; z-index: 12; }

.hero__burger.is-active span:nth-child(1) { -webkit-transform: translate(0, 9px) rotate(45deg); -ms-transform: translate(0, 9px) rotate(45deg); transform: translate(0, 9px) rotate(45deg); }

.hero__burger.is-active span:nth-child(2) { opacity: 0; }

.hero__burger.is-active span:nth-child(3) { -webkit-transform: translate(0, -9px) rotate(-45deg); -ms-transform: translate(0, -9px) rotate(-45deg); transform: translate(0, -9px) rotate(-45deg); }

.hero__burger.is-active span:nth-child(4) { opacity: 1; }

.hero__burger span { display: block; height: 3px; width: 30px; margin: 3px 0; background: var(--clr-theme); -webkit-transition: all ease 0.2s; -o-transition: all ease 0.2s; transition: all ease 0.2s; }

.hero__burger span:nth-child(4) { margin: 0; position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 56px; height: 56px; border: 3px solid var(--clr-theme); border-radius: 50%; opacity: 0; background: transparent; }

.hero__logo { font-family: var(--gothamPro); font-weight: 500; margin: 0; font-size: 28px; }

.hero__logo a { display: block; text-decoration: none; color: var(--clr-white); }

.hero__nav { margin: 0 -20px; }

.hero__content { margin: auto 0; width: 100%; }

.hero__inner { padding: 0 0 0 190px; position: relative; }

.hero__inner:before { content: ''; position: absolute; left: 5px; top: 38px; width: 130px; height: 7px; background: var(--clr-white); }

.hero__title { font-family: var(--gothamPro); font-weight: 700; font-size: 72px; text-transform: uppercase; line-height: 1.14; margin: 0; }

.hero__button { margin-top: 30px; }

.hero .socials { position: absolute; right: 15px; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }

.hero .socials__item { margin: 2px 0; }

.hero .socials__item:first-child { margin: 2px 0; }

.hero .socials__img { width: 17px; height: 14px; width: 100%; fill: var(--clr-text); -webkit-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }

.hero .socials__img.sl { width: 24px; height: 24px; }

.hero .socials__img.tw { width: 24px; height: 24px; }

.hero .socials__img.yt { width: 24px; height: 24px; }

.hero .socials__img.fb { width: 24px; height: 24px; }

.hero .socials__img.med { width: 22px; height: 24px; }

.hero .socials__img.gh { width: 24px; height: 24px; }

.menu-btn { display: none; position: absolute; right: 0; top: -10px; width: 50px; height: 50px; background: url(/National_Library/20161014125122oe_/https://gitnation.org/svg/menu_btn.svg) center center no-repeat; background-size: 100%; cursor: pointer; }

.menu-btn.close { background: url(/National_Library/20161014125122oe_/https://gitnation.org/svg/menu_close.svg) center center no-repeat; background-size: 100%; }

.main-nav.closed { display: block; }

.smiles { position: absolute; left: 0; top: 0; right: 0; bottom: 0; }

.smiles__row { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }

.smiles__row:nth-child(odd) { left: -4.17vw; }

.smiles__row.rnd { background: #f00; }

.smiles__img { width: 8.34vw; height: calc(8.34vw * 1.11); -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; fill: #fe7800; opacity: 1; -webkit-transition: opacity ease 1s; -o-transition: opacity ease 1s; transition: opacity ease 1s; display: none; }

.smiles__img.hidden { opacity: 0; }

.smiles .smiles__img { display: block; }

.h-menu { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; position: relative; top: 0; padding: 0; margin: 0; list-style: none; font-size: 16px; }

.h-menu__item { display: inline-block; margin: 0 0 0 4px; }

.h-menu__link { position: relative; display: block; text-decoration: none; padding: 13px 20px 12px; z-index: 1; border-radius: 5px; -webkit-transition: all ease 0.2s; -o-transition: all ease 0.2s; transition: all ease 0.2s; color: var(--clr-white); }

.h-menu__link:after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; right: 0; opacity: 0; background: #fff; -webkit-transition: all ease .2s; -o-transition: all ease .2s; transition: all ease .2s; border-radius: 3px; z-index: -1; -webkit-transition: all ease 0.2s; -o-transition: all ease 0.2s; transition: all ease 0.2s; -webkit-box-shadow: 0 0 0 -10px rgba(67, 64, 75, 0.5); box-shadow: 0 0 0 -10px rgba(67, 64, 75, 0.5); }

.h-menu__link:hover { color: var(--clr-theme); -webkit-box-shadow: 0 20px 20px -10px rgba(186, 50, 0, 0.5); box-shadow: 0 20px 20px -10px rgba(186, 50, 0, 0.5); }

.h-menu__link:hover:after { opacity: 1; }

.s-about { position: relative; background: url(/National_Library/20161014125122oe_/https://gitnation.org/img/bg-about.jpg) center center; background-size: cover; }

.s-about__video { position: absolute; display: block; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; -o-object-fit: cover; object-fit: cover; }

.s-about:after { content: ''; position: absolute; display: block; width: 100%; height: 100%; top: 0; left: 0; background: rgba(0, 0, 0, 0.7); }

.s-about .container { z-index: 1; }

.about { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: space-between; flex-direction: space-between; }

.about__intro { font-family: var(--gothamPro); font-weight: 500; font-size: 44px; line-height: 1.32; -webkit-box-flex: 0; -ms-flex: 0 0 56%; flex: 0 0 56%; padding: 0 4% 0 0; }

.about__intro p { margin: 0; }

.about__desc { font-family: var(--gothamPro); font-weight: 400; font-size: 14px; line-height: 1.92; -webkit-box-flex: 0; -ms-flex: 0 0 44%; flex: 0 0 44%; padding: 0; }

.about__desc p { margin: 8px 0 0; }

.about__desc p:not(:first-child) { margin: 14px 0 0; }

.s-focus .section__content { margin-top: 42px; }

.focus { padding: 0; margin: 42px 0 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }

.focus__item { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 42px 0; }

.focus__item:not(:first-child) { border-top: 2px solid #f0f0f0; }

.focus__img-wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 0 150px; flex: 0 0 150px; width: 150px; margin: auto 0; height: 120px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.focus__img { width: 100px; height: auto; fill: #d3d3cc; }

.focus__img.icon-focus_1 { width: 100px; }

.focus__img.icon-focus_2 { width: 83px; }

.focus__img.icon-focus_3 { width: 79px; }

.focus__img.icon-focus_4 { width: 80px; }

.focus__text { margin: 0 20px; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }

.focus__links { -webkit-box-flex: 0; -ms-flex: 0 0 374px; flex: 0 0 374px; font-size: 14px; line-height: 1.86; margin: 35px 0 0; }

.focus__links p { margin: 15px 0 0; }

.focus__title { font-family: var(--gothamPro); font-weight: 700; font-size: 30px; line-height: 1.18; margin: 0; padding: 0; }

.focus__title p { margin: 0; }

.focus__desc { font-size: 14px; line-height: 1.86; }

.focus__desc p { margin: 15px 0 0; }

.events { padding: 0; margin: 16px 0 0; list-style: none; }

.events__item { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 56px 0 74px; }

.events__item:not(:first-child) { border-top: 2px solid #f0f0f0; }

.events__img-wrap { -webkit-box-flex: 0; -ms-flex: 0 0 292px; flex: 0 0 292px; padding: 20px 20px 0; margin: 0 45px 0 0; }

.events__img-wrap img { width: 100%; height: auto; }

.events__content { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }

.events__title h2 { margin: 0; padding: 0; font-size: 42px; line-height: 1.12; }

.events__desc { line-height: 1.92; }

.events__desc p { margin: 14px 0 0; }

.events__info { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; line-height: 1.82; margin: 20px 0 0; }

.events__info p { margin: 14px 0 0; }

.events__stats { -webkit-box-flex: 3; -ms-flex: 3 1; flex: 3 1; margin: 0 20px 0 0; }

.events__links { -webkit-box-flex: 2; -ms-flex: 2 1; flex: 2 1; margin: 0 20px 0 0; }

.events__video-wrap { position: relative; margin: 14px 0 0; width: 142px; height: 80px; }

.events__video-wrap.is-active { width: auto; height: auto; position: fixed; display: -webkit-box; display: -ms-flexbox; display: flex; left: 0; top: -50px; right: 0; bottom: -50px; background: rgba(0, 0, 0, 0.3); z-index: 100; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.events__video-wrap.is-active div { position: relative; width: 75%; padding-top: 42.8%; }

.events__video-wrap.is-active iframe { position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 100%; height: 100%; }

.events__video-wrap.is-active:after { display: none; }

.events__video-wrap:after { content: ''; position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: 1; cursor: pointer; }

.events__video { -webkit-box-flex: 2; -ms-flex: 2 1; flex: 2 1; margin: 0; }

.events__video iframe { width: 142px; height: 80px; }

.events-tabs__btns { display: -webkit-box; display: -ms-flexbox; display: flex; font-size: 20px; }

.events-tabs__btn { position: relative; padding: 10px 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; cursor: pointer; line-height: 1.24; }

.events-tabs__btn:not(:first-child) { margin: 0 0 0 50px; }

.events-tabs__btn:after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: #d3d3cc; -webkit-transition: all ease 0.1s; -o-transition: all ease 0.1s; transition: all ease 0.1s; opacity: 0; }

.events-tabs__btn.is-active:after { opacity: 1; }

.events-tabs__tab { display: none; }

.events-tabs__tab.is-active { display: block; }

.s-visas .section__content { margin: 50px 0 0; }

.visas { position: relative; padding: 0; margin: 0; list-style: none; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; }

.visas:after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; background: #f0f0f0; width: 2px; }

.visas__item { padding: 50px 40px; width: 460px; }

.visas__item:nth-child(2) .visa-card { background: var(--clr-theme); -webkit-box-shadow: 0 35px 40px -20px rgba(254, 86, 25, 0.7); box-shadow: 0 35px 40px -20px rgba(254, 86, 25, 0.7); color: var(--clr-white); }

.visas__item:nth-child(2) .visa-card .icon { fill: var(--clr-white); }

.visas__desc h4 { font-family: var(--gothamPro); font-weight: 700; margin: 0 0 26px; font-size: 52px; line-height: 1; }

.visas__desc p { font-family: var(--gothamPro); font-weight: 400; margin: 0; font-size: 22px; line-height: 1.46; }

.visas .form-visa { display: none; }

.text-based h5 { font-family: var(--gothamPro); font-weight: 400; font-size: 22px; line-height: 1.46; margin: 0 0 20px; }

.text-based p { font-size: 14px; line-height: 1.36; margin: 16px 0; }

.text-based ul { padding: 0; list-style: none; }

.text-based ul li { position: relative; padding: 0 0 0 10px; }

.text-based ul li:not(:first-child) { margin: 10px 0 0 0; }

.text-based ul li:before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 1px; background: var(--clr-text); }

.text-based ul ul { margin: 5px 0 0 0; }

.text-based ul ul li { padding: 0 0 0 12px; }

.text-based ul ul li:not(:first-child) { margin: 5px 0 0 0; }

.text-based ul ul li:before { left: 2px; background: var(--clr-gray); }

.sponsors { padding: 100px 0; }

.sponsors .container { max-width: 1110px; }

.sponsors__description { max-width: 960px; margin: 0 auto 62px; }

.sponsors__description p { font-size: 20px; line-height: 1.6; text-align: center; }

.sponsors__description p:not(:last-child) { margin-bottom: 18px; }

.sponsors__description p a { color: inherit; }

.sponsors-block__item { text-align: center; }

.sponsors-block + .sponsors-block { margin-top: 50px; }

.sponsors-block_xl .sponsors-block__item { max-width: 50%; width: 33.33%; }

.sponsors-block_lg .sponsors-block__item { padding: 25px 30px; max-width: 50%; width: 33.33%; }

.sponsors-block_lg .sponsors-block__item img { max-width: 100%; }

.sponsors-block_md .sponsors-block__list { margin: 0 -50px; }

.sponsors-block_md .sponsors-block__item { padding: 25px 30px; width: 33.33%; }

.sponsors-block_md .sponsors-block__item img { max-width: 100%; }

.sponsors-block_sm .sponsors-block__list { margin: 0 -25px; }

.sponsors-block_sm .sponsors-block__item { padding: 20px 25px; width: 25%; }

.sponsors-block_sm .sponsors-block__item img { max-width: 100%; }

.sponsors-block_xs .sponsors-block__list { margin: 0 -15px; }

.sponsors-block_xs .sponsors-block__item { width: 20%; }

.sponsors-block_xs .sponsors-block__item a { padding: 20px 25px; }

.sponsors-block_xs .sponsors-block__item img { max-width: 100%; }

.sponsors-block_auto .sponsors-block__list { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; margin: 0 -15px; }

.sponsors-block_auto .sponsors-block__item { width: auto; }

.sponsors-block_auto .sponsors-block__item a { padding: 20px 25px; }

.sponsors-block_auto .sponsors-block__item img { max-width: 100%; }

.sponsors-block_auto .sponsors-block__item:last-child { margin: 0 auto 0 0; }

.sponsors-block__list { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; list-style: none; padding: 0; }

.sponsors-block__item a { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-transition: 0.3s; -o-transition: 0.3s; transition: 0.3s; }

.sponsors-block__item a:hover { opacity: 0.7; }

.sponsors-block__item a img { -webkit-transition: all ease 0.2s; -o-transition: all ease 0.2s; transition: all ease 0.2s; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); opacity: 1; height: auto; }

.sponsors-block__title { text-align: center; font-size: 26px; font-family: var(--gothamPro); font-weight: 400; color: #888; margin-bottom: 20px; }

.s-mission { background: #d3d3cc; }

.s-mission.compact .container { padding: 116px var(--side-spacing); }

.s-mission.compact .section__title { display: none; }

.s-mission.compact .section__content { margin: 0; }

.s-mission.compact .mission__desc { display: none; }

.s-mission.compact .mission__bottom { margin: 0; }

.mission__desc { font-family: var(--gothamPro); font-weight: 500; font-size: 44px; line-height: 1.32; padding: 0 95px; }

.mission__bottom { display: -webkit-box; display: -ms-flexbox; display: flex; margin: 110px 0 0; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

.mission__tip { font-size: 14px; line-height: 1.92; margin: 0 40px 0 0; }

.mission__tip p { margin: 0; }

.mission__mail { font-family: var(--gothamPro); font-weight: 700; font-size: 48px; line-height: 1.1; }

.mission__mail p { margin: 0; padding: 0; }

.mission__mail a { color: var(--clr-text); }

.citizenship-info { display: -webkit-box; display: -ms-flexbox; display: flex; }

.citizenship-info__tip { margin: 100px 0 0; }

.citizenship-info__card { -webkit-box-flex: 1; -ms-flex: 1 1 50%; flex: 1 1 50%; min-width: 524px; margin: 0 65px 0 0; }

.citizenship-info__card .visa-card { width: 364px; margin: 0 auto; }

.visa-card { height: 218px; border-radius: 5px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; background: #fffc00; padding: 0 64px; margin: 0 0 50px; color: var(--clr-black); text-align: left; -webkit-box-shadow: 0 35px 40px -20px rgba(255, 252, 0, 0.7); box-shadow: 0 35px 40px -20px rgba(255, 252, 0, 0.7); }

.visa-card.citizenship { background: var(--clr-theme); -webkit-box-shadow: 0 35px 40px -20px rgba(254, 86, 25, 0.7); box-shadow: 0 35px 40px -20px rgba(254, 86, 25, 0.7); color: var(--clr-white); }

.visa-card.citizenship .icon { fill: var(--clr-white); }

.visa-card__img { margin: 0 35px 0 0; }

.visa-card__img .icon-face { width: 65px; height: 83px; fill: var(--clr-black); }

.visa-card__desc h3 { font-family: var(--gothamPro); font-weight: 400; font-size: 20px; line-height: 1.2; margin: 0 0 6px; }

.visa-card__desc p { font-size: 14px; margin: 0; line-height: 1.36; }

.pass-list { margin: 30px 0 0; padding: 0; list-style: none; }

.pass-list__item { display: -webkit-box; display: -ms-flexbox; display: flex; padding: 50px 0; }

.pass-list__item:not(:first-child) { border-top: 2px solid #f0f0f0; }

.pass-list__item:first-child .pass-list__price-regular, .pass-list__item:first-child .pass-list__price-multipass { position: relative; }

.pass-list__item:first-child .pass-list__price-regular:before, .pass-list__item:first-child .pass-list__price-multipass:before { font-family: var(--gothamPro); font-weight: 400; font-size: 14px; position: absolute; left: 0; right: 0; top: -80px; color: var(--clr-text); content: 'Regular price'; }

.pass-list__item:first-child .pass-list__price-multipass:before { content: 'With Multipass'; }

.pass-list__item:last-child { text-align: right; }

.pass-list__img-wrap { width: 174px; -webkit-box-flex: 0; -ms-flex: 0 0 174px; flex: 0 0 174px; margin: 0 60px 0 0; }

.pass-list__img { width: 100%; height: auto; display: block; }

.pass-list__content { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }

.pass-list__title { font-size: 24px; line-height: 1.36; margin: 0; }

.pass-list__title span { font-family: var(--gothamPro); font-weight: 300; }

.pass-list__line { display: -webkit-box; display: -ms-flexbox; display: flex; }

.pass-list__line:not(:nth-child(2)) .pass-list__price-regular:before, .pass-list__line:not(:nth-child(2)) .pass-list__price-multipass:before { display: none; }

.pass-list__line:not(:first-child) { margin: 12px 0 0; }

.pass-list__text { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; font-size: 14px; line-height: 1.86; margin: 0 50px 0 0; }

.pass-list__text p:not(:first-child) { margin: 12px 0 0; }

.pass-list__prices { -webkit-box-flex: 0; -ms-flex: 0 0 360px; flex: 0 0 360px; display: -webkit-box; display: -ms-flexbox; display: flex; }

.pass-list__price-regular { font-family: var(--gothamPro); font-weight: 300; text-align: center; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; font-size: 42px; line-height: 1.36; color: #ababab; padding: 8px 0; }

.pass-list__price-regular span { text-decoration: line-through; }

.pass-list__price-multipass { font-family: var(--gothamPro); font-weight: 700; text-align: center; -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; font-size: 52px; line-height: 1.36; }

.coc__description { text-align: center; font-size: 20px; line-height: 1.6; max-width: 970px; margin: 40px auto 0; }

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

.coc__description a:hover { text-decoration: underline; }

.coc__description p:not(:last-child) { margin-bottom: 40px; }

.coc__content h2, .coc__content h3 { font-size: 48px; line-height: 1.2; margin: 80px 0 40px; text-align: center; }

.coc__content ul, .coc__content ol { font-size: 16px; line-height: 1.64; margin: 24px 0; padding-left: 20px; list-style: none; }

.coc__content ul li, .coc__content ol li { position: relative; padding-left: 20px; }

.coc__content ul li:after { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: var(--clr-theme); border-radius: 50%; }

.coc__content ol { counter-reset: section; padding: 0; }

.coc__content ol li:before { color: var(--clr-theme); display: inline-block; font-weight: 700; min-width: 20px; counter-increment: section; content: counters(section, ".") " "; }

.coc__content p { font-size: 16px; line-height: 1.64; }

.coc__content p + p { margin-top: 16px; }

.coc__content a { color: var(--clr-theme); text-decoration: underline; }

.coc__content a:hover { text-decoration: none; }

.menu-toggle { position: absolute; top: 6px; right: 8px; width: 40px; height: 40px; display: none; cursor: pointer; background: none; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding: 0; border: none; outline: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; z-index: 11; }

.menu-toggle span { display: block; width: 24px; height: 3px; background: var(--clr-text); margin: 3px auto; -webkit-transition: all ease 0.2s; -o-transition: all ease 0.2s; transition: all ease 0.2s; }

.menu-toggle.is-active span:nth-child(1) { -webkit-transform: translateY(9px) rotate(45deg); -ms-transform: translateY(9px) rotate(45deg); transform: translateY(9px) rotate(45deg); }

.menu-toggle.is-active span:nth-child(2) { opacity: 0; }

.menu-toggle.is-active span:nth-child(3) { -webkit-transform: translateY(-9px) rotate(-45deg); -ms-transform: translateY(-9px) rotate(-45deg); transform: translateY(-9px) rotate(-45deg); }

.info-loc { font-family: var(--gothamPro); font-weight: 700; font-size: 24px; line-height: 1.28; font-weight: 500; display: -webkit-box; display: -ms-flexbox; display: flex; }

.info-loc__item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin: 0 0 0 40px; }

.info-loc__item:first-child { margin: 0; }

.info-loc .icon { width: 32px; height: 32px; fill: var(--clr-green); margin: 0 8px 0 0; }

.info-stats { display: -webkit-box; display: -ms-flexbox; display: flex; }

.info-stats__item { margin: 0 50px 0 0; }

.info-stats__title { font-family: var(--gothamPro); font-weight: 700; font-size: 24px; line-height: 1.28; color: var(--clr-green); margin: 0 0 8px; }

.info-stats__desc { font-family: var(--gothamPro); font-weight: 400; font-size: 16px; line-height: 1.64; margin: 0; }

.main-nav { font-size: 14px; display: -webkit-box; display: -ms-flexbox; display: flex; padding: 0; margin: 0 auto; list-style: none; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; }

.main-nav__item { position: relative; }

.main-nav__item.active:after, .main-nav__item:hover:after { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }

.main-nav__item:hover .nav__link { color: var(--clr-black); }

.main-nav__link { display: -webkit-box; display: -ms-flexbox; display: flex; height: 34px; text-decoration: none; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0 12px; color: var(--clr-white); background: transparent; -webkit-transition: all ease 0.1s; -o-transition: all ease 0.1s; transition: all ease 0.1s; }

.main-nav__link:hover { color: var(--clr-black); background: var(--clr-green); }

.main-nav__link.basic-btn { height: 48px; background: var(--clr-white); color: var(--clr-black); margin: -7px 0 -7px 12px; }

.main-nav__link .icon-arrow-link { fill: var(--clr-black); width: 14px; height: 13px; margin: 0 0 0 10px; }

.sub-nav { position: absolute; left: 0; top: 0; padding: 0; margin: 0; list-style: none; padding: 0; background: var(--clr-white); z-index: 1; }

.sub-nav:after { content: ''; position: absolute; background: var(--clr-green); left: -6px; top: 10px; width: 100%; height: 100%; z-index: -1; }

.sub-nav__link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; height: 38px; padding: 0 16px; text-decoration: none; color: var(--clr-black); white-space: nowrap; }

.sub-nav__link:hover { color: var(--clr-green); }

.socials { padding: 0; margin: 0; list-style: none; display: -webkit-box; display: -ms-flexbox; display: flex; }

.socials__item { margin: 0 0 0 10px; }

.socials__item:first-child { margin: 0; }

.socials__link { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; height: 40px; width: 40px; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.socials__link:hover .socials__img { fill: var(--clr-green); }

.socials__link:hover:after { opacity: 1; }

.socials__img { width: 17px; height: 14px; width: 100%; fill: var(--clr-white); -webkit-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }

.socials__img.sl { width: 20px; height: 20px; }

.socials__img.tw { width: 20px; height: 20px; }

.socials__img.yt { width: 20px; height: 20px; }

.socials__img.fb { width: 20px; height: 20px; }

.socials__img.med { width: 20px; height: 20px; }

.socials__img.gh { width: 20px; height: 20px; }

.table { border: 2px solid var(--clr-green); background: var(--clr-black); font-family: var(--gothamPro); font-weight: 400; font-size: 22px; line-height: 1.6; color: var(--clr-green); position: relative; }

.table .anchor-item { text-decoration: none; }

.table .anchor-item:hover { text-decoration: underline; }

.table__body { position: relative; z-index: 2; background-color: var(--clr-black); }

.table__row { display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; }

.table__row:not(:last-child):after { position: absolute; content: ''; display: block; width: 100%; height: 2px; background-color: var(--clr-grayL); top: 100%; left: 0; -webkit-transform: translate(0, -50%); -ms-transform: translate(0, -50%); transform: translate(0, -50%); display: none; }

.table__row-content { display: -webkit-box; display: -ms-flexbox; display: flex; width: 100%; }

.table__col { padding: 22px 26px; }

.table__col_sm { width: 106px; -ms-flex-negative: 0; flex-shrink: 0; }

.table__col_md { width: 230px; -ms-flex-negative: 0; flex-shrink: 0; padding-right: 0; }

.table__col_lg { width: 100%; }

.table__col_empty { position: relative; overflow: hidden; }

.table__col_empty:after { position: absolute; content: ''; display: block; width: 150%; height: 1px; background-color: var(--clr-grayL); top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%) rotate(-5.6deg); -ms-transform: translate(-50%, -50%) rotate(-5.6deg); transform: translate(-50%, -50%) rotate(-5.6deg); }

.table__title:not(:last-child) { margin-bottom: 23px; }

.table__title a { color: var(--clr-white); text-decoration: none; }

.table__title a:hover { text-decoration: underline; }

.table__descr { font-size: 16px; line-height: 1.4; color: var(--clr-white); }

.table__descr p:not(:last-child) { margin-bottom: 10px; }

.table__descr a { color: inherit; }

.no-touch .table__descr a:hover { text-decoration: none; }

.table__descr img { max-width: 100%; }

.table__section:not(:last-child) { border-bottom: 4px solid var(--clr-green); }

.table__section .table__row:not(:first-child) .table__col_sm { font-size: 18px; font-family: var(--gothamPro); font-weight: 400; }

.table_sm .table__row:after { background-color: transparent; }

.table_sm .table__col_sm { width: 340px; }

.table-wrapper { color: var(--clr-green); padding: 160px 0 40px; background: var(--clr-grayL); }

.table-wrapper__title:not(:last-child) { margin-bottom: 64px; }

.table-wrapper__descr { max-width: 850px; }

.table-wrapper__descr:not(:last-child) { margin-bottom: 82px; }

.section.light { color: var(--clr-black); }

.section.dark { color: var(--clr-white); }

.section__head { display: -webkit-box; display: -ms-flexbox; display: flex; }

.section__head-l { -webkit-box-flex: 0; -ms-flex: 0 1 52%; flex: 0 1 52%; }

.section__head-r { -webkit-box-flex: 0; -ms-flex: 0 1 48%; flex: 0 1 48%; display: -webkit-box; display: -ms-flexbox; display: flex; }

.section__head-r .basic-btn { margin: auto 0 auto auto; }

.section__title { font-family: var(--gothamPro); font-weight: 400; font-size: 26px; line-height: 1; margin: 0px; }

.section__title.big { font-family: var(--gothamPro); font-weight: 500; line-height: 1.36; font-size: 44px; }

.section__desc { font-family: var(--gothamPro); font-weight: 400; font-size: 16px; line-height: 1.4; margin: 25px 0 0; }

.section__content { margin: 82px 0 0; }

/*----- Forms -----*/
.form { text-align: left; max-width: 500px; margin: 0 auto; }

.form__title { font-family: var(--gothamPro); font-weight: 400; font-size: 22px; line-height: 1.32; margin: 0 0 30px; }

.form__body { position: relative; }

.form__line { margin: 16px 0 0; }

.form__line--spaced { margin: 36px 0 0; }

.form__label { font-size: 12px; display: block; padding: 0 20px; margin: 6px 0; }

.form__input, .form__textarea, .form__select { display: block; width: 100%; border: 2px solid #f0f0f0; border-radius: 5px; height: 48px; padding: 0 18px; -webkit-transition: all ease .1s; -o-transition: all ease .1s; transition: all ease .1s; }

.form__input:focus, .form__input:active, .form__textarea:focus, .form__textarea:active, .form__select:focus, .form__select:active { border-color: var(--clr-theme); }

.form__textarea { height: auto; width: 100%; min-height: 80px; min-width: 100%; }

.form__submit { min-width: 238px; }

.form-photo { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }

.form-photo__photo { width: 107px; height: 107px; border-radius: 5px; background: #d3d3cc; margin: 0 40px 0 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }

.form-photo__photo .icon { width: 51px; height: auto; fill: #a2a29c; }

/*----- Buttons -----*/
.btns-wrap { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin: 35px -5px 0 -5px; }

.btns-wrap.to-right { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; }

.btns-wrap .btn { min-width: 156px; margin: 15px 5px 0 5px; fill: var(--clr-black); }

.btn { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; font-family: var(--gothamPro); font-weight: 400; font-size: 14px; line-height: 1.36; min-height: 58px; padding: 5px 20px; border-radius: 5px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background: var(--clr-theme); color: var(--clr-white); -webkit-box-align: center; -ms-flex-align: center; align-items: center; text-align: center; text-decoration: none; overflow: hidden; outline: none; border: 2px solid transparent; -webkit-box-shadow: none; box-shadow: none; cursor: pointer; -ms-flex-negative: 0; flex-shrink: 0; -webkit-transition: all ease 0.1s; -o-transition: all ease 0.1s; transition: all ease 0.1s; }

.btn:hover { background: var(--clr-themeH); -webkit-box-shadow: 0 20px 30px -15px rgba(254, 86, 25, 0.7); box-shadow: 0 20px 30px -15px rgba(254, 86, 25, 0.7); }

.btn--sm { font-size: 12px; min-height: 38px; }

.btn--md { min-height: 48px; }

.btn--white { background: var(--clr-white); color: var(--clr-theme); -webkit-box-shadow: 0 0 0 var(--clr-black); box-shadow: 0 0 0 var(--clr-black); padding: 0 30px; font-weight: 600; text-transform: uppercase; }

.btn--white:hover { background: var(--clr-theme); border-color: var(--clr-white); color: var(--clr-white); }

.btn--transparent { color: var(--clr-text); background: transparent; border-color: transparent; }

.btn--transparent:hover { border-color: var(--clr-theme); background: transparent; color: var(--clr-theme); }

.btn--bordered { color: var(--clr-green); background: transparent; border-color: var(--clr-green); }

.btn--bordered:hover { background: var(--clr-green); color: var(--clr-black); }

.btn--gray { background: #e8e7e7; color: var(--clr-text); }

.btn--gray:hover { background: #d3d3d3; color: var(--clr-text); -webkit-box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.3); box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.3); }

/*----- Header -----*/
.header { position: absolute; left: 0; top: 54px; right: 0; -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; z-index: 10; display: none; }

.header .container { position: relative; max-width: 1210px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 20px 68px; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }

.header__logo { position: relative; width: 150px; margin: 0 20px 0 0; }

.header__main-nav { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; margin: 0 0 0 auto; }

.header__tickets { margin: -7px 0 -7px 10px; }

.header.sticky { background: #f00; }

.header.sticky .logo-mini { opacity: 1; -webkit-transform: rotate(0) scale(1); -ms-transform: rotate(0) scale(1); transform: rotate(0) scale(1); }

.header.sticky .socials__link { fill: #f00; }

.header.sticky .socials__link:hover .socials__img { fill: var(--clr-white); }

.header .socials { display: none; }

.logo { position: absolute; left: -20px; top: -50px; height: 101px; width: 149px; z-index: 1; }

.logo__link { display: block; height: 100%; width: 100%; background: url(/National_Library/20161014125122oe_/https://gitnation.org/img/logo.svg) no-repeat; background-size: cover; -webkit-transition: none; -o-transition: none; transition: none; }

/*----- Content -----*/
.content { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }

.list-dashed { padding: 0; list-style: none; }

.list-dashed li { position: relative; padding: 0 0 0 10px; }

.list-dashed li:not(:first-child) { margin: 10px 0 0 0; }

.list-dashed li:before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 1px; background: var(--clr-text); }

.list-dashed .list-dashed { margin: 5px 0 0 0; }

.list-dashed .list-dashed li { padding: 0 0 0 12px; }

.list-dashed .list-dashed li:not(:first-child) { margin: 5px 0 0 0; }

.list-dashed .list-dashed li:before { left: 2px; background: var(--clr-gray); }

.footer { color: var(--clr-text); background: #d3d3cc; border-top: 2px solid #c2c2bc; }

.footer .container { padding-top: 32px; padding-bottom: 32px; }

.footer__info { font-size: 14px; line-height: 1.86; display: -webkit-box; display: -ms-flexbox; display: flex; }

.footer__info p { margin: 0; }

.footer__info p:not(:first-child) { margin-left: 100px; }

@media only screen and (max-width: 1480px) { .sponsors__description p { font-size: 18px; } }

@media only screen and (max-width: 1280px) { .h-menu__link { padding-left: 15px; padding-right: 15px; } .focus__links { -webkit-box-flex: 0; -ms-flex: 0 0 320px; flex: 0 0 320px; } .citizenship-info__card { min-width: 364px; } .header .container { max-width: 1010px; } }

@media only screen and (max-width: 1024px) { .container { max-width: 1260px; --side-spacing: 40px; } .container { padding: 50px var(--side-spacing) 30px; } .container--lg { padding: 76px var(--side-spacing); } .container--lg-top { padding: 76px var(--side-spacing) 30px; } .container--lg-bottom { padding: 50px var(--side-spacing) 76px; } .overlay.is-active { visibility: visible; opacity: 1; } .hero__head { position: fixed; left: 0; top: 0; right: 0; padding: 10px 0 10px; z-index: 10; background: var(--clr-white); -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); box-shadow: 0 0 5px rgba(0, 0, 0, 0.25); }
  .hero__head.is-active .hero__logo { z-index: 12; }
  .hero__head.is-active .hero__nav { position: fixed; left: 0; top: 0; right: 0; bottom: 0; padding: 100px 40px 50px; z-index: 11; }
  .hero__head.is-active .h-menu { display: -webkit-box; display: -ms-flexbox; display: flex; } .hero__burger { display: -webkit-box; display: -ms-flexbox; display: flex; } .hero__logo { position: relative; top: 2px; }
  .hero__logo a { color: var(--clr-theme); } .hero__inner { padding: 0 0 0 18.5vw; }
  .hero__inner:before { left: 0.5vw; top: 3.8vw; width: 12.6vw; height: 0.6vw; } .hero__title { font-size: 7vw; } .hero .socials { position: relative; right: auto; top: auto; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .h-menu { display: none; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; max-width: 460px; margin: 0 auto; } .h-menu__item { margin: 0; }
  .h-menu__item:not(:first-child) { margin: 5px 0 0 0; } .h-menu__link { font-family: var(--gothamPro); font-weight: 500; color: var(--clr-theme); text-align: center; padding: 15px 20px 14px; }
  .h-menu__link:hover { -webkit-box-shadow: 0 5px 15px -5px rgba(186, 50, 0, 0.5); box-shadow: 0 5px 15px -5px rgba(186, 50, 0, 0.5); }
  .h-menu__link:after { display: none; } .about { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .about__intro { -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; font-size: 32px; margin: 0 0 12px; padding: 0; } .about__desc { -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; padding: 0; } .focus__links { -webkit-box-flex: 0; -ms-flex: 0 0 260px; flex: 0 0 260px; } .events__img-wrap { -webkit-box-flex: 0; -ms-flex: 0 0 192px; flex: 0 0 192px; margin: 0 25px 0 0; padding: 10px 10px 0; } .events__title h2 { font-size: 30px; } .s-visas .section__content { margin-top: 30px; } .visas { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .visas:after { display: none; } .visas__item { padding: 20px 0 40px; margin: 0 auto; max-width: 748px; width: 100%; text-align: center; }
  .visas__item:not(:first-child) { padding: 40px 0; border-top: 2px solid #f0f0f0; } .visas__btns { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .sponsors-block_lg .sponsors-block__item { padding: 20px; } .sponsors-block_md .sponsors-block__list { margin: 0 -20px; } .sponsors-block_md .sponsors-block__item { padding: 20px; } .sponsors-block_sm .sponsors-block__item { padding: 20px; } .sponsors-block_xs .sponsors-block__item a { padding: 20px; } .sponsors-block_auto .sponsors-block__item a { padding: 20px; } .sponsors-block__item { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .mission__desc { font-size: 36px; padding: 0 55px; } .mission__bottom { margin: 40px 0 0; } .mission__mail { font-size: 40px; } .citizenship-info { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .citizenship-info__card { margin: 0 0 40px; } .visa-card { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; width: 364px; margin: 0 auto 50px; } .pass-list__item { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .pass-list__item:first-child .pass-list__img-wrap { margin: 0 auto 60px; } .pass-list__img-wrap { width: 200px; -webkit-box-flex: 0; -ms-flex: 0 0; flex: 0 0; margin: 0 auto 36px; } .pass-list__prices { -webkit-box-flex: 0; -ms-flex: 0 0 310px; flex: 0 0 310px; } .pass-list__price-regular { font-size: 38px; } .pass-list__price-multipass { font-size: 48px; } .menu-toggle { display: -webkit-box; display: -ms-flexbox; display: flex; } .main-nav { display: none; margin: 0 0 24px; } .main-nav__item { margin: 0 0 16px; width: 100%; } .main-nav__link { font-family: var(--gothamPro); font-weight: 400; font-weight: 500; height: 48px; border: 1px solid var(--clr-green); background: #1c1c1c; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-align: center; font-size: 18px; } .table { padding-left: 10px; font-size: 16px; margin-left: 0; } .table__col { padding: 10px 14px; } .table__col_sm { width: 79px; } .table__col_md { width: 200px; } .table__col_empty:after { -webkit-transform: translate(-50%, -50%) rotate(-4.9deg); -ms-transform: translate(-50%, -50%) rotate(-4.9deg); transform: translate(-50%, -50%) rotate(-4.9deg); } .table__descr { font-size: 14px; line-height: 1.6; } .section__title.big { font-size: 36px; } .section__content { margin-top: 40px; } .header { position: fixed; top: 0; height: 52px; background: #1c1c1c; } .header .container { max-width: 768px; padding: 9px 58px 9px 5px; } .header.is-active { visibility: visible; opacity: 1; height: 100vh; }
  .header.is-active .container { height: 100%; }
  .header.is-active:after { content: ''; position: absolute; left: 0; top: 52px; right: 0; height: 1px; background: var(--clr-green); }
  .header.is-active .main-nav { 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-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; }
  .header.is-active .header__main-nav { position: absolute; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; left: 0; right: 0; top: 100px; bottom: 0; width: 220px; margin: 0 auto; }
  .header.is-active .header__tickets { margin: 0; }
  .header.is-active .socials { display: -webkit-box; display: -ms-flexbox; display: flex; position: absolute; left: 0; right: 0; bottom: 20px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .logo { left: 0; top: -3px; height: 64px; width: 96px; } }

@media only screen and (max-width: 768px) { .container { max-width: 1220px; --side-spacing: 20px; } .hero > .container { min-height: 45vh; } .about__intro { font-size: 24px; } .focus { -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; margin: 0 -20px; } .focus__item { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-flex: 1; -ms-flex: 1 1 50%; flex: 1 1 50%; text-align: center; border-top: none; }
  .focus__item:not(:first-child) { border-top: none; }
  .focus__item:nth-child(1n + 3) { border-top: 2px solid #f0f0f0; } .focus__img-wrap { width: 100%; height: 100px; -webkit-box-flex: 0; -ms-flex: 0 0 100px; flex: 0 0 100px; margin: 0 0 14px; } .focus__links { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; margin: 0 20px 0; } .events__item { padding: 26px 0 44px; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .events__img-wrap { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; height: auto; width: 200px; margin: 0 auto 10px; } .events__title { display: none; }
  .events__title h2 { text-align: center; } .events__info { -ms-flex-wrap: wrap; flex-wrap: wrap; } .events__video-wrap { display: block; width: 264px; height: 160px; margin: 14px auto 0; } .events__video { -webkit-box-flex: 2; -ms-flex: 2 1 100%; flex: 2 1 100%; } .events__video iframe { width: 264px; height: 160px; } .text-based h5 { font-size: 18px; } .sponsors { padding: 40px 0; } .sponsors-block_lg .sponsors-block__item { width: 50%; } .sponsors-block_sm .sponsors-block__item { width: 33.33%; } .sponsors-block_xs .sponsors-block__item { width: 25%; } .mission__desc { font-size: 28px; padding: 0 35px; } .mission__bottom { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .mission__mail { font-size: 32px; margin: 20px 0 0; } .citizenship-info__card { position: relative; min-width: 300px; margin: 0 -10px 30px; } .citizenship-info__card .visa-card { width: 300px; } .visa-card { width: 300px; height: 180px; padding: 0 35px; } .visa-card__img { margin: 0 25px 0 0; } .pass-list__item:first-child .pass-list__img-wrap { margin: 0 auto 36px; } .pass-list__item:first-child .pass-list__price-regular, .pass-list__item:first-child .pass-list__price-multipass { position: relative; }
  .pass-list__item:first-child .pass-list__price-regular:before, .pass-list__item:first-child .pass-list__price-multipass:before { font-family: var(--gothamPro); font-weight: 400; font-size: 14px; position: absolute; left: 0; right: 0; top: 0; color: var(--clr-text); content: 'Regular price'; }
  .pass-list__item:first-child .pass-list__price-multipass:before { content: 'Multipass price'; }
  .pass-list__item .pass-list__price-regular, .pass-list__item .pass-list__price-multipass { position: relative; }
  .pass-list__item .pass-list__price-regular:before, .pass-list__item .pass-list__price-multipass:before { font-family: var(--gothamPro); font-weight: 400; font-size: 14px; position: absolute; left: 0; right: 0; top: 0; color: var(--clr-text); content: 'Regular price'; }
  .pass-list__item .pass-list__price-multipass:before { content: 'Multipass price'; } .pass-list__title { text-align: center; }
  .pass-list__title span { display: block; } .pass-list__line { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; text-align: center; }
  .pass-list__line:not(:nth-child(2)) .pass-list__price-regular:before, .pass-list__line:not(:nth-child(2)) .pass-list__price-multipass:before { display: block; } .pass-list__text { margin: 0; } .pass-list__prices { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; min-width: 260px; margin: 10px auto; } .pass-list__price-regular { padding-top: 24px; font-size: 32px; } .pass-list__price-multipass { padding-top: 16px; font-size: 42px; } .coc__description { font-size: 18px; } .coc__content h2, .coc__content h3 { font-size: 38px; margin: 60px 0 30px; } .table { padding-left: 0; font-size: 18px; line-height: 1.5; } .table__row-content { display: block; border-left: 2px solid var(--clr-grayL); width: 100%; } .table__col_sm { width: 77px; } .table__col_md { width: 100%; } .table__col_lg { width: 100%; border-top: 2px solid #f8f8f8; } .table__col:not(.table__col_lg) { border-right: none; } .table__col_empty { display: none; } .table__descr { font-size: 12px; line-height: 1.5; } .table__section .table__row:not(:first-child) .table__col_sm { font-size: 16px; } .table_sm .table__col_lg { border: none; } .table-wrapper { padding: 83px 0 87px; } .table-wrapper__title:not(:last-child) { margin-bottom: 32px; } .table-wrapper__descr:not(:last-child) { margin-bottom: 24px; } .section__head { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .section__head-l { -webkit-box-flex: 0; -ms-flex: 0 1 100%; flex: 0 1 100%; } .section__title { font-size: 22px; margin: 0px; } .section__title.big { font-size: 28px; } .section__desc { font-size: 14px; line-height: 1.44; margin: 14px 0 0; } .header .container { max-width: 896px; } }

@media only screen and (max-width: 680px) { .sponsors__description { margin-bottom: 42px; } .sponsors__description p { font-size: 16px; } }

@media only screen and (max-width: 640px) { .smiles__row:nth-child(odd) { left: -8vw; }
  .smiles__img { width: 16vw; height: calc(16vw * 1.11); } }

@media only screen and (max-width: 576px) { .container { padding: 50px var(--side-spacing) 30px; } .container--lg { padding: 50px var(--side-spacing); } .container--lg-top { padding: 50px var(--side-spacing) 30px; } .container--lg-bottom { padding: 50px var(--side-spacing) 50px; } .hero > .container { min-height: auto; } .hero__inner { padding: 0 0 0 0; margin: 0; }
  .hero__inner:before { display: none; } .hero__title { font-size: 12vw; } .hero .socials { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; margin: 8px 0; } .hero .socials__item { margin: 0 5px 0 0; }
  .hero .socials__item:first-child { margin: 0 5px 0 0; } .focus__item { -webkit-box-flex: 1; -ms-flex: 1 1 100%; flex: 1 1 100%; padding: 30px 0; }
  .focus__item:nth-child(1n + 3) { border-top: none; }
  .focus__item:nth-child(1n + 2) { border-top: 2px solid #f0f0f0; } .events__video-wrap.is-active div { width: 90%; padding-top: 50%; } .events-tabs__btns { margin: 0 0 0 -20px; overflow-x: auto; padding: 0 20px 6px; } .events-tabs__btn { font-size: 16px; height: auto; } .events-tabs__btn:not(:first-child) { margin: 0 0 0 30px; } .visas__item { margin: 0 -10px 0; width: auto; } .visas__desc { padding: 0 10px; } .visas__btns { margin: 15px auto 0; } .sponsors .section__title { margin-bottom: 28px; } .sponsors__description p { line-height: 1.8; } .sponsors__description p:not(:last-child) { margin-bottom: 5px; } .sponsors-block_auto .sponsors-block__item { width: 25%; }
  .sponsors-block_auto .sponsors-block__item a { padding: 15px 10px; } .sponsors-block__item { max-width: 230px; }
  .sponsors-block__item img { max-width: 100%; } .sponsors-block__title { color: #aaaaaa; font-size: 16px; margin-bottom: 32px; } .s-mission.compact .container { padding: 75px var(--side-spacing); } .mission__desc { font-size: 22px; padding: 0 0px; } .mission__mail { font-size: 30px; } .visa-card { margin: 0 auto 30px; } .pass-list__item { padding: 40px 0 20px; } .coc__content h2, .coc__content h3 { font-size: 32px; margin: 40px 0 20px; } .info-loc { font-size: 16px; } .info-stats__item { width: 188px; } .info-stats__title { font-size: 18px; margin: 0 0 4px; } .info-stats__desc { font-size: 16px; } .main-nav { font-size: 16px; } .table__descr { line-height: 1.75; } .table__section .table__row:first-child .table__col_sm { font-size: 24px; } .table_sm .table__row { display: block; } .table_sm .table__row-content { border: none; } .table_sm .table__col_sm { width: 100%; } .section__title { text-align: center; } }

@media only screen and (max-width: 480px) { .events__info { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin: 0 0 0; } .sponsors-block_lg .sponsors-block__item { padding: 7px; } .sponsors-block_md .sponsors-block__list { margin: 0 -10px; } .sponsors-block_md .sponsors-block__item { padding: 5px; } .sponsors-block_xs .sponsors-block__item { width: 33.3%; }
  .sponsors-block_xs .sponsors-block__item a { padding: 15px 10px; } .sponsors-block_auto .sponsors-block__item { width: 33.3%; }
  .sponsors-block_auto .sponsors-block__item a { padding: 15px 10px; } .coc__description { font-size: 16px; } .table { color: var(--clr-green); } .table__row-content { border-color: var(--clr-grayL); } .footer__info { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .footer__info p:not(:first-child) { margin: 14px 0 0; } }

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