@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "San Francisco";
  src: url("/fonts/SFUIDisplay-Medium.ttf");
  font-display: swap;
}

@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "San Francisco";
  src: url("/fonts/SFUIDisplay-Semibold.ttf");
  font-display: swap;
}

@font-face {
  font-style: normal;
  font-weight: 700;
  font-family: "San Francisco";
  src: url("/fonts/SFUIDisplay-Bold.ttf");
  font-display: swap;
}

body {
  margin: 0;
  font-family: "San Francisco", sans-serif;
  color: #fff;
  background: #0c0c0c;
}

button,
button:active,
button:focus {
  outline: none;
  border: none;
  cursor: pointer;
}

input,
input:active,
input:focus {
  outline: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: .3s;
}

a:hover {
  text-decoration: none;
}

*, :after, :before {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

a + p {
  margin-top: 20px;
}

ul li, ol li {
  font-size: 16px;
  line-height: 1.55;
}

h1 {
  font-size: 36px;
  margin: 0 0 6px 0;
  color: #fff;
  font-weight: 400;
}

h2 {
  font-weight: 500;
  font-size: 32px;
  margin: 0 0 20px 0;
}

h3 {
  font-size: 30px;
  font-weight: 400;
  margin: 0 0 20px 0;
}

body {
  color: #fff;
  background: #081d36 url(/images/back.jpg) 50% no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.section-head {
  min-height: 100vh;
  /* display: flex;
    flex-wrap: wrap;
    align-items: center;*/
  padding: 20px 0;
  position: relative;
}

.container {
  width: 1024px;
  margin: 0 auto;
  padding: 0 10px;
}

.head-logo {
  margin-bottom: 70px;
  position: relative;
}

.head-logo-link {
  display: block;
  max-width: 175px;
}

.head-logo-link-img {
  width: 175px;
  height: 83px;
  background-image: url(/images/logo-1win.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.head-text p {
  width: 590px;
  font-size: 18px;
  margin: 0 0 30px 0;
  line-height: 1.1;
}

.head-banner {
  width: 590px;
  margin-bottom: 30px;
}

.head-banner button {
  background-color: unset;
}

.head-btn {
  width: 590px;
  margin-bottom: 30px;
}

.button-download {
  width: 435px;
  height: 48px;
  font-family: "San Francisco", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(to bottom right, #0095ff, #0855c4);
  border-radius: 1000px;
  box-shadow: 0 6px 22px 0 rgba(5, 109, 218, 0.3);
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-download::before {
  content: '';
  border-radius: 1000px;
  min-width: calc(435px + 12px);
  min-height: calc(48px + 12px);
  border: 6px solid #0855c4;
  color: #fff;
  box-shadow: 0 0 60px rgba(5, 109, 218, 0.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.button-download:hover, .button-download:focus {
  transform: translateY(-6px);
}

.button-download:hover::before, .button-download:focus::before {
  opacity: 1;
}

.head-lang {
  position: absolute;
  top: 30px;
  right: -100px;
}

.head-lang-content {
  position: relative;
}

.head-lang-link {
  display: block;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
}

.lang-en {
  background-image: url(/images/lang/eng.svg);
}

.lang-ru {
  background-image: url(/images/lang/ru.svg);
}

#languages {
  position: absolute;
  background: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.21);
  width: 100px;
  z-index: 100;
  top: 35px;
  right: -20px;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.languages-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  overflow: hidden;
}

.languages-item:hover {
  background-image: linear-gradient(to bottom right, #0095ff, #0855c4);
}

.languages-item:last-child {
  margin-bottom: 0;
}

.languages-item-icon {
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
  margin-left: 8px;
}

.languages-item-text {
  display: block;
  color: #6e82a2;
  padding: 0 10px;
  font-size: 12px;
}

.languages-item:hover .languages-item-text {
  color: #fff;
}

.head-downloads {
  background-color: #081d36;
  height: 100px;
  border-radius: 60px;
  display: flex;
  flex-direction: row;
  padding: 10px;
  position: relative;
  margin-bottom: 100px;
}

.download-buttons {
  display: flex;
  align-items: center;
}

.head-phone {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.head-phone:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: auto;
  border-radius: 50%;
  transform: translate(-50%);
  width: 350px;
  height: 350px;
  background: #090f1e;
  z-index: 2;
}

.head-phone:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 0;
  margin: auto;
  border-radius: 50%;
  transform: translate(-50%);
  width: 500px;
  height: 500px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.head-phone-img {
  position: relative;
  z-index: 4;
  width: 300px;
  height: 607px;
  background-image: url(/images/iphone-1win.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.head-phone-img.ru {
  background-image: url(/images/iphone-1win-ru.png);
}

.head-icons {
  display: flex;
  justify-content: space-between;
  max-width: 550px;
  margin-bottom: 50px;
  margin-left: -39px;
  padding: 0 10px;
  margin-top: 200px;
}

.head-item-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
}

.head-item-icon-img {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 15px;
}

.head-item-icon span {
  display: block;
  text-align: center;
}

.head-copyright {
  text-align: center;
}

.footer {
  margin-top: 100px;
}

.dmca-block {
  text-align: center;
}

@media screen and (max-width: 1280px) {
  .head-logo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .head-lang {
    position: relative;
    top: 0;
    right: 0;
  }
  .head-phone {
    right: 10%;
  }
}

@media screen and (max-width: 1024px) {
  .section-head {
    padding: 10px 0 20px 0;
  }
  .container {
    width: 100%;
    padding: 0;
  }
  .head-logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  .head-lang {
    right: -30%;
  }
  .head-banner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
    margin-bottom: 15px;
  }
  .head-text {
    text-align: center;
  }
  .head-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    margin-top: 10px;
}
  .head-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .head-downloads {
    width: 100%;
    margin-bottom: 0;
    padding: 15px;
    border-radius: 0;
    height: auto;
    justify-content: center;
    background-color: unset;
  }
  .download-buttons {
    flex-direction: column;
  }
  .head-phone {
    position: relative;
    right: 0;
    transform: none;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    margin-top: 20px;
  }
  .head-icons {
    max-width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
  .main-block {
    flex-direction: column;
  }
  .ios-block-left {
    margin-right: 0;
    width: 100%;
  }
  .ios-block-logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .ios-block-text {
    text-align: center;
  }
  .ios-block-text-p {
    width: 100%;
  }
  .button.light {
    margin-left: auto;
    margin-right: auto;
  }
  .ios-block-qr {
    justify-content: center;
  }
  .ios-block-install {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ios-block-title {
    margin-bottom: 20px;
  }
  .ios-block-right {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .ios-block-right.android {
    width: 272px;
  }
  .footer {
    margin-top: 50px;
  }
}

@media screen and (max-width: 640px) {
  .ios-block-qr {
    flex-direction: column;
    align-items: center;
  }
  .qr-block-left {
    margin-right: 0;
  }
  .qr-block-arrows {
    display: none;
  }
  .qr-block-buttons {
    align-items: center;
  }
  .qr-block-scan {
    margin-bottom: 15px;
  }
  .section-main.footer {
    padding: 20px 10px 140px 10px;
  }
  .section-main {
    padding: 20px 10px 40px 10px;
  }
  .head-downloads {
    padding: 5px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 25px;
  }
  .head-lang {
    right: -27%;
  }
  .head-text {
    padding: 0 10px;
  }
}

@media screen and (max-width: 520px) {
  .head-lang {
    right: -18%;
  }
  .head-btn {
    width: auto;
  }
  .button {
    width: 300px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .button::before {
    min-width: calc(300px + 12px);
  }
  .head-phone:before {
    display: none;
  }
  .head-phone::after {
    display: none;
  }
  .head-phone-img {
    width: 300px;
    height: 629px;
  }
  .head-icons {
    flex-wrap: wrap;
  }
  .head-item-icon {
    width: 50%;
    margin-bottom: 20px;
  }
  body {
    background-size: contain;
  }
  .button-download.ru {
    font-size: 17px;
  }
}

@media screen and (max-width: 480px) {
  .button-download {
    width: auto;
    padding: 10px 30px;
  }
  .button-download::before {
    display: none;
  }
}

@media screen and (max-width: 380px) {
  .head-lang {
    right: -15%;
  }
  #languages {
    right: 0;
  }
}
/*# sourceMappingURL=style.css.map */