body {
  background-color: #fff;
}
body a {
  outline: none !important;
}

.fixedMenu {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  max-width: 1630px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.fixedMenu .left {
  background: -webkit-gradient(linear, right top, left top, from(#206474), to(#17a7b5));
  background: linear-gradient(to left, #206474, #17a7b5);
  -webkit-box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
          box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 77px;
  border-radius: 0 0 7px 7px;
}
.fixedMenu .left p.menu {
  text-transform: uppercase;
  color: #fff;
  font-family: 'Proxima Nova Extrabold';
  font-size: 16px;
  margin: 0 0 0 25px;
  position: relative;
  display: none;
}
.fixedMenu .left p.menu::before {
  content: '';
  position: absolute;
  left: -10px;
  top: -6px;
  height: 6px;
  width: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
}
.fixedMenu .left a.logo {
  margin: 0 50px 0 20px;
}
.fixedMenu .left ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.fixedMenu .left ul.menu > li {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1px;
  position: relative;
  padding: 25px 0;
}
.fixedMenu .left ul.menu > li > a {
  color: #fff;
  font-family: 'Proxima Nova Semibold';
  font-size: 16px;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  margin-right: 40px;
  position: relative;
}
.fixedMenu .left ul.menu > li > a::after {
  content: '/';
  position: absolute;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: 'Proxima Nova Thin';
  font-size: 16px;
  color: #fff;
}
.fixedMenu .left ul.menu > li.parent {
  position: relative;
}
.fixedMenu .left ul.menu > li.parent > a {
  position: relative;
}
.fixedMenu .left ul.menu > li.parent > a::before {
  content: '';
  position: absolute;
  right: -10px;
  top: -6px;
  height: 6px;
  width: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
}
.fixedMenu .left ul.menu > li.parent ul {
  position: absolute;
  top: -9999em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -20px;
  width: 270px;
  background-color: #fff;
  border-radius: 7px;
  padding: 0;
  opacity: 0;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
}
.fixedMenu .left ul.menu > li.parent ul li {
  display: block;
  line-height: 1;
  padding: 12px 10px 12px 20px;
  letter-spacing: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .left ul.menu > li.parent ul li a {
  font-family: 'Proxima Nova Semibold';
  font-size: 16px;
  text-shadow: 0px 21px 27.84px rgba(31, 108, 123, 0.18);
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .left ul.menu > li.parent ul li:hover {
  background: -webkit-gradient(linear, right top, left top, from(#206474), to(#17a7b5));
  background: linear-gradient(to left, #206474, #17a7b5);
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .left ul.menu > li.parent ul li:hover a {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .left ul.menu > li.parent ul li:first-child {
  border-radius: 5px 5px 0 0;
}
.fixedMenu .left ul.menu > li.parent ul li:last-child {
  border-radius: 0 0 5px 5px;
}
.fixedMenu .left ul.menu > li.parent::before {
  content: '\e900';
  font-family: 'Icomoon';
  position: absolute;
  top: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  color: #fff;
  font-size: 24px;
  margin-left: -25px;
  opacity: 0;
}
.fixedMenu .left ul.menu > li.parent:hover ul {
  top: 60px;
  opacity: 1;
}
.fixedMenu .left ul.menu > li.parent:hover::before {
  opacity: 1;
}
.fixedMenu .left ul.menu > li:last-child a::after {
  content: '';
}
.fixedMenu .left .ring {
  margin-right: 25px;
  background-color: transparent;
  border: none;
  outline: none;
  display: none;
}
.fixedMenu .left .ring i {
  color: #fff;
  font-size: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 34px;
  width: 34px;
  position: relative;
}
.fixedMenu .left .ring i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 50%;
}
.fixedMenu .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.fixedMenu .right .consult {
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
          box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 77px;
  border-radius: 0 0 7px 7px;
  padding: 0 20px 0 24px;
  position: relative;
  cursor: pointer;
}
.fixedMenu .right .consult i {
  color: #fff;
  font-size: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  width: 34px;
  position: relative;
}
.fixedMenu .right .consult i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 50%;
}
.fixedMenu .right .consult .text {
  margin-left: 10px;
}
.fixedMenu .right .consult .text span {
  display: block;
  font-family: 'Proxima Nova Light';
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 1;
  text-transform: uppercase;
}
.fixedMenu .right .consult .text p {
  margin: 0;
  font-family: 'Proxima Nova Extrabold';
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.fixedMenu .right .consult::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid;
  border-color: transparent #3aa7b3 #3aa7b3 #3aa7b3;
  border-radius: 0 0 7px 7px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .right .consult:hover::after {
  opacity: 1;
  height: calc(100% + 7px);
  width: calc(100% + 14px);
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.fixedMenu .right .languages {
  position: absolute;
  top: 0;
  left: 100%;
  height: 77px;
  max-height: 100%;
  margin-left: 20px;
}
.fixedMenu .right .languages p {
  margin: 0;
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
}
.fixedMenu .right .languages p.active {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.fixedMenu .right .languages p.notActive {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.fixedMenu.show .right .languages p {
  color: #1d7887;
}

footer {
  margin-top: 140px;
  background-color: #fff;
}
footer nav {
  width: 100%;
  margin: 0 auto 50px auto;
  position: relative;
  -webkit-box-shadow: 0px 9px 27.84px 1.16px rgba(31, 108, 123, 0.11);
          box-shadow: 0px 9px 27.84px 1.16px rgba(31, 108, 123, 0.11);
  padding: 60px 0 77px 0;
  background-color: #fff;
}
footer nav .inner {
  max-width: 1630px;
  width: 100%;
  padding: 0 15px;
}
footer nav .inner > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
footer nav .inner > ul > li > span {
  font-size: 25px;
  text-transform: uppercase;
  font-family: 'Proxima Nova Extrabold';
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px;
  line-height: 1.25;
}
footer nav .inner > ul > li ul {
  line-height: 1.25;
}
footer nav .inner > ul > li ul li a {
  font-family: 'Proxima Nova Regular';
  font-size: 14px;
  color: #666;
  line-height: 1.25;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  text-transform: capitalize;
}
footer nav .inner > ul > li ul li a:hover {
  color: #1e7585;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
footer nav .inner > ul > li > a.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  width: 190px;
  height: 55px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  font-family: 'Proxima Nova Extrabold';
  color: #fff;
  border: none;
  outline: none;
  text-transform: uppercase;
  line-height: 1.1;
  cursor: pointer;
  position: relative;
  margin-top: 7px;
}
footer nav .inner > ul > li > a.button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  border: 1px solid #3aa7b3;
}
footer nav .inner > ul > li > a.button span.light {
  font-family: 'Proxima Nova Light';
  font-size: 10px;
}
footer nav .inner > ul > li > a.button span.bold {
  font-family: 'Proxima Nova Extrabold';
  font-size: 13px;
}
footer nav .inner > ul > li > a.button:hover::before {
  height: calc(100% + 14px);
  width: calc(100% + 14px);
  opacity: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
footer nav::after {
  content: '\e900';
  font-family: 'Icomoon';
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 40px;
  color: #fff;
  margin-left: 8px;
}
footer .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .socials ul li {
  margin: 0 6px;
}
footer .socials ul li a {
  color: #206474;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
footer .socials ul li a img {
  width: 36px;
  max-width: 36px;
}
footer .bottom {
  padding-bottom: 50px;
  max-width: 1920px;
  margin: 0 auto;
}
footer .bottom p {
  font-size: 14px;
  color: #666;
  font-family: 'Proxima Nova Regular';
  text-align: center;
  margin: 0;
}
footer .bottom p a {
  color: #666;
}
footer .bottom p.text {
  margin: 40px 15% 0 15%;
  line-height: 1.25;
  max-width: 70%;
}
footer .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0 25px 0;
}
footer .bottom ul li {
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .bottom ul li .img {
  margin-right: 15px;
  width: 40px;
  height: 22px;
  display: inline-block;
  background-image: url(../img/flags/flags.png);
}
footer .bottom ul li a {
  font-size: 18px;
  color: #333;
  font-family: 'Proxima Nova Extrabold';
}
footer .bottom ul li:first-child .img {
  background-position: -160px -286px;
}
footer .bottom ul li:nth-child(2) .img {
  background-position: 0 -176px;
}
footer .bottom ul li:last-child {
  margin: 0;
}
footer .bottom ul li:last-child .img {
  background-position: -240px -352px;
}

.block > header {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.block > header .number {
  font-family: 'Proxima Nova Extrabold';
  color: #fff;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.block > header .number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border: 1px solid #3aa7b3;
  border-radius: 50%;
  -webkit-animation: orbit 2s linear infinite;
          animation: orbit 2s linear infinite;
}
.block > header .text span {
  font-family: 'Proxima Nova Extrabold';
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block > header .text h2 {
  font-family: 'Proxima Nova Extrabold';
  font-size: 100px;
  line-height: 1;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block > header .description {
  font-family: 'Proxima Nova Regular';
  font-size: 18px;
  color: #666;
  max-width: 830px;
  line-height: 1.25;
}
.block.block5 {
  margin-top: 120px;
}
.block.block5 > header {
  text-align: center;
}
.block.block5 > header .text h2 {
  font-size: 85px;
  margin: 0 0 6px 0;
}
.block.block5 > header .text span {
  font-size: 34px;
}
.block.block5 > header .text .description {
  margin: 15px auto 0 auto;
  max-width: 700px;
}
.block.block5 form {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 40px auto 100px auto;
  -webkit-box-shadow: 0px 11px 27.84px 1.16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 11px 27.84px 1.16px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  background-color: #fff;
  padding: 40px 40px 75px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.block.block5 form label {
  width: calc(50% - 23px);
  margin-bottom: 30px;
  position: relative;
}
.block.block5 form label input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 2px solid #e1f1f2;
  font-family: 'Proxima Nova Semibold';
  font-size: 16px;
  color: #333;
  padding: 15px;
  height: 45px;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  background-color: #fff;
}
.block.block5 form label input::-webkit-input-placeholder {
  color: #999;
  text-transform: capitalize;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label input::-moz-placeholder {
  color: #999;
  text-transform: capitalize;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label input:-ms-input-placeholder {
  color: #999;
  text-transform: capitalize;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label input:-moz-placeholder {
  color: #999;
  text-transform: capitalize;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label input:focus {
  border-bottom: 2px solid #1e7281;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label.error input {
  border-bottom: 2px solid #ff0000;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label.phone input {
  padding: 15px 15px 15px 70px;
}
.block.block5 form label.phone + .country {
  position: absolute;
  top: 126px;
  margin-left: calc(50% + 23px);
  left: 0;
}
.block.block5 form label.phone + .country .pseudoSelect {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-right: 15px;
  cursor: pointer;
}
.block.block5 form label.phone + .country .pseudoSelect .img {
  display: block;
  width: 40px;
  height: 22px;
  background-image: url(../img/flags/flags.png);
  background-position: -240px -352px;
}
.block.block5 form label.phone + .country .pseudoSelect::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  border: 4px solid;
  border-color: #999 transparent transparent transparent;
}
.block.block5 form label.phone + .country .pseudoSelect + ul {
  position: absolute;
  width: 350px;
  top: 35px;
  left: -10px;
  -webkit-box-shadow: 0px 11px 27.84px 1.16px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 11px 27.84px 1.16px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background-color: #fff;
  z-index: 1;
  padding: 10px 10px 0 10px;
  max-height: 200px;
  overflow: auto;
  border-bottom: 10px solid #fff;
  opacity: 0;
}
.block.block5 form label.phone + .country .pseudoSelect + ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2px;
}
.block.block5 form label.phone + .country .pseudoSelect + ul li .img {
  display: block;
  width: 40px;
  height: 22px;
  background-image: url(../img/flags/flags.png);
}
.block.block5 form label.phone + .country .pseudoSelect + ul li .name {
  text-transform: capitalize;
  margin-left: 15px;
  font-family: 'Proxima Nova Semibold';
  font-size: 16px;
  color: #333;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form label.phone + .country .pseudoSelect + ul li:hover {
  cursor: pointer;
}
.block.block5 form label.phone + .country .pseudoSelect + ul li:hover span.name {
  margin-left: 20px;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form button[type="submit"] {
  position: absolute;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  width: 350px;
  height: 100px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  font-family: 'Proxima Nova Extrabold';
  font-size: 24px;
  color: #fff;
  border: none;
  outline: none;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
}
.block.block5 form button[type="submit"] span {
  font-family: 'Proxima Nova Light';
  font-size: 19px;
}
.block.block5 form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  border: 1px solid #3aa7b3;
}
.block.block5 form button[type="submit"]:hover::before {
  height: calc(100% + 24px);
  width: calc(100% + 24px);
  opacity: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.block.block5 form::before {
  content: '\e900';
  font-family: 'Icomoon';
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  font-size: 35px;
  color: #fff;
  margin-left: -5px;
}

.inner {
  max-width: 1600px;
  margin: 0 auto;
}

.Main {
  max-width: 100%;
  overflow: hidden;
}
.Main .fixedMenu {
  top: -100px;
}
.Main .fixedMenu.show {
  top: 0px;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.Main .first-screen {
  background-image: url(../img/bg/main-first-bg2.jpg);
  background-image: url(../img/bg/main-first-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 1070px;
  max-height: 1070px;
  overflow: hidden;
}
.Main .first-screen .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 2;
  min-height: 1070px;
}
.Main .first-screen .inner .left {
  position: relative;
  padding-top: 50px;
  width: 350px;
  z-index: 2;
}
.Main .first-screen .inner .left a.logo {
  position: relative;
  display: inline-block;
}
.Main .first-screen .inner .left a.logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -17px;
  height: 33px;
  width: 33px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-animation: rotate 60s infinite linear;
          animation: rotate 60s infinite linear;
}
.Main .first-screen .inner .left h1 {
  margin: 90px 0 0 0;
}
.Main .first-screen .inner .left h1 span {
  color: #fff;
  display: block;
  text-transform: uppercase;
  line-height: 1;
}
.Main .first-screen .inner .left h1 span.first {
  font-family: 'Proxima Nova Semibold';
  font-size: 43px;
}
.Main .first-screen .inner .left h1 span.second {
  font-family: 'Proxima Nova Extrabold';
  font-size: 143px;
}
.Main .first-screen .inner .left h1 span.third {
  font-family: 'Proxima Nova Extrabold';
  font-size: 118px;
}
.Main .first-screen .inner .left ul.menu {
  margin: 55px 0;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.Main .first-screen .inner .left ul.menu > li {
  margin: 0;
  height: 38px;
  max-height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 1px;
  position: relative;
}
.Main .first-screen .inner .left ul.menu > li > a {
  color: #fff;
  font-family: 'Proxima Nova Extrabold';
  font-size: 20px;
  display: inline-block;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: all ease-in-out .1s;
  transition: all ease-in-out .1s;
  padding-right: 50px;
}
.Main .first-screen .inner .left ul.menu > li:hover a {
  font-size: 38px;
  -webkit-transition: all ease-in-out .1s;
  transition: all ease-in-out .1s;
}
.Main .first-screen .inner .left ul.menu > li.parent {
  position: relative;
}
.Main .first-screen .inner .left ul.menu > li.parent > a {
  position: relative;
}
.Main .first-screen .inner .left ul.menu > li.parent > a::after {
  content: '';
  position: absolute;
  right: 33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 8px;
  width: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity ease-in-out .1s;
  transition: opacity ease-in-out .1s;
}
.Main .first-screen .inner .left ul.menu > li.parent ul {
  position: absolute;
  top: -9999em;
  left: 100%;
  width: 270px;
  background-color: #fff;
  border-radius: 7px;
  padding: 0;
  opacity: 0;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
}
.Main .first-screen .inner .left ul.menu > li.parent ul li {
  display: block;
  line-height: 1;
  padding: 12px 10px 12px 20px;
  letter-spacing: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .left ul.menu > li.parent ul li a {
  font-family: 'Proxima Nova Semibold';
  font-size: 16px;
  text-shadow: 0px 21px 27.84px rgba(31, 108, 123, 0.18);
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .left ul.menu > li.parent ul li:hover {
  background: -webkit-gradient(linear, right top, left top, from(#206474), to(#17a7b5));
  background: linear-gradient(to left, #206474, #17a7b5);
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .left ul.menu > li.parent ul li:hover a {
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .left ul.menu > li.parent ul li:first-child {
  border-radius: 5px 5px 0 0;
}
.Main .first-screen .inner .left ul.menu > li.parent ul li:last-child {
  border-radius: 0 0 5px 5px;
}
.Main .first-screen .inner .left ul.menu > li.parent:hover a::after {
  right: 19px;
  height: 12px;
  width: 12px;
  -webkit-transition: opacity ease-in-out .1s;
  transition: opacity ease-in-out .1s;
}
.Main .first-screen .inner .left ul.menu > li.parent:hover ul {
  opacity: 1;
  top: 5px;
}
.Main .first-screen .inner #planet {
  margin: -30px -250px -50px 0;
  width: 1300px;
  height: 1150px;
}
.Main .first-screen .inner #planet > img {
  -webkit-animation: rotatePlanet infinite linear 300s;
          animation: rotatePlanet infinite linear 300s;
}
.Main .first-screen .inner .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}
.Main .first-screen .inner .right .consult {
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
          box-shadow: 0px 11px 21px 0px rgba(3, 80, 78, 0.26);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 77px;
  border-radius: 0 0 7px 7px;
  padding: 0 20px 0 24px;
  position: relative;
  cursor: pointer;
}
.Main .first-screen .inner .right .consult i {
  color: #fff;
  font-size: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  width: 34px;
  position: relative;
}
.Main .first-screen .inner .right .consult i::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 50%;
}
.Main .first-screen .inner .right .consult .text {
  margin-left: 10px;
}
.Main .first-screen .inner .right .consult .text span {
  display: block;
  font-family: 'Proxima Nova Light';
  font-size: 14px;
  color: #fff;
  display: block;
  line-height: 1;
  text-transform: uppercase;
}
.Main .first-screen .inner .right .consult .text p {
  margin: 0;
  font-family: 'Proxima Nova Extrabold';
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.Main .first-screen .inner .right .consult::after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid;
  border-color: transparent #147383 #147383 #147383;
  border-radius: 0 0 7px 7px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .right .consult:hover::after {
  opacity: 1;
  height: calc(100% + 7px);
  width: calc(100% + 14px);
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .first-screen .inner .right .languages {
  position: absolute;
  top: 0;
  left: 100%;
  height: 77px;
  max-height: 100%;
  margin-left: 20px;
}
.Main .first-screen .inner .right .languages p {
  margin: 0;
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  color: #fff;
}
.Main .first-screen .inner .right .languages p.active {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.Main .first-screen .inner .right .languages p.notActive {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: top ease-in-out .4s;
  transition: top ease-in-out .4s;
}
.Main .first-screen .inner .scroll {
  position: absolute;
  left: 50%;
  top: 84%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 50px;
  width: 36px;
  background-image: url(../img/scroll.png);
  z-index: 10;
  cursor: pointer;
}
.Main .first-screen .inner .scroll::before {
  content: 'scroll';
  position: absolute;
  top: -38px;
  left: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: #fff;
  font-family: 'Proxima Nova Light';
  font-size: 10px;
  text-transform: uppercase;
}
.Main .first-screen .inner .scroll::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 8px;
  width: 2px;
  background-color: #fff;
  -webkit-animation: drop 1.5s linear infinite;
          animation: drop 1.5s linear infinite;
}
.Main .first-screen .inner .clouds {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 618px;
  background-image: url(../img/clouds/clouds-bottom.png);
  background-repeat: repeat-x;
  z-index: 0;
  pointer-events: none;
  -webkit-animation: slide 400s linear infinite;
          animation: slide 400s linear infinite;
}
.Main .first-screen .inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -61px;
  background-color: #1e5865;
  width: 350px;
  height: 100%;
  z-index: 1;
  -webkit-box-shadow: 0px 27px 46px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 27px 46px 0px rgba(0, 0, 0, 0.14);
}
.Main .first-screen .inner::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50vw;
  height: 550px;
  background-image: url(../img/clouds/planet-back2.png);
  background-repeat: repeat-x;
  z-index: -1;
  pointer-events: none;
  -webkit-animation: slideFour 250s linear infinite;
          animation: slideFour 250s linear infinite;
}
.Main .first-screen::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: calc(100% + 100px);
  height: 150px;
  z-index: 3;
  -webkit-box-shadow: 0 -70px 130px 0 white;
          box-shadow: 0 -70px 130px 0 white;
  opacity: 0;
}
.Main .Maincontent {
  background-image: url(../img/bg/orbits.png);
  background-repeat: no-repeat;
  background-position: 0 65px;
}
.Main .Maincontent .block > header {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.Main .Maincontent .block > header .number {
  font-family: 'Proxima Nova Extrabold';
  color: #fff;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Main .Maincontent .block > header .number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border: 1px solid #3aa7b3;
  border-radius: 50%;
  -webkit-animation: orbit 2s linear infinite;
          animation: orbit 2s linear infinite;
}
.Main .Maincontent .block > header .text span {
  font-family: 'Proxima Nova Extrabold';
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block > header .text h2 {
  font-family: 'Proxima Nova Extrabold';
  font-size: 100px;
  line-height: .75;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block > header .description {
  font-family: 'Proxima Nova Regular';
  font-size: 18px;
  color: #666;
  max-width: 830px;
  line-height: 1.25;
}
.Main .Maincontent .block.block1 {
  padding-top: 110px;
}
.Main .Maincontent .block.block1 > header {
  padding-left: 66px;
}
.Main .Maincontent .block.block1 > header .number {
  font-size: 27px;
  height: 45px;
  width: 45px;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
}
.Main .Maincontent .block.block1 > header .text span {
  font-family: 'Proxima Nova Extrabold';
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#206474));
  background: linear-gradient(to right, #206474, #206474);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block.block1 > header .text h2 {
  font-family: 'Proxima Nova Extrabold';
  font-size: 100px;
  line-height: .75;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block.block1 .profit {
  -webkit-transition: 1s;
  transition: 1s;
  margin: 60px auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 735px;
  position: relative;
  max-width: 1920px;
  overflow: hidden;
}
.Main .Maincontent .block.block1 .profit .slick-slide {
  padding: 0 10px;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item {
  padding-bottom: 40px;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div {
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div header .icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div header p {
  margin: 0;
  padding-left: 16px;
  font-family: 'Proxima Nova Extrabold';
  color: #fff;
  text-transform: uppercase;
  line-height: .85;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div header p span {
  display: block;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 45%;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div ul li {
  font-family: 'Proxima Nova Regular';
  position: relative;
  line-height: 2.4;
  padding-left: 20px;
  -webkit-transition: padding ease-in-out .25s;
  transition: padding ease-in-out .25s;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div ul li::before {
  content: '';
  height: 4px;
  width: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div::after {
  content: "\e900";
  font-family: 'Icomoon';
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 40px;
  margin-left: 8px;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  opacity: 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a {
  margin: 45px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  width: 256px;
  height: 75px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  border-radius: 7px;
  margin-left: calc(50% - 128px);
  position: relative;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a span {
  text-transform: uppercase;
  line-height: 1;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a span.light {
  font-family: 'Proxima Nova Light';
  font-size: 14px;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a span.bold {
  font-family: 'Proxima Nova Extrabold';
  font-size: 18px;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .Maincontent .block.block1 .profit .slick-slide .item > a:hover::before {
  height: calc(100% + 16px);
  width: calc(100% + 16px);
  opacity: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item {
  width: 340px !important;
  margin-top: 80px;
  opacity: .3;
  -webkit-filter: blur(3px);
          filter: blur(3px);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div {
  background-color: #fff;
  padding-bottom: 68px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header {
  padding: 50px 0 45px 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header .icon {
  height: 44px;
  width: 44px;
  background-size: contain;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header .icon.bukmaker {
  background-image: url(../img/icons/profit-bookmaker-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header .icon.bitcoin {
  background-image: url(../img/icons/profit-bitcoin-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header .icon.casino {
  background-image: url(../img/icons/profit-casino-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header p {
  color: #1c8190;
  font-size: 36px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header p span {
  font-size: 20px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div header::after {
  background-color: #cde3e7;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div ul {
  padding: 10px 10px 0 40px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div ul li {
  font-size: 12px;
  color: #333;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div ul li::before {
  background-color: #506474;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > div::after {
  color: #fff;
  opacity: 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > a {
  background-color: #fff;
  opacity: 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > a span {
  color: #189caa;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blur .item > a::before {
  border: 1px solid #cde3e7;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item {
  width: 340px !important;
  margin-top: 30px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div {
  background-color: #fff;
  padding-bottom: 68px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header {
  padding: 50px 0 45px 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header .icon {
  height: 53px;
  width: 53px;
  background-size: contain;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header .icon.bukmaker {
  background-image: url(../img/icons/profit-bookmaker-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header .icon.bitcoin {
  background-image: url(../img/icons/profit-bitcoin-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header .icon.casino {
  background-image: url(../img/icons/profit-casino-icon.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header p {
  color: #1c8190;
  font-size: 42px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header p span {
  font-size: 25px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div header::after {
  background-color: #cde3e7;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div ul {
  padding: 10px 10px 0 40px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div ul li {
  color: #333;
  font-size: 13px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div ul li::before {
  background-color: #506474;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > div::after {
  color: #fff;
  opacity: 1;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > a {
  background-color: #fff;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > a span {
  color: #189caa;
}
.Main .Maincontent .block.block1 .profit .slick-slide.white .item > a::before {
  border: 1px solid #cde3e7;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item {
  width: 463px !important;
  margin: 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div {
  padding-bottom: 87px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header {
  padding: 50px 0 45px 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header .icon {
  height: 79px;
  width: 79px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header .icon.bukmaker {
  background-image: url(../img/icons/profit-bookmaker-icon-hover.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header .icon.bitcoin {
  background-image: url(../img/icons/profit-bitcoin-icon-hover.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header .icon.casino {
  background-image: url(../img/icons/profit-casino-icon-hover.png);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header p {
  color: #fff;
  font-size: 64px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header p span {
  font-size: 38px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div header::after {
  background-color: #4e9ca8;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div ul {
  padding: 40px 10px 0 56px;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div ul li {
  font-size: 14px;
  color: #fff;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div ul li::before {
  background-color: #fff;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div::after {
  color: #1c8291;
  opacity: 1;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > div::before {
  opacity: 1;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > a {
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > a span {
  color: #fff;
}
.Main .Maincontent .block.block1 .profit .slick-slide.blue .item > a::before {
  border: 1px solid #3aa7b3;
}
.Main .Maincontent .block.block1 .profit .slick-slide:first-child {
  padding: 0 10px 0 0;
}
.Main .Maincontent .block.block1 .profit .slick-slide:last-child {
  padding: 0 0 0 10px;
}
.Main .Maincontent .block.block1 .profit .slick-slide:hover .item > div::before {
  opacity: 1;
}
.Main .Maincontent .block.block2 {
  padding-top: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
}
.Main .Maincontent .block.block2 .left {
  width: 35%;
  padding: 96px 0 0 170px;
}
.Main .Maincontent .block.block2 .left ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 60px;
  margin-bottom: 42px;
  max-width: 315px;
  visibility: hidden;
}
.Main .Maincontent .block.block2 .left ul li p {
  margin: 0;
  font-family: 'Proxima Nova Extrabold';
  font-size: 52px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  position: relative;
}
.Main .Maincontent .block.block2 .left ul li span {
  font-family: 'Proxima Nova Extrabold';
  font-size: 14px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0 0 7px 10px;
  text-transform: uppercase;
}
.Main .Maincontent .block.block2 .left ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
}
.Main .Maincontent .block.block2 .left ul li::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -6px;
  height: 50px;
  width: 50px;
  border: 1px solid #3aa7b3;
  border-radius: 50%;
}
.Main .Maincontent .block.block2 .left ul li:nth-child(2) {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}
.Main .Maincontent .block.block2 .left ul li:nth-child(2) p::after {
  content: '+';
}
.Main .Maincontent .block.block2 .left ul li:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.Main .Maincontent .block.block2 .right {
  width: 65%;
  max-width: 930px;
}
.Main .Maincontent .block.block2 .right > header {
  padding-right: 160px;
  text-align: right;
  position: relative;
}
.Main .Maincontent .block.block2 .right > header .number {
  font-family: 'Proxima Nova Extrabold';
  color: #fff;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 69px;
  height: 156px;
  width: 156px;
  top: -45px;
  right: -45px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.14);
}
.Main .Maincontent .block.block2 .right > header .number::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  border: 1px solid #3aa7b3;
  border-radius: 50%;
  -webkit-animation: orbit 2s linear infinite;
          animation: orbit 2s linear infinite;
}
.Main .Maincontent .block.block2 .right > header .text span {
  font-family: 'Proxima Nova Extrabold';
  font-size: 29px;
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#206474));
  background: linear-gradient(to right, #206474, #206474);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block.block2 .right > header .text h2 {
  font-family: 'Proxima Nova Extrabold';
  font-size: 100px;
  line-height: .75;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block.block2 .right > header .description {
  font-family: 'Proxima Nova Regular';
  font-size: 18px;
  color: #666;
  padding-left: 8%;
  line-height: 1.25;
}
.Main .Maincontent .block.block2 .right .slider {
  margin-top: 85px;
}
.Main .Maincontent .block.block2 .right .slider .slick-slide {
  margin: 0 5px;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots {
  bottom: -40px;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li button::before {
  height: 14px;
  width: 14px;
  background-color: #197684;
  opacity: .35;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #197684;
  opacity: 0;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li:hover button::before {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li:hover button::after {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li.slick-active button::before {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .slick-dots li.slick-active button::after {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
.Main .Maincontent .block.block2 .right .slider .item {
  width: 300px;
}
.Main .Maincontent .block.block2 .right .slider .item .icon {
  height: 93px;
  width: 93px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 32px auto;
}
.Main .Maincontent .block.block2 .right .slider .item .text {
  position: relative;
  width: 100%;
  border-radius: 10px;
  padding: 16px 18px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  color: #fff;
}
.Main .Maincontent .block.block2 .right .slider .item .text::before {
  content: '\e900';
  font-family: 'Icomoon';
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  font-size: 35px;
  color: #1c8291;
  margin-left: -5px;
}
.Main .Maincontent .block.block2 .right .slider .item .text p {
  font-family: 'Proxima Nova Extrabold';
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  line-height: 1.25;
  min-height: 50px;
}
.Main .Maincontent .block.block2 .right .slider .item .text span {
  font-family: 'Proxima Nova Regular';
  font-size: 14px;
  line-height: 1.25;
  display: block;
}
.Main .Maincontent .block.block2 .right .slider .item.first .icon {
  background-image: url(../img/icons/why-we-icon1.png);
}
.Main .Maincontent .block.block2 .right .slider .item.second .icon {
  background-image: url(../img/icons/why-we-icon2.png);
}
.Main .Maincontent .block.block2 .right .slider .item.third .icon {
  background-image: url(../img/icons/why-we-icon3.png);
}
.Main .Maincontent .block.block3 {
  margin-top: 345px;
  position: relative;
  padding-bottom: 830px;
}
.Main .Maincontent .block.block3 header {
  padding-left: 31.65%;
}
.Main .Maincontent .block.block3 header .number {
  height: 172px;
  width: 172px;
  font-size: 95px;
  left: 0;
  top: -30px;
  margin-left: 24.5%;
}
.Main .Maincontent .block.block3 header .text h2 {
  font-size: 85px;
  line-height: 1;
  margin-top: -15px;
}
.Main .Maincontent .block.block3 header .text span {
  display: block;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.Main .Maincontent .block.block3 .providers {
  max-width: 1420px;
  margin: 0 auto;
}
.Main .Maincontent .block.block3 .providers ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 120px;
}
.Main .Maincontent .block.block3 .providers ul li {
  width: calc(20% - 8px);
  margin: 0 4px 8px 4px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 9.6px 0.4px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 4px 9.6px 0.4px rgba(0, 0, 0, 0.14);
  min-height: 144px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.Main .Maincontent .block.block3 .ox {
  position: absolute;
  top: -132px;
  left: 50%;
  margin-left: -1040px;
  height: 637px;
  width: 515px;
  background-image: url(../img/st2.png);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}
.Main .Maincontent .block.block3 .clouds {
  position: absolute;
  top: 560px;
  left: 0;
  width: 100%;
  height: 1061px;
  background-image: url(../img/clouds/recallTop.png);
  background-repeat: repeat-x;
  z-index: -1;
  -webkit-animation: slideTwo 430s linear infinite;
  animation: slideTwo 430s linear infinite;
  background-position: 0px 0px;
}
.Main .Maincontent .block.block3 .swingGuy {
  position: absolute;
  top: 320px;
  left: 50%;
  margin-left: 680px;
  height: 283px;
  width: 154px;
  background-image: url(../img/swing-guy.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-animation: swing 2.5s ease-in-out;
          animation: swing 2.5s ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  -webkit-transform-origin: 0px top;
          transform-origin: 0px top;
  opacity: 0;
}
.Main .Maincontent .block.block3::after {
  content: '';
  position: absolute;
  top: 560px;
  left: 0;
  width: 100%;
  height: 1096px;
  background-image: url(../img/bg/main-recall.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
.Main .Maincontent .block.block3::before {
  content: '';
  position: absolute;
  top: 410px;
  left: -50px;
  width: calc(100% + 150px);
  height: 150px;
  z-index: -1;
  -webkit-box-shadow: 0 70px 130px 0 white;
  box-shadow: 0 70px 130px 0 white;
  opacity: 0;
}
.Main .Maincontent .block.block4 {
  margin-top: -458px;
  position: relative;
}
.Main .Maincontent .block.block4 > header {
  text-align: center;
  padding-left: 200px;
}
.Main .Maincontent .block.block4 > header .number {
  height: 114px;
  width: 114px;
  font-size: 50px;
  background: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-left: -250px;
}
.Main .Maincontent .block.block4 > header .number span {
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Main .Maincontent .block.block4 > header .text h2 {
  font-size: 114px;
  background: transparent;
  -webkit-text-fill-color: #fff;
  color: #fff;
  display: inline-block;
  text-align: right;
}
.Main .Maincontent .block.block4 > header .text h2 span {
  display: block;
  background: transparent;
  -webkit-text-fill-color: #fff;
  color: #fff;
  font-size: 34px;
  margin-top: 8px;
}
.Main .Maincontent .block.block4 .recalls {
  max-width: 1420px;
  margin: 20px auto 0 auto;
}
.Main .Maincontent .block.block4 .recalls ul {
  display: grid;
  grid-template-columns: repeat(4, 22.8%);
  grid-gap: 40px;
  margin: 0 20px;
}
.Main .Maincontent .block.block4 .recalls ul li {
  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;
  margin-bottom: 40px;
}
.Main .Maincontent .block.block4 .recalls ul li img {
  height: 157px;
  width: 157px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 30.72px 1.28px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 10px 30.72px 1.28px rgba(0, 0, 0, 0.13);
}
.Main .Maincontent .block.block4 .recalls ul li .text {
  margin: 30px 0 0 0;
  border-radius: 15px;
  -webkit-box-shadow: 0px 12px 39.6px 0.4px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 12px 39.6px 0.4px rgba(0, 0, 0, 0.13);
  background-color: #fff;
  padding: 28px;
  position: relative;
}
.Main .Maincontent .block.block4 .recalls ul li .text p {
  font-size: 16px;
  color: #333;
  font-family: 'Proxima Nova Extrabold';
  text-transform: capitalize;
  margin: 0 0 15px 0;
  display: inline-block;
}
.Main .Maincontent .block.block4 .recalls ul li .text time {
  font-size: 14px;
  color: #ccc;
  font-family: 'Proxima Nova Regular';
  float: right;
}
.Main .Maincontent .block.block4 .recalls ul li .text span {
  font-size: 14px;
  color: #333;
  font-family: 'Proxima Nova Regular';
  display: block;
  line-height: 1.25;
}
.Main .Maincontent .block.block4 .recalls ul li .text::before {
  content: '\e900';
  font-family: 'Icomoon';
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  color: #fff;
  font-size: 35px;
  margin-left: -5px;
}
.Main .Maincontent .block.block4::before {
  content: '';
  position: absolute;
  top: 449px;
  left: -50px;
  width: calc(100% + 150px);
  height: 150px;
  z-index: -1;
  -webkit-box-shadow: 0 -70px 130px 0 white;
  box-shadow: 0 -70px 130px 0 white;
  opacity: 0;
}
.Main .Maincontent .block.block4::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background-image: url(../img/clouds/clouds-bottom.png);
  background-repeat: repeat-x;
  z-index: -1;
  -webkit-animation: slideThree 500s linear infinite;
  animation: slideThree 500s linear infinite;
}

.notMain .fixedMenu {
  top: -100px;
  -webkit-transition: top ease-in-out .25s;
  transition: top ease-in-out .25s;
}
.notMain .fixedMenu.visible {
  top: 0;
  -webkit-transition: top ease-in-out .25s;
  transition: top ease-in-out .25s;
}
.notMain .first-screen {
  min-height: 513px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.notMain .first-screen .inner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  font-family: 'Proxima Nova Extrabold';
  font-size: 100px;
  color: #fff;
  text-shadow: 0px 21px 27.84px rgba(31, 108, 123, 0.13);
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.notMain .first-screen .inner h1 span {
  display: block;
  font-size: 36px;
}
.notMain .first-screen .inner ul {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 95px;
  min-width: 700px;
}
.notMain .first-screen .inner ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 67px;
  margin-right: 30px;
}
.notMain .first-screen .inner ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 55px;
  width: 60px;
  background-repeat: no-repeat;
}
.notMain .first-screen .inner ul li span {
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  max-width: 250px;
}
.notMain .first-screen .inner ul li:last-child {
  margin-right: 0;
}
.notMain .first-screen .inner > img {
  position: absolute;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  left: 50%;
}
.notMain .first-screen::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 95px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  opacity: .75;
}
.notMain .first-screen::after {
  content: "\e900";
  font-family: 'Icomoon';
  position: absolute;
  bottom: -41px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 40px;
  margin-left: 8px;
  opacity: 1;
  color: #156471;
}
.notMain .Maincontent {
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
  padding: 60px 0 0 0;
  background-image: url(../img/bk/main-bg.jpg);
  background-repeat: no-repeat;
  background-position: center -515px;
}
.notMain .Maincontent .block.block1 {
  position: relative;
  min-height: 100px;
}
.notMain .Maincontent .block.block1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  width: 350px;
  height: 100px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  color: #fff;
  border: none;
  outline: none;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.notMain .Maincontent .block.block1 a span.light {
  font-family: 'Proxima Nova Light';
  font-size: 19px;
}
.notMain .Maincontent .block.block1 a span.bold {
  font-family: 'Proxima Nova Extrabold';
  font-size: 24px;
}
.notMain .Maincontent .block.block1 a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  border: 1px solid #3aa7b3;
}
.notMain .Maincontent .block.block1 a:hover::before {
  height: calc(100% + 24px);
  width: calc(100% + 24px);
  opacity: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
.notMain .Maincontent .block.block1::before {
  content: '';
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.notMain .Maincontent .block.block2 {
  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;
}
.notMain .Maincontent .block.block2 .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}
.notMain .Maincontent .block.block2 .top > div {
  width: 50%;
}
.notMain .Maincontent .block.block2 .top > div.left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.notMain .Maincontent .block.block2 .top > div.right {
  padding-left: 35px;
}
.notMain .Maincontent .block.block2 .top > div.right header {
  margin: 50px 0 0 0;
}
.notMain .Maincontent .block.block2 .top > div.right header h2 {
  font-family: 'Proxima Nova Extrabold';
  font-size: 85px;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.notMain .Maincontent .block.block2 .top > div.right header span {
  display: block;
  margin: -5px 0 15px 0;
  letter-spacing: 1px;
  font-family: 'Proxima Nova Extrabold';
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.notMain .Maincontent .block.block2 .top > div.right header .description {
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  color: #666;
  line-height: 1.25;
  margin: 50px 0 0 0;
  max-width: 640px;
}
.notMain .Maincontent .block.block2 .top img.move {
  position: absolute;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
  left: 50%;
}
.notMain .Maincontent .block.block2 .bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 45px 0 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.notMain .Maincontent .block.block2 .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 1340px;
}
.notMain .Maincontent .block.block2 .bottom ul li {
  width: calc(25% - 8px);
  margin: 0 4px 8px 4px;
  background-color: #fff;
  -webkit-box-shadow: 0px 9px 20.16px 0.84px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 9px 20.16px 0.84px rgba(0, 0, 0, 0.08);
  min-height: 145px;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 23px 25px 40px;
}
.notMain .Maincontent .block.block2 .bottom ul li p {
  font-family: 'Proxima Nova Semibold';
  font-size: 20px;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 5px 0;
}
.notMain .Maincontent .block.block2 .bottom ul li span {
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  color: #333;
  line-height: 1.25;
}
.notMain .Maincontent .block.block2 .bottom .text {
  font-size: 16px;
  color: #666;
  font-family: 'Proxima Nova Regular';
  text-align: center;
  margin: 36px auto 0 auto;
  max-width: 1111px;
  line-height: 1.25;
}
.notMain .Maincontent .block.block5 {
  margin-top: 210px;
}

.bk .first-screen {
  background-image: url(../img/bk/header-bg.jpg);
}
.bk .first-screen .inner h1 {
  max-width: 810px;
}
.bk .first-screen .inner > img {
  top: 235px;
  margin-left: -790px;
  min-width: 382px;
}
.bk .first-screen .inner ul li::before {
  background-image: url(../img/bk/icons.png);
}
.bk .first-screen .inner ul li span {
  max-width: 250px;
}
.bk .first-screen .inner ul li:nth-child(2)::before {
  background-position: -86px 0;
}
.bk .first-screen .inner ul li:nth-child(3) {
  margin-right: 0;
  padding-left: 100px;
}
.bk .first-screen .inner ul li:nth-child(3)::before {
  background-position: -168px 0;
  width: 90px;
}
.bk .Maincontent .block.block2 {
  margin-top: 180px;
}
.bk .Maincontent .block.block2 .top img.move {
  margin-left: -707px;
  top: 266px;
}

.casino .first-screen {
  background-image: url(../img/casino/header-bg.jpg);
}
.casino .first-screen .inner h1 {
  max-width: 810px;
}
.casino .first-screen .inner > img {
  bottom: 0;
  right: 277px;
}
.casino .first-screen .inner ul li::before {
  background-image: url(../img/casino/icons.png);
}
.casino .first-screen .inner ul li span {
  max-width: 250px;
}
.casino .first-screen .inner ul li:nth-child(2)::before {
  background-position: -82px 0;
}
.casino .first-screen .inner ul li:nth-child(3) {
  margin-right: 0;
}
.casino .first-screen .inner ul li:nth-child(3)::before {
  background-position: -153px 0;
}
.casino .Maincontent .block.block2 {
  margin-top: 130px;
}
.casino .Maincontent .block.block2 .top .left {
  margin-top: -70px;
}
.casino .Maincontent .block.block2 .top img.move {
  left: 160px;
  top: 270px;
}

.license .first-screen {
  background-image: url(../img/casino/header-bg.jpg);
}
.license .first-screen .inner h1 {
  max-width: 810px;
}
.license .first-screen .inner > img {
  bottom: 10px;
  right: 310px;
}
.license .first-screen .inner ul li::before {
  background-image: url(../img/license/icons.png);
}
.license .first-screen .inner ul li span {
  max-width: 250px;
}
.license .first-screen .inner ul li:nth-child(2)::before {
  background-position: -77px 0;
}
.license .first-screen .inner ul li:nth-child(3) {
  margin-right: 0;
}
.license .first-screen .inner ul li:nth-child(3)::before {
  background-position: 0 0;
}
.license .Maincontent {
  background-image: url(../img/license/main-bg.jpg);
  background-position: 0px -500px;
}
.license .Maincontent .block.block2 {
  margin-top: 65px;
}
.license .Maincontent .block.block2 > p.text {
  font-size: 16px;
  color: #666;
  font-family: 'Proxima Nova Regular';
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  line-height: 1.25;
}
.license .Maincontent .block.block2 > header {
  text-align: center;
  margin-top: 140px;
}
.license .Maincontent .block.block2 > header .text h2 {
  font-size: 85px;
  margin: 0;
}
.license .Maincontent .block.block2 > header .text span {
  font-size: 34px;
}
.license .Maincontent .block.block2 .modals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 140px 0 0 0;
}
.license .Maincontent .block.block2 .modals .item {
  max-width: 370px;
  margin: 0 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 12px 39.6px 0.4px rgba(0, 2, 3, 0.13);
          box-shadow: 0px 12px 39.6px 0.4px rgba(0, 2, 3, 0.13);
  background-color: #fff;
  padding: 0 30px 90px 30px;
  position: relative;
}
.license .Maincontent .block.block2 .modals .item > img {
  position: relative;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -60px;
}
.license .Maincontent .block.block2 .modals .item header {
  text-align: center;
  text-transform: uppercase;
  font-family: 'Proxima Nova Extrabold';
  color: #1c8190;
}
.license .Maincontent .block.block2 .modals .item header span {
  font-size: 25px;
  line-height: 1;
}
.license .Maincontent .block.block2 .modals .item header p {
  font-size: 45px;
  line-height: 1;
  margin: -8px 0 12px 0;
}
.license .Maincontent .block.block2 .modals .item p.text {
  font-size: 14px;
  color: #333;
  font-family: 'Proxima Nova Regular';
  text-align: justify;
  line-height: 1.25;
  margin-bottom: 18px;
}
.license .Maincontent .block.block2 .modals .item a {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  width: 205px;
  height: 60px;
  border-radius: 7px;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 19.8px 0.2px rgba(0, 2, 3, 0.24);
          box-shadow: 0px 7px 19.8px 0.2px rgba(0, 2, 3, 0.24);
}
.license .Maincontent .block.block2 .modals .item a span {
  color: #189caa;
  line-height: 1;
  text-transform: uppercase;
}
.license .Maincontent .block.block2 .modals .item a span.light {
  font-family: 'Proxima Nova Light';
  font-size: 14px;
}
.license .Maincontent .block.block2 .modals .item a span.bold {
  font-family: 'Proxima Nova Extrabold';
  font-size: 18px;
}
.license .Maincontent .block.block2 .modals .item:nth-of-type(2) {
  margin-top: -55px;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}
.license .Maincontent .block.block2 .modals .item:first-of-type, .license .Maincontent .block.block2 .modals .item:last-of-type {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}

.seo .first-screen {
  background-image: url(../img/seo/header-bg.jpg);
}
.seo .first-screen .inner h1 {
  max-width: 950px;
}
.seo .first-screen .inner > img {
  bottom: 10px;
  right: 355px;
}
.seo .first-screen .inner ul li::before {
  background-image: url(../img/license/icons.png);
}
.seo .first-screen .inner ul li span {
  max-width: 250px;
}
.seo .first-screen .inner ul li:nth-child(2)::before {
  background-position: -77px 0;
}
.seo .first-screen .inner ul li:nth-child(3) {
  margin-right: 0;
}
.seo .first-screen .inner ul li:nth-child(3)::before {
  background-position: 0 0;
}
.seo .first-screen::after {
  opacity: 0.93;
}
.seo .Maincontent {
  background-image: url(../img/license/main-bg.jpg);
  background-position: 0px -500px;
}
.seo .Maincontent .block.block2 {
  margin-top: 65px;
}
.seo .Maincontent .block.block2 > p.text {
  font-size: 16px;
  color: #666;
  font-family: 'Proxima Nova Regular';
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  line-height: 1.25;
}
.seo .Maincontent .block.block2 > header {
  text-align: center;
  margin-top: 140px;
}
.seo .Maincontent .block.block2 > header .text h2 {
  font-size: 85px;
  margin: 0;
}
.seo .Maincontent .block.block2 > header .text span {
  font-size: 34px;
}
.seo .Maincontent .block.block2 .list {
  margin: 60px auto 0 auto;
  position: relative;
  max-width: 1420px;
  width: 100%;
}
.seo .Maincontent .block.block2 .list > img {
  margin: 0 auto;
  display: block;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}
.seo .Maincontent .block.block2 .list .items {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 0;
  padding: 0 20px;
}
.seo .Maincontent .block.block2 .list .items ul {
  max-width: 333px;
}
.seo .Maincontent .block.block2 .list .items ul li {
  background: -webkit-gradient(linear, right top, left top, from(#0464c0), to(#138bfd));
  background: linear-gradient(to left, #0464c0, #138bfd);
  margin-bottom: 20px;
  border-radius: 30px;
  padding: 20px 28px;
  color: #fff;
  position: relative;
}
.seo .Maincontent .block.block2 .list .items ul li p {
  text-transform: uppercase;
  font-family: 'Proxima Nova Semibold';
  margin: 0 0 5px 0;
  line-height: 1;
  font-size: 20px;
}
.seo .Maincontent .block.block2 .list .items ul li span {
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  line-height: 1.25;
  display: block;
  text-align: justify;
}
.seo .Maincontent .block.block2 .list .items ul li:last-child {
  margin: 0;
}
.seo .Maincontent .block.block2 .list .items ul li svg#tail {
  position: absolute;
  max-width: 40px;
  bottom: -7px;
}
.seo .Maincontent .block.block2 .list .items ul.left li svg#tail {
  fill: #0464c0;
  left: 100%;
  margin-left: -20px;
}
.seo .Maincontent .block.block2 .list .items ul.left li:nth-child(1) {
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
}
.seo .Maincontent .block.block2 .list .items ul.left li:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.seo .Maincontent .block.block2 .list .items ul.right li svg#tail {
  fill: #138bfd;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  left: -20px;
}
.seo .Maincontent .block.block2 .list .items ul.right li:nth-child(1) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.seo .Maincontent .block.block2 .list .items ul.right li:nth-child(2) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.seo .Maincontent .block.block2 .list .items ul.right li:nth-child(3) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.seo .Maincontent .block.block2 .list .rocket {
  position: absolute;
  top: 200%;
  left: 50%;
  opacity: 0;
}
.seo .Maincontent .block.block2 .list .rocket.active {
  -webkit-animation: rocket 1.5s ease-in-out;
          animation: rocket 1.5s ease-in-out;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}
.seo .Maincontent .block.block5 {
  margin-top: 145px;
}

.mobile .first-screen {
  background-image: url(../img/mobile/header-bg.jpg);
}
.mobile .first-screen .inner h1 {
  max-width: 950px;
}
.mobile .first-screen .inner > img {
  bottom: 27px;
  right: 275px;
}
.mobile .first-screen .inner ul li::before {
  background-image: url(../img/license/icons.png);
}
.mobile .first-screen .inner ul li span {
  max-width: 250px;
}
.mobile .first-screen .inner ul li:nth-child(2)::before {
  background-position: -77px 0;
}
.mobile .first-screen .inner ul li:nth-child(3) {
  margin-right: 0;
}
.mobile .first-screen .inner ul li:nth-child(3)::before {
  background-position: 0 0;
}
.mobile .Maincontent {
  background-image: url(../img/license/main-bg.jpg);
  background-position: 0px -500px;
}
.mobile .Maincontent .block.block2 {
  margin-top: 65px;
}
.mobile .Maincontent .block.block2 > p.text {
  font-size: 16px;
  color: #666;
  font-family: 'Proxima Nova Regular';
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  line-height: 1.25;
}
.mobile .Maincontent .block.block2 > header {
  text-align: center;
  margin-top: 126px;
}
.mobile .Maincontent .block.block2 > header .text h2 {
  font-size: 133px;
  margin: 0;
}
.mobile .Maincontent .block.block2 > header .text h3 {
  font-size: 75px;
  font-family: 'Proxima Nova Extrabold';
  line-height: 1;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: -20px 0 0 0;
}
.mobile .Maincontent .block.block2 > header .text span {
  font-size: 34px;
}
.mobile .Maincontent .block.block2 .list {
  margin: 85px auto 0 auto;
  position: relative;
  max-width: 1220px;
  width: 100%;
}
.mobile .Maincontent .block.block2 .list > img {
  margin: 0 auto;
  display: block;
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}
.mobile .Maincontent .block.block2 .list .items {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 0;
  padding: 0 20px;
}
.mobile .Maincontent .block.block2 .list .items ul {
  max-width: 333px;
}
.mobile .Maincontent .block.block2 .list .items ul li {
  background: -webkit-gradient(linear, right top, left top, from(#0464c0), to(#138bfd));
  background: linear-gradient(to left, #0464c0, #138bfd);
  margin-bottom: 20px;
  border-radius: 30px;
  padding: 20px 28px;
  color: #fff;
  position: relative;
}
.mobile .Maincontent .block.block2 .list .items ul li p {
  text-transform: uppercase;
  font-family: 'Proxima Nova Semibold';
  margin: 0 0 5px 0;
  line-height: 1;
  font-size: 20px;
}
.mobile .Maincontent .block.block2 .list .items ul li span {
  font-family: 'Proxima Nova Regular';
  font-size: 16px;
  line-height: 1.25;
  display: block;
  text-align: justify;
}
.mobile .Maincontent .block.block2 .list .items ul li:last-child {
  margin: 0;
}
.mobile .Maincontent .block.block2 .list .items ul li svg#tail {
  position: absolute;
  max-width: 40px;
  bottom: -7px;
}
.mobile .Maincontent .block.block2 .list .items ul.left li svg#tail {
  fill: #0464c0;
  left: 100%;
  margin-left: -20px;
}
.mobile .Maincontent .block.block2 .list .items ul.left li:nth-child(1) {
  -webkit-animation-delay: .75s;
          animation-delay: .75s;
}
.mobile .Maincontent .block.block2 .list .items ul.left li:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.mobile .Maincontent .block.block2 .list .items ul.right li svg#tail {
  fill: #138bfd;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  left: -20px;
}
.mobile .Maincontent .block.block2 .list .items ul.right li:nth-child(1) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}
.mobile .Maincontent .block.block2 .list .items ul.right li:nth-child(2) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.mobile .Maincontent .block.block2 .list .items ul.right li:nth-child(3) {
  -webkit-animation-delay: 1.75s;
          animation-delay: 1.75s;
}
.mobile .Maincontent .block.block2 .list .kukaracha {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  margin: -55px 0 0 -127px;
}
.mobile .Maincontent .block.block5 {
  margin-top: 145px;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 50;
  opacity: 1;
  -webkit-transition: 1s all;
  transition: 1s all;
  visibility: visible;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s all;
  transition: 1s all;
}
.preloader .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 160px;
}
.preloader .loader ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -65px 30px 0 30px;
}
.preloader .loader ul li {
  max-width: 24%;
  -webkit-animation: fade linear infinite 1.2s;
          animation: fade linear infinite 1.2s;
}
.preloader .loader ul li img {
  max-width: 100%;
}
.preloader .loader ul li:nth-child(2) {
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
}
.preloader .loader ul li:nth-child(3) {
  -webkit-animation-delay: .6s;
          animation-delay: .6s;
}
.preloader .loader ul li:nth-child(4) {
  -webkit-animation-delay: .9s;
          animation-delay: .9s;
}
.preloader .loader > img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
          box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.18);
}

#toTop {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  bottom: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 40px;
  z-index: 20;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
}
#toTop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#17a7b5), to(#206474));
  background: linear-gradient(to bottom, #17a7b5, #206474);
  z-index: -1;
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
#toTop:hover i {
  margin-top: -10px;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
#toTop i {
  margin-top: -3px;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
#toTop.visible {
  opacity: 1;
  -webkit-transition: all ease-in-out .4s;
  transition: all ease-in-out .4s;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate(114px) rotate(0deg);
            transform: rotate(0deg) translate(114px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(114px) rotate(-360deg);
            transform: rotate(360deg) translate(114px) rotate(-360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) translate(114px) rotate(0deg);
            transform: rotate(0deg) translate(114px) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(114px) rotate(-360deg);
            transform: rotate(360deg) translate(114px) rotate(-360deg);
  }
}
@-webkit-keyframes rotatePlanet {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotatePlanet {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes slide {
  0% {
    background-position: 0px 150px;
  }
  100% {
    background-position: -7338px 150px;
  }
}
@keyframes slide {
  0% {
    background-position: 0px 150px;
  }
  100% {
    background-position: -7338px 150px;
  }
}
@-webkit-keyframes slideTwo {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -9611px 0px;
  }
}
@keyframes slideTwo {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -9611px 0px;
  }
}
@-webkit-keyframes slideThree {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -7338px 0px;
  }
}
@keyframes slideThree {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -7338px 0px;
  }
}
@-webkit-keyframes slideFour {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -2900px 0px;
  }
}
@keyframes slideFour {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -2900px 0px;
  }
}
@-webkit-keyframes drop {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
@keyframes drop {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 30px;
    opacity: 0;
  }
}
@-webkit-keyframes orbit {
  0% {
    left: 50%;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  70% {
    left: 50%;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.35);
            transform: translate(-50%, -50%) scale(1.35);
  }
  100% {
    left: 50%;
    height: 100%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1.5);
            transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes orbit {
  0% {
    left: 50%;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  70% {
    left: 50%;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.35);
            transform: translate(-50%, -50%) scale(1.35);
  }
  100% {
    left: 50%;
    height: 100%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1.5);
            transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes orbitSmall {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes orbitSmall {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  50% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes rocket {
  0% {
    opacity: 0;
  }
  5% {
    top: 200%;
    left: 50%;
    opacity: 1;
  }
  100% {
    top: 80px;
    left: 28%;
    opacity: 1;
  }
}
@keyframes rocket {
  0% {
    opacity: 0;
  }
  5% {
    top: 200%;
    left: 50%;
    opacity: 1;
  }
  100% {
    top: 80px;
    left: 28%;
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input::-moz-placeholder {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input:-moz-placeholder {
  opacity: 1;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input:focus::-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}
input:focus:-moz-placeholder {
  opacity: 0;
  -webkit-transition: opacity ease-in-out .25s;
  transition: opacity ease-in-out .25s;
}

input.hidden {
  display: none;
}

.modal-backdrop {
  background-color: #fff;
}
.modal-backdrop.show {
  opacity: .97;
}

.licenseModals .modal-dialog {
  max-width: 600px;
}
.licenseModals .modal-content {
  background-color: #fff;
  border-radius: 20px;
  border: none;
  width: 100%;
  max-width: 600px;
  -webkit-box-shadow: 0px 12px 39.6px 0.4px rgba(0, 2, 3, 0.13);
          box-shadow: 0px 12px 39.6px 0.4px rgba(0, 2, 3, 0.13);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
  font-size: 14px;
  color: #333;
  line-height: 1.25;
  padding: 0 45px 55px 45px;
}
.licenseModals .modal-content .close {
  position: absolute;
  right: -40px;
  top: -40px;
  opacity: 1;
  outline: none;
  border: none;
}
.licenseModals .modal-content .close:hover {
  opacity: 1;
}
.licenseModals .modal-content > img {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: -40px;
}
.licenseModals .modal-content header {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #1c8190;
  font-family: 'Proxima Nova Extrabold';
  line-height: 1;
  margin: 35px 0 10px 0;
}
.licenseModals .modal-content header span {
  font-size: 36px;
}
.licenseModals .modal-content header p {
  font-size: 60px;
  margin-top: -5px;
}
.licenseModals .modal-content > p {
  font-family: 'Proxima Nova Regular';
  margin-bottom: 15px;
}
.licenseModals .modal-content ul {
  margin-bottom: 15px;
  padding-left: 25px;
}
.licenseModals .modal-content ul li {
  font-family: 'Proxima Nova Regular';
}
.licenseModals .modal-content h5 {
  font-family: 'Proxima Nova Extrabold';
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}
.licenseModals .modal-content > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -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;
  width: 350px;
  height: 100px;
  -webkit-box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  box-shadow: 0px 21px 27.84px 1.16px rgba(31, 108, 123, 0.43);
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#206474), to(#17a7b5));
  background: linear-gradient(to right, #206474, #17a7b5);
  color: #fff;
  border: none;
  outline: none;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  margin: 50px auto 0 auto;
  position: relative;
}
.licenseModals .modal-content > a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  opacity: 0;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
  border: 1px solid #3aa7b3;
}
.licenseModals .modal-content > a span.light {
  font-family: 'Proxima Nova Light';
  font-size: 19px;
}
.licenseModals .modal-content > a span.bold {
  font-family: 'Proxima Nova Extrabold';
  font-size: 24px;
}
.licenseModals .modal-content > a:hover::before {
  height: calc(100% + 24px);
  width: calc(100% + 24px);
  opacity: 1;
  -webkit-transition: all ease-in-out .25s;
  transition: all ease-in-out .25s;
}
