@font-face {
font-family: Akrobat;
src: url('../fonts/Akrobat-Regular.ttf');
font-weight: 400;
font-style: normal;
}

@font-face {
font-family: Akrobat;
src: url('../fonts/Akrobat-SemiBold.ttf');
font-weight: 600;
font-style: normal;
}

@font-face {
font-family: Akrobat;
src: url('../fonts/Akrobat-ExtraBold.ttf');
font-weight: 800;
font-style: normal;
}

@font-face {
font-family: Icons;
src: url('../fonts/Icons.ttf');
font-weight: normal;
font-style: normal;
}

:root {
--blue: #1f618b;
--gray: #737373;
--black: #4d4d4d;
}

* {
margin: 0;
padding: 0;
outline: none;
}

html {
scrollbar-color: var(--blue) transparent;
scrollbar-width: thin;
}

html::-webkit-scrollbar {
width: 8px;
}

html::-webkit-scrollbar-track {
background: none;
}

html::-webkit-scrollbar-thumb {
background: var(--blue);
}

body {
background: #fff;
font-size: 16px;
line-height: 24px;
font-family: Akrobat, Arial, sans-serif;
font-weight: 400;
letter-spacing: 1px;
color: var(--black);
text-align: left;
}

body.fixed {
width: 100%;
position: fixed;
top: 0;
left: 0;
overflow-y: scroll;
}

h1 {
font-weight: 400;
letter-spacing: 5px;
font-size: 40px;
line-height: 50px;
text-align: center;
color: var(--black);
padding: 0 0 40px 0;
}

h1::after {
display: block;
width: 100px;
content: '';
border-bottom: solid 3px var(--blue);
margin: 10px auto 0 auto;
padding: 0;
}

h2 {
font-weight: 400;
font-size: 26px;
line-height: 36px;
text-align: center;
color: var(--blue);
padding: 10px 0 20px 0;
}

h3 {
font-weight: 400;
font-size: 28px;
line-height: 38px;
text-align: center;
color: var(--blue);
padding: 10px 0 30px 0;
}

h4 {
font-weight: 400;
font-size: 22px;
line-height: 30px;
text-align: center;
color: var(--black);
padding: 10px 0;
}

img {
border: 0;
}

p {
padding: 0 0 10px 0;
}

ul {
list-style: none;
padding: 0 0 10px 0;
}

ul li {
list-style-type: none;
position: relative;
padding: 0 0 15px 15px;
margin: 0;
}

ul li::before {
content: '';
background: var(--blue);
width: 7px;
height: 7px;
border-radius: 50%;
position: absolute;
top: 9px;
left: 0;
}

strong,
b {
font-weight: 800;
}

.notes {
font-size: 10px;
font-style: italic;
}

.clr {
display: block;
clear: both;
}

.center {
text-align: center;
}

a {
color: var(--blue);
text-decoration: none;
transition: color 0.4s;
}

.inputbox {
background: #fff;
display: inline-block;
width: 100%;
max-width: 355px;
font-size: 16px;
line-height: 24px;
font-family: Akrobat;
font-weight: 400;
color: var(--black);
text-align: left;
vertical-align: top;
border: solid 1px #7d7d7d;
border-radius: 2px;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
padding: 8px 15px;
margin: 0 0 20px 20px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
transition: border-color 0.4s;
}

textarea.inputbox {
max-width: 787px;
min-height: 180px;
line-height: 22px;
padding: 10px 15px;
}

.inputbox:focus {
border-color: var(--blue);
}

.inputbox.error {
border: solid 2px #f00;
}

.checkbox,
.radio,
.file {
display: none;
}

.radio + label {
cursor: pointer;
}

.checkbox + label .pseudo,
.radio + label .pseudo {
background: #fff;
display: inline-block;
width: 26px;
height: 26px;
font-family: Icons;
color: var(--blue);
font-size: 24px;
line-height: 26px;
text-align: center;
border: solid 2px #d1d1d1;
vertical-align: middle;
cursor: pointer;
margin: 0 10px;
user-select: none;
}

.checkbox + label .pseudo::after,
.radio + label .pseudo::after {
content: '';
}

.radio + label .pseudo {
border-radius: 50%;
margin: 0 10px 0 0;
}

.checkbox:checked + label .pseudo::after,
.radio:checked + label .pseudo::after {
content: '\ea06';
}

.asterisk {
display: inline-block;
width: 15px;
color: #f00;
font-size: 20px;
}

