@font-face {
	font-display: swap;
    font-family: 'Gotham Pro Light';
    src: url('../fonts/GothamPro-Light.eot');
    src: url('../fonts/GothamPro-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamPro-Light.woff') format('woff'),
    url('../fonts/GothamPro-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
	font-display: swap;
    font-family: 'Gotham Pro Regular';
    src: url('../fonts/GothamPro.eot');
    src: url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamPro.woff') format('woff'),
    url('../fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
	font-display: swap;
    font-family: 'Gotham Pro Medium';
    src: url('../fonts/GothamPro-Medium.eot');
    src: url('../fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamPro-Medium.woff') format('woff'),
    url('../fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
	font-display: swap;
    font-family: 'Gotham Pro Bold';
    src: url('../fonts/GothamPro-Bold.eot');
    src: url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamPro-Bold.woff') format('woff'),
    url('../fonts/GothamPro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

@font-face {
	font-display: swap;
    font-family: 'Gotham Pro Black';
    src: url('../fonts/GothamPro-Black.eot');
    src: url('../fonts/GothamPro-Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/GothamPro-Black.woff') format('woff'),
    url('../fonts/GothamPro-Black.ttf') format('truetype');
    font-weight: normal;
    font-style: normal
}

:root,
:root[data-theme=light] {
	--white: #FFFFFF;
	--rgb-white: 255, 255, 255;
	--black: #2B2A29;
	--rgb-black: 43, 42, 41;
	--yellow: #D7B56D;
	--rgb-yellow: 215, 181, 109;
	--pink: #B969A6;
	--rgb-pink: 185, 105, 166;
	--vl-blue: #E1EBF7;
	--rgb-vl-blue: 225, 235, 247;
	--l-blue: #9CBBE3;
	--rgb-l-blue: 156, 187, 227;
	--blue: #2770B6;
	--rgb-blue: 39, 112, 182;
	--l-red: #FFE1DB;
	--rgb-l-red: 255, 225, 219;
	--red: #CB2821;
	--rgb-red: 203, 40, 33;
	--l-green: #D5E6D5;
	--rgb-l-green: 213, 230, 213;
	--green: #1D750D;
	--rgb-green: 29, 117, 13;
	--gray: #DDDDDD;
	--rgb-gray: 221, 221, 221;
	--d-gray: #A1A0A0;
	--vd-gray: #343231;
	--rgb-vd-gray: 52, 50, 49;
	--input-bg: #F4F4F4;
	--rgb-input-bg: 244, 244, 244;
	--rgb-input-bg-rev: 65, 64, 63;
	--gradient: linear-gradient(135deg, var(--blue), var(--pink), var(--yellow));
	--text-color: var(--black);
	--bg-color: var(--white);
	--border-radius: 3px;
	--border-radius-xl: 15px;
	--plyr-color-main: var(--gradient);
	--font-light: 'Gotham Pro Light', sans-serif;
	--font-normal: 'Gotham Pro Regular', sans-serif;
	--font-medium: 'Gotham Pro Medium', sans-serif;
	--font-bold: 'Gotham Pro Bold', sans-serif;
	--font-black: 'Gotham Pro Black', sans-serif;
	--font-size: 1rem;
	--font-size-big: 1.25rem;
	--line-height: 1.5;
	--shadow: 0 0 10px 0 rgba(var(--rgb-vd-gray), .1);
	--b-shadow: 0 10px 10px 0 rgba(var(--rgb-vd-gray), .1);
	--this-transition: .25s linear 0s;
	--transition: all var(--this-transition);
	--slow-transition: all .5s linear 0s
}

:root[data-theme=dark] {
	--text-color: var(--white);
	--bg-color: var(--black);
	--gradient-edge: var(--black);
	--input-bg: #41403F;
	--rgb-input-bg: 65, 64, 63;
	--rgb-input-bg-rev: 244, 244, 244;
	--shadow: 0 0 10px 0 rgba(var(--rgb-gray), .1);
	--b-shadow: 0 10px 10px 0 rgba(var(--rgb-gray), .1)
}

*,
*::before,
*::after {
	box-sizing: border-box
}

*:focus {
	outline: none
}

@media (prefers-reduced-motion: no-preference) {
	:root {
		scroll-behavior: smooth
	}
}

body {
	min-height: 100vh;
	margin: 0;
	font-family: var(--font-normal);
	font-size: var(--font-size);
	line-height: var(--line-height);
	background-color: var(--bg-color);
	color: var(--text-color);
	text-align: left;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

body.overflow {
    overflow: hidden
}

.big-font {
    font-size: var(--font-size-big);
}

h6, h5, h4, h3, h2, h1 {
	margin: 0 0 1rem;
	font-weight: 500;
	line-height: 1.2;
	font-family: var(--font-black);
	text-transform: uppercase;
	color: var(--text-color);
	-webkit-tap-highlight-color: transparent;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

.news h4,
.project h4,
.news h3,
.project h3,
.programs h3,
.partners h2,
.news h2,
.gallery-pdf h2,
.project h2 {
    font-family: var(--font-medium);
    text-transform: none;
    margin: 0 0 1.5rem
}

.news p + h4
.news ul + h4,
.news ol + h4,
.project p + h4,
.project ul + h4,
.project ol + h4,
.news p + h3,
.news ul + h3,
.news ol + h3,
.project p + h3,
.project ul + h3,
.project ol + h3,
.news p + h2,
.news ul + h2,
.news ol + h2,
.project p + h2,
.project ul + h2,
.project ol + h2 {
    margin: 2.5rem 0 1.5rem
}

h1 {
	font-size: calc(1.375rem + 1.5vw)
}

h2 {
	font-size: calc(1.325rem + .9vw)
}

h3 {
	font-size: calc(1.3rem + .6vw)
}

h4 {
	font-size: calc(1.275rem + .3vw)
}

h5 {
	font-size: 1.25rem
}

h6 {
	font-size: 1rem
}

.t-transform-none {
    text-transform: none !important
}

.inline-block {
	display: inline-block
}

.w-25 {
	width: 25px !important
}

.w-30 {
	width: 30px !important
}

.w-50 {
	width: 50px !important
}

.w-50p {
    width: 50% !important
}

.w-75 {
	width: 75px !important
}

.w-100 {
	width: 100px !important
}

.w-100p {
	width: 100% !important
}

.w-150 {
	width: 150px !important
}

.h-100p {
	height: 100%
}

.mw-90 {
    max-width: 90%
}

.mw-80 {
    max-width: 80%
}

.mw-70 {
    max-width: 70%
}

.mb-0 {
	margin-bottom: 0
}

.mt-0 {
	margin-top: 0
}

.mt-50 {
	margin-top: 50px
}

@media (min-width: 992px) {
    .mw-lg-90 {
        width: 90%
    }

    .mw-lg-80 {
        width: 80%
    }

    .mw-lg-70 {
        width: 70%
    }
}

@media (min-width: 1200px) {
	h1 {
	    font-size: 3.5rem !important
	}

	h2 {
		font-size: 3rem !important
	}

    .partners h2,
	.news h2,
	.gallery-pdf h2,
	.project h2 {
	    font-size: 2.5rem !important
	}

	h3 {
		font-size: 2.25rem !important
	}

	.news h3,
	.project h3 {
	    font-size: 2rem !important
	}

	h4 {
		font-size: 2rem !important
	}

	.news h4,
	.project h4 {
	    font-size: 1.75rem !important
	}
}

p {
	margin-top: 0;
	margin-bottom: 1rem
}

ol,
ul {
	padding-left: 2rem
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0
}

strong {
	font-weight: bolder
}

small {
	font-size: .875em
}

small.little {
	font-size: .5em
}

a {
    text-decoration: none
}

p > a,
.link {
	cursor: pointer;
	font-family: var(--font-medium);
	color: var(--text-color);
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition)
}

p > a:hover,
.link:hover {
	color: var(--blue)
}

[data-theme=dark] p > a:hover,
[data-theme=dark] .link:hover {
	color: var(--l-blue)
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none
}

img,
svg {
    max-width: 100%;
	vertical-align: middle
}

table {
	caption-side: bottom;
	border-collapse: collapse
}

thead,
tbody,
tfoot,
tr,
td,
th {
	border-color: inherit;
	border-style: solid;
	border-width: 0
}

label {
	display: block;
	margin: 0 0 .15rem
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}

select {
	word-wrap: normal
}

select:disabled {
	opacity: 1
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
	display: none !important
}

::-moz-focus-inner {
	padding: 0;
	border-style: none
}

textarea {
	resize: vertical
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
	padding: 0
}

::-webkit-inner-spin-button {
	height: auto
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

::file-selector-button {
	font: inherit;
	-webkit-appearance: button
}

*:not(.hide)[hidden],
*:not(.hide).hidden {
	display: none !important
}

iframe {
	border: 0
}