* {
  padding: 0;
  margin: 0;
}
:root {
    --active: #00aeff;
    --accent: #0171a2;
    --white: #ffffff;
    --middle: #0099cc;
    --brd: #d8f3fd;
    --gray: #f0f0f0;
    --light: #F2FDFF;
    --black: #333333;    
}

html,
body {
  width: 100%;
  font-family: "Fira Sans", sans-serif;
  color: var(--black);
  font-size: 16px;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

p {
  font-size: 16px;
  line-height: 1.4;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 800ms ease;
  -webkit-transition: color 800ms ease;
  -moz-transition: color 800ms ease;
  -ms-transition: color 800ms ease;
  -o-transition: color 800ms ease;
}

a:active {
  color: var(--active);
}

a:hover {
  color: var(--active);  
}

a:visited {
  color: var(--middle);
}

h2 {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}

h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25
}

.h4 {
  font-size: 16px;
  font-weight: 700;
}

.content {
  max-width: 1140px;
  padding: 0 15px;
  margin: 0 auto;
}

.header {
  position: fixed;
  background-color: var(--white);
  width: 100%;
  z-index: 5;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-title {
  display: flex;
  align-items: center;
}

.header-content a {
  color: var(--middle);
  font-weight: 600;
}

.logo {
  width: 40px;
  padding-top: 5px;
  display: block;
}

.logo-url {
  padding: 30px 20px;
  font-size: 30px;
  line-height: 1.3;
}

.logo-url span {
  padding-top: 36px;
  font-size: 20px;
  margin-left: 10px;
  white-space: nowrap;  
  transition: color 800ms ease;
  -webkit-transition: color 800ms ease;
  -moz-transition: color 800ms ease;
  -ms-transition: color 800ms ease;
  -o-transition: color 800ms ease;

}

.logo-url span:hover {
    color: var(--active);
}

.btn-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
}

.btn-menu-item {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--middle);
  margin-bottom: 8px;
}

.btn-menu-item:last-child {
  margin-bottom: 0;
}

.nav {
  background-color: var(--gray);
}

.nav-content {
  vertical-align: middle;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style-type: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 60px;
}

.nav-content-mobile {
  display: none;
  vertical-align: middle;
  flex-direction: column;
  list-style-type: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  border-bottom: 1px solid var(--brd);
}

.nav-content li {
  padding: 20px 20px;
  transition: background-color 800ms ease;
  -webkit-transition: background-color 800ms ease;
  -moz-transition: background-color 800ms ease;
  -ms-transition: background-color 800ms ease;
  -o-transition: background-color 800ms ease;
}
.nav-content li a {
    transition: color 700ms ease;
    -webkit-transition: color 700ms ease;
    -moz-transition: color 700ms ease;
    -ms-transition: color 700ms ease;
    -o-transition: color 700ms ease;
}
.nav-content-mobile li {
  transition: background-color 800ms ease;
  -webkit-transition: background-color 800ms ease;
  -moz-transition: background-color 800ms ease;
  -ms-transition: background-color 800ms ease;
  -o-transition: background-color 800ms ease;
}
.nav-content-mobile li a {
  padding: 10px 20px 10px 25px;
  display: block;
  transition: color 700ms ease;
  -webkit-transition: color 700ms ease;
  -moz-transition: color 700ms ease;
  -ms-transition: color 700ms ease;
  -o-transition: color 700ms ease;
}

.active {
  background-color: var(--active);
}

.active a {
  color: var(--white);
}

.nav-content li:hover,
.nav-content-mobile li:hover {
  background-color: var(--active);
}

.nav-content li:hover a,
.nav-content-mobile li:hover a {
  color: var(--white);
}

/* main */
.main {
  margin-top: 159px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-image: url(img/main-fon.jpg);
  background-repeat: no-repeat;
  background-position: right -100px center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
}
.main-content {
  width: 100%;
}
.descript {
  display: block;
  max-width: 555px;
}
.descript ul {
  margin-left: 10px;
}
.descript ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 4px;
}
.descript ul li::before  {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background-color: var(--active);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: -10px;
  top: 6px;
  position: absolute;
}

/* articles */
.stat {
  background-color: var(--light);
  padding: 80px 0;
}

.stat-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
}

.stat-card {
  display: block;
  flex-basis: 23%;
  padding: 30px;
  background-color: var(--white);
  margin-right: 2%;
  border-radius: 4px;
  border: 1px solid var(--brd);
  flex-wrap: wrap;
  transition: all 400ms ease;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
}