.button,
.buttonw {
background: var(--blue) url('../images/bg_blue.png') repeat-y;
background-size: 100%;
display: inline-block;
color: #fff;
font-family: Akrobat;
font-weight: 800;
font-size: 18px;
line-height: 18px;
letter-spacing: 2px;
cursor: pointer;
border: 0;
border-radius: 5px;
padding: 12px 35px;
transition: color 0.4s, opacity 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.buttonw {
background: transparent;
border: solid 1px #fff;
transition: color 0.4s, background-color 0.4s;
}

.button.small {
font-size: 14px;
line-height: 14px;
letter-spacing: 1px;
border-radius: 3px;
padding: 10px 20px;
}

.button:disabled {
background: none;
color: #fff;
transition: 0s;
}

.button.wait {
cursor: wait;
position: relative;
}

.button.wait::after {
content: '';
width: 26px;
height: 26px;
border: 5px solid #cccccc;
border-top-color: var(--blue);
border-radius: 50%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
animation: spin 2s linear infinite;
}

.progress_bar {
display: none;
position: relative;
width: 250px;
height: 25px;
border: solid 1px #d3d3d3;
border-radius: 14px;
margin: 10px 0;
overflow: hidden;
margin: 0 auto;
}

.progress_bar.active {
display: block;
}

.progress_bar .bar {
background: var(--blue);
width: 0%;
height: 25px;
}

.progress_bar .percent {
width: 100%;
height: 100%;
color: #cccccc;
text-align: center;
position: absolute;
top: 0;
left: 0;
}

.bg_form_file.noactive {
display: none;
}

.fileok {
display: none;
}

.fileok.active {
display: flex;
justify-content: center;
align-items: center;
gap: 0 15px;
padding-bottom: 10px;
}

.fileok .filename {
font-weight: 600;
color: var(--blue);
}

.fileok .fileremove {
background: none;
font-family: Akrobat;
font-size: 14px;
color: #f00;
border: 0;
cursor: pointer;
transition: color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

hr {
border-top: 0;
border-left: 0;
border-right: 0;
border-bottom: solid 1px #d3d3d3;
margin: 20px 0;
}

.highlight {
color: #a60000;
text-decoration: underline;
}

.wf-columns {
text-align: center;
}

.wf-columns .wf-column {
display: inline-block;
width: 100%;
max-width: 100px;
vertical-align: top;
margin: 0 10px 20px 10px;
}

.wf-columns.wf-columns-stack-large .wf-column {
max-width: 450px;
height: 350px;
overflow: hidden;
margin: 0 30px 20px 30px;
}

.wf-columns.wf-columns-stack-medium .wf-column {
max-width: 500px;
text-align: left;
margin: 0 30px 20px 30px;
}

.wf-columns.wf-columns-stack-small .wf-column {
max-width: 250px;
height: 160px;
overflow: hidden;
margin: 0 10px 20px 10px;
}

.wf-columns .wf-column img {
max-width: 100% !important;
height: auto !important;
}

.wf-columns.wf-columns-stack-large .wf-column.inheight {
max-width: 370px;
height: auto;
margin: 0 10px 20px 10px;
}

.wf-columns.wf-columns-stack-large .wf-column.inheight img {
max-width: none !important;
width: auto !important;
height: 350px !important;
}

.wf-columns .wf-column.border {
border-right: solid 1px #d0d0d0;
}

.report {
background: #fff;
height: 0;
max-width: 820px;
overflow: hidden;
position: relative;
margin: 0 auto;
transition: height 0.2s;
z-index: 4000;
}

.report.active {
height: auto;
}

.report .box {
box-sizing: border-box;
border: solid 1px #a7a7a7;
}

.report::after {
content: '\e906';
font-family: Icons;
background: #2fb900;
width: 32px;
height: 32px;
border-radius: 50%;
color: #fff;
font-size: 18px;
line-height: 32px;
text-align: center;
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-50%);
}

.report.error::after {
content: '\e907';
background: #e92f2f;
}

.report .textreport {
text-align: left;
padding: 20px 35px 20px 60px;
}

.report.error .textreport {
color: #e92f2f;
}

.marginreport {
height: 10px;
}

.btn_close {
background: none;
color: var(--blue);
font-size: 20px;
line-height: 20px;
border: 0;
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
transition: color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.btn_close::before {
content: '\ea04';
font-family: Icons;
}

.margintop {
margin: 30px 0 0 0;
}

.breadcrumb {
display: flex;
flex-wrap: wrap;
align-items: center;
background: none;
list-style: none;
padding-bottom: 20px;
}

.breadcrumb li {
display: flex;
align-items: center;
background: none;
list-style: none;
font-size: 12px;
padding: 0;
margin: 0;
}

.breadcrumb li::before {
display: none;
}

.breadcrumb a {
display: block;
}

.breadcrumb .divider {
display: block;
background: var(--blue);
width: 5px;
height: 5px;
border-radius: 50%;
margin: 0 5px;
}

.modal {
width: 100%;
height: 0;
overflow: hidden;
position: fixed;
left: 0;
top: 0;
z-index: 5000;
opacity: 0;
transition: opacity 0.4s, height 0s 0.4s;
}

.modal.active {
height: 100%;
overflow: visible;
opacity: 1;
transition: opacity 0.4s, height 0s;
}

.modal .overlay {
background: rgba(0, 0, 0, 0.8);
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}

.modal section {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
padding: 0;
}

.modal article {
width: 80vw;
height: 85vh;
overflow: hidden;
border-radius: 20px;
padding: 0;
position: relative;
transform: scale(0);
transition: transform 0.5s;
}

.modal.active article {
transform: scale(1);
}

.modal .modal-content.image,
.modal .modal-content.video {
display: block;
width: 100%;
height: 100%;
border: 0;
object-fit: cover;
object-position: center center;
user-select: none;
}

.modal .modal-content.iframe {
display: block;
width: 100%;
height: 100%;
border: 0;
}

.modal .title {
background: rgba(0, 0, 0, 0.8);
width: calc(100% - 80px);
font-size: 20px;
font-weight: 800;
text-align: center;
color: #fff;
padding: 10px 40px;
position: absolute;
left: 0;
bottom: 0;
}

.modal .prev,
.modal .next {
background: transparent;
width: 47px;
height: 47px;
color: #fff;
font-size: 30px;
line-height: 47px;
text-align: center;
cursor: pointer;
border: solid 1px #fff;
border-radius: 50%;
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
transition: color 0.4s, border-color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.modal .next {
left: auto;
right: 20px;
}

.modal .prev::after,
.modal .next::after {
content: '\ea3f';
font-family: Icons;
}

.modal .next::after {
content: '\ea42';
}

.modal .close {
background: none;
color: #fff;
font-size: 30px;
line-height: 30px;
border: 0;
cursor: pointer;
transition: color 0.4s;
position: absolute;
top: 20px;
right: 20px;
z-index: 5500;
transition: color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.modal .close::before {
content: '\ea04';
font-family: Icons;
}

.waiting {
background: rgba(0, 0, 0, 0.6);
background-size: 60px;
width: 100%;
height: 0;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
opacity: 0;
transition: opacity 0.4s, height 0s 0.4s;
}

.waiting.active {
height: 100%;
opacity: 1;
cursor: wait;
transition: opacity 0.5s;
}

.waiting.active::after {
content: '';
width: 90px;
height: 90px;
border: 16px solid #fff;
border-top-color: var(--blue);
border-radius: 50%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.bg_line {
width: 100%;
}

.win_line {
width: 100%;
max-width: 1220px;
padding: 60px 0;
margin: 0 auto;
}

.line {
padding: 0 10px;
}

.bg_line.bg_upper {
background: #1c5a86;
box-shadow: inset 0 -4px 5px 0 rgba(0, 0, 0, 0.3);
}

.bg_upper .win_line {
padding: 0;
}

.bg_upper .line {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 5px 0;
min-height: 24px;
color: #fff;
padding: 10px 0;
}

.bg_upper .item {
display: flex;
align-items: center;
gap: 0 8px;
border-right: solid 1px #5789a8;
padding: 0 20px;
}

.bg_upper .item:last-child {
border: 0;
}

.bg_upper .address::before {
content: '\e949';
font-family: Icons;
}

.bg_upper .phone::before {
content: '\e93f';
font-family: Icons;
}

.bg_upper .email::before {
content: '\e944';
font-family: Icons;
}

.bg_upper .line a {
color: #fff;
}

.bg_top {
background: #fff;
box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
position: sticky;
top: 0;
z-index: 5000;
transition: transform 0.4s;
}

.bg_top.hidden {
transform: translateY(-100%);
}

.bg_top .win_line {
padding: 0;
}

.bg_top .line {
display: flex;
justify-content: space-between;
align-items: center;
height: 74px;
}

.bg_top .logo_top {
display: block;
background: url('../images/logo_alupra.png') no-repeat;
background-size: 100%;
width: 182px;
height: 57px;
}

.menu_button_top {
display: none;
}

.menu_top {
display: flex;
align-items: center;
gap: 0 25px;
list-style: none;
padding: 0;
margin: 0;
}

.menu_top li {
background: none;
list-style: none;
position: relative;
padding: 0;
margin: 0;
}

.menu_top li::before {
display: none;
}

.menu_top li a {
display: block;
font-size: 18px;
line-height: 74px;
letter-spacing: 2px;
color: var(--gray);
}

.menu_top li a.home {
font-size: 24px;
color: var(--blue);
}

.menu_top li a.home::before {
content: '\e904';
font-family: Icons;
}

.menu_top li.active a {
color: var(--blue);
}

.menu_top .submenu {
background: rgba(28, 90, 134, 0.9);
width: 350px;
text-align: left;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
position: absolute;
top: 74px;
left: 0;
padding: 15px 20px;
margin: 0;
transform: scaleY(0);
transform-origin: top;
transition: transform 0.4s;
}

.menu_top li:hover .submenu {
transform: scaleY(1);
}

.menu_top .submenu li {
display: block;
float: none;
padding: 0;
margin: 0;
}

.menu_top .submenu li a {
font-size: 16px;
line-height: 22px;
font-weight: normal;
color: #fff;
padding: 4px 0;
}

.menu_top .submenu li.active a {
color: #cccccc;
}

.menu_top .submenu .submenu {
top: 0;
left: 70px;
}

.menu_top .submenu .submenu li a {
color: #fff;
}

.menu_top .submenu .submenu li.active a {
color: #cccccc;
}

.bg_top .items {
display: flex;
align-items: center;
gap: 0 20px;
}

.bg_top .phone {
display: block;
font-size: 28px;
}

.bg_top .phone::before {
content: '\e93f';
font-family: Icons;
}

.bg_caption .win_line {
max-width: 2500px;
padding: 0;
}

.bg_caption .image {
background-position: center top;
background-repeat: no-repeat;
background-size: auto 100%;
width: 100%;
height: 310px;
}

.bg_first .win_line {
max-width: 2500px;
padding: 0;
}

.bg_first .line {
padding: 0;
max-height: 1100px;
overflow: hidden;
position: relative;
}

.top_slider {
width: 100%;
height: 1100px;
position: relative;
}

.top_slider .slide {
background-position: center top;
background-repeat: no-repeat;
background-size: auto 100%;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 500;
box-shadow: inset 0 -5px 10px 0 rgba(0, 0, 0, 0.35);
transition: opacity 1s;
}

.top_slider .slide.active {
opacity: 1;
z-index: 1000;
}

.top_slider .slide .win_text {
max-width: 1220px;
margin: 0 auto;
}

.top_slider .slide .bg_text {
background: rgba(0, 0, 0, 0.5);
max-width: 700px;
letter-spacing: 3px;
font-size: 32px;
line-height: 42px;
color: #fff;
position: relative;
padding: 20px;
margin: 150px 0 10px 0;
opacity: 0;
transition: opacity 0.5s 1s;
}

.top_slider .slide.active .bg_text {
opacity: 1;
}

.top_slider h1 {
font-weight: 800;
letter-spacing: 3px;
font-size: 32px;
line-height: 42px;
text-align: left;
color: #fff;
padding: 0 0 10px 0;
}

.top_slider h1::after {
display: none;
}

.top_slider .button {
position: absolute;
top: 200px;
left: 20px;
}

.bg_line.bg_second {
box-shadow: inset 0 -5px 5px 0 rgba(0, 0, 0, 0.1);
margin: 0 0 80px 0;
}

.bg_second .win_line {
padding: 0 0 60px 0;
}

.menu_reference, .menu_center {
text-align: center;
list-style: none;
padding: 0 0 40px 0;
margin: 0;
}

.menu_reference.reference_1 {
padding: 0;
}

.menu_reference li, .menu_center li {
background: none;
display: inline-block;
list-style: none;
vertical-align: top;
padding: 0 0 10px 0;
margin: 0;
}

.menu_reference li::before,
.menu_center li::before {
display: none;
}

.menu_reference li span, .menu_center li a {
display: block;
font-size: 16px;
line-height: 22px;
letter-spacing: 1px;
text-transform: uppercase;
color: #7c7c7c;
border-right: solid 1px #b4b4b4;
cursor: pointer;
padding: 15px;
}

.menu_center li a {
border: 0;
}

.menu_reference li span:hover, .menu_reference li span.active, .menu_center li a:hover, .menu_center li.active a {
color: var(--blue);
}

.menu_reference li:last-child span, .menu_reference.no_border li span {
border: 0;
}

.menu_reference.no_border li span {
padding: 5px 15px;
}

.referenceslider {
width: 1200px;
--carousel-slide-width: 290px;
--carousel-min-slide-width: 290px;
overflow: hidden;
margin: 0 auto;
}

.referenceslider .container {
display: flex;
gap: 0 10px;
height: 170px;
transform: translateX(0);
transition: transform 1s ease;
will-change: transform;
}

.referenceslider .slide {
display: block;
flex: 0 0 var(--carousel-slide-width);
width: var(--carousel-slide-width);
height: 100%;
overflow: hidden;
position: relative;
transition: opacity 0.4s;
}

.referenceslider .slide img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}

.referenceslider .slidebuttons {
display: flex;
justify-content: center;
gap: 0 30px;
padding-top: 30px;
}

.referenceslider .prev,
.referenceslider .next {
background: none;
width: 47px;
height: 47px;
color: var(--blue);
font-size: 30px;
line-height: 47px;
text-align: center;
cursor: pointer;
border: solid 1px transparent;
border-radius: 50%;
transition: border-color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.referenceslider .prev::after,
.referenceslider .next::after {
content: '\ea3f';
font-family: Icons;
}

.referenceslider .next::after {
content: '\ea42';
}

.bg_line.bg_third {
background: var(--blue) url('../images/bg_blue.png') repeat-y;
background-size: 100%;
}

.bg_third .win_line {
max-width: 700px;
padding: 30px 0;
}

.bg_third .line {
color: #fff;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: 20px;
}

.bg_third h2 {
font-weight: 800;
font-size: 24px;
line-height: 34px;
color: #fff;
padding: 0;
}

.bg_line.bg_fourth {
box-shadow: inset 0 -5px 5px 0 rgba(0, 0, 0, 0.1);
margin: 0 0 60px 0;
}

.bg_fourth .news {
text-align: center;
}

.bg_fourth .news .item {
display: inline-block;
width: 100%;
max-width: 360px;
min-height: 450px;
vertical-align: top;
color: #6e7679;
text-align: left;
border-bottom: solid 1px #d3d3d3;
margin: 0 10px 40px 10px;
padding: 0 0 10px 0;
}

.bg_fourth .news .item .image {
display: block;
width: 100%;
height: 200px;
overflow: hidden;
margin: 0 0 20px 0;
}

.bg_fourth .news .item .image img {
max-width: 100%;
height: auto;
}

.bg_fourth .news .item h3 {
font-size: 22px;
line-height: 32px;
text-align: left;
color: var(--black);
padding: 0 0 30px 0;
}

.bg_fifth .win_line {
padding: 0 0 60px 0;
}

.bg_fifth .items {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px 0;
}

.bg_fifth .items .item {
width: 250px;
text-align: center;
border-right: solid 1px #d0d0d0;
padding: 0 0 20px 0;
}

.bg_fifth .items .item:last-child {
border: 0;
}

.bg_fifth .items .item::before {
display: block;
content: '';
font-family: Icons;
font-size: 25px;
color: var(--blue);
padding-bottom: 15px;
}

.bg_fifth .items .item.address::before {
content: '\e949';
}

.bg_fifth .items .item.phone::before {
content: '\e93f';
}

.bg_fifth .items .item.phone a {
display: block;
}

.bg_fifth .items .item.opening::before {
content: '\e952';
}

.bg_sixth .win_line {
padding: 60px 0;
}

.bg_sixth .line {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 30px;
}

.bg_sixth .item {
display: block;
}

.bg_sixth .item img {
width: auto;
height: auto;
max-height: 80px;
}

.bg_team .win_line {
padding: 0 0 60px 0;
}

.bg_team .items {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px 120px;
}

.bg_team .items .item {
width: 270px;
text-align: center;
}

.bg_team .items .item .image {
width: 100%;
}

.bg_team .items .item .image img {
width: auto;
height: auto;
max-width: 100%;
}

.bg_team .items .item .phone,
.bg_team .items .item .email {
display: block;
}

#google_map {
width: 100%;
height: 400px;
}

.bg_bottom .win_line {
padding: 0 0 40px 0;
}

.bg_bottom .line {
text-align: center;
border-top: solid 1px #b4b4b4;
padding-top: 40px;
}

.bg_bottom .logo_bottom {
background: url('../images/logo_alupra.png') left center no-repeat;
background-size: 170px;
display: inline-block;
width: 200px;
height: 150px;
vertical-align: top;
border-right: solid 1px #b4b4b4;
padding: 0 60px 0 0;
}

.menu_bottom {
display: inline-block;
list-style: none;
width: 200px;
min-height: 150px;
vertical-align: top;
padding: 0 0 0 40px;
margin: 0;
}

.menu_bottom li {
background: none;
list-style: none;
padding: 0;
margin: 0;
}

.menu_bottom li::before {
display: none;
}

.menu_bottom li a {
display: block;
font-size: 14px;
line-height: 18px;
text-align: left;
color: #7e7e7e;
padding: 2px 0;
}

.menu_bottom li a:hover {
color: var(--blue);
}

.menu_bottom li.active a {
color: var(--blue);
}

.menu_bottom.social {
border: 0;
text-align: left;
padding-top: 50px;
}

.menu_bottom.social li {
display: inline-block;
margin: 0 10px;
}

.menu_bottom.social li a {
width: 30px;
height: 30px;
text-indent: 9999px;
overflow: hidden;
padding: 0;
}

.bg_line.bg_footer {
background: var(--blue) url('../images/bg_blue.png') repeat-y;
background-size: 100%;
}

.bg_footer .win_line {
padding: 12px 0;
}

.bg_footer .line {
text-align: center;
font-size: 14px;
line-height: 18px;
color: #fff;
}

.bg_document {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
margin: 0 0 80px 0;
}

.bg_document .win_line {
padding: 20px 0 60px 0;
}

.bg_document img {
max-width: 100% !important;
height: auto !important;
}

.bg_document .categories,
.bg_document .products {
text-align: center;
}

.bg_document .categories .item,
.bg_document .products .item {
display: inline-block;
width: 100%;
max-width: 360px;
vertical-align: top;
color: #6e7679;
border-bottom: solid 1px #d3d3d3;
margin: 0 10px 40px 10px;
padding: 0 0 10px 0;
transition: box-shadow 0.4s;
}

.bg_document .categories .item .image,
.bg_document .products .item .image {
display: block;
width: 100%;
height: 300px;
overflow: hidden;
margin: 0 0 20px 0;
}

.bg_document .categories .item .image img,
.bg_document .products .item .image img {
width: auto !important;
max-height: 100% !important;
}

.bg_document .categories .item h2,
.bg_document .products .item h2 {
font-weight: 400;
font-size: 28px;
line-height: 34px;
color: var(--blue);
padding: 0 0 10px 0;
}

.bg_document .products .item .perex {
display: block;
}

.bg_user_1 .win_line {
padding: 20px 0 0 0;
}

.bg_product .win_line {
padding: 0;
}

.bg_product img {
max-width: 100% !important;
height: auto !important;
}

.bg_product .bg_text_3 {
box-shadow: inset 0 -5px 5px 0 rgba(0, 0, 0, 0.1);
}

.bg_product .bg_text_3 .win_line {
padding: 0 0 60px 0;
}

.bg_product .bg_text_5 {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.bg_product .bg_text_5 .win_line {
padding: 60px 0;
}

.bg_product h2, .bg_second h2, .bg_fourth h2, .bg_fifth h2 {
font-weight: 400;
letter-spacing: 3px;
font-size: 34px;
line-height: 44px;
text-align: center;
color: var(--black);
padding: 0 0 40px 0;
}

.bg_product h2::after, .bg_second h2::after, .bg_fourth h2::after, .bg_fifth h2::after {
display: block;
width: 100px;
content: '';
border-bottom: solid 2px var(--blue);
margin: 10px auto 0 auto;
padding: 0;
}

.bg_product .bg_text_2 .win_line {
padding: 60px 0;
}

.bg_product .bg_text_2 .bg_item {
text-align: center;
}

.bg_product .bg_text_2 .item {
display: inline-block;
width: 250px;
min-height: 370px;
text-align: left;
vertical-align: top;
border-bottom: solid 1px #d3d3d3;
margin: 10px 10px 30px 10px;
}

.bg_product .bg_text_2 .item .image {
width: 100%;
height: 220px;
overflow: hidden;
}

.bg_product .bg_text_2 .item h3 {
font-size: 22px;
line-height: 32px;
text-align: left;
color: var(--black);
padding: 0 0 30px 0;
}

.bg_product .bg_text_2 .item .desc {
font-size: 14px;
line-height: 22px;
letter-spacing: 1px;
padding: 0 0 10px 0;
}

.bg_product .bg_text_2 .item .moreinfo {
display: inline-block;
padding: 0 0 10px 0;
}

.bg_product .bg_text_1 {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.bg_product .bg_text_1 .win_line {
padding: 60px 0;
}

.bg_product .bg_text_4 {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.bg_product .bg_text_4 .win_line {
padding: 60px 0;
}

.bg_product .bg_text_4 .line {
text-align: center;
}

.bg_product .bg_text_4 .item {
display: inline-block;
width: 100%;
max-width: 450px;
vertical-align: top;
margin: 10px 20px;
}

.bg_product .bg_text_4 .item .image {
width: 100%;
height: 400px;
overflow: hidden;
}

.bg_product .bg_text_4 .item h3 {
font-size: 22px;
line-height: 32px;
color: var(--blue);
padding: 0 0 30px 0;
}

.bg_product .bg_text_6 {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}

.bg_product .bg_text_6 .win_line {
padding: 60px 0;
}

.bg_downloads .itemfile {
display: block;
text-decoration: none;
border-bottom: solid 1px #d3d3d3;
margin: 0 0 10px 0;
}

.bg_downloads .itemfile:last-child {
border: 0;
}

.bg_downloads .itemfile .text {
display: block;
float: left;
font-size: 18px;
line-height: 26px;
padding: 15px 0 0 0;
}

.bg_downloads .itemfile .size {
display: block;
float: left;
font-size: 12px;
line-height: 24px;
font-style: italic;
padding: 16px 0 0 10px;
}

.bg_downloads .itemfile .icon {
background: url('../images/file_icons.png') 0 0 no-repeat;
display: block;
float: right;
width: 56px;
height: 56px;
overflow: hidden;
}

.bg_market {
box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
margin: 0 0 80px 0;
}

.bg_market .items .item {
display: flex;
justify-content: center;
gap: 0 40px;
border-bottom: solid 1px #d0d0d0;
padding: 40px 0;
}

.bg_market .items .item:last-child {
border: 0;
}

.bg_market .items .item:nth-child(even) {
flex-direction: row-reverse;
}

.bg_market .media {
width: 580px;
}

.bg_market .mediaslider {
width: 100%;
--carousel-slide-width: 580px;
--carousel-min-slide-width: 580px;
overflow: hidden;
position: relative;
margin: 0 auto;
}

.bg_market .mediaslider .container {
display: flex;
height: 325px;
transform: translateX(0);
transition: transform 1s ease;
will-change: transform;
}

.bg_market .mediaslider .slide {
display: block;
flex: 0 0 var(--carousel-slide-width);
width: var(--carousel-slide-width);
height: 100%;
overflow: hidden;
}

.bg_market .mediaslider .slide img,
.bg_market .mediaslider .slide video {
display: block;
width: 100%;
height: 100%;
border: 0;
object-fit: cover;
object-position: center center;
}

.bg_market .mediaslider .slide iframe {
display: block;
width: 100%;
height: 100%;
border: 0;
}

.bg_market .mediaslider .prev,
.bg_market .mediaslider .next {
background: transparent;
width: 47px;
height: 47px;
color: #fff;
font-size: 30px;
line-height: 47px;
text-align: center;
cursor: pointer;
border: solid 1px #fff;
border-radius: 50%;
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
transition: color 0.4s, border-color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.bg_market .mediaslider .next {
left: auto;
right: 20px;
}

.bg_market .mediaslider .prev::after,
.bg_market .mediaslider .next::after {
content: '\ea3f';
font-family: Icons;
}

.bg_market .mediaslider .next::after {
content: '\ea42';
}

.bg_market .gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
padding-top: 10px;
}

.bg_market .gallery .image {
display: block;
width: 137px;
height: 90px;
overflow: hidden;
position: relative;
}

.bg_market .gallery .image img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
}

.bg_market .gallery .image .videoicon {
display: block;
width: 47px;
height: 47px;
line-height: 47px;
font-size: 20px;
text-align: center;
color: #fff;
border: solid 1px #fff;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transition: color 0.4s, border-color 0.4s;
transform: translate(-50%, -50%);
}

.bg_market .gallery .image .videoicon::after {
content: '\ea14';
font-family: Icons;
}

.bg_market .content {
width: 580px;
}

.bg_market .content h3 {
text-align: left;
}

.bg_market .content h4 {
text-align: left;
}

.openchat {
background: #fff;
width: 47px;
height: 47px;
color: var(--blue);
font-size: 24px;
line-height: 47px;
text-align: center;
border: solid 1px var(--blue);
border-radius: 50%;
cursor: pointer;
position: fixed;
right: 20px;
bottom: 50px;
z-index: 1500;
transition: color 0.4s, border-color 0.4s, opacity 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.openchat::before {
content: '\e986';
font-family: Icons;
}

.openchat.active {
opacity: 0;
}

.form_chat {
display: block;
background: #fff;
width: 360px;
height: 130px;
font-size: 15px;
line-height: 20px;
border-radius: 10px;
overflow: hidden;
position: fixed;
right: 20px;
bottom: 50px;
padding: 30px 20px 0 20px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
z-index: 2000;
transform: translateX(430px);
transition: height 0.4s, transform 0.3s ease;
}

.form_chat.active {
transform: translateX(0);
transition-duration: 0.6s;
}

.form_chat.isresponse {
height: 260px;
}

.form_chat .closechat {
background: none;
color: var(--blue);
font-size: 14px;
line-height: 14px;
border: 0;
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
transition: color 0.4s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

.form_chat .closechat::before {
content: '\ea04';
font-family: Icons;
}

.form_chat textarea {
background: #fff;
display: block;
width: calc(100% - 20px);
height: 40px;
resize: none;
font-size: 15px;
line-height: 18px;
font-family: Akrobat;
font-weight: 400;
color: var(--black);
text-align: left;
border: solid 1px #7d7d7d;
border-radius: 2px;
padding: 8px;
margin-bottom: 15px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
transition: border-color 0.4s;
scrollbar-color: var(--blue) transparent;
scrollbar-width: thin;
}

.form_chat textarea:focus {
border-color: var(--blue);
}

.form_chat .response {
overflow-y: auto;
width: 100%;
max-height: 130px;
margin-top: 10px;
scrollbar-color: var(--blue) transparent;
scrollbar-width: thin;
}

.form_chat .response::-webkit-scrollbar,
.form_chat textarea::-webkit-scrollbar {
width: 8px;
}

.form_chat .response::-webkit-scrollbar-track,
.form_chat textarea::-webkit-scrollbar-track {
background: none;
}

.form_chat .response::-webkit-scrollbar-thumb,
.form_chat textarea::-webkit-scrollbar-thumb {
background: var(--blue);
}

@media screen and (max-width: 2500px) {

.top_slider {
height: calc((1100 / 2500) * 100vw);
}
}

@media screen and (max-width: 1220px) {

.referenceslider {
width: 920px;
}

.bg_market .items .item {
gap: 0 20px;
}

.bg_market .media {
width: 433px;
}

.bg_market .mediaslider {
--carousel-slide-width: 433px;
--carousel-min-slide-width: 433px;
}

.bg_market .mediaslider .container {
height: 242px;
}

.bg_market .content {
width: 433px;
}
}

@media screen and (max-width: 1180px) {

.menu_top {
gap: 0 10px;
}
}

@media screen and (max-width: 1000px) {

.modal article {
width: 95vw;
}

.menu_button_top {
display: block;
font-size: 36px;
color: var(--blue);
cursor: pointer;
transition: color 0.4s;
}

.menu_button_top::before {
content: '\e9d3';
font-family: Icons;
}

.menu_top {
display: block;
background: rgba(28, 90, 134, 0.9);
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
position: absolute;
top: 74px;
right: 10px;
padding: 15px 20px;
transform: scaleY(0);
transform-origin: top;
transition: transform 0.4s ease;
}

.menu_top.active {
transform: scaleY(1);
}

.menu_top li a {
color: #fff;
line-height: 22px;
padding: 7px 0;
}

.menu_top li.active a {
color: #cccccc;
}

.menu_top li a.home {
color: #fff;
}

.menu_top .submenu {
top: 10px;
left: auto;
right: 120px;
}

.top_slider {
height: 578px;
}
}

@media screen and (max-width: 950px) {

.referenceslider {
width: 610px;
}

.bg_market .items .item {
display: block;
}

.bg_market .media {
width: 580px;
margin: 0 auto;
}

.bg_market .mediaslider {
--carousel-slide-width: 580px;
--carousel-min-slide-width: 580px;
}

.bg_market .mediaslider .container {
height: 325px;
}

.bg_market .content {
width: auto;
padding-top: 30px;
}
}

@media screen and (max-width: 900px) {

textarea.inputbox {
max-width: 355px;
}
}

@media screen and (max-width: 700px) {

h1 {
letter-spacing: 4px;
font-size: 34px;
line-height: 44px;
}

.bg_upper .line {
text-align: left;
}

.bg_upper .address,
.bg_upper .phone,
.bg_upper .email {
border: 0;
}

.top_slider .slide .bg_text {
margin-top: 50px;
}

.top_slider .button {
top: 330px;
}

.menu_reference li span {
border: 0;
padding: 5px 10px;
}

.wf-columns .wf-column.border,
.bg_bottom .logo_bottom,
.menu_bottom,
.bg_fifth .items .item {
border: 0;
}

.wf-columns.wf-columns-stack-medium .wf-column,
.bg_product .bg_text_4 .item {
margin-left: 0;
margin-right: 0;
}
}

@media screen and (max-width: 630px) {

.referenceslider {
width: 300px;
}
}

@media screen and (max-width: 600px) {

.menu_top .submenu {
width: 200px;
right: 40px;
}

.menu_top .submenu .submenu {
right: auto;
left: 30px;
}

.bg_market .media {
width: auto;
}

.bg_market .mediaslider .container {
height: calc((325 / 600) * 100vw);
}
}

@media screen and (max-width: 500px) {

.modal .prev,
.modal .next,
.bg_market .mediaslider .prev,
.bg_market .mediaslider .next {
width: 30px;
height: 30px;
font-size: 18px;
line-height: 30px;
left: 10px;
}

.modal .next,
.bg_market .mediaslider .next {
left: auto;
right: 10px;
}

.modal .close {
font-size: 20px;
line-height: 20px;
top: 10px;
right: 10px;
}

.referenceslider .prev,
.referenceslider .next {
width: 30px;
height: 30px;
font-size: 18px;
line-height: 30px;
left: 10px;
}

.bg_market .gallery .image .videoicon {
width: 30px;
height: 30px;
font-size: 14px;
line-height: 30px;
}

.bg_document .categories .item,
.bg_document .products .item,
.bg_fourth .news .item,
.wf-columns.wf-columns-stack-large .wf-column,
.wf-columns.wf-columns-stack-large .wf-column.inheight {
margin-left: 0;
margin-right: 0;
}

.inputbox, textarea.inputbox {
max-width: 245px;
margin-left: 0;
}

select.inputbox {
max-width: 254px;
}
}

@media screen and (max-width: 400px) {

.bg_top .logo_top {
width: 100px;
height: 33px;
}
}

@media (hover: hover) {

a:hover {
color: var(--gray);
}

.button:hover {
color: #20a8ff;
opacity: 0.7;
}

.button:disabled:hover {
color: #fff;
opacity: 1;
}

.buttonw:hover {
background: #fff;
color: var(--blue);
}

.fileok .fileremove:hover {
color: #cccccc;
}

.btn_close:hover {
color: var(--gray);
}

.openchat:hover {
color: var(--gray);
border-color: var(--gray);
}

.form_chat .closechat:hover {
color: var(--gray);
}

.referenceslider a.slide:hover {
opacity: 0.8;
}

.modal .prev:hover,
.modal .next:hover {
color: var(--blue);
border-color: var(--blue);
}

.modal .close:hover {
color: var(--blue);
}

.bg_upper a.item:hover {
color: #cccccc;
}

.menu_top li a:hover {
color: var(--blue);
}

.menu_top .submenu li a:hover {
color: #cccccc;
}

.menu_top li a.home:hover {
color: var(--gray);
}

.menu_button_top:hover {
color: var(--gray);
}

.bg_document .categories .item:hover,
.bg_document .products .item:hover {
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.referenceslider .prev:hover,
.referenceslider .next:hover {
border-color: var(--blue);
}

.bg_market .mediaslider .prev:hover,
.bg_market .mediaslider .next:hover {
color: var(--blue);
border-color: var(--blue);
}

.bg_market .gallery a.image:hover .videoicon {
color: var(--blue);
border-color: var(--blue);
}

@media screen and (max-width: 1000px) {

.menu_top li a:hover {
color: #cccccc;
}

.menu_top .submenu li a:hover {
color: #cccccc;
}

.menu_top li a.home:hover {
color: #cccccc;
}
}

}
