:root {
  --white: #fff;
  --black: #000;
  --hover: #267D97;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
*::before, *::after {
box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}
ul.dotted {
  list-style: disc;
  margin-left: 30px;
}
ol.decimal {
  list-style: decimal;
  margin-left: 30px;
}
ul.dotted li, ol.decimal  li {
  padding: 3px 0;
}
p {
  padding-bottom: 1em;
}
table {
  border-collapse: collapse;  
  border-spacing: 0;
}
table td {
  padding: 5px 10px;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  border:0;
  outline:0;
}
body {
  background-color: #215ca4;
  color: var(--white);
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
  letter-spacing: 0.32px;
  margin: 0;
  padding: 0;
/* Отключить выделение текста */
	/*-webkit-user-select: none; 
	-moz-user-select: none;   
	-ms-user-select: none;    
	user-select: none;       */ 
}

img {
  max-width: 100%;
  height: auto;
  /* Отключить перетаскивание изображений 
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;*/
}

h1 {
  color: #fff;
  font-family: "Arial";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin: 30px 0;
}
h2 {
  color: #fff;
  font-family: "Arial";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 25px;
}
h3 {
  color: #fff;
  font-family: "Arial";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 20px;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
textarea::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: #0F4656;
}
textarea::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {  
  border: 1px solid #031c23; 
  background: #031c23; 
  border-radius: 2px;
}
textarea::-webkit-scrollbar-thumb {
  border: 1px solid #031c23;
  background: #031c23; 
  border-radius: 2px;
}
.container {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 15px;
}
.strong {
  font-weight: 700;
}
a {
  color: var(--black);
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover {
  color: var(--hover);
}
a, a:active, a:hover, a:visited {
  text-decoration: none;
}
iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.btn {
  font-family: Arial;	
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -moz-transition:  all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition:  all 0.4s;
  transition:  all 0.4s;
  font-family: "PT Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;	
  padding: 16px 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 3px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: #061513;		
  position: relative;		
  overflow: hidden;
}

.flex-row {
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
  display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
  justify-content: space-between;  
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
}

.flex-row_center {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
  justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
}

.flex-column_center {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
  justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
  align-items: center;  
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
  flex-direction: column;
}

.flex-row_right {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
	-webkit-box-pack: right;
	-webkit-justify-content: right;
	-ms-flex-pack: right;
  justify-content: right;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
  align-items: center;
}

.flex-row_left {
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	-ms-flex-pack: left;
  justify-content: left;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
  align-items: center;

}

.header {
  position: relative;
  width: 100%;
  min-height: 60px;
  background-color: #093270;
  color:#fff;
  margin: 0;
  padding: 0;
  box-shadow:0px 5px 5px 3px rgba(0,0,0,0.3);
  z-index: 2;
}

.header a {
  color:#fff
}

.header .logo img {
  margin-right: 10px;
}

.header .logo a {
  font-size: 36px;
}

.hdr_links_soc a {
  width: 36px;
  margin: 0 10px;
}

.hdr_links_soc a {
  border-radius:10px;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, .5);
  outline-offset: 0px;
  text-shadow: none;
  opacity: 1;
}

.hdr_links_soc a:hover {
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
  opacity: 0.6;
}

.header-phone {
  font-size: 20px;
  opacity: 1;
}

.header-phone:hover {
  opacity: 0.6;
}

.header-phone img {
  margin: 0 10px;
  border-radius:10px;
}

.header-phone img:hover {
  box-shadow:0px 5px 5px 3px rgba(0,0,0,0.3);
}

.scroll_top {
  position: fixed;
  bottom: 80px;
  right: 40px;
  cursor: pointer;
  width: 45px;
  height: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 40;
}
.scroll_top.visi {
  opacity: 1;
  visibility: visible;
}
.section {
  position: relative;
}

/*===== MAIN ========*/
.main {
  position: relative;
  background-color: #215ca4;
  background-image: url(../img/bg.jpg);
  width: 100%;
  max-height: 1114px;
  height: 100vh;
  margin-top: -10px;  
  z-index: 1;
}

.main_tablo {
  position: relative;
}

.tablo {
  position: relative;
  width: 100%;  
  padding-top: 60px;
}
/****** Lines *******/
.line {
  overflow:hidden;
  width:100%;
  border:2px solid #dddddd;
  box-shadow:0px 5px 5px 3px rgba(0,0,0,0.3);
  display:block;
  margin-top:10px;
  border-radius:2px;
  position:relative;
}
.line .line_cover{
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  background:url(../img/led_bg.png);
}
.line .line_text{
  width:100%;
  height:100%;
  position:absolute;
  z-index:1;
  padding-top:20px;
}
/****** Line 1 *******/
#l1.line{
  height:70px;
  background:rgb(50,80,50);
}

