@font-face {
  font-family: 'EuclidCircular';
  src: url('../fonts/EuclidCircularB-Medium.otf')
}

/*! HTML5 Boilerplate v7.3.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  overflow-y: visible;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
* {
  box-sizing: border-box;
}

html,
body {
  font-family: 'EuclidCircular' !important;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  font-family: 'EuclidCircular' !important;
  margin-top: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .27s ease-in-out;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

main {
  min-height: 500px;
}

.page-wrapper {
  overflow: hidden;
}

.section-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}

.plan-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 1180px) {
  .section-container {
    max-width: 990px;
  }
}

@media (max-width: 990px) {
  .section-container {
    max-width: 800px;
    padding: 0 30px;
    background-color: #151925;
  }
}

/*------------- HEADER --------------*/
.page-header {
  background: rgba(34, 39, 55, 0.97);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
  height: 75px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.page-header__inner {
  max-width: 1480px;
  height: inherit;
  margin: 0 auto;
  display: flex;
  padding: 0 30px;
  align-items: center;
  justify-content: space-between;
}

.page-header__logo {
  font-family: 'EuclidCircular' !important;
  font-size: 22px;
  color: #E1E1E1;
}

.page-header__logo:hover {
  color: #E1E1E1;
}

.page-header__content {
  display: flex;
  align-items: center;
}

.page-header nav {
  font-family: 'EuclidCircular' !important;
  font-size: 22px;
  margin-left: 5%;
  width: 100px;
}

.page-header .buttons {
  display: flex;
  align-items: center;
  margin-left: 42px;
}

.page-header nav a {
  color: #E1E1E1;
}

.page-header nav a:hover {
  color: #0EE3AE;
}

.page-header .header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'EuclidCircular' !important;
  color: #32374D;
  padding: 0 20px;
  font-size: 16px;
  height: 40px;
  white-space: nowrap;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
  border-radius: 18px;
  margin: 2%;
}

.page-header .header-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(16, 213, 166, 0.45);
}

.page-header .header-text {
  font-family: 'EuclidCircular' !important;
  font-size: 22px;
  margin-left: 1vw;
  margin-right: 1vw;
  color: #E1E1E1;
  width: auto;
  text-align: center;
  text-wrap: nowrap;
}

.page-header .header-text:hover {
  color: #0EE3AE;
}

@media (max-width: 1440px) {
  .page-header {
    height: 65px;
  }

  .page-header__logo {
    font-size: 18px;
  }

  .page-header .header-text {
    font-size: 18px;
  }

  .page-header nav {
    font-size: 18px;
    margin-left: 3%;
    width: 75px;
  }

  .page-header .buttons {
    margin-left: 30px;
  }

  .page-header .header-btn {
    height: 32px;
    font-size: 15px;
  }
}

