@font-face {
  font-family: United Sans-Black;
  src: url("../fonts/UnitedSansReg-Black.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Bold;
  src: url("../fonts/UnitedSansReg-Bold.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Heavy;
  src: url("../fonts/UnitedSansReg-Heavy.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Light;
  src: url("../fonts/UnitedSansReg-Light.otf") format("opentype");
}

@font-face {
  font-family: United Sans-Medium;
  src: url("../fonts/UnitedSansReg-Medium.otf") format("opentype");
}

.navbar__menu, .navbar__menu--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar {
  background: #0a3d62;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .navbar {
    width: 100%;
  }
}

.navbar__bars {
  opacity: 0;
}

.navbar__bars--bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #f7f7f7;
}

@media screen and (max-width: 768px) {
  .navbar__bars--bar {
    display: block;
    cursor: pointer;
  }
}

.navbar__bars:hover {
  cursor: pointer;
}

.navbar__menu {
  list-style: none;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .navbar__menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto;
        grid-template-columns: auto;
    background: #0a3d62;
    margin: 0;
    width: 100%;
    position: absolute;
    top: 60px;
    left: -100%;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

.navbar__menu--link {
  color: #f7f7f7;
  font-size: 1.5rem;
  font-family: 'United Sans-Bold';
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2rem;
}

@media screen and (max-width: 768px) {
  .navbar__menu--link {
    border-top: 1px solid #486581;
    text-align: center;
    line-height: 60px;
    width: 100%;
    display: table;
  }
}

.navbar__menu--link:hover {
  color: #ffbe76;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .navbar__menu--link:hover {
    background-color: #222121;
    color: #f8c291;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }
}

.navbar__menu--link.active {
  color: #ffbe76;
}

.navbar__menu.active {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 768px) {
  .navbar #mobile-menu {
    opacity: 1;
    position: absolute;
    top: 25%;
    right: 5%;
  }
}

.navbar #mobile-menu.is-active .navbar__bars--bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

.navbar #mobile-menu.is-active .navbar__bars--bar:nth-child(2) {
  opacity: 0;
}

.navbar #mobile-menu.is-active .navbar__bars--bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

.footer {
  max-width: 1280px;
  height: auto;
  background: linear-gradient(55deg, #40739e, #0a3d62);
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.footer__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .footer__container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    height: 100%;
  }
}

.footer__container--item {
  height: 150px;
  width: 260px;
  margin-left: 10px;
  vertical-align: top;
  text-align: left;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .footer__container--item {
    width: 100%;
    margin: 0;
  }
}

.footer__container--middle {
  height: 150px;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
}

.footer__container #right {
  -ms-grid-column-align: end;
      justify-self: end;
}

.footer__author {
  text-align: center;
  color: #f7f7f7;
  font-size: 9pt;
}

.footer small {
  color: #f7f7f7;
  font-size: 12pt;
}

.footer .small-left {
  color: #f7f7f7;
  text-align: left;
}

.footer .small-hashtag {
  font-size: 18px;
  font-weight: bold;
}

.footer .small-link {
  color: #ffbe76;
  font-size: 12pt;
  text-align: left;
  text-decoration: none;
}

.footer .small-link:hover {
  color: #ef2e2e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .smallest-link {
  color: #ffbe76;
  font-size: 9pt;
  text-decoration: none;
}

.footer .smallest-link:hover {
  color: #ef2e2e;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  margin-left: 5px;
}

.footer .icon {
  font-size: 20px;
  color: #f7f7f7;
  margin-right: 20px;
}

.footer .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .social-icon {
  font-size: 40px;
  margin-right: 10px;
}

.footer .social-icon:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer #telegram {
  background: linear-gradient(45deg, #1b92d1, #37afe2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cookie {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 660px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px 25px 30px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 7px 14px -5px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 99;
}

@media screen and (max-width: 768px) {
  .cookie {
    display: block;
    width: auto;
    -webkit-transform: unset;
            transform: unset;
    top: auto;
    height: auto;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 5px;
  }
}

@media screen and (max-width: 280px) {
  .cookie {
    display: none;
  }
}

.cookie__content header {
  font-size: 25px;
  font-weight: 600;
}

.cookie__content {
  margin-top: 10px;
}

.cookie__content--buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cookie__content--buttons-item {
  margin: 0 10px;
}

@media screen and (max-width: 375px) {
  .cookie__content--buttons-item {
    margin: 10px 10px;
    width: 200px;
  }
}

@media screen and (max-width: 375px) {
  .cookie__content--buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookie__content--buttons button {
  padding: 10px 20px;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cookie__content--buttons button[type="accept"] {
  background: #2a89d6;
}

.cookie__content--buttons button[type="choice"] {
  display: none;
  background: #c6bcbc;
}

.cookie__content--buttons button:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.cookie__content--buttons a {
  color: #2a89d6;
}

.cookie__content--more {
  padding: 20px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cookie__content--more-item {
  margin-bottom: 20px;
}

.cookie__content--more-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cookie__content--more-item-text {
  text-align: justify;
}

.cookie__content--links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 375px) {
  .cookie__content--links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cookie__content--links-item {
  color: #82ccdd;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

@media screen and (max-width: 375px) {
  .cookie__content--links-item {
    margin-bottom: 10px;
  }
}

.cookie__content--links-item:hover {
  color: #2a89d6;
}

.cookie__content p {
  font-size: 12px;
  color: #858585;
  margin: 5px 0 20px 0;
}

.cookie.hide {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-moz-selection {
  color: #fff;
  background: #2a89d6;
}

::selection {
  color: #fff;
  background: #2a89d6;
}

.cookie img {
  max-width: 90px;
}

.cookie-header {
  font-weight: 500;
}

/* ------------------------------ BUTTONS ------------------------------ */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #34495e;
}

.canvas {
  max-width: 1280px;
  margin: auto;
}

.header {
  background-color: #ecf0f1;
}

.header__link--img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 60%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .header__link--img {
    max-width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */