@font-face {
  font-family: 'FiraGO-Bold';
  font-weight: bold;
  text-transform: uppercase;
  src: url("fonts/FiraGO-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'FiraGO-Medium';
  src: url("fonts/FiraGO-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'gl-gordeziani-bold';
  font-weight: bold;
  src: url("fonts/gl-gordeziani-bold.ttf") format("truetype");
}

html, body {
  background-color: var(--main);
  color: var(--blue);
  background-image: url("../images/comp-two-bg.svg");
}

:root {
  --main: #EEEAE4;
  --blue: #152739;
}

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

ul.reset, ol.reset {
  list-style-type: none;
}

button.reset {
  outline: none;
  background-color: transparent;
  border: none;
}

h1, h3 {
  font-family: 'gl-gordeziani-bold';
  text-transform: uppercase;
}

.desc {
  font-family: 'FiraGO-Medium';
}

.container {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    width: 577px;
  }
}

@media (min-width: 1366px) {
  .container {
    width: 1321px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-next,
.swiper-prev {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  outline: 0;
}

.swiper-next img,
.swiper-prev img {
  width: 28px;
}

@media (min-width: 768px) {
  .swiper-next img,
  .swiper-prev img {
    width: 52px;
  }
}

.swiper-prev {
  left: 0;
}

.swiper-next {
  right: 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#logo {
  width: 114px;
  overflow: hidden;
  display: block;
}

@media (min-width: 768px) {
  #logo {
    width: 217px;
  }
}

@media (min-width: 1366px) {
  #logo {
    width: 220px;
  }
}

#logo img {
  width: 100%;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--main);
  z-index: 999;
}

.header-top {
  height: 58px;
  border-top: 2px var(--blue) solid;
  border-bottom: 2px var(--blue) solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header-top ul.navs {
  display: none;
}

@media (min-width: 768px) {
  .header-top {
    height: 106px;
  }
}

@media (min-width: 1366px) {
  .header-top {
    height: 102px;
  }
  .header-top ul.navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header-top::before {
  content: "";
  width: 100%;
  height: 30px;
  background-color: var(--blue);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
}

@media (min-width: 768px) {
  .header-top::before {
    height: 58px;
  }
}

@media (min-width: 1366px) {
  .header-top::before {
    height: 56px;
  }
}

nav {
  z-index: 1;
}

nav ul.navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav ul.navs li:first-child a {
  border-left: 2px var(--blue) solid;
}

nav ul.navs li:last-child a {
  border-right: 2px var(--blue) solid;
}

nav ul.navs li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

nav ul.navs li a {
  padding: 10px 33px;
  background-color: #EEEAE4;
  border: 1px var(--blue) solid;
  border-top: 2px var(--blue) solid;
  border-bottom: 2px var(--blue) solid;
  color: var(--blue);
  font-size: 16px;
  font-family: 'gl-gordeziani-bold';
  position: relative;
}

nav ul.navs li a:active {
  background-color: #A40E25;
  color: #fff;
}

nav ul.navs li a.active {
  background-color: #E56B61;
  color: #fff;
}

nav ul.navs li a.active::after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-left: 2px #A40E25 solid;
  border-bottom: 2px #A40E25 solid;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  nav ul.navs li a {
    font-size: 22px;
    padding: 16px 27px;
  }
}

@media (min-width: 1280px) {
  nav ul.navs li a {
    font-size: 20px;
    padding: 16px 48px;
  }
}

nav.desktop-nav {
  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;
  position: relative;
}

nav.desktop-nav ul.navs {
  margin-top: 5px;
  margin-left: auto;
}

nav .live-but {
  padding: 1px 15px;
  background-color: #E56B61;
  color: #fff;
  margin: 2px 20px 0 auto;
  font-family: 'gl-gordeziani-bold';
  border: 2px var(--blue) solid;
  position: relative;
  font-size: 24px;
}

nav .live-but:active {
  background-color: #A40E25;
}

nav .live-but::after {
  content: "";
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-left: 2px #A40E25 solid;
  border-bottom: 2px #A40E25 solid;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  nav .live-but {
    font-size: 36px;
    padding: 7px 28px;
    margin-top: 5px;
    margin-right: 32px;
  }
}

@media (min-width: 1024px) {
  nav .live-but:hover {
    background-color: #A40E25;
  }
}

@media (min-width: 1366px) {
  nav .live-but {
    margin-left: unset;
  }
}

nav.mobile-nav ul.navs {
  padding: 0 18px;
}

@media (min-width: 768px) {
  nav.mobile-nav ul.navs {
    padding: 0 70px;
  }
}

@media (min-width: 1024px) {
  nav.mobile-nav {
    width: 100%;
  }
  nav.mobile-nav ul.navs {
    width: 630px;
    margin: 0 auto;
    padding: 0;
  }
}