@media (max-width: 660px) {
  .page-header {
    height: auto;
    padding: 15px 0;
  }

  .page-header__inner {
    flex-wrap: wrap;
  }

  .page-header nav {
    display: flex;
    margin-left: 5%;
    width: 50px;
  }

  .page-header nav,
  .page-header .buttons {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
  }

  .page-header__logo {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }

  .page-header__content {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/*------------- HERO --------------*/
.hero {
  min-height: 495px;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(48, 56, 83, 1) 0%, rgba(20, 24, 36, 1) 100%);
  background-image: url("../img/hero-shapes-bg.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 80px;
  margin-bottom: -1px;
}

.hero--v2 {
  background: linear-gradient(to bottom, rgba(48, 56, 83, 1) 0%, rgba(20, 24, 36, 1) 100%);
}

.hero .section-container {
  position: relative;
  height: 100%;
}

.hero__content {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding-top: 80px;
}

.hero__content .text {
  width: 50%;
  position: relative;
  z-index: 20;
}

.hero-cta-btn {
  background: #0cc294;
  color: rgb(41,48,71);
  font-family: 'EuclidCircular' !important;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: center;
  width: 100px;
  height: 50px;
  font-size: 18px;
  border-radius: 6px;
  margin: 2%;
  padding: 3%;
}
.hero-cta-btn:hover {
  color:rgb(41,48,71);
  transform: scale(1.10);
  box-shadow: 0 0 30px rgba(16, 213, 166, 0.25);
}
.hero-cta-btn img {
  height: 40px;
}
@media (max-width: 660px) {
  .text {
    justify-content: center;
    align-items: center;
    text-align: center;
    vertical-align: center;
  }
  .hero-cta-btn {
    margin: auto;
    display: flex;
    width: 70%;
    height: 50px;
    padding: 5%;
    margin-bottom: 5%;
  }
  .hero-cta-btn img {
    margin: 5px auto;
  }
}

.hero__content .graphics {
  position: absolute;
  z-index: 10;
  top: -20px;
  right: -90px;
  max-width: 600px;
}

.hero--v2 .hero__content .graphics {
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.hero__title {
  background: -webkit-linear-gradient(#FFFFFF, #B0B0B0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 115px;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero__description {
  background: -webkit-linear-gradient(#FFFFFF, #B0B0B0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 80px;
  line-height: 1.2;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.3, 1.3);
  }

  100% {
    transform: scale(1, 1);
  }
}

.jump-down-btn {
  display: block;
  background-color: #2B324A;
  border-radius: 50%;
  position: absolute;
  z-index: 2000;
  bottom: 30px;
  left: 50%;
  margin-left: -20px;
  width: 35px;
  height: 35px;
  animation: pulse 2s linear infinite;
}

.jump-down-btn:after {
  content: '';
  display: block;
  background: url("../img/arrow-down.svg") no-repeat;
  background-size: 100% 100%;
  width: 12px;
  height: 12px;
  margin: 12px;
}

.hero--v2 .boxes {
  position: absolute;
  z-index: 100;
  top: 170px;
  left: 30px;
}

.graphics .grid-bg {
  background: url("../img/grid.png") no-repeat;
  background-size: 100% 100%;
  position: absolute;
  width: 1500px;
  height: 900px;
  z-index: 10;
  top: -22%;
  left: -465px;
}

.graphics .img-box {
  position: absolute;
  max-width: 400px;
}

.graphics .img-box-1 {
  z-index: 200;
  animation-delay: 1s;
}

.graphics .img-box-2 {
  top: 160px;
  animation-delay: 0.4s;
}

@media (max-width: 1440px) {
  .hero {
    height: 75vh;
  }

  .hero__content {
    padding-top: 60px;
  }

  .hero__content .graphics {
    max-width: 510px;
    right: -20px;
    top: -10px;
  }

  .hero__title {
    font-size: 92px;
  }

  .hero--v2 .boxes {
    top: 100px;
  }

  .graphics .img-box-2 {
    top: 160px;
  }
}

@media (max-width: 990px) {
  .hero {
    height: 65vh;
  }

  .graphics .img-box {
    max-width: 300px;
  }

  .hero__content .graphics {
    right: -40px;
    top: -20px;
    max-width: 440px;
  }

  .hero__title {
    font-size: 64px;
  }

  .graphics .img-box-2 {
    top: 120px;
  }
}

@media (max-width: 700px) {
  .hero__content .graphics {
    max-width: 380px;
  }

  .graphics .grid-bg {
    top: -200px;
  }
}

@media (max-width: 660px) {
  .hero--v2 {
    height: 40vh;
  }

  .hero__title {
    font-size: 52px;
    margin-bottom: 45px;
  }

  .hero__content .graphics {
    right: 0;
    max-width: 400px;
  }

  .hero {
    padding-top: 17vh;
  }

  .hero__content .graphics img {
    max-width: 300px;
  }

  .graphics .img-box {
    width: 180px;
  }

  .graphics .img-box-2 {
    top: 70px;
  }
}

@media (max-width: 570px) {
  .hero__content .graphics img {
    display: none;
  }

  .hero__title {
    text-align: center;
  }

  .hero .text {
    width: 100%;
  }
}

/*------------- MAIN --------------*/
main {
  background: linear-gradient(to bottom, rgba(21, 25, 38, 1) 0%, rgba(41, 48, 72, 1) 100%);
}

.s-badges {
  padding: 42px 0;
}

.s-badges .section-container {
  max-width: 1200px;
}

.badges {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

.badges .badges__item {
  text-align: center;
}

.badges .badges__item .badge {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
  padding: 9px 20px 9px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  color: #373F58;
  font-weight: 700;
  font-size: 26px;
  min-width: 200px;
  border-radius: 22px;
  margin-bottom: 10px;
}

.badges .badges__item h3 {
  color: #10DBA9;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 1440px) {
  .badges .badges__item .badge {
    font-size: 22px;
    min-width: 100px;
  }

  .badges .badges__item h3 {
    font-size: 18px;
  }
}

@media (max-width: 990px) {
  .s-badges .section-container {
    max-width: 800px;
  }

  .badges .badges__item .badge {
    font-size: 20px;
    padding: 6px 20px 8px 20px;
  }

  .badges .badges__item h3 {
    font-size: 16px;
  }
}

@media (max-width: 700px) {
  .s-badges {
    padding: 20px 0;
  }

  .badges {
    flex-wrap: wrap;
  }

  .badges .badges__item {
    width: 45%;
    margin-bottom: 20px;
  }

  .badges .badges__item, .page2 {
    display: none;
  }
}

.s-services {
  background-color: #151925;
  background: url("../img/hill-bg.svg");
  background-size: cover;
  background-position: top center;
  min-height: 560px;
  padding-top: 150px;
  padding-bottom: 42px;
  position: relative;
}

.s-services .section-container {
  position: relative;
  z-index: 5;
}

.services-text {
  background: url("../img/services-text-bg.svg") no-repeat;
  background-size: 60%;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.services-text-50 {
  background: url("../img/services-text-bg-50.svg") no-repeat;
  background-size: 70%;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}

.services-grid {
  display: flex;
  justify-content: space-between;
}

.services-grid__col {
  max-width: 350px;
}

.services-grid__col:nth-child(2) {
  margin-top: 60px;
}

.services-grid__col:nth-child(3) {
  margin-top: 120px;
}

.services-grid .item-box {
  margin-bottom: 110px;
  position: relative;
}

.services-grid .item-box:after {
  content: '';
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transform: skew(0, 8deg);
  border-radius: 8px;
}

.item-box-content {
  position: relative;
  z-index: 10;
  padding: 0 18px 54px 18px;
}

.item-head {
  background: #2C3347;
  padding: 20px 22px 20px 22px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  top: -40px;
}

.item-head:after {
  content: '';
  display: block;
  border-top: 0px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 246px solid #2C3347;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 100%;
}

.item-head h2 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
}

.services-grid .bolt-graphics {
  background: linear-gradient(to bottom, rgba(28, 32, 46, 1) 0%, rgba(55, 63, 87, 1) 100%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid #0EE3AE;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  margin-top: -45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-grid .bolt.bolt-graphics:after {
  content: '';
  background: url("../img/bolt.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 25px;
  height: 34px;
  display: inline-block;
  z-index: 200;
}

.services-grid .cycle.bolt-graphics:after {
  content: '';
  background: url("../img/cycle.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 23px;
  height: 50px;
  display: inline-block;
  z-index: 200;
  object-fit: cover;
}

.services-grid .chat.bolt-graphics:after {
  content: '';
  background: url("../img/chat.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 34px;
  display: inline-block;
  z-index: 100;
}

.services-grid .world.bolt-graphics:after {
  content: '';
  background: url("../img/world.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 34px;
  display: inline-block;
  z-index: 100;
}

.services-grid .lock.bolt-graphics:after {
  content: '';
  background: url("../img/lock.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 34px;
  display: inline-block;
  z-index: 100;
}

.services-grid .cog.bolt-graphics:after {
  content: '';
  background: url("../img/cog.png") no-repeat;
  background-size: 100%;
  background-position: center;
  width: 24px;
  height: 34px;
  display: inline-block;
  z-index: 100;
}

.services-grid p {
  color: #1F2332;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding: 0 25px;
  margin-top: 20px;
  line-height: 1.35;
}

@media (max-width: 1440px) {
  .services-grid__col {
    max-width: 280px;
  }

  .item-head {
    padding: 15px 15px 25px 15px
  }

  .item-head:after {
    border-right: 226px solid #2C3347;
    border-bottom: 30px solid transparent;
  }

  .services-grid .bolt-graphics {
    width: 56px;
    height: 56px;
    margin-top: -55px;
  }

  .services-grid .bolt-graphics:after {
    background-size: 125%;
  }

  .services-grid p {
    margin-top: 15px;
    padding: 0 20px;
  }

  .item-box-content {
    padding-bottom: 50px;
  }
}

@media (max-width: 990px) {
  .services-grid {
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
  }

  .services-grid__col:nth-child(3) {
    margin-top: 0;
  }

  .services-grid__col:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 670px) {
  .s-services {
    padding-top: 100px;
    margin-bottom: -60px;
  }
}

.s-packages {
  padding: 15vh 0 0 0;
}

.packages-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -40px;
}

.packages-boxes__item {
  background: linear-gradient(to bottom, rgba(54, 60, 79, 1) 0%, rgba(22, 26, 40, 1) 100%);
  border: 1px solid;
  border-radius: 8px;
  box-shadow: -4px 0 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 130px;
  width: 257px;
  padding: 0 5px;
  text-align: center;
  transition: all .3s ease-in-out;
}

.packages-boxex__col {
  flex-basis: 25%;
  display: flex;
  justify-content: center;
}

/* packages versions */
.packages-boxes__item--v1 {
  border-color: #10DBA9;
}
.packages-boxes__item--v1:hover {
  box-shadow: 0 0 20px rgb(16, 219, 169, 0.35);
}

.packages-boxes__item--v2 {
  border-color: #555657
}
.packages-boxes__item--v2:hover {
  box-shadow: 0 0 20px rgba(85, 86, 87, 0.35);
}

.packages-boxes__item--v3 {
  border-color: #E5D966
}
.packages-boxes__item--v3:hover {
  box-shadow: 0 0 20px rgba(229, 217, 102, 0.35);
}

.packages-boxes__item--v4 {
  border-color: #7b24ed
}
.packages-boxes__item--v4:hover {
  box-shadow: 0 0 20px rgba(123, 36, 237, 0.35);
}

.packages-boxes__item--v5 {
  border-color: #ffffff
}
.packages-boxes__item--v5:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

.packages-boxes__item--v6 {
  border-color: #3d7cd4
}
.packages-boxes__item--v6:hover {
  box-shadow: 0 0 20px rgba(61, 124, 212, 0.35);
}

.packages-boxes__item--v7 {
  border-color: #5ccac4
}
.packages-boxes__item--v7:hover {
  box-shadow: 0 0 20px rgba(92,202,196, 0.35);
}

.packages-boxes__item--v8 {
  border-color: #ffd800
}
.packages-boxes__item--v8:hover {
  box-shadow: 0 0 20px rgba(229, 217, 102, 0.35);
}

.packages-boxes__item--v9 {
  border-color:  #555657
}
.packages-boxes__item--v9:hover {
  box-shadow: 0 0 20px #555657;
}

.packages-boxes__item--v91 {
  border-color:  #10DBA9;
}
.packages-boxes__item--v91:hover {
  box-shadow: 0 0 20px #10DBA9;
}

.packages-boxes__item--v92 {
  border-color:  #10DBA9;
}
.packages-boxes__item--v92:hover {
  box-shadow: 0 0 20px #10DBA9;
}

/* packages item */
.item-avatar {
  background: linear-gradient(to bottom, rgba(28, 32, 46, 1) 0%, rgba(55, 63, 87, 1) 100%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #18D9AA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: -45px;
  margin-bottom: 10px;
}

.item-avatar img {
  display: block;
  margin-top: 5px;
}

.packages-boxes__item--v2 .item-avatar {
  border-color: #555657;
}

.packages-boxes__item--v3 .item-avatar {
  border-color: #E5D966;
}
.packages-boxes__item--v4 .item-avatar {
  border-color: #7b24ed;
}
.packages-boxes__item--v5 .item-avatar {
  border-color: #ffffff;
}
.packages-boxes__item--v6 .item-avatar {
  border-color: #3d7cd4;
}
.packages-boxes__item--v8 .item-avatar {
  border-color: #ffd800;
}
.packages-boxes__item--v9 .item-avatar {
  border-color:  #555657;
}
.packages-boxes__item--v91 .item-avatar {
  border-color:  #555657;
}
.packages-boxes__item--v92 .item-avatar {
  border-color:  #555657;
}
.packages-boxes__item--v92 .item-avatar {
  border-color:  #555657;
}

.packages-boxes__item h2 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.packages-boxes__item .item-select-wrapper {
  margin-bottom: 20px;
}

select.item-select {
  height: 30px;
  width: 110px;
  margin: 0 auto;
}

.packages-boxes__item .item-price {
  padding: 15px 0;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  border-top: 1px solid #454D64;
  border-bottom: 1px solid #454D64;
}

.packages-boxes__item .item-list {
  min-height: 144px;
  color: white;
  font-size: 12pt;
  padding: 10px;
}

.packages-boxes__item .item-action {
  padding: 15px 0;
  border-top: 1px solid #454D64;
}

.packages-boxes__item .item-action .btn-action {
  display: block;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(221, 221, 221, 1) 100%);
  color: #151925;
  height: 32px;
  width: 140px;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  font-weight: 700;
  margin: 0 auto;
  border-radius: 20px;
  transition: all .25s ease-in-out;
}

.packages-boxes__item .item-action .btn-action:hover {
  transform: scale(1.02);
}

.packages-boxes__item--v1 .item-action .btn-action:hover {
  box-shadow: 0 0 20px rgb(16, 219, 169, 0.35);
}

.packages-boxes__item--v2 .item-action .btn-action:hover {
  box-shadow: 0 0 20px rgb(255, 255, 255, 0.35);
}

.packages-boxes__item--v3 .item-action .btn-action:hover {
  box-shadow: 0 0 20px rgba(229, 217, 102, 0.65);
}

@media (max-width: 990px) {
  .s-packages {
    padding-top: 10vh;
  }

  .packages-boxex__col {
    padding: 0 15px;
  }

  .packages-boxes {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .packages-boxes {
    margin: 0;
  }

  .packages-boxes__item {
    margin-bottom: 90px;
  }
}

@media (max-width: 560px) {
  .packages-boxex__col {
    flex-basis: 50%;
  }
}

@media (max-width: 375px) {
  .packages-boxex__col {
    flex-basis: 100%;
  }
}

/*------------- FOOTER --------------*/
.page-footer {
  background: #151925;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 64px;
  text-align: center;
}
.page-footer-servers {
  background: #151925;
  height: 150px;
  padding-top: 64px;
  text-align: center;
}

.page-footer__title {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 48px;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: 0.11em;
}

.page-footer__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-footer__logos li:nth-child(1) {
  position: relative;
  top: 8px;
}

.page-footer__logos li:nth-child(2) img {
  max-width: 75px;
}

.page-footer__logos img {
  max-width: 150px;
  transition: all .3s ease-in-out;
}

.page-footer__logos li:hover img {
  transform: scale(1.1);
}

.page-footer .footer-rights {
  font-size: 1.5em;
}
#bottomText {
  margin-top: 5%;
}

@media (max-width: 1440px) {
  .page-footer__title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .page-footer__logos {
    max-width: 660px;
  }

  .page-footer__logos img {
    max-width: 110px;
  }

  .page-footer__logos li:nth-child(2) img {
    max-width: 65px;
  }
}

@media (max-width: 499px) {
  .page-footer__logos {
    flex-wrap: wrap;
  }

  .page-footer__title {
    font-size: 20px;
  }

  .page-footer__logos li {
    margin-bottom: 20px;
    width: 50%;
  }

  .page-footer__logos li:nth-child(1) {
    top: 4px;
  }
}

/* SELECT 2 */
.s-packages .select2-container--default .select2-selection--single {
  background: #252C3D;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  font-family: 'EuclidCircular' !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.s-packages .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  padding-right: 10px;
}

.s-packages .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
  margin-left: -8px;
}

.select2-dropdown.package-green, .select2-dropdown.package-gray, .select2-dropdown.package-yellow,
.select2-dropdown.package-blue, .select2-dropdown.package-purple, .select2-dropdown.package-bluegreen, 
.select2-dropdown.package-sprint, .select2-dropdown.package-shadow2, .select2-dropdown.package-skull, .select2-dropdown.package-masked {
  background: #252C3D;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.select2-dropdown.package-white {
  background: #252C3D;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

.select2-container--default .select2-dropdown.package-green .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-green .select2-results__option--highlighted[aria-selected] {
  background: #18D9AA
}

.select2-container--default .select2-dropdown.package-gray .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-gray .select2-results__option--highlighted[aria-selected] {
  background: #555657;
}

.select2-container--default .select2-dropdown.package-yellow .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-yellow .select2-results__option--highlighted[aria-selected] {
  background: #E5D966;
}

.select2-container--default .select2-dropdown.package-blue .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-blue .select2-results__option--highlighted[aria-selected] {
  background: #3d7cd4;
}

.select2-container--default .select2-dropdown.package-white .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-white .select2-results__option--highlighted[aria-selected] {
  background: #ffffff;
  color: #252C3D;
}

.select2-container--default .select2-dropdown.package-purple .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-purple .select2-results__option--highlighted[aria-selected] {
  background: #7b24ed;
}

.select2-container--default .select2-dropdown.package-bluegreen .select2-results__option[aria-selected=true] {
  background: #252C3D;
}

.select2-container--default .select2-dropdown.package-bluegreen .select2-results__option--highlighted[aria-selected] {
  background: #5ccac4;
}

.select2-container--default .select2-dropdown.package-sprint .select2-results__option[aria-selected=true] {
  background: #252C3D;
}
.select2-container--default .select2-dropdown.package-sprint .select2-results__option--highlighted[aria-selected] {
  background:#ffd800;
}
.select2-container--default .select2-dropdown.package-shadow2 .select2-results__option[aria-selected=true] {
  background: #252C3D;
}
.select2-container--default .select2-dropdown.package-shadow2 .select2-results__option--highlighted[aria-selected] {
  background: #555657;
}
.select2-container--default .select2-dropdown.package-skull .select2-results__option[aria-selected=true] {
  background: #252C3D;
}
.select2-container--default .select2-dropdown.package-skull .select2-results__option--highlighted[aria-selected] {
  background: #18D9AA
}
.select2-container--default .select2-dropdown.package-masked .select2-results__option[aria-selected=true] {
  background: #252C3D;
}
.select2-container--default .select2-dropdown.package-masked .select2-results__option--highlighted[aria-selected] {
  background: #18D9AA
}





.select2-container--default .select2-dropdown.package-yellow .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #E5D966;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-yellow .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #E5D966;
}

.select2-container--default .select2-dropdown.package-gray .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #555657;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-gray .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #555657;
}

.select2-container--default .select2-dropdown.package-blue .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #3d7cd4;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-blue .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #3d7cd4;
}

.select2-container--default .select2-dropdown.package-white .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-white .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}

.select2-container--default .select2-dropdown.package-bluegreen .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #5ccac4;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-bluegreen .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #5ccac4;
}

.select2-container--default .select2-dropdown.package-sprint .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #ffd800;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-sprint .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ffd800;
}

.select2-container--default .select2-dropdown.package-masked .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #18D9AA;
  border-radius: 2px;
}
.select2-container--default .select2-dropdown.package-masked .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #18D9AA;
}

.select2-container--default .select2-dropdown .select2-results .select2-results__options {
  overflow-y: auto; /* Change from 'hidden' to 'auto' to allow scrolling */
  max-height: 300px; /* Set a max height to ensure dropdown is reasonable size */
}

/* Ensure scrollbar styling is consistent with your theme */
.select2-container--default .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar {
  width: 8px;
}

.select2-container--default .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-track {
  background: #252C3D;
}

.select2-container--default .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-thumb {
  background: #10DBA9; /* Default scrollbar color - will be overridden by color-specific styles */
  border-radius: 2px;
}

.select2-container--default .select2-dropdown .select2-results .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #0cc294;
}

