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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

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

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNova-Semibold.eot);
    src: local('Proxima Nova Semibold'),local('ProximaNova-Semibold'),url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNova-Semibold.woff) format('woff'),url(../fonts/ProximaNova-Semibold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

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

@font-face {
    font-family: 'Proxima Nova';
    src: url(../fonts/ProximaNovaT-Thin.eot);
    src: local('Proxima NovaT Thin'),local('ProximaNovaT-Thin'),url('../fonts/ProximaNovaT-Thin.eot?#iefix') format('embedded-opentype'),url(../fonts/ProximaNovaT-Thin.woff) format('woff'),url(../fonts/ProximaNovaT-Thin.ttf) format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap
}

body {
    font-family: "Proxima Nova",sans-serif;
    line-height: 1.3;
    margin: 0;
    margin-left: 50px;
}

section {}
section .container {
    max-width: 1200px;
    padding: 100px 10px;
    margin: 0 auto;
    width: 100%;
}
section.gray {
    background: #f5f5f5;
}
h2 {
    font-size: 48px;
    text-align: center;
    line-height: 1;
}
a.btn {
    width: fit-content;
    font-weight: 600;
    border-radius: 5px;
    background: #e52a29;
    border: 1px solid #e52a29;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 45px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    line-height: 1;
}
a.btn:hover {
    background: #c51716;
}
.top_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 10px 0 50px;
    z-index: 1;
}
.top_menu nav {
    background: #e52a29;
    padding: 15px;
    display: flex;
    justify-content: space-around;
}
.top_menu nav .close_menu {
	display:none;
}
.top_menu nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}
.top_menu nav a.active {border-bottom: 1px solid #fff;}
.top_menu .toggle_menu {
	display:none;
}
.top_menu .toggle_menu span {}
.top_menu .toggle_menu::before {
	content:'';
}
.top_menu .toggle_menu::after {
	content:'';
}

.left_menu {
    background: #333333;
    z-index: 10;
    position: fixed;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.left_menu .title {
    color: #fff;
    transform: rotate(-90deg);
    transform-origin: left top;
    position: absolute;
    bottom: -15px;
    left: 11px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    white-space: nowrap;
}
.left_menu .toggle_btn {
    display: flex;
    width: 35px;
    height: 20px;
    flex-wrap: wrap;
    align-content: space-between;
    cursor: pointer;
    position: absolute;
    top: 15px;
    left: 6px;
}
.left_menu .toggle_btn span {
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
}
.left_menu .toggle_btn::before {
	content:'';
	height: 2px;
	width: 100%;
	background: #fff;
	display: block;
	transition: .25s ease-in-out;
}
.left_menu .toggle_btn::after {
	content:'';
	height: 2px;
	width: 100%;
	background: #fff;
	display: block;
	transition: .25s ease-in-out;
}
.left_menu.open .toggle_btn span {
    opacity: 0;
}
.left_menu.open .toggle_btn::before {
	transform: rotate(45deg);
	position: absolute;
	top: 9px;
	left: 0;
}
.left_menu.open .toggle_btn::after {transform: rotate(-45deg);position: absolute;top: 9px;left: 0;}
.left_nav {
    position: fixed;
    top: 0;
    left: -500px;
    z-index: 9;
    height: 100%;
    background: #fff;
    width: 300px;
    padding: 10px 10px 10px 60px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    box-shadow: 0 0 20px #0000001f;
	transition:all 0.2s;
}
.left_nav.open {
    left: 0;
}
.left_nav h3 {
    font-size: 18px;
}
.left_nav ul {padding: 0;}
.left_nav ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 16px;
    letter-spacing: 1px;
}
.left_nav ul li a {
    color: #676767;
    text-decoration: none;
    transition:all 0.2s;
}
.left_nav ul li a:hover {
    color: #b9b9b9;
}
.left_nav .down {color: #a5a5a5;font-size: 14px;position: absolute;bottom: 5px;left: 60px;}
.left_nav ul li ul {}
.left_nav ul li ul li {
    font-weight: 300;
    padding-left: 20px;
}
.hero {
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)), url(../img/1642539931_61-damion.png);
    background-position: left bottom;
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
	background-repeat:no-repeat;
}
.hero .container {
    padding: 150px 15px;
}
.hero .container .logo {
    margin: 0 auto;
    width: fit-content;
}
.hero .container .logo img {}
.hero .container h1 {font-size: 46px;font-weight: 800;margin: 0 auto;max-width: 600px;line-height: 1.1;}
.hero .container .h2 {
    font-size: 20px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 30px;
}
.hero .container .subtitle {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 50px;
}
.main_mounth {
    background: #f5f5f5;
}
.main_mounth .container {}
.main_mounth .container h2 {margin-bottom: 10px;}
.main_mounth .container .pre {
    text-align: center;
    font-size: 20px;
    max-width: 500px;
    margin: 0 auto 30px;
}
.main_mounth .container .wrap {
    background: #ffffff;
    padding: 50px;
}
.main_mounth .container .wrap .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.main_mounth .container .wrap .head h3 {
    flex: 0 0 calc(100% - 240px);
    font-size: 36px;
    line-height: 1;
    max-width: 600px;
    font-weight: 500;
}
.main_mounth .container .wrap .head .logo {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.main_mounth .container .wrap .head .logo img {
    max-height: 70px;
}
.main_mounth .container .wrap .content {}
.main_mounth .container .wrap .content .line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cfcfcf;
    padding: 25px 0;
    align-items: center;
}
.main_mounth .container .wrap .content .line:last-child {
    border:0;
}
.main_mounth .container .wrap .content .line .title {
    font-size: 20px;
    padding-right: 30px;
    line-height: 1;
}
.main_mounth .container .wrap .content .line .link {
    font-weight: 600;
    border-radius: 5px;
    background: #e52a29;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 50px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    flex: 0 0 230px;
}
.main_mounth .container .wrap .content .line .link:hover {
    background: #c51716;
}

