@font-face {
    font-family: 'Muller';
    src: url('/fonts/MullerRegular.eot');
    src: local('Muller Regular'), local('MullerRegular'),
        url('/fonts/MullerRegular.eot?#iefix') format('embedded-opentype'),
        url('/fonts/MullerRegular.woff2') format('woff2'),
        url('/fonts/MullerRegular.woff') format('woff'),
        url('/fonts/MullerRegular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
	font-display: swap;
}
@font-face {
    font-family: 'Muller';
    src: url('/fonts/MullerRegularItalic.eot');
    src: local('Muller Regular Italic'), local('MullerRegularItalic'),
        url('/fonts/MullerRegularItalic.eot?#iefix') format('embedded-opentype'),
        url('/fonts/MullerRegularItalic.woff2') format('woff2'),
        url('/fonts/MullerRegularItalic.woff') format('woff'),
        url('/fonts/MullerRegularItalic.ttf') format('truetype');
   font-style: italic;
   font-weight: 400;
   font-display: swap;
}
@font-face {
    font-family: 'Muller';
    src: url('/fonts/MullerMedium.eot');
    src: local('Muller Medium'), local('MullerMedium'),
        url('/fonts/MullerMedium.eot?#iefix') format('embedded-opentype'),
        url('/fonts/MullerMedium.woff2') format('woff2'),
        url('/fonts/MullerMedium.woff') format('woff'),
        url('/fonts/MullerMedium.ttf') format('truetype');
    font-style: normal;
    font-weight: 500;
	font-display: swap;
}
@font-face {
    font-family: 'Muller';
    src: url('/fonts/MullerBold.eot');
    src: local('Muller Bold'), local('MullerBold'),
        url('/fonts/MullerBold.eot?#iefix') format('embedded-opentype'),
        url('/fonts/MullerBold.woff2') format('woff2'),
        url('/fonts/MullerBold.woff') format('woff'),
        url('/fonts/MullerBold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
	font-display: swap;
}
 
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: 0 none;
}
  
:root {
	--main-font: 'Muller', 'Tahoma', 'Arial', sans-serif;
	--yellow-light: #ffe557;
	--yellow: #011c4b;
	--yellow-black: #ffa13dd0;
	--bg-blue: #002768;
	--black: #3b3939;
	--box-shadow: 0 8px 73px 7px var(--yellow);
}
  
::-webkit-scrollbar {
	width: 12px;
	height: 10px;
	background-color: #FFF;
}
  
::-webkit-scrollbar-thumb {
	border-width: 1px;
	border-color: #555;
	background-color: var(--yellow);
	opacity: 0.7;
	border-radius: 10px;
}
  
::-webkit-scrollbar-track {
	background-color: transparent;
	border-radius: 10px;
}
  
body {
	margin: 0;
	overflow-x: hidden;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--black);
}
  
picture,
img {
	display: block;
	border-radius: 100px;
 }
  
img {
	height: auto;
	-o-object-fit: contain;
	   object-fit: contain;
}
  
a {
	text-decoration: none;
	color: var(--bg-blue);
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s;
}
  
button {
	cursor: pointer;
	font-family: var(--main-font);
}
  
h1, .h1 {
	font-size: 34px;
}
  
h2, .h2 {
	font-size: 30px;
	font-weight: 500;
	/*letter-spacing: -0.6px;*/
}
h3, .h3 {
	font-size: 26px;
	font-weight: 500;
}
h4, .h4 {
	font-size: 20px;
	font-weight: 500;
}
h5, .h5 {
	font-size: 18px;
	font-weight: 500;
}
  
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	-webkit-clip-path: inset(100%);
			clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}
.text-align-c, .text-center {
	text-align: center;
}
.text-align-r {
	text-align: right;
}
.text-align-c img {
	display: inline-block;
}
.fl {
	display: flex;
}
.fl-inl {
	display: inline-flex;
}
.fl-wr {
	flex-wrap: wrap;
}
.fl-a-c {
	align-items: center;
}
.fl-j-c {
	justify-content: center;
}
.fl-j-r {
	justify-content: flex-end;
}
.fl-j-sb {
	justify-content: space-between;
}

@media (max-width: 1249px) {
picture,
img {
	display: block;
	border-radius: 3px;
 }
}

@media (max-width: 576px) {
picture,
img {
	display: block;
	border-radius: 3px;
 }
}

@media (max-width: 420px) {
picture,
img {
	display: block;
	border-radius: 3px;
 }
}

.d-block.d-lg-none.sidebar.form-sidebar-section {
    width: 100%;
    margin-top: 110px;
}

/*#header > .container::before {
	pointer-events: none;
	border: 1px solid red;
	position: fixed;
	top: 0;
	width: 1200px;
	content: "";
	left: 50%;
	height: 100%;
	transform: translateX(-50%);
}*/