.select2-container--default .select2-selection--single {
  outline: none !important;
}

/** MAINTANCE **/
.maintance-wrapper {
  min-height: 500px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(22,26,39,1) 0%, rgba(52,59,86,1) 100%);
}

.form--maintance {
  background: #151925;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
  padding: 25px;
  border-radius: 15px;
  margin-top: 35px;
}

.form--maintance input {
  width: 250px;
  height: 50px;
  background: #fff;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 25px;
  font-size: 18px;
}

.form--maintance button {
  display: block;
  color: #fff;
  background: #10D5A6;
  font-size: 18px;
  border: none;
  font-weight: 700;
  height: 43px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  transition: .25s ease-in-out;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 5px;
}


/* LOGIN */
.login-wrapper {
  min-height: 100vh;
  padding: 10vw 0 60px 0;
  background: linear-gradient(to bottom, rgba(83,231,199,1) 0%, rgba(27,142,117,1) 100%);
  text-align: center;
}

@media (max-width: 767px) {
  .login-wrapper {
    padding: 30vw 0 60px 0;
  }
}

.login-wrapper p {
  margin-bottom: 14px;
  font-weight: 600;
  color: #fff;
  font-size: 18px;
}

.login-wrapper p a {
  color: #fff;
}

.login-wrapper p.login--sign a{
  color: #94ffe5;
}