.stat-card:last-child {
  margin-right: 0;
}

.stat-card h3 {
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

.stat-card img {
  display: block;
  margin: 20px auto;
  text-align: center;
  max-width: 208px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  flex-wrap: nowrap;
}

.stat-card:hover {
  box-shadow: 6px 20px 50px rgba(9, 68, 94, 0.1);
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
}
.stat-card p {
  display: block;
}
.link {
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
  font-style: italic;
  font-weight: normal;
}

.link-section {
  padding-bottom: 80px;
}

/*sport-lec*/
.sport-lek-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 80px;
}

.sport-lek-content h2 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 24px;
}

.column {
  width: 48%;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--brd);
}

.column img {
  display: block;
  width: 208px;
  height: 140px;
  border-radius: 4px;
  border: 1px solid var(--brd);
  float: left;
  margin-right: 14px;
  margin-top: 3px;
}

.lek-card {
  margin-right: 30px;
  background-color: var(--light);
}

.sport-card {
  background-color: var(--light);
}

.list {
  list-style-type: none;
  font-size: 16px;
  line-height: 1.4;
}

.list li, .list ul li {
  list-style-type: none;
  margin-left: 14px;
  margin-bottom: 6px;
}

.list a {
  font-weight: 600;
}

.list ul li a {
  font-weight: 400;
}


.link-column {
  margin-bottom: 15px;
}

.fito {
  background: url(img/fito-fon.jpg);
  background-color: var(--brd);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.fito-content h2 {
  padding-top: 80px;
}

.fito-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
}

.fito-wrapper .column {
  background-color: var(--white);
}

.column-left {
  margin-right: 30px;
}

.fito-wrapper h3 {
  margin-top: 15px;
  margin-bottom: 20px;
}

.footer {
  background-color: var(--accent);;
  padding-top: 30px;
  padding-bottom: 35px;
}

.footer p {
  font-size: 13px;
  color: var(--brd);
  text-align: center;
  opacity: 0.5;
}
.footer a {
  color: var(--brd);
}
.footer a:hover {
  color: var(--brd);
  opacity: 0.8;
}

/*stat*/
.section {
  padding-top: 160px;
}

.content-stat {
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: 545px;
}

.content-stat h1 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
}

.content-stat h2 {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.content-stat h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 17px;
}

.content-stat p {
  margin-bottom: 10px;
}

.all-stat {
  font-size: 14px;
  text-align: center;
}

.all-stat-top {
  padding-bottom: 30px;
}

.card-stat {
  padding: 10px 40px 10px 40px;
  background-color: var(--light);
  border-radius: 6px;
  border: 1px solid var(--brd);
  margin-bottom: 50px;
}

.card-stat img {
  display: block;
  width: 208px;
  height: 140px;
  border-radius: 4px;
  border: 1px solid var(--brd);
  float: left;
  margin: 3px 30px 10px 0;
}

.link-stat {
  margin-top: 0;
}

/*** новое новости ***/

h2.stat-news-title {
  text-align: center;
}
.stat-news {
  background-color: var(--white);
}

.stat-news-title {
}
.stat-news-row {
  display: flex;
  justify-content: space-between;
}
.stat-news-col {
}
.stat-news-list {
}
/*** /новое новости ***/

.content-one-article {
  max-width: 100%;
}

.content-one-article h1,
.article-wrapper h1 {
  text-align: left;
}

.sport img,
.content-one-article img,
.article-wrapper img {
  border-radius: 4px;
  float: right;
  margin: 3px 0 3px 30px;
  max-width: 100%;
}