.section_forma {
    background: #e62929;
}
.section_forma .container {}
.section_forma .container .forma_wrap {}
.section_forma .container .forma_wrap .forma {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section_forma .container .forma_wrap .forma h1 {
    color: #ffffff;
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    flex: 0 0 100%;
}
.section_forma .container .forma_wrap .forma label {
    flex: 0 0 calc(25% - 10px);
    position: relative;
}
.section_forma .container .forma_wrap .forma label .warning {
    background: #000;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 14px;
}
.section_forma .container .forma_wrap .forma label input {
    width: 100%;
    border: 0;
    height: 50px;
    border-radius: 5px;
    padding-left: 15px;
}
.section_forma .container .forma_wrap .forma label input.error {
    background: #ffebcc;
}
.section_forma .container .forma_wrap .forma .btn {
    flex: 0 0 calc(25% - 10px);
    background: #000;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s;
}
.section_forma .container .forma_wrap .forma .btn:hover {background: #373737;}
.section_forma .container .forma_wrap .forma .notice {
    color: #fff;
    font-size: 13px;
    flex: 0 0 100%;
    text-align: right;
    margin-top: 10px;
}
.section_forma .container .forma_wrap .forma .notice a {
    color: #fff;
}
.section_forma .container .forma_wrap div.error {}
.section_forma .container .forma_wrap div.success {
    color: #fff;
    text-align: center;
    font-size: 24px;
}

footer {
    background: #000;
    color: #fff;
}
footer .container {
    max-width: 1160px;
    padding: 50px 10px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}
footer .container .logo {}
footer .container .logo img {}
footer .container .text {}
footer .container .text p {
    color: #878787;
}
footer .container .text p.name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.video_block {}
.video_block.gray {
    background: #f5f5f5;
}
.video_block .container {
    display: flex;
}
.video_block .container .text {
    padding-right: 50px;
}
.video_block .container .text .pre {
    color: #e52a29;
    font-weight: 700;
}
.video_block .container .text h3 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.video_block .container .text p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 18px;
}
.video_block .container .text a {
    color: #e52a29;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
}
.video_block .container .text a::after {
	content: "\00a0→";
    font-family: Arial, Helvetica, sans-serif;
}
.video_block .container .text ul {}
.video_block .container .text ul li {
    margin-bottom: 10px;
    font-size: 18px;
}
.video_block .container .iframe {
    flex: 0 0 560px;
}
.video_block .container .iframe .youtube-thumbnail {width: 100%;padding-top: 50%;background-size: cover !important;background-position: center !important;border: 1px solid #c3c3c3;cursor: pointer;position: relative;}
.video_block .container .iframe .youtube-thumbnail img {}
.video_block .container .iframe .youtube-thumbnail .play-button {
    background: url(../img/youtube.png) center no-repeat;
    width: 70px;
    height: 50px;
    background-size: contain;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 35px);
}
.video_block .container .iframe iframe {
    width: 100%;
    height: 87%;
}
.video_block .container .iframe .caption {
    margin-top: 10px;
}
.video_block .container .iframe .caption .name {
    font-weight: 600;
}
.video_block .container .iframe .caption .job {
    font-weight: 300;
    font-size: 13px;
}

.putin {
    background: #f5f5f5;
}
.putin .container {
}
.putin .container .wrap {
    position: relative;
    padding: 0 0 0 100px;
}
.putin .container .wrap .speech {
    font-size: 28px;
    font-weight: 300;
}
.putin .container .wrap .speech span {
    font-weight: 700;
    color: #e52a29;
}
.putin .container .wrap .name {
    font-weight: 700;
    margin-top: 50px;
}
.putin .container .wrap .place {
    font-weight: 300;
}
.putin .container .wrap::before {
	content:'“';
	position: absolute;
	font-size: 230px;
	line-height: 0;
	color: #e52a29;
	display: block;
	top: 80px;
	left: -10px;
}

.elements {}
.elements .container {}
.elements .container h2 {
    max-width: 770px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.elements .container .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.elements .container .wrap .item {
    flex: 0 0 calc(50% - 50px);
    margin-bottom: 50px;
    display: flex;
}
.elements .container .wrap .item .text {
    padding-right: 30px;
}
.elements .container .wrap .item .text .title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #e52a29;
}
.elements .container .wrap .item .text .desc {
    font-weight: 300;
    font-size: 14px;
}
.elements .container .wrap .item .img {
    flex: 0 0 100px;
}
.elements .container .wrap .item .img img {}
.fop {
    background: #f5f5f5;
}
.fop .container {}
.fop .container h2 {}
.fop .container .pre {
    text-align: center;
    margin: 50px 0;
    font-size: 24px;
}
.fop .container .pre a {
    font-weight: 800;
    color: #e52a29;
    text-decoration: none;
}
.fop .container .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%;
    justify-content: center;
}
.fop .container .wrap .item {
    flex: 0 0 20%;
    background: #fff;
    text-decoration: none;
    color: #000;
    padding: 20px 20px 70px 20px;
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    position: relative;
    transition: all 0.2s;
    min-width: 270px;
}
.fop .container .wrap .item:hover {
    box-shadow: 0 0 20px #cdcdcd;
}
.fop .container .wrap .item .title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    font-size: 18px;
}
.fop .container .wrap .item .desc {
    font-size: 14px;
}
.fop .container .wrap .item .link {
    color: #e52a29;
    margin-top: auto;
    position: absolute;
    bottom: 20px;
}
.fop .container .wrap .item .link::after {
	content: "\00a0→";
	font-family: Arial, Helvetica, sans-serif;
}
.fop_faq {}
.fop_faq .container {}
.fop_faq .container h2 {
    margin-bottom: 50px;
}
.fop_faq .container ul {}
.fop_faq .container ul li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
}
.fop_faq .container ul li a {
    color: #000;
}
.patriot {}
.patriot .container {}
.patriot .container h2 {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.patriot .container .pre {
    text-align: center;
    margin: 50px 0;
    font-size: 24px;
}
.patriot .container .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.patriot .container .wrap .item {
	transition:all ease-in-out .45s;
	flex: 0 0 32%;
	height: 320px;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	background-blend-mode: color;
	background-size: 100% !important;
	background-position: center !important;
	min-width: 370px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	align-content: flex-end;
	position: relative;
}
.patriot .container .wrap .item .title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}
.patriot .container .wrap .item .desc {
    font-size: 14px;
}
.patriot .container .wrap .item::before {
	content:'';
	position: absolute;
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 20px;
	height: 20px;
	top: 30px;
	right: 30px;
	transform: rotate(45deg);
}
.patriot .container .wrap .item:hover {background-size: 110% !important;}
.patriot .container {}
.patriot .container .wrap_2 {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}
.patriot .container .wrap_2 h3 {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 30px;
}
.patriot .container .wrap_2 .half {
    flex: 0 0 50%;
}
.patriot .container .wrap_2 .full {
    flex: 0 0 100%;
}
.patriot .container .wrap_2 ul {}
.patriot .container .wrap_2 ul li {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
}
.patriot .container .wrap_2 ul li a {
    color: #000;
}
.proforient {}
.proforient .container {}
.proforient .container h2 {
    max-width: 700px;
    margin: 0 auto;
}
.proforient .container .pre {
    text-align: center;
    margin: 50px 0;
    font-size: 24px;
}
.proforient .container .pre a {
    font-weight: 800;
    color: #e52a29;
    text-decoration: none;
}
.proforient .container .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.proforient .container .wrap .item {
	transition:all ease-in-out .45s;
	flex: 0 0 100%;
	height: 450px;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	background-blend-mode: color;
	background-size: 100% !important;
	background-position: center !important;
	max-width: 580px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	align-content: flex-end;
	position: relative;
}
.proforient .container .wrap .item .title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 30px;
}
.proforient .container .wrap .item .desc {
    font-size: 14px;
}
.proforient .container .wrap .item::before {
	content:'';
	position: absolute;
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 20px;
	height: 20px;
	top: 30px;
	right: 30px;
	transform: rotate(45deg);
}
.proforient .container .wrap .item:hover {background-size: 110% !important;}
.gs {
    background: url(../img/gs.jpg);
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    background-position: center;
}
.gs .container {
    padding: 50px 10px;
}
.gs .container h2 {
    background: #e52a29;
    color: #fff;
    padding: 15px 25px;
    width: fit-content;
}
.gs .container p {
    max-width: 520px;
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    font-weight: 300;
}
.gs .container p a {
    color: #e52a29;
    text-decoration: none;
}
.plan_gs {
    background: url(../img/2.jpg) no-repeat;
    background-position-x: calc(50% + 540px);
    background-position-y: 100px;
}
.plan_gs .container {
    display: flex;
    flex-wrap: wrap;
}
.plan_gs .container .btn {
    width: fit-content;
    margin: 50px 0 0;
    font-weight: 600;
    border-radius: 5px;
    background: #e52a29;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 50px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    line-height: 1;
}
.plan_gs .container .btn:hover {
    background: #c51716;
}
.plan_gs .container .left {
    flex: 0 0 50%;
    height: 550px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.plan_gs .container .left .pre {
    font-size: 12px;
    letter-spacing: 2px;
    color: #919191;
}
.plan_gs .container .left h3 {
    font-size: 35px;
    margin-top: 30px;
    line-height: 1.4;
}

.plan_gs .container .right {
    display: none;
}
.plan_gs .container .right img {}

.plan_gs .container .full {
    flex: 0 0 100%;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.plan_gs .container .full h3 {
    font-size: 35px;
    line-height: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.4;
}
.plan_gs .container .full p {
    text-align: center;
    font-size: 20px;
    max-width: 800px;
    font-weight: 300;
    line-height: 1.5;
}

.plan_gs_2 {
    background: url(../img/book-with-green-boar.jpg), #0000004f;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: color;
}
.plan_gs_2 .container {
    padding: 100px 10px 0;
}
.plan_gs_2 h2 {
    color: #ffffff;
    margin-bottom: 50px;
}
.plan_gs_2 .pre {
    text-align: center;
    margin: 50px 0;
    font-size: 24px;
    color: #ffffff;
}
.plan_gs_2 .btn {
    width: fit-content;
    margin: 50px auto;
    font-weight: 600;
    border-radius: 5px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    display: flex;
    height: 50px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
    line-height: 1;
}
.plan_gs_2 img {}

.prikaz_gs {
    background: #f5f5f5;
}
.prikaz_gs .container {}
.prikaz_gs .container h2 {
    text-align: left;
}
.prikaz_gs .container .pre {
    margin: 50px 0;
    font-size: 24px;
}
.prikaz_gs .container .wrap {
    display: flex;
    justify-content: space-between;
}
.prikaz_gs .container .wrap .item {
    flex: 0 0 45%;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
}
.prikaz_gs .container .wrap .item .img {
    height: 400px;
    border: 1px solid #ddd;
    background-size: cover !important;
    width: 100%;
}
.prikaz_gs .container .wrap .item .title {
    margin: 20px;
    font-size: 24px;
    font-weight: 600;
}
.prikaz_gs .container .wrap .item .desc {
    margin: 20px;
    font-weight: 300;
}
.prikaz_gs .container .wrap .item .btn {
    width: fit-content;
    font-weight: 600;
    border-radius: 5px;
    background: #e52a29;
    border: 1px solid #e52a29;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 45px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    line-height: 1;
    margin: 0 0 20px 20px;
}
.prikaz_gs .container .wrap .item .btn:hover {
    background: #c51716;
}
.prikaz_gs .container .wrap .item .btn.white {
    background: transparent;
    border: 1px solid #e52a29;
    color: #e52a29;
}
.prikaz_gs .container .wrap .item .btn.white:hover {
    background: #c51716;
    color: #ffffff;
}
.calendar_gs {}
.calendar_gs .container {
    max-width: none;
    display: flex;
    padding: 0;
}
.calendar_gs .container .left {
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    padding: 0 50px;
}
.calendar_gs .container .left h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 50px;
}
.calendar_gs .container .left p {
    font-size: 18px;
    font-weight: 300;
}
.calendar_gs .container .left .btn {
    margin-top: 30px;
}
.calendar_gs .container .right {
    flex: 0 0 50%;
    background: url(../img/calendar.png);
    background-position: left top;
    background-size: cover;
    padding-top: 41%;
}
.webinars {}
.webinars .container {}
.webinars .container h2 {
    margin-bottom: 100px;
}
.webinars .container .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.webinars .container .wrap .item {
    flex: 0 0 100%;
    max-width: 375px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 50px;
}
.webinars .container .wrap .item .img {
    width: 100%;
    padding-top: 55%;
    background-size: cover !important;
    margin-bottom: 10px;
}
.webinars .container .wrap .item .who {
    color: #999;
    letter-spacing: 1px;
    min-height: 55px;
}
.webinars .container .wrap .item .time {
    color: #e52a29;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1;
}
.webinars .container .wrap .item .rec {
    color: #e52a29;
    font-weight: 600;
    margin-bottom: 20px;
}
.webinars .container .wrap .item .title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.webinars .container .wrap .item .author {
    font-weight: 300;
    color: #696969;
}
.webinars .container .wrap .item .btn {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    display: block;
    width: fit-content;
    margin-top: 20px;
}
.info {}
.info .container {}
.info .container h2 {}
.info .container p.pre {
    text-align: center;
    margin: 50px 0;
    font-size: 24px;
}
.info .container .img {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
}
.info .container .img img {
    width: 100%;
}
.info .container .img .note {
    position: absolute;
    font-size: 20px;
}
.info .container .img .note span {
    background: #e52a29;
    color: #fff;
}
.info .container .img .note.note_1 {
    bottom: 292px;
    left: -90px;
    width: 300px;
    font-weight: 700;
}
.info .container .img .note.note_2 {
    bottom: 120px;
    left: -90px;
    width: 300px;
    font-weight: 300;
}
.info .container h3 {
    font-size: 36px;
    text-align: center;
    line-height: 1;
    margin: 100px 0 50px;
}
.info .container p.pre_2 {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}
.info .container p.pre_3 {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}
.info .container .wrap {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.info .container .wrap .item {
    flex: 0 0 100%;
    text-decoration: none;
    color: #000;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    box-shadow: 0 0 20px #dbdbdb;
    max-width: 360px;
}
.info .container .wrap .item .logo {
    display: flex;
    height: 90px;
    align-items: flex-start;
    justify-content: flex-start;
}
.info .container .wrap .item .logo img {
    max-height: 60px;
    max-width: 270px;
}
.info .container .wrap .item .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}
.info .container .wrap .item .desc {
    font-weight: 300;
    margin-bottom: 30px;
}
.info .container .wrap .item .btn {
    background: #000;
    color: #fff;
    display: block;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 5px;
    margin-top: auto;
}
.soultions {}
.soultions .container {}
.soultions .container h2 {
    font-size: 48px;
    text-align: center;
    line-height: 2;
}
.soultions .container h2 span {
    display: block;
    font-size: 36px;
}
.soultions .container .pre {
    text-align: center;
    font-size: 24px;
}
.soultions .container .wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.soultions .container .wrap .item {
    flex: 0 0 25%;
    padding: 20px;
}
.soultions .container .wrap .item .logo {
    height: 85px;
    display: flex;
    align-items: center;
}
.soultions .container .wrap .item .logo img {
    max-height: 50px;
    max-width: 270px;
}
.soultions .container .wrap .item .for {
    color: #9f9f9f;
    font-size: 14px;
    line-height: 1;
    height: 50px;
}
.soultions .container .wrap .item .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    min-height: 150px;
    padding-top: 25px;
    position: relative;
    margin-bottom: 20px;
}
.soultions .container .wrap .item .title::before {
    content:'';
    display: block;
    width: 50px;
    height: 2px;
    background: #e62929;
    position: absolute;
    top: 0;
    left: 0;
}
.soultions .container .wrap .item .desc {
    font-size: 14px;
    color: #979797;
}
.soultions .container .wrap .item .link {
    display: block;
    margin-top: 30px;
    width: fit-content;
}
.soultions .container .btn {
    width: fit-content;
    margin: 50px auto 0;
    font-weight: 600;
    border-radius: 5px;
    background: #e52a29;
    color: #fff;
    text-decoration: none;
    display: flex;
    height: 50px;
    padding: 0 25px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s;
}
.soultions .container .btn:hover {
    background: #c51716;
}
@media (max-width:1280px) {
	.info .container .img .note.note_1 {
    left: 0;
}
	.info .container .img .note.note_2 {
    left: 0;
}
}
@media (max-width:1100px) {
	.video_block .container {
    flex-wrap: wrap;
    justify-content: center;
	}
	.video_block .container .text {
    flex: 0 0 100%;
	}
	.video_block .container .iframe {
    flex: 0 0 100%;
    max-width: 560px;
    margin-top: 50px;
	}
}
@media (max-height:700px) {
	body {
	margin-left:0;
	}
	.left_menu,.left_nav {
	display:none;
	}
}