.login-box {
  position: relative;
  width: 380px;
  margin: 0 auto 60px auto;
  text-align: center;
  padding-bottom: 70px;
}

.login-box__content {
  position: relative;
  z-index: 20;
}

.login-box:after {
  content: '';
  top: 0;
  background: linear-gradient(to bottom, rgba(34,38,54,1) 0%, rgba(61,69,91,1) 100%);
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skewY(8deg);
  border-radius: 20px;
}


.login-box__logo {
  width: 94px;
  height: 94px;
  border: 1px solid #18D9AA;
  background: linear-gradient(to bottom, rgba(28,33,47,1) 0%, rgba(55,63,87,1) 100%);
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
  position: relative;
  top: -40px;
  margin-bottom: -10px;
}

.form--login {
  max-width: 310px;
  margin: 0 auto;
}


.form--login__title {
  color: #fff;
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form--login input {
  background: #fff;
  height: 38px;
  border-radius: 4px;
  border: none;
  margin-bottom: 25px;
  width: 100%;
  font-size: 16px;
  padding-left: 10px;
}

.form--login__btn {
  display: block;
  color: #fff;
  background: #10D5A6;
  font-size: 18px;
  border: none;
  font-weight: 700;
  height: 43px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  transition: .25s ease-in-out;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-top: 5px;
}

.content-success {
  background: linear-gradient(to bottom, rgba(81,225,194,1) 0%, rgba(27,141,116,1) 100%);
  min-height: 100vh;
  padding-bottom: 60px;
  padding-top: 200px;
}

.message-wrapper {
  text-align: center;
  padding: 0 0 60px 0;
}

.message-box {
  position: relative;
  padding: 20px 0 15px 0;
  text-align: center;
  width: 280px;
  margin: 0 auto 40px auto;
}

.message-box__content {
  position: relative;
  z-index: 10;
}

.message-box:after {
  content: '';
  background: #fff;
  width: 100%;
  height: 100%;
  transform: skewY(8deg);
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
}

.message-box .icon {
  background: linear-gradient(to bottom, rgba(31,35,50,1) 0%, rgba(54,62,86,1) 100%);
  position: relative;
  border: 1px solid #0EE3AE;
  width: 63px;
  height: 63px;
  margin: 0 auto 35px auto;
  border-radius: 50%;
}

.message-box .icon:after {
  content: '';
  background: url("../img/checkmark.svg") no-repeat;
  background-size: 100%;
  width: 56px;
  height: 45px;
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
}

.message-box .text {
  background: url("../img/text-bg.png") no-repeat;
  background-size: 100% 100%;
  font-size: 42px;
  display: flex;
  color: #fff;
  font-weight: 700;
  width: 220px;
  height: 90px;
  justify-content: center;
  margin: 0 auto;
}

.message-content h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 10px;
}