img.center {
  border: 0;
  float: none;
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

.two-columne-article img,
.three-columne-article img {
  float: none;
  text-align: left;
  margin: 30px auto 20px 0;
  display: block;
  width: 208px;
  height: 140px;
}

img.img-center {
  margin-bottom: 0;
  float: none;
}

.p-center {
  text-align: center;
  margin-top: 0;
}

ol,
ul {
  line-height: 1.4;
  margin: 10px 20px 20px 30px;
}

ul {
  list-style-type: circle;
}

.content-one-article li {
  margin-bottom: 5px;
}

.subtitle {
  margin-top: -20px;
  margin-left: 20px;
}

.list-min {
  margin-left: 20px;
  margin-top: -10px;
  line-height: 1.4;
}

.autor {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: right;
  font-size: 14px;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.partner {
  right: 0;
  bottom: 100px;
  display: block;
  max-width: 400px;
  margin-left: 30px;
  float: right;
}

/*tecst-column*/
.article-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.content-table h2 {
  text-align: center;
}

.columnes-article {
  display: flex;
  margin: 0 auto;
}

.one-columne-article {
  display: inline-block;
  border: 1px solid var(--brd);
  padding: 10px;
  font-size: 15px;
}

.two-columne-article {
  width: 50%;
  display: inline-block;
  font-size: 15px;
  padding-right: 30px;
}

.two-columne-article:last-child {
  padding-right: 0;
}

.three-columne-article {
  width: 33%;
  display: inline-block;
  font-size: 15px;
  padding-right: 30px;
}

.three-columne-article:last-child {
  padding-right: 0;
}

table {
  max-width: 100%;
  margin: 30px 0;
  border: 1px solid var(--brd);
  border-collapse: collapse;
  font-size: 15px;
}

th {
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid var(--brd);
  text-align: center;
  vertical-align: top;
}

td {
  padding: 10px 20px;
  border: 1px solid var(--brd);
  text-align: left;
  vertical-align: top;
}

.links,
.contact {
  width: 100%;
}

.links-img {
  float: right;
  margin: 0 auto 20px 0;
  display: block;
  width: 336px;
  height: 224px;
}

.links-one-page p {
  margin-bottom: 40px;
}

.links-one-page h1 {
  text-align: left;
  margin-bottom: 50px;
}

.contact table,
.contact tr,
.contact td {
  border: 0;
}

.contact h2 {
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .main {
    background-position: right -200px center;
  }
}
@media screen and (max-width: 990px) {
  .stat-wrapper {
    flex-direction: column;
  }

  .stat-card {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .stat-card img {
    float: left;
    margin-right: 30px;
    max-width: 150px;
    height: auto;
  }

  .stat-card p {
    margin-top: 15px;
  }

  .stat-card h3 {
    text-align: left;
  }

  .descript {
    width: 90%;
    padding: 40px 0 10px 0;
  }

  .nav-content {
    font-size: 13px;
  }

  .nav-content li {
    padding: 20px 7px;
  }

  .main {
    background-position: right -440px center;
  }

  .content-stat {
    max-width: 96%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .stat-wrapper {
    flex-wrap: wrap;
  }

  .stat-card img {
    float: left;
    margin-right: 30px;
    max-width: 150px;
    height: auto;
  }

  .stat-card p {
    margin-top: 15px;
  }

  .stat-card h3 {
    text-align: left;
  }

  .columnes-article {
    flex-wrap: wrap;
  }

  .one-columne-article {
    width: 46%;
  }

  .two-columne-article,
  .three-columne-article {
    width: 98%;
  }
}

@media screen and (max-width: 790px) {
  .header {
    border-bottom: 1px solid var(--brd);
  }

  .logo-url {
    font-size: 16px;
    padding: 25px 15px;
  }

  .logo-url span {
    font-size: 12px;
  }

  .main {
    margin-top: 91px;
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.5)
      ),
      url(img/main-fon.jpg);
    background-position: center center, right -440px center;
  }

  .section {
    padding-top: 91px;
  }

  .content-one-article {
    width: 100%;
  }

  .content-stat img,
  .sport img,
  .content-one-article img,
  .article-wrapper img,
  .links-img {
    width: 95%;
    height: auto;
    clear: both;
    float: none;
    margin-left: 0;
  }

  .content-stat h1 {
    text-align: left;
  }

  .nav-content {
    display: none;
  }

  .nav-content-mobile {
    display: none;
  }

  .nav {
    height: auto;
  }

  .btn-menu {
    display: flex;
  }

  .header-title {
    width: 250px;
  }

  .logo-url span {
    margin-left: 0;
  }

  .fito-wrapper,
  .sport-lek-content {
    flex-direction: column;
  }

  .fito-wrapper .column,
  .sport-lek-content .column {
    width: calc(100% - 60px);
    margin-bottom: 20px;
    margin-right: 0;
  }

  .sport-card {
  }

  .two-columne-article,
  .three-columne-article {
    margin-right: 30px;
  }

  .links,
  .contact {
    width: 100%;
  }
}

@media screen and (max-width: 570px) {
  .main {
    background-position: center center, left -400px center;
  }
}

@media screen and (max-width: 440px) {
  .stat-card img,
  .column img {
    float: none;
    margin: 20px auto 10px;
    width: 100%;
    max-width: 340px;
    height: auto;
  }
}

@media screen and (max-width: 380px) {
  a.logo-text {
    line-height: 1.3;
  }
}
