@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Regular.woff2') format('woff2'),
    url('../fonts/Plain-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Light.woff2') format('woff2'),
    url('../fonts/Plain-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Plain';
  src: url('../fonts/Plain-Bold.woff2') format('woff2'),
    url('../fonts/Plain-Bold.woff') format('woff');
  font-weight: bold;
}

a, a:hover {
  color: #b73a3a;
  text-decoration: none;
}

html.dark {
  --primary-color: rgb(255, 62, 62);
  --subprimary-color: rgb(255, 130, 130);
  --sucsess-color:rgb(51, 255, 0);
  --white-color: #ffffff;
  --primary-dark-color: #111214;
  --dark-color: #1e2024;
  --dark-glass-color: #0a0a0a8e;
  --light-glass-color: #1212149a;
  --second-dark-color: #292c31;
  --text-color: #afafafb9;
  --p-color: #bdb9b9;
}
html.light {
  --primary-color: rgb(255, 62, 62);
  --subprimary-color: rgb(255, 130, 130);
  --sucsess-color:rgb(51, 255, 0);
  --white-color: #ffffff;
  --primary-dark-color: #111214;
  --dark-color: #1e2024;
  --dark-glass-color: #0a0a0a8e;
  --light-glass-color: #1212149a;
  --second-dark-color: #292c31;
  --text-color: #afafafb9;
  --p-color: #666262;
}
:root{
  --base-font-family: 'Plain', sans-serif;
  --font-weight-bold: 1000;
  --font-weight-normal: normal;
  --font-weight-light: 300;
  --font-weight-thin: 100;

  --h1-font-size: 48px;
  --h2-font-size: 36px;
  --h3-font-size: 28px;
  --h4-font-size: 24px;
  --h5-font-size: 22px;
  --h6-font-size: 20px;
  --span-font-size: 20px;
  --p-font-size: 16px;
  --base-font-size: 16px;
  --menu-font-size: 14px;

  --border-radius-large: 100%;
  --border-radius-normal: 50%;
  --border-radius-small: 10px;
  --base-shadow: box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;

}

body {
  background-color: var(--second-dark-color);
  font-family: var(--base-font-family);
  height: 1000px;
}

.dark input:-webkit-autofill, .dark input:-webkit-autofill:focus {
  background-color:  var(--bs-black)!important;
  color: var(--bs-white)!important;
}

.dark input {
  background-color:  var(--bs-black);
  color: var(--bs-white);
}

.dark input:active, .dark input:focus {
  background-color:  var(--dark-glass-color);
  color: var(--bs-white);
}
/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
}

h1 {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: bold;
  letter-spacing: -2px;
  color: var(--white-color);
  text-transform: uppercase;
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  color: var(--white-color);
  text-transform: uppercase;
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
  color: var(--white-color);
  text-transform: uppercase;
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--gray-color);
  font-size: var(--h6-font-size);
  line-height: inherit;
  margin: 0;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.5em;
  text-decoration: none;
}

b,
strong {
  font-weight: var(--font-weight-bold);
  letter-spacing: 0;
}

span {
  font-size: var(--base-font-size);
  color: var(--p-color);
}

/*---------------------------------------
     GENERAL               
  -----------------------------------------*/

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.navigation {
  background-color: var(--dark-color);
}

.left-section {
  background-color: var(--second-dark-color);
  -webkit-clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
  height: 120px;
  width: 100%;
}

.left-section img {
  width: 180px;
  height: 120px;
}

.navbar {
  height: 60px;
  width: 100%;
  background-color: var(--second-dark-color);
  background-image: -webkit-linear-gradient(-60deg, var(--second-dark-color) 0%, var(--second-dark-color) 90%, var(--dark-color) 90%, var(--dark-color) 90%);
  background-image: linear-gradient(-60deg, var(--second-dark-color) 0%, var(--second-dark-color)90%, var(--dark-color) 90%, var(--dark-color) 90%);
}

.navigation .nav-link {
  color: var(--white-color) !important;
  text-transform: uppercase;
  text-decoration: none;
  font-size: var(--base-font-family);
}