@media (max-width:1000px) {
	body {
	margin-left:0;
	}
	.left_menu,.left_nav {
	display:none;
	}
	.top_menu {
    padding: 15px;
    background: #e52a29;
	}
	.top_menu nav {
    display: none;
	}
	.top_menu nav.open {
	display:flex;
	flex-wrap: wrap;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	justify-content: center;
	gap: 10px;
	align-content: center;
	}
	.top_menu nav .close_menu {
    display: block;
    position: absolute;
    z-index: 10;
    color: #fff;
    font-size: 50px;
    transform: rotate(45deg);
    right: 10px;
    top: 0;
    cursor: pointer;
	}
	.top_menu nav a {
    flex: 0 0 100%;
    font-size: 20px;
    text-align: center;
    max-width: fit-content;
    margin: 10px;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 5px;
	}
	.top_menu nav a.active {
    background: #fff;
    color: #e52a29;
	}
	.top_menu .toggle_menu {
    display: flex;
    width: 35px;
    height: 20px;
    flex-wrap: wrap;
    align-content: space-between;
    cursor: pointer;
	}
	.top_menu .toggle_menu span {
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
	}
	.top_menu .toggle_menu::before {
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
	}
	.top_menu .toggle_menu::after {
    height: 2px;
    width: 100%;
    background: #fff;
    display: block;
	}
	.soultions .container .wrap {
    flex-wrap: wrap;
	}
	.soultions .container .wrap .item {
    flex: 0 0 50%;
    border-bottom: 2px solid #cbcbcb;
	}
}
@media (max-width:800px) {
	section {}
	section .container {
    padding: 50px 10px;
	}
	h2 {
    font-size: 28px;
    text-align: left;
	}
	.hero {
    min-height: auto;
	}
	.hero .container {
    padding: 100px 15px;
	}
	.hero .container .logo {}
	.hero .container .logo img {}
	.hero .container h1 {
    font-size: 28px;
	}
	.hero .container .h2 {}
	.hero .container .subtitle {}
	.main_mounth {}
	.main_mounth .container {}
	.main_mounth .container h2 {
	}
	.main_mounth .container .pre {
    text-align: left;
    font-size: 16px;
    max-width: none;
	}
	.main_mounth .container .wrap {
    padding: 20px 10px;
	}
	.main_mounth .container .wrap .head {
    flex-wrap: wrap;
	}
	.main_mounth .container .wrap .head h3 {
    font-size: 25px;
	}
	.main_mounth .container .wrap .head .logo {justify-content: flex-start;margin-top: 30px;}
	.main_mounth .container .wrap .head .logo img {}
	.main_mounth .container .wrap .content {}
	.main_mounth .container .wrap .content .line {
    flex-wrap: wrap;
	}
	.main_mounth .container .wrap .content .line .title {
    padding: 0;
    margin-bottom: 20px;
    flex: 0 0 100%;
	}
	.main_mounth .container .wrap .content .line .link {
    font-size: 15px;
	}
	.main_mounth .container .wrap .content .line .link:hover {}

	.section_forma {}
	.section_forma .container {}
	.section_forma .container .forma_wrap {}
	.section_forma .container .forma_wrap .forma {}
	.section_forma .container .forma_wrap .forma h1 {
    font-size: 19px;
	}
	.section_forma .container .forma_wrap .forma label {
    flex: 0 0 100%;
    margin-bottom: 15px;
	}
	.section_forma .container .forma_wrap .forma label .warninig {}
	.section_forma .container .forma_wrap .forma label input {}
	.section_forma .container .forma_wrap .forma label input.error {}
	.section_forma .container .forma_wrap .forma .btn {
    flex: 0 0 100%;
	}
	.section_forma .container .forma_wrap .forma .btn:hover {}
	.section_forma .container .forma_wrap .forma .notice {
    text-align: center;
	}
	.section_forma .container .forma_wrap .forma .notice a {}
	.section_forma .container .forma_wrap div.error {}
	.section_forma .container .forma_wrap div.success {}

	footer .container {
    flex-wrap: wrap;
    gap: 30px;
	}
	footer .container .logo img {
    max-width: 130px;
	}
	
	.putin {}
	.putin .container {}
	.putin .container .wrap {
    padding-left: 0;
	}
	.putin .container .wrap .speech {
    font-size: 22px;
	}
	.putin .container .wrap .speech span {}
	.putin .container .wrap .name {}
	.putin .container .wrap .place {}
	.putin .container .wrap::before {
    top: 15px;
	}
	.elements {}
	.elements .container {}
	.elements .container h2 {
    margin-bottom: 50px;
	}
	.elements .container .wrap {
    justify-content: left;
	}
	.elements .container .wrap .item {
    flex: 0 0 100%;
    flex-wrap: wrap;
	}
	.elements .container .wrap .item .text {
    flex: 0 0 100%;
    padding: 0;
    order: 1;
    margin-top: 30px;
	}
	.elements .container .wrap .item .text .title {}
	.elements .container .wrap .item .text .desc {}
	.elements .container .wrap .item .img {
    flex: 0 0 75px;
	}
	.elements .container .wrap .item .img img {}
	.fop {}
	.fop .container {}
	.fop .container h2 {
    text-align: center;
	}
	.fop .container .pre {
    margin: 25px 0;
    font-size: 20px;
	}
	.fop .container .pre a {}
	.fop .container .wrap {}
	.fop .container .wrap .item {}
	.fop .container .wrap .item .title {}
	.fop .container .wrap .item .desc {}
	.fop .container .wrap .item .link {}
	.fop .container .wrap .item .link::after {}
	
	.patriot {}
	.patriot .container {}
	.patriot .container h2 {
    text-align: center;
	}
	.patriot .container .pre {
    margin: 25px 0;
    font-size: 20px;
	}
	.patriot .container .wrap {}
	.patriot .container .wrap .item {
    max-width: 370px;
    min-width: auto;
    flex: 0 0 100%;
    height: auto;
	}
	.patriot .container .wrap .item .title {
    margin-top: 50px;
    font-size: 20px;
	}
	.patriot .container .wrap .item .desc {}
	.patriot .container .wrap .item::before {}
	.patriot .container .wrap .item:hover {}
	.patriot .container {}
	.patriot .container .wrap_2 {}
	.patriot .container .wrap_2 h3 {}
	.patriot .container .wrap_2 .half {
    flex: 0 0 100%;
	}
	.patriot .container .wrap_2 .full {}
	.patriot .container .wrap_2 ul {}
	.patriot .container .wrap_2 ul li {}
	.patriot .container .wrap_2 ul li a {}
	
	.proforient {}
	.proforient .container {}
	.proforient .container h2 {
    text-align: center;
	}
	.proforient .container .pre {
    margin: 25px 0;
    font-size: 20px;
	}
	.proforient .container .wrap {}
	.proforient .container .wrap .item {
	height: auto;
	}
	.proforient .container .wrap .item .title {
    margin-top: 50px;
    font-size: 20px;
	}
	.gs {}
	.gs .container {}
	.gs .container h2 {}
	.gs .container p {}
	.gs .container p a {}
	.plan_gs {
    background: none;
	}
	.plan_gs .container {}
	.plan_gs .container .btn {
    text-align: center;
	}
	.plan_gs .container .btn:hover {}
	.plan_gs .container .left {
    flex: 0 0 100%;
    height: auto;
    justify-content: center;
    margin-bottom: 30px;
	}
	.plan_gs .container .left .pre {
    text-align: center;
	}
	.plan_gs .container .left h3 {
    font-size: 24px;
    text-align: center;
	}

	.plan_gs .container .right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
	}
	.plan_gs .container .right img {
    max-width: 500px;
    width: 100%;
	}

	.plan_gs .container .full {}
	.plan_gs .container .full h3 {
    font-size: 24px;
    text-align: center;
	}
	.plan_gs .container .full p {
    font-size: 18px;
	}
	
	.plan_gs_2 {}
	.plan_gs_2 .container {
    padding: 50px 10px 0;
	}
	.plan_gs_2 h2 {
    text-align: center;
	}
	.plan_gs_2 .pre {
    font-size: 18px;
	}
	.plan_gs_2 .btn {}
	.plan_gs_2 img {}

	.prikaz_gs {}
	.prikaz_gs .container {}
	.prikaz_gs .container h2 {}
	.prikaz_gs .container .pre {}
	.prikaz_gs .container .wrap {
    flex-wrap: wrap;
	}
	.prikaz_gs .container .wrap .item {
    flex: 0 0 100%;
    margin-bottom: 50px;
	}
	.prikaz_gs .container .wrap .item .img {}
	.prikaz_gs .container .wrap .item .title {}
	.prikaz_gs .container .wrap .item .desc {}
	.prikaz_gs .container .wrap .item .btn {}
	.prikaz_gs .container .wrap .item .btn:hover {}
	.prikaz_gs .container .wrap .item .btn.white {}
	.prikaz_gs .container .wrap .item .btn.white:hover {}
	.calendar_gs {}
	.calendar_gs .container {
    flex-wrap: wrap;
	}
	.calendar_gs .container .left {
    flex: 0 0 100%;
    order: 1;
    padding: 50px 10px;
	}
	.calendar_gs .container .left h2 {
    font-size: 28px;
    margin-bottom: 25px;
	}
	.calendar_gs .container .left p {}
	.calendar_gs .container .left .btn {}
	.calendar_gs .container .right {
    flex: 0 0 100%;
    padding-top: 83%;
    height: auto;
	}
	.webinars {}
	.webinars .container {}
	.webinars .container h2 {
    text-align: center;
    margin-bottom: 50px;
	}
	.webinars .container .wrap {}
	.webinars .container .wrap .item {}
	.webinars .container .wrap .item .img {}
	.webinars .container .wrap .item .who {}
	.webinars .container .wrap .item .time {}
	.webinars .container .wrap .item .rec {}
	.webinars .container .wrap .item .title {}
	.webinars .container .wrap .item .author {}
	.webinars .container .wrap .item .btn {}
	.info {}
	.info .container {}
	.info .container h2 {
    text-align: center;
	}
	.info .container p.pre {
    font-size: 18px;
	}
	.info .container .img {}
	.info .container .img img {}
	.info .container .img .note {
    position: relative;
    bottom: auto;
    left: auto;
	}
	.info .container .img .note.note_1 {
    bottom: auto;
    width: 100%;
    margin-bottom: 20px;
	}
	.info .container .img .note.note_2 {
    bottom: auto;
    width: 100%;
	}
	.info .container h3 {
    font-size: 24px;
    margin: 50px 0;
	}
	.info .container p.pre_2 {}
	.info .container p.pre_3 {}
	.info .container .wrap {}
	.info .container .wrap .item {}
	.info .container .wrap .item .logo {}
	.info .container .wrap .item .logo img {}
	.info .container .wrap .item .title {}
	.info .container .wrap .item .desc {}
	.info .container .wrap .item .btn {}
	.soultions {}
	.soultions .container {}
	.soultions .container h2 {
    font-size: 28px;
    line-height: 1.3;
	}
	.soultions .container h2 span {
    font-size: 24px;
	}
	.soultions .container .pre {
    font-size: 18px;
    margin-top: 10px;
	}
	.soultions .container .wrap {
    justify-content: center;
	}
	.soultions .container .wrap .item {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 30px;
    max-width: 400px;
	}
	.soultions .container .wrap .item:last-child {
	border:0;
	}
	.soultions .container .wrap .item .logo img {}
	.soultions .container .wrap .item .for {}
	.soultions .container .wrap .item .title {}
	.soultions .container .wrap .item .desc {}
	.soultions .container .wrap .item .link {}
	.soultions .container .btn {
    text-align: center;
    font-size: 15px;
	}
	.soultions .container .btn:hover {}
}