nav #lang li {
  width: 28px;
  height: 20px;
}

nav #lang li a {
  display: block;
  width: 100%;
  height: 100%;
}

nav #lang li a img {
  width: 100%;
}

@media (min-width: 768px) {
  nav #lang {
    margin-top: 3px;
  }
  nav #lang li {
    width: 42px;
    height: 30px;
  }
}

.header-bottom {
  height: 60px;
  border-bottom: 4px var(--blue) solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.header-bottom::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .header-bottom {
    height: 102px;
  }
}

@media (min-width: 1366px) {
  .header-bottom {
    display: none;
  }
}

footer .footer-top {
  padding: 15px 0 12px;
  border-top: 2px var(--blue) solid;
  border-bottom: 4px var(--blue) solid;
  background-color: #EEEAE4;
}

footer .footer-top .container {
  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;
  position: relative;
}

footer .footer-top .footer-logo {
  display: block;
  width: 163px;
}

footer .footer-top .footer-logo img {
  width: 100%;
}

footer .footer-top .toTop {
  width: 60px;
  height: 60px;
  background-image: url("../images/totop.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 0;
  top: -90px;
  z-index: 99;
}

@media (min-width: 768px) {
  footer .footer-top {
    padding: 30px;
  }
  footer .footer-top .footer-logo {
    width: 217px;
  }
  footer .footer-top .toTop {
    width: 80px;
    height: 80px;
    right: 0;
    top: 0;
  }
}

@media (min-width: 1280px) {
  footer .footer-top {
    padding: 11px 0;
  }
}

footer .footer-bottom {
  padding: 29px 0 40px;
  border-bottom: 4px var(--blue) solid;
  background-color: #343E43;
}

@media (min-width: 768px) {
  footer .footer-bottom {
    padding: 37px 0 170px;
  }
}

@media (min-width: 1280px) {
  footer .footer-bottom {
    padding: 30px 0 180px;
  }
}

@media (max-width: 767px) {
  footer .footer-bottom .container {
    width: 95%;
  }
}

@media (min-width: 1280px) {
  footer .footer-bottom .container {
    width: 742px;
  }
}

footer .footer-bottom-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

footer .footer-bottom-nav li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  border: 2px var(--blue) solid;
  background-color: #EEEAE4;
  text-align: center;
}

footer .footer-bottom-nav li a {
  font-family: 'gl-gordeziani-bold';
  display: block;
  font-size: 16px;
  padding: 12px 20px;
  color: var(--blue);
}

@media (min-width: 768px) {
  footer .footer-bottom-nav li a {
    font-size: 22px;
    padding: 16px;
  }
}

@media (min-width: 1280px) {
  footer .footer-bottom-nav li a {
    font-size: 20px;
    padding: 16px 35px;
  }
}

footer .footer-bottom-links {
  margin-top: 24px;
}

footer .footer-bottom-links a {
  display: block;
}

@media (min-width: 768px) {
  footer .footer-bottom-links {
    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;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 36px;
  }
}

footer .footer-bottom-links-lang {
  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;
}

footer .footer-bottom-links-lang a:first-child {
  margin-right: 24px;
}

footer .footer-bottom-links-follow {
  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;
}

footer .footer-bottom-links-follow span {
  color: #D9ECE6;
  font-family: 'FiraGO-Bold';
  font-size: 14px;
  margin-right: 15px;
}

footer .footer-bottom-links-follow div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

footer .footer-bottom-links-follow div a {
  margin-left: 25px;
}

footer .footer-bottom-links-follow div a:first-child {
  margin-left: 0;
}

@media (max-width: 767px) {
  footer .footer-bottom-links-follow {
    margin: 28px 0 35px;
  }
}

@media (min-width: 768px) {
  footer .footer-bottom-links-follow span {
    font-size: 18px;
    margin-right: 20px;
  }
}

footer .footer-bottom-links-trademark {
  text-align: center;
  color: #D9ECE6;
  font-family: 'FiraGO-Bold';
  font-size: 14px;
  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;
}

footer .footer-bottom-links-trademark b {
  font-size: 30px;
  font-weight: normal;
  display: block;
  font-family: 'Helvetica';
}

footer .footer-bottom-links-trademark span {
  display: block;
  margin-left: 10px;
}

@-webkit-keyframes arrow-seemore {
  from {
    bottom: 40px;
    @media (min-width: 1366px) {
      bottom: 85px;
    }
  }
  to {
    bottom: 20px;
  }
}

@keyframes arrow-seemore {
  from {
    bottom: 40px;
    @media (min-width: 1366px) {
      bottom: 85px;
    }
  }
  to {
    bottom: 20px;
  }
}
/*# sourceMappingURL=style.css.map */