.navigation .nav-link:after,
.dropdown-toggle::after {
  content: '';
  display: block;
  height: 1.5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform .3s;
}

.navigation .dropdown-toggle:hover:after,
.navigation .nav-link:hover:after,
.navigation .nav-link:focus:after,
.navigation .nav-link:active:after {
  transform: scaleX(1);
  transition: transform .3s;
  color: var(--primary-color) !important;
}

.active {
  color: var(--primary-color);
}

.dropdown-menu {
  background-color: var(--dark-color) !important;
  left: -230px !important;
  padding: 10px;
}
.dropdown-menu .mega-menu{
  padding: 5px;
}

.dropdown-menu .mega-menu li {
  margin-right: 10px;

}

.dropdown-menu .mega-menu li a {
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: var(--menu-font-size);
  /* font-weight: bold; */ 
}

.dropdown-menu .mega-menu li ul {
  list-style: none;
  display: table;
  width: 170px;
}

.dropdown-menu .mega-menu li ul li {
  list-style: none;
  display: flex;
  align-items: center;
  flex: row;
  margin-top: 10px;

}

.dropdown-menu .mega-menu li ul li a {
  color: var(--white-color) !important;
  font-size: 14px;
  text-decoration: none;
  text-transform: lowercase;
  margin-left: 10px;
}

.dropdown-menu .mega-menu li ul li i {
  color: var(--white-color) !important;
  font-size: 20px;
  padding: 10px;
  background-color: var(--second-dark-color);
  border-radius: var(--border-radius-small);
}
.social-btn{
  background-color: var(--dark-color);
  height: 40px;
  width: 40px;
  border-radius: var(--border-radius-normal);
  border: 2px solid var(--gray-color);
  color: var(--white-color);
  align-items: center;
  justify-content: center;
}
.list{
 display: none;
 list-style: none;
 margin-left: -30px;
}
.list.current{
  display: block;
  animation-duration: 2s;
  animation-name: fadeIn;
}
.hide-nav {
	visibility: hidden;
}
  
/* ______________________ОВЕР_________________________ */


.hero {
  background: linear-gradient(rgba(41, 41, 41, 0.7), rgba(43, 43, 43, 0.8)),url('../images/bg-5.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  vertical-align: middle;
  min-height: 800px;
}
.hero::before{
  content: '';
	display: block;
	width: 100%;
	height: 100%;
	/* position: absolute; */
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:rgba(0, 0, 0, .5);
}

.last-play {
  background-color: var(--primary-dark-color);
  border-radius: var(--border-radius-small);
  width: 90%;
  padding-left: 30px;
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}
.sets span{
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: var(--border-radius-small);
}
.commad img {
  height: 70px;
  width: 70px;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}
.commad span{
  transform: skew(-10deg);
}
.last-match-date {
  font-size: 16px;
  color: var(--text-color);
}

.last-match-date strong {
  color: var(--primary-color);
}

.number {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.leading {
  color: var(--primary-color);
}

.divider {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--gray-color);
  margin-left: 10px;
  margin-right: 10px;
}

.last-header h4 {
  position: relative;
  margin-bottom: 20px;
  font-weight: 700;
}

.last-header{
  height: 60px;
  width: 90%;
  border-bottom: 2px solid var(--primary-color);
}

.prev-match {
  width: 80%;
  height:630px;
}

.left {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-small);
  width: 60%;
  height: 100%;
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}

.prev-match h1 {
  font-weight: 800;
  font-size: 40px;
  height: 100px;
  color: var(--white-color);
  border-left: 5px solid var(--primary-color);
}

.right {
  width: 800px;
  height: 460px;
  margin-top: 8%;
  transform: translateX(30%);
  border-radius: var(--border-radius-small);
  background: var(--dark-glass-color);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(49, 49, 49, 0.2);
  border-right-color: rgba(49, 49, 49, 0.1);
  border-bottom-color: rgba(49, 49, 49, 0.1);
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}