.message-content .tos-title h2 {
  color: #2C3347;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.message-content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
}

.message-content__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2C3347;
  background: #fff;
  font-size: 16px;
  border: none;
  font-weight: 700;
  height: 43px;
  width: 180px;
  text-align: center;
  border-radius: 5px;
  transition: .25s ease-in-out;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.message-content__btn:hover {
  background: #2C3347;
  color: #fff;
}

.content-fail {
  background: linear-gradient(to bottom, rgba(228,82,82,1) 0%, rgba(142,28,28,1) 100%);
  min-height: 100vh;
  padding-bottom: 60px;
  padding-top: 200px;
}

.message-content--fail p {
  font-size: 24px;
  margin-bottom: 60px;
}

.message-box--fail {
  width: 320px;
  margin-bottom: 50px;
}

.message-box--fail .text {
  background: url("../img/fail-text-box.png") no-repeat;
  background-size: 100% 100%;
  width: 250px;
  height: 100px;
}

.message-box--fail .icon {
  background: #d64747;
  border: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
}

.message-box--fail .icon:after {
  background: url("../img/sad-face.svg") no-repeat;
  background-size: 100% 100%;
  width: 46px;
  height: 46px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {

  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " ("attr(href) ")";
  }

  abbr[title]:after {
    content: " ("attr(title) ")";
  }

  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