#l1.line .line_text{
  font-size:60px;
  font-weight:bold;
  color:#00ff00;
  white-space: nowrap;
  -webkit-animation: l1_animation 10s linear infinite;
  -moz-animation: l1_animation 10s linear infinite;
}

@-webkit-keyframes l1_animation {
  0%{left:100%;}
  100%{left:-100%;}
}

@-moz-keyframes l1_animation {
  0%{left:100%;}
  100%{left:-100%;}
}

.main-soc {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.links_soc {
  background-color: rgba(0,0,0,0.3);
  width: 200px;  
  text-align: center;
  padding: 20px;
  margin: 0 20px;
  color:#fff; 
  padding: 10px 15px; 
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0px 10px 13px -14px #000000;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, .5);
  outline-offset: 0px;
  text-shadow: none;
}

.links_soc:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, .5), 0 0 20px rgba(255, 255, 255, .2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388; 
}


.main-links a {
  color:#fff;
}
.main-links a:hover {
  color:#000;
}

.soc_img, .logo-soc {
  width: 100px;
  border-radius: 20px;
  margin: 0 auto;
}

.table-tablo {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.header-tablo {
  width: 100%;
  background-color: rgba(50,80,50,0.7);
  color: #ffff66;
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 0;
}

.header-tablo img {
  margin-right: 10px;
}

.table-tablo table thead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.table-tablo table {
  width: 100%;
  background:url(../img/led_bg.png);
  background-color: rgba(50,80,50,0.7);
  color:#00ff00;
  border:3px solid #dddddd;
  font-family: "Workbench", sans-serif;
  font-size: 28px;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "BLED" 0,
    "SCAN" 0;
}

.table-tablo table .col-1 {
  width: 10%;
}
.table-tablo table .col-2 {
  width: 30%;
}
.table-tablo table .col-3 {
  width: 30%;
}
.table-tablo table .col-4 {
  width: 10%;
}
.table-tablo table .col-5 {
  width: 20%;
}

.table-tablo table img {
  max-width: 200px;
}

/*==== FOOTER ========*/
footer {
  position: relative;
  background-color: #093270;
  width: 100%;
  min-height: 50px;
}

.footer_text {
  color:#fff;
  padding: 15px 10px;
}
/**/

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

}

@media screen and (max-width: 1012.9px)  {
    .header .logo a {
    font-size: 24px;
  }

}

@media screen and (max-width: 767.9px)  {
  .flex-row_center {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .main {
    background-position: center;
    background-size: 100%;
    max-height: max-content;
    height: auto;
  }
  .header-links, .header-phone {
    display: none;
  }
  .header .logo {
    width: 100%;
  }
  .header .logo a {
    font-size: 24px;
  }
  header .logo a img {
    max-width: 60px;
    margin-right: 10px;
  }
  .links_soc {
    width: 100%;
    margin: 10px 10px;
  }
  .soc_img, .logo-soc {
    width: 100px;
    border-radius: 20px;
    margin: 0 auto;
  }

  .table-tablo table {
    font-size: 18px;
  }
}

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

  .table-tablo table {
    font-size: 12px;
  }

  .table-tablo table img {
    display: none;
  }

  .table-tablo table .col-1, .table-tablo table .col-2, .table-tablo table .col-3, .table-tablo table .col-4, .table-tablo table .col-5 {
    width: auto;
  }

  .table-tablo table .airline {display: none;}

}  