.ball {
  top: 50%;
  height: 400px;
  width: 400px;
  transform: translate(-55%, -50%);
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}
.match{
  width: 80%;
  margin-left: 15%;
}
.match img{
  -webkit-filter: drop-shadow(5px 5px 5px rgb(10, 10, 10));
  filter: drop-shadow(5px 5px 5px rgb(5, 5, 5));
}
.match span{
  font-size: 40px;
  transform: skew(-10deg);
}
.versus span{
  background-color: var(--primary-color);
  padding: 10px 10px;
}
.btn-1{
  background-color: var(--primary-dark-color);
  color: var(--primary-color);
  margin-left: 55%;
  outline: none;
  padding: 15px 20px 15px 20px;
  border: none;
  border-radius: var(--border-radius-normal);
}
.btn-2{
  background-color: var(--dark-color);
  color: var(--primary-color);
  outline: none;
  padding: 15px 20px 15px 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  border: none;
  transform: skew(-20deg);
}

.commands-info{
  background-color: var(--primary-dark-color);
  height: 900px;
  width: 100%;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 50px),50% 100%,0 calc(100% - 50px));
}
.command-panel{
  display: none;
  height: 600px;
  width: 100%;
  border-radius: var(--border-radius-small);
  background: linear-gradient(-90deg,var(--second-dark-color)60%, var(--dark-color) 60%);
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}
.command-panel.current-panel{
  display: flex;
  flex: row;
  animation-duration: 1s;
  animation-name: fadeIn;
}
.layer img{
  -webkit-filter: drop-shadow(5px 5px 5px rgb(10, 10, 10));
  filter: drop-shadow(5px 5px 5px rgb(5, 5, 5));
}
.com-head{
border-bottom: 3px solid var(--primary-color);
width: 50%;
}
.com-head h1{
  font-weight: 700;
  transform: skew(-10deg);
}
.com-detile span{
  font-size: 40px;
  font-weight: bold;
  transform: skew(-10deg);
}

.statistics{
  height: 200px;
  background-color: var(--dark-color);
  width: 350px;
  border-radius: 5px;
}

.statistic p{
  color: var(--white-color);
  text-transform: uppercase;
  transform: skew(-10deg);
}
.progress-bar2 {
  background: var(--second-dark-color);
  border-radius: 99px;
  width: 200px;
  height: 5px;
  position: relative;
  overflow: hidden;
}
.progress-bar2::before {
  border-radius: 99px;
  position: absolute;
  height: 5px;
  background: var(--primary-color);
  content: '';
  width: 0;
  transition: width .2s;
}
.progress-bar-70::before {
  width: 70%;
}
.progress-bar-50::before {
  width: 50%;
}
.progress-bar-20::before {
  width: 20%;
}
.progress-bar-10::before {
  width: 10%;
}

.games p{
  color: var(--white-color);
  margin-left: 15px;
  transform: skew(-10deg);
  background-color: var(--primary-color);
  padding: 0px 10px 0px 10px;
}

.comm-info ul{
  height: 80%;
  border-radius: var(--border-radius-small);
}
.player{
  height: 50px;
  width: 300px;
  background: linear-gradient(-70deg,var(--primary-dark-color)80%, var(--primary-color) 80%);
  -webkit-box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
  -moz-box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
       box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
}
.player h4{
  transform: skew(-10deg);
}
.best-players{
  clip-path: polygon(0 0,50% 50px,100% 0,100% 100%,0 100%);
  margin-top: -51px;
  background-image: url('../images/bg-2.jpg');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  
}

table {
  width: 100%;
  background: var(--primary-dark-color);
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}
table thead{
  background-color:var(--dark-color);
}
table tbody{
  background-color: var(--primary-dark-color);
}
table thead tr th {
  padding: 20px;
  color: var(--white-color);
}


table.result-point tr td.place-number {
  width: 100px;
  position: relative;
  font-size: 20px;
  transform: skew(-10deg);
} 

.text-left {
  text-align: left!important;
}

table tr td {
  padding: 10px 20px;
  color: var(--white-color);
}
table.result-point tr td .fa.fa-caret-up {
  color: var(--sucsess-color);
}
table.result-point tr td .fa.fa-caret-down {
  color: var(--primary-color);
}

table.result-point tr td .fa {
  font-size: 20px;
  position: absolute;
  right: 20px;
}

table tr td {
  padding: 10px 40px;
}

table tr td img {
  max-width: 32px;
  float: left;
  margin-right: 11px;
  margin-top: 1px;
}
.com-head .nav-link{
  color: var(--white-color) !important;
  border-radius: 0px !important;
  background-color: var(--dark-color) !important;
  transform: skew(-10deg);
  border: 3px solid var(--dark-color) !important;
  
}
.com-head .nav-link.active{
  background-color: var(--dark-color) !important;
  border: 3px solid var(--primary-color) !important;
}
.com-head .nav-link:focus,
.com-head .nav-link:active{
  background-color: var(--dark-color) !important;
  border: 3px solid var(--primary-color) !important;
}
.leaderboard{
  width:80%;
  height: 580px;
  margin-left: 20%;
  border-radius: var(--border-radius-small);
  background: var(--light-glass-color);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(49, 49, 49, 0.2);
  border-right-color: rgba(49, 49, 49, 0.1);
  border-bottom-color: rgba(49, 49, 49, 0.1);
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
       margin-bottom: 5%;
}
.leader-card{
  width: 220px;
  height: 200px;
  border-radius: var(--border-radius-small);
  background-color: var(--primary-dark-color);
  margin-top: 40px;
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
       margin-bottom: 5%;
}
.leader-card h4{
  font-weight: bold;
  transform: skew(-10deg);
  color: var(--text-color);
  
}
.leader-card:nth-child(2){
  height: 250px;
  margin-top: 0px;
}
.best-player{
  height: 50px;
  width: 300px;
  background: linear-gradient(-70deg,var(--primary-dark-color)90%, var(--primary-color) 90%);
  -webkit-box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
  -moz-box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
       box-shadow: 0 10px 6px -6px rgb(29, 29, 29);
}
.best-player h4{
  transform: skew(-10deg);
}
.players-com span{
  background-color: var(--dark-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-small);
  text-transform: uppercase;
  transform: skew(-10deg);
}

.timeline_area {
  position: relative;
  z-index: 1;
  background-color: var(--primary-dark-color);
}
.section_heading h1{
  transform: skew(-10deg);
  font-weight: bold;
}
.section_heading{
  border-bottom: 3px solid var(--primary-color);
}
.single-timeline-area {
  position: relative;
  z-index: 1;
  padding-left: 180px;
}
@media only screen and (max-width: 575px) {
  .single-timeline-area {
      padding-left: 100px;
  }
}
.single-timeline-area .timeline-date {
  position: absolute;
  width: 180px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
}
@media only screen and (max-width: 575px) {
  .single-timeline-area .timeline-date {
      width: 100px;
  }
}
.single-timeline-area .timeline-date::after {
  position: absolute;
  width: 3px;
  height: 100%;
  content: "";
  background-color: var(--second-dark-color);
  top: 0;
  right: 30px;
  z-index: 1;
}
.single-timeline-area .timeline-date::before {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--primary-color);
  content: "";
  top: 50%;
  right: 26px;
  z-index: 5;
  margin-top: -5.5px;
}
.single-timeline-area .timeline-date p {
  margin-bottom: 0;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: bold;
  transform: skew(-10deg);
  background-color: var(--primary-color);
  padding: 0px 10px 0px 10px;
}
.feature-play{
  background-color: var(--dark-color);
  border-radius: var(--border-radius-small);
  width: 430px;
  padding-left: 30px;
  -webkit-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
  -moz-box-shadow: 0 10px 6px -6px rgb(19, 19, 19);
       box-shadow: 0 10px 6px -6px rgb(7, 7, 7);
}
.feature-play h3{
  transform: skew(-10deg);
  padding: 0px 10px 0px 10px;
  background-color: var(--primary-color);
  width: 60px;
}
.prev-details span{
  background-color: var(--second-dark-color);
  color: var(--white-color);
  font-size: 12px;
  width: 150px;
  border-radius: var(--border-radius-small);
  text-align: center;
}
/* _____________________ФУТЕР__________________________ */
.grad-bar {
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #5c52ee, #3c72e7, #22adee, #06c599);
  background-size: 400% 400%;
  -webkit-animation: gradbar 15s ease infinite;
  -moz-animation: gradbar 15s ease infinite;
  animation: gradbar 15s ease infinite;
}

.footer-section {
  background: var(--dark-color);
}

.footer-cta {
  background-color: var(--dark-color);
  border-bottom: 1px solid var(--gray-color);
}

.single-cta i {
  color: var(--primary-color);
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  font-size: var(--h4-font-size);
  font-weight: bold;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
  background-image: url('../images/logo.png');
}

.footer-widget-heading h3 {
  font-size: var(--base-font-size);
  font-weight: bold;
}

.footer-text p {
  margin-bottom: 14px;
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--white-color);
  display: block;
  font-size: var(--span-font-size);
  margin-bottom: 20px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: var(--border-radius-normal);
}

.footer-widget-heading h3 {
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: var(--primary-color);
}

.footer-widget ul li {
 list-style: none;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-menu li {
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: white;
}

.footer-menu li a {
  font-size: var(--menu-font-size);
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.footer-widget ul li a:hover {
  color: var(--primary-color);
}

.footer-widget ul li a {
  color: var(--p-color);
  font-size: var(--menu-font-size);
  text-decoration: none;
  text-transform: uppercase;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: var(--second-dark-color);
  border: 1px solid var(--dark-color);
  color: var(--white-color);
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: var(--primary-color);
  padding: 13px 20px;
  border: 1px solid var(--primary-color);
  top: 0;
}

.subscribe-form button i {
  color: var(--white-color);
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: var(--second-dark-color);
  padding: 25px 0;
}

.copyright-text p a {
  color: var(--primary-color);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: white;
}

.footer-menu li a {
  font-size: var(--menu-font-size);
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.copyright-text p {
  color: var(--white-color);
  font-size: var(--base-font-size);
  font-weight: bold;
}

.send:hover {
  transform: scale(1.1);
}

.header h4 {
  text-transform: none;
}
.header b {
  color: #ff0000;
}
.header p {
  color: #fff;
}
.header .about {
  /* background-color: #000;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem; */
}


/* ___________________________АНИМАЦИИ___________________________ */
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
  }
  @-webkit-keyframes fade {
  from {
  opacity: .4
  }
  to {
  opacity: 1
  }
  }
  @keyframes fade {
  from {
  opacity: .4
  }
  to {
  opacity: 1
  }
  }
  .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
#uploaded_image {
 max-width: 150px;
}
.img-thumbnail {
  background-color: transparent;
  border: none;
  border-radius: 15px;
}
.preview {
  overflow: hidden;
  width: 250px; 
  height: 250px;
  margin: 10px;
  border: 1px solid #cbcbcb;
}

.modal-lg{
  max-width: 1000px !important;
}

.overlay {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  height: 0;
  transition: .5s ease;
  width: 100%;
}

.image_area:hover .overlay {
  height: 50%;
  cursor: pointer;
}

.text {
  color: #333;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.alert-message .alert-icon {
  width: 3rem;
}
.alert-message .close{
  font-size: 1rem;
  color: #a6a6a6;
}
.alert-primary .alert-icon {
  background-color: #b8daff;
}
.alert-secondary .alert-icon {
  background-color: #d6d8db;
}
.alert-success .alert-icon {
  background-color: #c3e6cb;
}
.alert-danger .alert-icon {
  background-color: #f5c6cb;
}
.alert-warning .alert-icon {
  background-color: #ffeeba;
}
.alert-info .alert-icon {
  background-color: #bee5eb;
}
.alert-light .alert-icon {
  background-color: #fdfdfe;
}
.alert-dark .alert-icon {
  background-color: #c6c8ca;
}
#alert-ajax {
  position: fixed;
  top: 20px;
  right: 5px;
  margin-left: 5px;
}
@media only screen and (min-width: 575px) {
  #alert-ajax {
    width: 50%
  }
}
.dark input {
  /* background-color: #292c31; */
}