@charset "UTF-8";
/* Yusuf Akcesme  09.04.2022 */
/* reset */
* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  font-family: "Euclid Circular B";
}

a {
  text-decoration: none;
}

ul {
  margin-bottom: 0;
  padding: 0;
}

p {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

html {
  font-size: 14px;
  height: 100%;
}

body {
  font-family: "Euclid Circular B";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background: #fff;
}

body.overflowy {
  overflow-y: hidden;
}

.top-bar {
  width: 100%;
  background-color: #0b254b;
  height: 40px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.top-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 40px;
}

.top-bar .container .top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar .container .top-left a {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgb(185 190 201);
  color: #ffffff;
}

.top-bar .container .top-left a img {
  margin-right: 5px;
}

.top-bar .container .top-left a:last-child {
  border-right: 0;
}

.top-bar .container .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar .container .top-right a {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 24px;
  margin-left: 24px;
  color: #ffffff;
}

.top-bar .container .top-right a img {
  margin-right: 5px;
}

.top-bar .container .top-right a:first-child {
  border-left: 1px solid rgba(185 190 201);
}

header {
  width: 100%;
  height: 72px;
  background-color: #fff;
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  padding: 5px 0;
}

header > .container {
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > .container .logo {
  margin-right: 50px;
}

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

header > .container nav > ul > li > a {
  padding: 0 16px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #3b4767;
  font-size: 14px;
}

header > .container nav > ul > li > a img {
  margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
  header > .container nav > ul > li:hover > a {
    border-bottom: 2px solid #0083ff;
  }
  header > .container nav > ul > li:hover .mega-menu {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
  }
}

header > .container nav > ul > li .mega-menu {
  width: 100%;
  position: absolute;
  top: 112px;
  left: 0;
  z-index: 999;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  right: 0;
  padding: 30px 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 29px 14px rgba(65, 104, 177, 0.16);
          box-shadow: 0px 29px 14px rgba(65, 104, 177, 0.16);
}

header > .container nav > ul > li .mega-menu .container > .row > div {
  border-right: 1px solid rgba(59, 71, 103, 0.2);
}

header > .container nav > ul > li .mega-menu .container > .row > div:last-child {
  border-right: 0;
}

header > .container nav > ul > li .mega-menu .subtitle {
  display: block;
  font-weight: 500;
  color: #667093;
  font-size: 14px;
}

header > .container nav > ul > li .mega-menu .menu-link {
  width: 100%;
  background: #f7f9fd;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  line-height: 16px;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

header > .container nav > ul > li .mega-menu .menu-link:hover {
  background: #fff;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
}

header > .container nav > ul > li .mega-menu .menu-link:hover .icon {
  color: #fff;
  background: #0083ff;
}

header > .container nav > ul > li .mega-menu .menu-link .icon {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 26px;
  color: #667093;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 7px;
}

header > .container nav > ul > li .mega-menu .menu-link .link-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header > .container nav > ul > li .mega-menu .menu-link strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  padding-bottom: 8px;
  color: #00104b;
}

header > .container nav > ul > li .mega-menu .menu-link p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #667093;
}

header > .container .actions {
  margin-left: auto;
}

header > .container .actions a {
  width: 100px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(59, 71, 103, 0.1);
  color: #081131;
}

.main-hero {
  width: 100%;
  height: 560px;
  background: #f8faff;
  position: relative;
}

.main-hero.pink::after {
  background: #ffded6;
}

.main-hero.green::after {
  background: #1bc6c6;
}

.main-hero.dark-green::after {
  background: #00bc87;
}

.main-hero.turkuaz::after {
  background: #1bc6c6;
}

.main-hero.yellow::after {
  background: #ffcc68;
}

.main-hero.red::after {
  background: #f96e4e;
}

.main-hero.purple::after {
  background: #9867ff;
}

.main-hero.domain::after {
  background: #f4877a;
}

.main-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  pointer-events: none;
}

.main-hero .container {
  position: relative;
  z-index: 4;
}

.main-hero .container .hero-text ul {
  -webkit-column-count: 2;
          column-count: 2;
  margin-top: 16px;
}

.main-hero .container .hero-text ul li {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  padding: 8px 0;
}

.main-hero .container .hero-text > span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #081131;
  margin-bottom: 16px;
  display: block;
}

.main-hero .container .hero-text h2 {
  color: #081131;
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
  font-weight: bold;
  font-family: "Georgia", sans-serif;
}

.main-hero .container .hero-text h1 {
  color: #081131;
  font-size: 44px;
  font-weight: bold;
  font-family: "Georgia", sans-serif;
}

.main-hero .container .hero-text > a {
  width: 185px;
  height: 48px;
  background-color: #3b4767;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  margin-top: 24px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-hero .container .hero-text > a:hover {
  background: #0083ff;
}

.main-hero .container .hero-text p {
  color: #6978a0;
  font-size: 20px;
  line-height: 1.6;
}

.main-hero .container .hero-text p.small {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
}

.main-hero .container .hero-text .domain-search {
  width: 100%;
  height: 80px;
  background-color: #fff;
  -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-hero .container .hero-text .domain-search span {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 15px;
}

.main-hero .container .hero-text .domain-search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  height: 78px;
  background: none;
  font-size: 18px;
  color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::-webkit-input-placeholder {
  color: #6978a0;
}

.main-hero .container .hero-text .domain-search input:-ms-input-placeholder {
  color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::-ms-input-placeholder {
  color: #6978a0;
}

.main-hero .container .hero-text .domain-search input::placeholder {
  color: #6978a0;
}

.main-hero .container .hero-text .domain-search button {
  width: 143px;
  height: 48px;
  background: #0083ff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  font-size: 16px;
  margin-right: 16px;
}

.main-hero .container .hero-text .domain-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-hero .container .hero-text .domain-links a {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  padding-right: 30px;
}

.main-hero .container .hero-text .domain-links a:hover {
  color: #0083ff;
}

.main-hero .container .hero-text .domain-links a .fa-chevron-right {
  font-size: 15px;
  margin-left: 5px;
}

.main-hero .container .hero-text .domain-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-hero .container .hero-text .domain-prices .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}

.main-hero .container .hero-text .domain-prices .item img {
  margin-right: 5px;
}

.main-hero .container .hero-text .domain-prices .item span {
  font-size: 16px;
  color: #6978a0;
}

.main-hero .container .hero-img {
  width: 100%;
  height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-title {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.section-title span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #081131;
}

.section-title .title {
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  color: #081131;
  font-family: "Georgia";
  margin: 5px 0;
}

.section-title p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #6978a0;
  max-width: 855px;
}

.section-title span {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
  display: block;
  margin-bottom: 16px;
}

.section-title h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  color: #081131;
  font-family: "Georgia";
  margin-bottom: 16px;
}

.section-title h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 27px;
  color: #081131;
  font-family: "Georgia";
  margin-bottom: 16px;
}

.home-banners {
  padding: 70px 0;
}

.home-banners .container .row > div {
  min-height: 620px;
  max-height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.home-banners .container .banner-item {
  width: 100%;
  background: #f8faff;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
}

.home-banners .container .banner-item.small {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 32px;
}

.home-banners .container .banner-item.small p {
  padding: 0;
  padding-right: 32px;
}

.home-banners .container .banner-item.small .image {
  max-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.home-banners .container .banner-item.small .image img {
  height: 100%;
  width: auto;
}

.home-banners .container .banner-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #081131;
}

.home-banners .container .banner-item .title span {
  width: 32px;
  height: 32px;
  background: #f4ae2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}

.home-banners .container .banner-item .title span.purple {
  background: #6c00db;
}

.home-banners .container .banner-item .title span.green {
  background: #58b37d;
}

.home-banners .container .banner-item .title span.red {
  background: #ff4b11;
}

.home-banners .container .banner-item p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  line-height: 24px;
  color: #6978a0;
  padding: 0 32px;
  display: block;
  margin-top: 5px;
}

.home-banners .container .banner-item .image {
  margin-top: auto;
  width: 100%;
}

.home-banners .container .banner-item .image img {
  width: 100%;
  height: auto;
}

.home-banners .container .banner-item:nth-child(2) {
  margin-top: 20px;
}

.packs-wrapper {
  padding: 60px 0;
  position: relative;
}

.pack-item a:hover {
            background: #2980b9;
        }
        .pack-item .see-all {
            margin-top: 10px;
            font-size: 14px;
            color: #3498db;
            text-decoration: underline;
            cursor: pointer;
        }
        .pack-item .see-all:hover {
            color: #2980b9;
        }
        .pack-item:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.packs-wrapper.after::before {
  display: none;
}

.packs-wrapper.after::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  top: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.packs-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.packs-wrapper .pack-item {
  width: 100%;
  background: #f8faff;
  padding: 32px 24px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.packs-wrapper .pack-item.white-pack {
  background: #fff;
  border: 1px solid rgba(59, 71, 103, 0.1);
}

.packs-wrapper .pack-item.white-pack .price {
  margin-bottom: 5px;
}

.packs-wrapper .pack-item.white-pack ul li {
  color: #3b4767;
}

.packs-wrapper .pack-item:hover {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
}

.packs-wrapper .pack-item:hover .pattern span.active {
  background: #0083ff;
}

.packs-wrapper .pack-item:hover > a {
  background: #0083ff;
}

.packs-wrapper .pack-item .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}

.packs-wrapper .pack-item .title h4 {
  font-weight: 400;
  font-size: 24px;
  color: #3b4767;
}

.packs-wrapper .pack-item .title .pattern {
  width: 28px;
  height: 28px;
  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;
}

.packs-wrapper .pack-item .title .pattern span {
  width: 10px;
  height: 10px;
  background: #00c2f5;
  opacity: 0.2;
  border-radius: 50%;
}

.packs-wrapper .pack-item .title .pattern span.active {
  opacity: 1;
}

.packs-wrapper .pack-item .title .pattern span:nth-child(3), .packs-wrapper .pack-item .title .pattern span:last-child {
  margin-top: 7px;
}

.packs-wrapper .pack-item strong {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #3b4767;
  display: block;
}

.packs-wrapper .pack-item strong.old-price {
  text-decoration: line-through;
  margin-top: 16px;
}

.packs-wrapper .pack-item .c-badge {
  margin-bottom: 16px;
  background: #e1f5f5;
  font-weight: 400;
  font-size: 14px;
  color: #081131;
  padding: 2px 5px;
}

.packs-wrapper .pack-item .c-badge.yellow {
  background: #faebcc;
}

.packs-wrapper .pack-item .c-badge.red {
  background: #ffded6;
}

.packs-wrapper .pack-item .c-badge.purple {
  background: #e6e3ff;
}

.packs-wrapper .pack-item .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
}

.packs-wrapper .pack-item .price b {
  color: #081131;
  font-size: 36px;
  font-weight: 700;
}

.packs-wrapper .pack-item .price div {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 10px;
  padding-left: 5px;
}

.packs-wrapper .pack-item .price div small {
  font-weight: 600;
  font-size: 14px;
  color: #081131;
  line-height: 1;
}

.packs-wrapper .pack-item .price div span {
  font-weight: 400;
  font-size: 14px;
  color: #6978a0;
  line-height: 1.1;
}

.packs-wrapper .pack-item > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6978a0;
}

.packs-wrapper .pack-item ul {
  margin-top: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(59, 71, 103, 0.2);
}

.packs-wrapper .pack-item ul strong {
  font-weight: 500;
  font-size: 16px;
  color: #081131;
  display: block;
  margin-bottom: 16px;
}

.packs-wrapper .pack-item ul li {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
  padding-bottom: 16px;
}

.packs-wrapper .pack-item ul li b {
  font-weight: 500;
}

.packs-wrapper .pack-item ul li .fa-check {
  color: #58b37d;
}

.packs-wrapper .pack-item ul li:last-child {
  padding-bottom: 0;
}

.packs-wrapper .pack-item > a {
  width: 100%;
  height: 48px;
  background-color: #3b4767;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
}

.packs-wrapper .pack-item > a.see-all {
  border: 1px solid rgba(59, 71, 103, 0.1);
  background: transparent;
  color: #081131;
}

.numbers-wrapper {
  padding: 60px 0;
}

.numbers-wrapper .numbers {
  margin-top: 40px;
  width: 100%;
  border-top: 1px solid rgba(59, 71, 103, 0.2);
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.numbers-wrapper .numbers .row > div {
  border-right: 1px solid rgba(59, 71, 103, 0.2);
}

.numbers-wrapper .numbers .row > div:last-child {
  border-right: 0;
}

.numbers-wrapper .numbers .numbers-item {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 45px;
}

.numbers-wrapper .numbers .numbers-item strong {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  color: #081131;
}

.numbers-wrapper .numbers .numbers-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #3b4767;
}

.numbers-wrapper .numbers .numbers-item .image {
  width: 100%;
  height: 220px;
  background: #e1f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.numbers-wrapper .numbers .numbers-item .image.orange {
  background: #faebcc;
}

.numbers-wrapper .numbers .numbers-item .image.pink {
  background: #ffeef0;
}

.numbers-wrapper .numbers .numbers-item .image.green {
  background: #e9f5e8;
}

.numbers-wrapper .numbers .numbers-item .image img {
  max-height: 160px;
  width: auto;
  height: 100%;
  max-width: 175px;
}

.numbers-wrapper .numbers .numbers-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #6978a0;
}

.packs-slider-wrap {
  padding: 60px 0;
}

.packs-slider-wrap .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  bottom: -60px;
}

.packs-slider-wrap .slick-dots li {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.1);
  color: #6978a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  margin-right: 24px;
}

.packs-slider-wrap .slick-dots li.slick-active {
  border-color: #0083ff;
  color: #081131;
}

.packs-slider-wrap .slider-info span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #081131;
  margin-bottom: 5px;
  display: block;
}

.packs-slider-wrap .slider-info h4 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  color: #081131;
  margin-bottom: 16px;
}

.packs-slider-wrap .slider-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #6978a0;
  margin-bottom: 24px;
}

.packs-slider-wrap .slider-info ul {
  -webkit-column-count: 2;
          column-count: 2;
}

.packs-slider-wrap .slider-info ul li {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  padding: 8px 0;
}

.packs-slider-wrap .slider-info a {
  width: 185px;
  height: 48px;
  background-color: #3b4767;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  margin-top: 24px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.packs-slider-wrap .slider-info a:hover {
  background: #0083ff;
}

.packs-slider-wrap .slider-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.brands {
  padding: 60px 0;
}

.brands .brand-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 88px;
  border: 1px solid rgba(59, 71, 103, 0.1);
  color: #0083ff;
}

.brands .brand-item:hover img {
  opacity: 1;
}

.brands .brand-item img {
  opacity: 0.5;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.brands .brand-item span {
  font-size: 24px;
}

.footer-contact {
  padding: 40px 0;
  background: #f8faff;
}

.footer-contact .head {
  margin-bottom: 48px;
}

.footer-contact .head span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  color: #081131;
  margin-bottom: 16px;
}

.footer-contact .head h3 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  color: #081131;
  font-size: 36px;
}

.footer-contact .f-contact-item {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.footer-contact .f-contact-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #3b4767;
}

.footer-contact .f-contact-item .title span {
  padding-left: 5px;
  color: #58b37d;
}

.footer-contact .f-contact-item .title img {
  margin-right: 7px;
}

.footer-contact .f-contact-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #6978a0;
  max-width: 300px;
  margin: 16px 0;
}

.footer-contact .f-contact-item a {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
}

#footer {
  position: relative;
  background: #151b2c;
  padding-top: 8px;
}

#footer::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  height: 8px;
  background: #0083ff;
}

#footer .center {
  border-top: 1px solid rgba(136, 143, 168, 0.2);
  border-bottom: 1px solid rgba(136, 143, 168, 0.2);
  padding: 28px 0;
}

#footer .center .left > div {
  background: rgba(102, 112, 147, 0.1);
  border-radius: 4px;
  padding: 40px 24px;
}

#footer .center .left > div p {
  font-size: 12px;
  color: #888fa8;
  font-weight: 500;
}

#footer .center .left > div p strong {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

#footer .center .left > div ul {
  padding: 0;
  margin: 0;
}

#footer .center .left > div ul li {
  position: relative;
  padding: 7px 0;
  color: #888fa8;
}

#footer .center .left > div ul li hr {
  margin: 16px 0;
  border-color: rgba(136, 143, 168, 0.2);
}

#footer .center .left > div ul li span {
  padding-right: 0;
  font-size: 14px;
  line-height: 24px;
}

#footer .center .left > div ul li a {
  position: relative;
  font-size: 14px;
  color: #888fa8;
  font-weight: 500;
  padding-right: 20px;
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

#footer .center .left > div ul li a > i {
  position: absolute;
  right: 0;
  top: 50%;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin-top: -10px;
}

#footer .center .right {
  padding-left: 65px;
}

#footer .center .right strong {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #888fa8;
  font-weight: 500;
}

#footer .center .right strong .fa-chevron-down {
  margin-left: auto;
  display: none;
}

#footer .center .right .row > div {
  padding: 0 15px 40px 0;
}

#footer .center .right ul {
  padding: 4px 0;
}

#footer .center .right ul li {
  padding: 4px 0;
}

#footer .center .right ul li a {
  font-size: 14px;
  color: #fff;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

#footer .bottom {
  text-align: center !important;
  padding: 64px 0 54px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(136, 143, 168, 0.2);
}

#footer .bottom img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

#footer .bottom p {
  font-size: 15px;
  color: #888fa8;
  padding: 16px 0 14px;
}

#footer .bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#footer .bottom ul li {
  padding: 0 5px;
}

#footer .bottom ul li a {
  font-size: 22px;
  color: #fff;
}

#footer .copyright {
  padding: 20px 0;
  overflow: hidden;
}

#footer .copyright p {
  padding: 10px 20px;
  color: #fff;
}

#footer .copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer .copyright ul a {
  color: #fff;
  padding-left: 10px;
}

/* footer {
  padding: 40px 0;
  border-top: 1px solid $bordercolor;
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    strong {
      font-weight: 400;
      font-size: 19px;
      color: $main;
      margin-bottom: 18px;
    }
    a {
      font-weight: 400;
      font-size: 16px;
      color: $lightsub;
      margin-bottom: 16px;
      transition: 0.2s all;
      &:hover {
        color: $primary;
        transform: translateX(5px);
      }
    }
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid $bordercolor;
    .bottom-links {
      display: flex;
      align-items: center;
      justify-content: space-between;
      .links {
        display: flex;
        align-items: center;
        a {
          font-weight: 400;
          font-size: 14px;
          color: $sub;
          padding-right: 24px;
        }
      }
      .lang {
        a {
          font-weight: 400;
          font-size: 14px;
          color: $sub;
          padding-right: 24px;
          display: flex;
          align-items: center;
          img {
            border-radius: 50px;
          }
        }
      }
    }

    .bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 40px;
      .footer-logo {
        display: flex;
        align-items: center;
        p {
          margin-bottom: 0;
          font-weight: 400;
          font-size: 14px;
          color: $sub;
          padding-left: 16px;
        }
      }
      .socials {
        display: flex;
        align-items: center;
        a {
          display: inline-block;
          padding-left: 16px;
        }
      }
    }
  }
} */
.packs-bottom {
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding-top: 60px;
}

.packs-bottom h3 {
  font-size: 28px;
}

.packs-bottom a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  margin-top: 24px;
}

.packs-bottom a > svg {
  margin-right: 10px;
}

.packs-bottom a span {
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  width: 24px;
  height: 24px;
}

.performance {
  padding: 60px 0;
}

.performance .performance-item {
  width: 100%;
  height: 100%;
  min-height: 518px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 24px 0 24px;
  position: relative;
}

.performance .performance-item span {
  width: 64px;
  height: 64px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 32px;
}

.performance .performance-item h4 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #081131;
  margin-bottom: 24px;
}

.performance .performance-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #6978a0;
}

.performance .performance-item .img {
  position: absolute;
  bottom: -100px;
}

.performance .performance-item .img img {
  max-height: 246px;
}

.performance .performance-item.green {
  background: #e1f5f5;
}

.performance .performance-item.pink {
  background: #ffeef0;
}

.performance .performance-item.yellow {
  background: #faebcc;
}

.suggest-wrap {
  margin-top: 150px;
  border-top: 1px solid rgba(59, 71, 103, 0.2);
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.suggest-wrap .row > div:last-child .suggest-item {
  border-right: 0;
}

.suggest-wrap .suggest-item {
  padding: 80px 60px;
  border-right: 1px solid rgba(59, 71, 103, 0.2);
}

.suggest-wrap .suggest-item .title {
  font-size: 28px;
}

.suggest-wrap .suggest-item p {
  font-size: 16px;
}

.suggest-wrap .suggest-item ul {
  margin-top: 16px;
}

.suggest-wrap .suggest-item ul li {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
}

.suggest-wrap .suggest-item ul li img {
  margin-left: 10px;
}

.suggest-wrap .suggest-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  margin-top: 24px;
}

.suggest-wrap .suggest-item a > svg {
  margin-right: 10px;
}

.suggest-wrap .suggest-item a span {
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  width: 24px;
  height: 24px;
}

.plan-table-wrap {
  padding: 60px 0;
}

.plan-table-wrap .container .table-wrap {
  width: 100%;
}

.plan-table-wrap .container .table-wrap .table-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.plan-table-wrap .container .table-wrap .table-head .cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(59, 71, 103, 0.1);
  border-top: 1px solid rgba(59, 71, 103, 0.1);
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  padding: 32px 16px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}

.plan-table-wrap .container .table-wrap .table-head .cell.popular a {
  background: #0083ff;
}

.plan-table-wrap .container .table-wrap .table-head .cell.popular .pattern span.active {
  background: #0083ff;
}

.plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
  width: 100%;
  padding: 2px 5px;
  position: absolute;
  top: 0;
  font-size: 11px;
  left: 0;
  right: 0;
  color: #081131;
  background: rgba(0, 131, 255, 0.1);
}

.plan-table-wrap .container .table-wrap .table-head .cell:first-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: start;
  border-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.plan-table-wrap .container .table-wrap .table-head .cell .head span {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
  display: block;
  margin-bottom: 12px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .head .title {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #081131;
  margin-bottom: 32px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods button {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #6978a0;
  margin-right: 30px;
  padding: 5px;
  background: none;
  border: 2px solid transparent;
}

.plan-table-wrap .container .table-wrap .table-head .cell .periods button.active, .plan-table-wrap .container .table-wrap .table-head .cell .periods button:hover {
  border-bottom: 2px solid #081131;
  color: #081131;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern {
  width: 28px;
  height: 28px;
  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;
  margin-bottom: 16px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span {
  width: 10px;
  height: 10px;
  background: #6978a0;
  opacity: 0.2;
  border-radius: 50%;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span.active {
  opacity: 1;
}

.plan-table-wrap .container .table-wrap .table-head .cell .pattern span:nth-child(3), .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:last-child {
  margin-top: 7px;
}

.plan-table-wrap .container .table-wrap .table-head .cell strong {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #3b4767;
  display: block;
  margin-bottom: 12px;
}

.plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
  text-decoration: line-through !important;
  margin-top: 14px;
  font-size: 14px;
  margin-bottom: 0;
}

.plan-table-wrap .container .table-wrap .table-head .cell a {
  width: 100%;
  height: 48px;
  background: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.plan-table-wrap .container .table-wrap .table-head .cell a:hover {
  background: #0083ff;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 16px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price b {
  color: #081131;
  font-size: 36px;
  font-weight: 700;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 10px;
  padding-left: 5px;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div small {
  font-weight: 600;
  font-size: 14px;
  color: #081131;
  line-height: 1;
}

.plan-table-wrap .container .table-wrap .table-head .cell .price div span {
  font-weight: 400;
  font-size: 14px;
  color: #6978a0;
  line-height: 1.1;
}

.plan-table-wrap .container .table-wrap .table-head .cell > p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child p {
  color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child span {
  color: #0083ff;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(59, 71, 103, 0.1);
  border-top: 1px solid rgba(59, 71, 103, 0.1);
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  padding: 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell .c-badge {
  width: 100%;
  padding: 2px 5px;
  position: absolute;
  top: 0;
  font-size: 11px;
  left: 0;
  right: 0;
  color: #081131;
  background: rgba(0, 131, 255, 0.1);
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
  font-weight: 400;
  font-size: 18px;
  color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell span {
  color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell:first-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  border-left: 1px solid rgba(59, 71, 103, 0.1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content {
  display: none;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid rgba(59, 71, 103, 0.1);
  border-top: 1px solid rgba(59, 71, 103, 0.1);
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  padding: 18px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info {
  position: relative;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info:hover .info-box {
  opacity: 1;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info .info-box {
  position: absolute;
  width: 180px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  top: -100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
          box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
  left: 150%;
  text-align: center;
  padding: 5px;
  opacity: 0;
  pointer-events: none;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
  font-weight: 400;
  font-size: 14px;
  color: #6978a0;
}

.plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell:first-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  border-left: 1px solid rgba(59, 71, 103, 0.1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq-wrapper {
  padding: 80px 0;
}

.faq-wrapper .section-title {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.faq-wrapper .section-title span {
  display: block;
}

.faq-wrapper .section-title .title {
  font-size: 28px;
}

.faq-wrapper .section-title p {
  font-size: 16px;
}

.faq-wrapper .section-title a {
  margin-top: 24px;
  width: 207px;
  height: 48px;
  background: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.faq-wrapper .section-title a:hover {
  background: #0083ff;
}

.faq-wrapper .faq-item {
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.faq-wrapper .faq-item .faq-head {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.faq-wrapper .faq-item .faq-head h3 {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
}

.faq-wrapper .faq-item .faq-head span {
  color: #0083ff;
}

.faq-wrapper .faq-item .faq-body {
  padding: 16px 0;
  display: none;
}

.faq-wrapper .faq-item .faq-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.features-wrap {
  padding: 60px 0;
}

.features-wrap .feature-item {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 24px 24px 24px 0;
}

.features-wrap .feature-item span {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}

.features-wrap .feature-item span.yellow {
  background: rgba(244, 174, 42, 0.1);
}

.features-wrap .feature-item span.red {
  background: rgba(249, 110, 78, 0.1);
}

.features-wrap .feature-item span.purple {
  background: rgba(152, 103, 255, 0.1);
}

.features-wrap .feature-item span.green {
  background: rgba(0, 188, 135, 0.1);
}

.features-wrap .feature-item h4 {
  font-weight: 400;
  font-size: 20px;
  color: #081131;
  margin-bottom: 8px;
}

.features-wrap .feature-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.page-blog {
  padding: 60px 0;
}

.page-blog .blog-text {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page-blog .blog-text span {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
  display: block;
  margin-bottom: 16px;
}

.page-blog .blog-text h3 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  margin-bottom: 16px;
  color: #081131;
}

.page-blog .blog-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #6978a0;
}

.page-blog .blog-text a {
  margin-top: 24px;
  width: 185px;
  height: 48px;
  background: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.page-blog .blog-text a:hover {
  background: #0083ff;
}

.page-blog .blog-img {
  width: 100%;
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-blog .blog-img.orange {
  background: #faebcc;
}

.page-blog .blog-img.pink {
  background: #ffeef0;
}

.page-blog .blog-img.green {
  background: #e9f5e8;
}

.page-blog .blog-img.blue {
  background: #e1f5f5;
}

.page-blog .blog-img img {
  max-width: 90%;
  max-height: 90%;
  width: 100%;
  height: auto;
}

.common-features {
  padding: 60px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(59, 71, 103, 0.2);
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.common-features .cf-item {
  width: 100%;
  padding: 16px;
  background: #f8faff;
  margin-bottom: 24px;
}

.common-features .cf-item h4 {
  font-weight: 400;
  font-size: 18px;
  color: #081131;
  margin-bottom: 12px;
}

.common-features .cf-item ul li {
  font-weight: 400;
  font-size: 14px;
  color: #3b4767;
  margin-bottom: 8px;
}

.common-features .cf-item ul li:last-child {
  margin-bottom: 0;
}

.common-features .cf-item ul li .fa-check {
  color: #9867ff;
}

.domain-register-about {
  padding: 60px 0;
}

.domain-exts {
  border-top: 1px solid rgba(59, 71, 103, 0.2);
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
  margin-top: 50px;
}

.domain-exts .row > div:last-child .ext-col {
  border-right: 0;
}

.domain-exts .ext-col {
  padding: 32px 47px;
  border-right: 1px solid rgba(59, 71, 103, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.domain-exts .ext-col .ext-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
  padding-bottom: 32px;
  position: relative;
}

.domain-exts .ext-col .ext-item.best-price::before {
  content: "EN İYİ FİYAT";
  width: 100%;
  height: 28px;
  background: #f4877a;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.domain-exts .ext-col .ext-item.best-price .ext-box {
  border-color: #f4877a;
}

.domain-exts .ext-col .ext-item:last-child {
  padding-bottom: 0;
  padding-top: 32px;
  border-bottom: 0;
}

.domain-exts .ext-col .ext-item > p {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #3b4767;
  margin-top: 12px;
  display: block;
}

.domain-exts .ext-col .ext-item .ext-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-exts .ext-col .ext-item .ext-box img {
  max-width: 70px;
  width: 100%;
  height: auto;
  max-height: 95%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.domain-exts .ext-col .ext-item .ext-box .info {
  text-align: end;
}

.domain-exts .ext-col .ext-item .ext-box .info small {
  font-weight: 400;
  font-size: 12px;
  color: #6978a0;
}

.domain-exts .ext-col .ext-item .ext-box .info strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #3b4767;
}

.domain-price-table {
  padding: 60px 0;
  position: relative;
}

.domain-price-table::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  top: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.domain-price-table .domain-table-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 40px;
}

.domain-price-table .domain-table-head .table-search {
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 392px;
  height: 42px;
  width: 100%;
}

.domain-price-table .domain-table-head .table-search button {
  padding-left: 10px;
  border: none;
  background: none;
}

.domain-price-table .domain-table-head .table-search input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  background: none;
  font-weight: 400;
  font-size: 16px;
  color: #081131;
}

.domain-price-table .domain-table-head .table-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.domain-price-table .domain-table-head .table-filters .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.domain-price-table .domain-table-head .table-filters .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin-right: 10px;
}

.domain-price-table .domain-table-head .table-filters .form-check-input:checked {
  background-color: #0083ff;
  border-color: #0083ff;
}

.domain-price-table .domain-table-head .table-filters label {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  margin-top: 5px;
}

.domain-price-table .domain-table-body table {
  width: 100%;
  border-collapse: collapse;
}

.domain-price-table .domain-table-body table thead {
  background: #f8faff;
}

.domain-price-table .domain-table-body table thead tr {
  border-left: 1px solid rgba(59, 71, 103, 0.1);
  border-right: 1px solid rgba(59, 71, 103, 0.1);
  border-top: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-price-table .domain-table-body table thead tr th {
  padding: 12px 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6978a0;
  text-align: center;
}

.domain-price-table .domain-table-body table thead tr th:first-child {
  text-align: start;
  color: #081131;
}

.domain-price-table .domain-table-body table tbody tr {
  border-left: 1px solid rgba(59, 71, 103, 0.1);
  border-right: 1px solid rgba(59, 71, 103, 0.1);
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.domain-price-table .domain-table-body table tbody tr td {
  padding: 16px;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  text-align: center;
}

.domain-price-table .domain-table-body table tbody tr td .badge {
  border-radius: 0;
  margin-left: 5px;
  font-weight: 400;
  font-size: 12px;
}

.domain-price-table .domain-table-body table tbody tr td .badge.pink {
  background: #f4877a;
}

.domain-price-table .domain-table-body table tbody tr td .badge.yellow {
  background: #f4ae2a;
}

.domain-price-table .domain-table-body table tbody tr td .badge.purple {
  background: #9867ff;
}

.domain-price-table .domain-table-body table tbody tr td small {
  color: #6978a0;
  text-decoration: line-through;
  margin-right: 5px;
}

.domain-price-table .domain-table-body table tbody tr td b {
  font-weight: 600;
  font-size: 18px;
}

.domain-price-table .domain-table-body table tbody tr td:first-child {
  text-align: start;
}

.domain-price-table .domain-table-body table tbody tr td:first-child span {
  color: #081131;
}

.domain-price-table .domain-table-body table tbody tr td:first-child svg {
  margin-right: 5px;
}

.domain-price-table .domain-table-pagination {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 32px;
}

.domain-price-table .domain-table-pagination button {
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #3b4767;
  margin-left: 8px;
  background: #fff;
}

.domain-price-table .domain-table-pagination button:hover, .domain-price-table .domain-table-pagination button.active {
  border-color: #0083ff;
  color: #0083ff;
}

.domain-price-table .domain-table-pagination button.prev, .domain-price-table .domain-table-pagination button.next {
  padding: 0 26px;
}

.fa-check.green {
  color: #1bc6c6 !important;
}

.fa-check.red {
  color: #f4877a !important;
}

.vds-filters {
  width: 100%;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.vds-filters .table-tab-buttons {
  margin: 0;
}

.vds-filters .table-options {
  margin-left: 50px;
}

.vds-filters .table-options strong {
  font-weight: 500;
  font-size: 16px;
  color: #081131;
}

.vds-filters .table-options div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vds-filters .table-options div .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.vds-filters .table-options div .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin-right: 10px;
}

.vds-filters .table-options div .form-check-input:checked {
  background-color: #0083ff;
  border-color: #0083ff;
}

.vds-filters .table-options div label {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  margin-top: 5px;
}

.table-tab-buttons {
  max-width: 426px;
  width: 100%;
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border: 1px solid rgba(59, 71, 103, 0.2);
}

.table-tab-buttons a {
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(105, 120, 160, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #3b4767;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.table-tab-buttons a svg,
.table-tab-buttons a img {
  margin-right: 5px;
}

.table-tab-buttons a:first-child {
  margin-right: 12px;
}

.table-tab-buttons a:hover, .table-tab-buttons a.active {
  background: #081131;
  color: #fff;
}

.table-tab-buttons a:hover svg path, .table-tab-buttons a.active svg path {
  fill: #fff !important;
}

.vps-table-wrap {
  padding: 60px 0;
  position: relative;
}

.vps-table-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  top: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.vps-table-wrap .vps-table-head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #f8faff;
}

.vps-table-wrap .vps-table-head span {
  font-weight: 400;
  font-size: 16px;
  color: #6978a0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 12px 16px;
}

.vps-table-wrap .vps-table-head span:first-child {
  text-align: start;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}

.vps-table-wrap .vps-table-body {
  width: 100%;
  margin-top: 16px;
}

.vps-table-wrap .vps-table .pattern {
  width: 22px;
  height: 43px;
  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;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.vps-table-wrap .vps-table .pattern span {
  margin-top: 2px;
  width: 8px;
  height: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #6978a0;
  opacity: 0.3;
  border-radius: 50%;
}

.vps-table-wrap .vps-table .pattern span.active {
  opacity: 1;
}

.vps-table-wrap .vps-table-item {
  width: 100%;
  padding: 20px 16px;
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
  position: relative;
  background: #fff;
}

.vps-table-wrap .vps-table-item .server {
  background: rgba(0, 125, 184, 0.1);
  height: 48px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.vps-table-wrap .vps-table-item .server.red {
  background: rgba(255, 0, 0, 0.1);
}

.vps-table-wrap .vps-table-item .server .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 12px;
  color: #3b4767;
  padding: 5px 0;
}

.vps-table-wrap .vps-table-item .server .name img {
  margin-right: 5px;
}

.vps-table-wrap .vps-table-item.green {
  border: 2px solid #00bc87;
}

.vps-table-wrap .vps-table-item.green::before {
  content: attr(data-title);
  position: absolute;
  left: 57px;
  top: 0;
  width: 114px;
  height: 20px;
  background: #00bc87;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vps-table-wrap .vps-table-item.blue {
  border: 2px solid #0083ff;
}

.vps-table-wrap .vps-table-item.blue::before {
  content: attr(data-title);
  position: absolute;
  left: 57px;
  top: 0;
  width: 114px;
  height: 20px;
  background: #0083ff;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vps-table-wrap .vps-table-item .cell {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vps-table-wrap .vps-table-item .cell .badge {
  background: rgba(0, 131, 255, 0.2);
  color: #081131;
  font-weight: 600;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3px;
  width: 114px;
  height: 20px;
  border-radius: 0;
}

.vps-table-wrap .vps-table-item .cell a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  width: 114px;
  height: 40px;
  background: #3b4767;
  font-weight: 400;
  font-size: 14px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.vps-table-wrap .vps-table-item .cell a:hover {
  background: #0083ff;
}

.vps-table-wrap .vps-table-item .cell strong {
  font-weight: 500;
  font-size: 15px;
  color: #3b4767;
  display: block;
}

.vps-table-wrap .vps-table-item .cell > span {
  color: #6978a0;
  font-weight: 400;
  font-size: 12px;
}

.vps-table-wrap .vps-table-item .cell:first-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
}

.ready-themes {
  padding: 80px 0;
}

.ready-themes .tab-buttons {
  margin: 40px auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px;
  border: 1px solid rgba(59, 71, 103, 0.2);
}

.ready-themes .tab-buttons button {
  min-width: 123px;
  border: none;
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(105, 120, 160, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 14px;
  color: #3b4767;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  margin-left: 16px;
}

.ready-themes .tab-buttons button svg,
.ready-themes .tab-buttons button img {
  margin-right: 5px;
}

.ready-themes .tab-buttons button:first-child {
  margin-left: 0;
}

.ready-themes .tab-buttons button:hover, .ready-themes .tab-buttons button.active {
  background: #081131;
  color: #fff;
}

.ready-themes .tab-buttons button:hover svg path, .ready-themes .tab-buttons button.active svg path {
  fill: #fff !important;
}

.ready-themes .themes-slider {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ready-themes .themes-slider .item {
  padding: 20px;
}

.ready-themes .themes-slider .item img {
  max-width: 100%;
  height: auto;
}

.page-head {
  width: 100%;
  height: 251px;
  background: rgba(0, 131, 255, 0.1);
}

.page-head.grey {
  background: #f8faff;
  height: 326px;
}

.page-head .container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  text-align: center;
  padding-bottom: 70px;
}

.page-head .container h1 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  color: #081131;
  margin-bottom: 10px;
}

.page-head .container p {
  font-weight: 400;
  font-size: 18px;
  max-width: 855px;
  text-align: center;
  line-height: 32px;
  color: #6978a0;
}

.inner-page {
  margin-top: -65px;
  position: relative;
  padding-bottom: 100px;
}

.inner-page .page-links {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  padding: 24px;
}

.inner-page .page-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  color: #6978a0;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  position: relative;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.inner-page .page-links a::after {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  content: "";
  height: 3px;
  bottom: -1px;
  left: 0;
  width: 0px;
  background: #0083ff;
  position: absolute;
}

.inner-page .page-links a.active, .inner-page .page-links a:hover {
  color: #0083ff;
}

.inner-page .page-links a.active::after, .inner-page .page-links a:hover::after {
  width: 100px;
}

.inner-page .page-links a:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.inner-page .page-content {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  padding: 24px;
}

.inner-page .page-content span {
  font-weight: 400;
  font-size: 16px;
  color: #081131;
  display: block;
  margin-bottom: 16px;
}

.inner-page .page-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 41px;
  color: #081131;
  font-family: "Georgia";
  margin-bottom: 16px;
}

.inner-page .page-content h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  color: #081131;
  font-family: "Georgia";
  margin-bottom: 16px;
}

.inner-page .page-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.inner-page .page-content hr {
  background: rgba(59, 71, 103, 0.2);
  margin: 32px 0;
  height: 1px;
}

.banka-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.banka-item ul {
  margin: 0;
  padding: 0;
}

.banka-item ul li {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banka-item ul li span {
  min-width: 150px;
  font-weight: 400;
  font-size: 16px;
  color: #081131;
}

.banka-item .logo {
  width: 252px;
  height: 175px;
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.domain-selection-options {
  margin-top: -70px;
  position: relative;
}

.domain-selection-options .container {
  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;
}

.domain-selection-options .container .option {
  max-width: 816px;
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  margin-bottom: 40px;
}

.domain-selection-options .container .option .heading {
  margin-bottom: 16px;
}

.domain-selection-options .container .option .heading h4 {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #081131;
  margin-bottom: 5px;
}

.domain-selection-options .container .option .heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.domain-selection-options .container .option .domain-input-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.domain-selection-options .container .option .domain-input-group .input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 56px;
  background: #fff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.domain-selection-options .container .option .domain-input-group .input input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  background: #ffff;
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
}

.domain-selection-options .container .option .domain-input-group .input img {
  max-width: 20px;
  margin: 0 10px;
}

.domain-selection-options .container .option .domain-input-group .select {
  width: 100px;
  margin: 0 16px;
}

.domain-selection-options .container .option .domain-input-group .select select {
  width: 100%;
  height: 56px;
  background: #fff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  font-weight: 400;
  font-size: 16px;
}

.domain-selection-options .container .option .domain-input-group button {
  width: 131px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #3b4767;
  border: none;
}

.domain-selection-options .container .option .results {
  border-top: 1px solid rgba(59, 71, 103, 0.2);
  margin-top: 24px;
  padding-top: 24px;
}

.domain-selection-options .container .option .results .success-text {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #00bc87;
  margin-bottom: 5px;
}

.domain-selection-options .container .option .results .domain-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.domain-selection-options .container .option .results .domain-item:last-child {
  padding-bottom: 0;
}

.domain-selection-options .container .option .results .domain-item strong {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3b4767;
}

.domain-selection-options .container .option .results .domain-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.domain-selection-options .container .option .results .domain-item button {
  width: 131px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #0083ff;
  border: none;
}

.sepet-page {
  margin-top: -70px;
  position: relative;
}

.sepet-page .heading {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.sepet-page .heading h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #081131;
  font-family: "Georgia";
  margin-bottom: 5px;
}

.sepet-page .heading p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
}

.sepet-page .sepet-box {
  width: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  margin-bottom: 40px;
}

.period-list .period-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.1);
}

.period-list .period-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.period-list .period-item .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.period-list .period-item .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin-right: 10px;
}

.period-list .period-item .form-check-input:checked {
  background-color: #0083ff;
  border-color: #0083ff;
}

.period-list .period-item label {
  font-weight: 600;
  font-size: 18px;
  color: #3b4767;
  margin-top: 5px;
}

.period-list .period-item .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.period-list .period-item .prices .old {
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
  color: #6978a0;
  margin-right: 10px;
}

.period-list .period-item .prices .current {
  font-weight: 600;
  font-size: 24px;
  color: #3b4767;
}

.ops-list .ops-item {
  padding-bottom: 24px;
}

.ops-list .ops-item:last-child {
  padding-bottom: 0;
}

.ops-list .ops-item strong {
  font-weight: 600;
  font-size: 18px;
  color: #3b4767;
}

.ops-list .ops-item select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.2);
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  padding-left: 15px;
}

.sepet-summary button.cont {
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background: #0083ff;
  border: none;
}

.sepet-summary .promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

.sepet-summary .promo input {
  border: 1px solid rgba(59, 71, 103, 0.2);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 48px;
  text-indent: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
}

.sepet-summary .promo button {
  width: 48px;
  height: 48px;
  background: #00bc87;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-left: 12px;
  border: none;
}

.sepet-summary ul li {
  width: 100%;
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 24px;
}

.sepet-summary ul li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6978a0;
}

.sepet-summary ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3b4767;
}

.domain-addons-list .domain-addon {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.domain-addons-list .domain-addon:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.domain-addons-list .domain-addon .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.domain-addons-list .domain-addon .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin-right: 10px;
}

.domain-addons-list .domain-addon .form-check-input:checked {
  background-color: #0083ff;
  border-color: #0083ff;
}

.domain-addons-list .domain-addon label {
  font-weight: 600;
  font-size: 18px;
  color: #3b4767;
  margin-top: 5px;
}

.domain-addons-list .domain-addon p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6978a0;
  display: block;
  margin-top: 5px;
}

.domain-addons-list .domain-addon span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #6978a0;
  margin-bottom: 5px;
  display: block;
  text-align: end;
}

.domain-addons-list .domain-addon b {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #3b4767;
  display: block;
}

.cont-btn {
  width: 265px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  background: #0083ff;
  border: none;
}

.sepet-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(59, 71, 103, 0.2);
}

.sepet-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.sepet-item .info {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sepet-item .info span {
  font-weight: 400;
  color: #6978a0;
  font-size: 16px;
  line-height: 28px;
  margin-top: 5px;
}

.sepet-item .info span b {
  color: #081131;
}

.sepet-item .info p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #3b4767;
}

.sepet-item .prices {
  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;
}

.sepet-item .prices .old {
  font-weight: 400;
  font-size: 12px;
  text-decoration: line-through;
  color: #6978a0;
  margin-right: 10px;
}

.sepet-item .prices .current {
  font-weight: 600;
  font-size: 24px;
  color: #3b4767;
}

.sepet-item .period {
  padding: 0 40px;
}

.sepet-item .period select {
  width: 138px;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.2);
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  padding-left: 15px;
}

.sepet-item .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sepet-item .actions button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 12px;
  background: #fff;
}

.cont-shop {
  width: 222px;
  height: 56px;
  background: #3b4767;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
  font-weight: 400;
  font-size: 16px;
  border: none;
  margin: 0 auto;
}

.login-page {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-page .login-page-content {
  max-width: 900px;
  height: 100vh;
  width: 100%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.login-page .login-page-content .section-title .title {
  font-size: 30px;
}

.login-page .login-page-content .section-title p {
  font-size: 15px;
}

.login-page .login-page-content .form-wrap {
  max-width: 740px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px;
}

.login-page .login-page-content .form-wrap .form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-page .login-page-content .form-wrap .form .input-row {
  position: relative;
}

.login-page .login-page-content .form-wrap .form .input-row span {
  position: absolute;
  right: 10px;
  top: 0;
  color: #081131;
  font-size: 20px;
  cursor: pointer;
  height: 56px;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-page .login-page-content .form-wrap .form .input-row input {
  background: #ffffff;
  border: 1px solid rgba(59, 71, 103, 0.2);
  max-width: 490px !important;
  width: 490px !important;
  height: 56px;
  min-width: 10px !important;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6978a0;
  text-indent: 20px;
}

.login-page .login-page-content .form-wrap .form .input-row input:focus {
  border-color: #0083ff;
}

.login-page .login-page-content .form-wrap .form .form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.login-page .login-page-content .form-wrap .form .form-bottom a {
  text-decoration: underline;
  font-weight: 400;
  font-size: 14px;
  color: #3b4767;
}

.login-page .login-page-content .form-wrap .form .enter {
  width: 222px;
  height: 56px;
  background: #0083ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff !important;
  font-weight: 400;
  font-size: 16px;
  border: none;
  margin: 50px auto 0 auto;
}

.login-page .login-page-content .form-wrap .page-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-page .login-page-content .form-wrap .page-heading > a {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(59, 71, 103, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 12px;
  background: #fff;
  color: #3b4767;
}

.login-page .login-page-content .form-wrap .page-heading img {
  margin-left: 20px;
  max-width: 180px;
}

.login-page .login-page-content .form-wrap .page-heading p {
  margin-left: auto;
  font-weight: 400;
  font-size: 16px;
  color: #081131;
}

.login-page .login-page-content .form-wrap .page-heading p a {
  color: #0083ff;
  font-weight: 500;
}

.login-page .login-page-image {
  background: url(../images/login-bg.svg) rgba(0, 188, 135, 0.08);
  background-size: cover;
  background-position: bottom right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 60px;
}

.login-page .login-page-image.kayit {
  background: url(../images/register-bg.svg) rgba(244, 174, 42, 0.08);
}

.login-page .login-page-image img {
  max-width: 400px;
  height: auto;
}

.table-filters-wrap {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(59, 71, 103, 0.1);
  padding: 24px;
}

.table-filters-wrap .table-options {
  margin-bottom: 32px;
}

.table-filters-wrap .table-options:last-child {
  margin-bottom: 0;
}

.table-filters-wrap .table-options strong {
  font-weight: 500;
  font-size: 16px;
  color: #081131;
}

.table-filters-wrap .table-options div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-filters-wrap .table-options div .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-filters-wrap .table-options div .form-check-input {
  width: 24px;
  height: 24px;
  border-radius: 0;
  margin-right: 10px;
}

.table-filters-wrap .table-options div .form-check-input:checked {
  background-color: #0083ff;
  border-color: #0083ff;
}

.table-filters-wrap .table-options div label {
  font-weight: 400;
  font-size: 16px;
  color: #3b4767;
  margin-top: 5px;
}

.table-filters-wrap .table-options .slidecontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.table-filters-wrap .table-options .values {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 400;
  font-size: 13px;
  color: #3b4767;
  margin-top: 10px;
}

.table-filters-wrap .table-options .slider2 {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  margin-top: 20px;
  background: rgba(59, 71, 103, 0.1);
  outline: none;
  -webkit-transition: 0.2s;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border: none !important;
}

.table-filters-wrap .table-options .slider2::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #0083ff;
  cursor: pointer;
}

.table-filters-wrap .table-options .slider2::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(270deg, #46bfaa -0.4%, #75f2a0 100.4%);
  cursor: pointer;
}

.server-img {
  margin-bottom: -200px;
}

/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
/* ==================== RESPONSIVE ==================== */
@media only screen and (max-width: 1024px) {
  .top-bar .container {
    height: 40px;
  }
  .top-bar .container .top-left {
    display: none;
  }
  .top-bar .container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top-bar .container .top-right a {
    display: none;
  }
  .top-bar .container .top-right a:nth-last-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top-bar .container .top-right a:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header {
    width: 100%;
    height: 72px;
    background-color: #fff;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  }
  header > .container {
    height: 72px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header > .container .logo {
    margin-right: 50px;
  }
  header > .container nav {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    z-index: 9999;
    padding-top: 30px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  header > .container nav.show {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  header > .container nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header > .container nav > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
  }
  header > .container nav > ul > li > a {
    width: 100%;
    padding: 0 16px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    color: #3b4767;
    font-size: 14px;
  }
  header > .container nav > ul > li > a img {
    margin-right: 5px;
  }
  header > .container nav > ul > li .mega-menu {
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    z-index: 999;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    right: 0;
    display: none;
    height: auto;
    padding: 10px;
    background: #fff;
    border: 0px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  header > .container nav > ul > li .mega-menu .container > .row > div {
    border-right: 0px solid rgba(59, 71, 103, 0.2);
  }
  header > .container nav > ul > li .mega-menu .container > .row > div:last-child {
    border-right: 0;
  }
  header > .container nav > ul > li .mega-menu .subtitle {
    display: block;
    font-weight: 500;
    color: #667093;
    font-size: 14px;
  }
  header > .container nav > ul > li .mega-menu .menu-link {
    width: 100%;
    background: #f7f9fd;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    line-height: 16px;
    min-height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  header > .container nav > ul > li .mega-menu .menu-link:hover {
    background: #fff;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.23);
  }
  header > .container nav > ul > li .mega-menu .menu-link:hover .icon {
    color: #fff;
    background: #0083ff;
  }
  header > .container nav > ul > li .mega-menu .menu-link .icon {
    display: none;
  }
  header > .container nav > ul > li .mega-menu .menu-link .link-info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  header > .container nav > ul > li .mega-menu .menu-link strong {
    display: block;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    padding-bottom: 8px;
    color: #00104b;
  }
  header > .container nav > ul > li .mega-menu .menu-link p {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #667093;
    display: none;
  }
  header > .container .actions {
    margin-left: auto;
  }
  header > .container .actions a {
    width: 100px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid rgba(59, 71, 103, 0.1);
    color: #081131;
  }
  .main-hero {
    width: 100%;
    height: auto;
    background: #f8faff;
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main-hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    pointer-events: none;
  }
  .main-hero .container {
    position: relative;
    z-index: 4;
  }
  .main-hero .container .hero-text ul {
    -webkit-column-count: 2;
            column-count: 2;
    margin-top: 16px;
  }
  .main-hero .container .hero-text ul li {
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    padding: 8px 0;
  }
  .main-hero .container .hero-text > span {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #081131;
    margin-bottom: 16px;
    display: block;
  }
  .main-hero .container .hero-text h2 {
    color: #081131;
    font-size: 28px;
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
    font-family: "Georgia", sans-serif;
  }
  .main-hero .container .hero-text h1 {
    color: #081131;
    font-size: 32px;
    font-weight: bold;
    font-family: "Georgia", sans-serif;
  }
  .main-hero .container .hero-text > a {
    width: 185px;
    height: 48px;
    background-color: #3b4767;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    margin-top: 24px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .main-hero .container .hero-text > a:hover {
    background: #0083ff;
  }
  .main-hero .container .hero-text p {
    color: #6978a0;
    font-size: 16px;
    line-height: 1.6;
  }
  .main-hero .container .hero-text p.small {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
  }
  .main-hero .container .hero-text .domain-prices {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-hero .container .hero-text .domain-search {
    width: 100%;
    height: 80px;
    background-color: #fff;
    -webkit-box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
            box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
    margin-top: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-hero .container .hero-text .domain-search span {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
  }
  .main-hero .container .hero-text .domain-search input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: none;
    height: 78px;
    background: none;
    font-size: 18px;
    color: #6978a0;
  }
  .main-hero .container .hero-text .domain-search input::-webkit-input-placeholder {
    color: #6978a0;
  }
  .main-hero .container .hero-text .domain-search input:-ms-input-placeholder {
    color: #6978a0;
  }
  .main-hero .container .hero-text .domain-search input::-ms-input-placeholder {
    color: #6978a0;
  }
  .main-hero .container .hero-text .domain-search input::placeholder {
    color: #6978a0;
  }
  .main-hero .container .hero-text .domain-search button {
    width: 143px;
    height: 48px;
    background: #0083ff;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
    font-size: 16px;
    margin-right: 16px;
  }
  .main-hero .container .hero-text .domain-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main-hero .container .hero-text .domain-links a {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding-right: 10px;
  }
  .main-hero .container .hero-text .domain-links a:hover {
    color: #0083ff;
  }
  .main-hero .container .hero-text .domain-links a .fa-chevron-right {
    font-size: 15px;
    margin-left: 5px;
  }
  .main-hero .container .hero-img {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .main-hero .container .hero-img img {
    max-width: 95%;
  }
  .packs-slider-wrap {
    padding: 60px 0;
  }
  .packs-slider-wrap .slick-dots {
    bottom: -70px;
  }
  .packs-slider-wrap .slider-item .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .packs-slider-wrap .slider-item .row > div {
    width: 100%;
  }
  .packs-slider-wrap .slider-info span {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #081131;
    margin-bottom: 5px;
    display: block;
  }
  .packs-slider-wrap .slider-info h4 {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;
    margin-bottom: 16px;
  }
  .packs-slider-wrap .slider-info p {
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #6978a0;
    margin-bottom: 24px;
  }
  .packs-slider-wrap .slider-info ul {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .packs-slider-wrap .slider-info ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding: 8px 0;
  }
  .packs-slider-wrap .slider-info a {
    width: 185px;
    height: 48px;
    background-color: #3b4767;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    margin-top: 24px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .packs-slider-wrap .slider-info a:hover {
    background: #0083ff;
  }
  .packs-slider-wrap .slider-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .packs-slider-wrap .slider-img img {
    max-width: 95%;
  }
  .brands {
    padding: 60px 0;
  }
  .brands .brand-item {
    margin: 5px;
  }
  .footer-contact {
    padding: 40px 0;
    background: #f8faff;
  }
  .footer-contact .head {
    margin-bottom: 30px;
  }
  .footer-contact .head span {
    font-weight: 400;
    font-size: 16px;
    display: block;
    color: #081131;
    margin-bottom: 16px;
  }
  .footer-contact .head h3 {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    color: #081131;
    font-size: 30px;
  }
  .footer-contact .f-contact-item {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
  footer {
    padding: 40px 0;
    border-top: 1px solid rgba(59, 71, 103, 0.1);
  }
  footer .footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(59, 71, 103, 0.1);
  }
  footer .footer-bottom .bottom-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .bottom-links .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .footer-bottom .bottom-links .links a {
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    padding: 5px 10px;
  }
  footer .footer-bottom .bottom-links .lang {
    margin-top: 10px;
  }
  footer .footer-bottom .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .bottom .footer-logo {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-bottom .bottom .footer-logo p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    padding-left: 16px;
    margin: 10px 0;
  }
  footer .footer-bottom .bottom .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-bottom .bottom .socials a {
    display: inline-block;
    padding-left: 16px;
  }
  .section-title {
    width: 100%;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .section-title span {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #081131;
    text-align: center;
    width: 100%;
  }
  .section-title .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    color: #081131;
    font-family: "Georgia";
    margin: 5px 0;
  }
  .section-title p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #6978a0;
    max-width: 855px;
  }
  .section-title span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 16px;
  }
  .section-title h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 41px;
    color: #081131;
    font-family: "Georgia";
    margin-bottom: 16px;
  }
  .section-title h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 27px;
    color: #081131;
    font-family: "Georgia";
    margin-bottom: 16px;
  }
  .performance {
    padding: 60px 0;
  }
  .performance .performance-item {
    width: 100%;
    height: auto;
    min-height: 518px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 24px 0 24px;
    position: relative;
    margin-bottom: 80px;
  }
  .performance .performance-item span {
    width: 64px;
    height: 64px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
  }
  .performance .performance-item h4 {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #081131;
    margin-bottom: 24px;
  }
  .performance .performance-item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6978a0;
  }
  .performance .performance-item .img {
    position: absolute;
    bottom: -100px;
  }
  .performance .performance-item .img img {
    max-height: 246px;
  }
  .performance .performance-item.green {
    background: #e1f5f5;
  }
  .performance .performance-item.pink {
    background: #ffeef0;
  }
  .performance .performance-item.yellow {
    background: #faebcc;
  }
  .page-blog {
    padding: 60px 0;
  }
  .page-blog .blog-text {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-blog .blog-text span {
    font-weight: 400;
    font-size: 15px;
    color: #081131;
    display: block;
    margin-bottom: 10px;
  }
  .page-blog .blog-text h3 {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 41px;
    margin-bottom: 16px;
    color: #081131;
  }
  .page-blog .blog-text p {
    font-weight: 400;
    font-size: 15;
    line-height: 1.6;
    color: #6978a0;
  }
  .page-blog .blog-img {
    width: 100%;
    height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0;
  }
  .page-blog .blog-img img {
    max-width: 90%;
    max-height: 90%;
    width: 100%;
    height: auto;
  }
  .domain-price-table {
    padding: 60px 0;
    position: relative;
  }
  .domain-price-table .domain-table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    margin-bottom: 40px;
  }
  .domain-price-table .domain-table-head .table-search {
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    height: 42px;
    width: 100%;
    margin-bottom: 20px;
  }
  .domain-price-table .domain-table-head .table-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .domain-price-table .domain-table-head .table-filters .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .domain-price-table .domain-table-head .table-filters .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
  }
  .domain-price-table .domain-table-head .table-filters .form-check-input:checked {
    background-color: #0083ff;
    border-color: #0083ff;
  }
  .domain-price-table .domain-table-head .table-filters label {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 5px;
  }
  .domain-price-table .domain-table-body {
    overflow-x: auto;
  }
  .domain-price-table .domain-table-body table {
    width: 100%;
    border-collapse: collapse;
    min-width: 960px;
  }
  .domain-price-table .domain-table-pagination {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 32px;
    display: none;
  }
  .domain-price-table .domain-table-pagination button {
    min-width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    margin-left: 8px;
    background: #fff;
  }
  .domain-price-table .domain-table-pagination button:hover, .domain-price-table .domain-table-pagination button.active {
    border-color: #0083ff;
    color: #0083ff;
  }
  .domain-price-table .domain-table-pagination button.prev, .domain-price-table .domain-table-pagination button.next {
    padding: 0 26px;
  }
  /* body {
    overflow-x: hidden;
  } */
  .banka-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banka-item ul {
    margin: 0;
    padding: 0;
  }
  .banka-item ul li {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .banka-item ul li span {
    min-width: 150px;
    font-weight: 400;
    font-size: 16px;
    color: #081131;
  }
  .banka-item .logo {
    width: 252px;
    height: 175px;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  .vps-table-wrap {
    padding: 60px 0;
    position: relative;
  }
  .vps-table-wrap::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8faff));
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  }
  .vps-table-wrap .vps-table {
    overflow-x: auto;
  }
  .vps-table-wrap .vps-table-head {
    min-width: 960px;
    width: 100%;
  }
  .vps-table-wrap .vps-table-body {
    width: 100%;
    margin-top: 16px;
    min-width: 960px;
  }
  .server-img {
    max-width: 100%;
  }
  .login-page {
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .login-page .login-page-content {
    max-width: 100%;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .login-page .login-page-content .section-title span {
    margin-bottom: 0;
  }
  .login-page .login-page-content .section-title .title {
    font-size: 20px;
  }
  .login-page .login-page-content .section-title p {
    font-size: 15px;
  }
  .login-page .login-page-content .form-wrap {
    max-width: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px;
  }
  .login-page .login-page-content .form-wrap .form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .login-page .login-page-content .form-wrap .form .input-row {
    position: relative;
    width: 100% !important;
    min-width: 100% !important;
  }
  .login-page .login-page-content .form-wrap .form .input-row span {
    position: absolute;
    right: 10px;
    top: 0;
    color: #081131;
    font-size: 20px;
    cursor: pointer;
    height: 56px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .login-page .login-page-content .form-wrap .form .input-row input {
    background: #ffffff;
    border: 1px solid rgba(59, 71, 103, 0.2);
    max-width: 100% !important;
    width: 100% !important;
    height: 56px;
    min-width: 10px !important;
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 16px;
    color: #6978a0;
    text-indent: 20px;
  }
  .login-page .login-page-content .form-wrap .form .input-row input:focus {
    border-color: #0083ff;
  }
  .login-page .login-page-content .form-wrap .form .form-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .login-page .login-page-content .form-wrap .form .form-bottom a {
    text-decoration: underline;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
  }
  .login-page .login-page-content .form-wrap .form .enter {
    width: 222px;
    height: 56px;
    background: #0083ff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    border: none;
    margin: 50px auto 20px auto;
  }
  .login-page .login-page-content .form-wrap .page-heading {
    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;
  }
  .login-page .login-page-content .form-wrap .page-heading > a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 12px;
    background: #fff;
    color: #3b4767;
    position: absolute;
    left: 0;
  }
  .login-page .login-page-content .form-wrap .page-heading img {
    margin-left: 20px;
    max-width: 180px;
  }
  .login-page .login-page-content .form-wrap .page-heading p {
    margin-left: auto;
    font-weight: 400;
    font-size: 16px;
    color: #081131;
  }
  .login-page .login-page-content .form-wrap .page-heading p a {
    color: #0083ff;
    font-weight: 500;
  }
  .login-page .login-page-image {
    display: none;
  }
  .plan-table-wrap {
    padding: 60px 0;
  }
  .plan-table-wrap .container .table-wrap {
    width: 100%;
    overflow-x: auto;
  }
  .plan-table-wrap .container .table-wrap .table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 1100px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 32px 16px;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: relative;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell.popular a {
    background: #0083ff;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell.popular .pattern span.active {
    background: #0083ff;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .c-badge {
    width: 100%;
    padding: 2px 5px;
    position: absolute;
    top: 0;
    font-size: 11px;
    left: 0;
    right: 0;
    color: #081131;
    background: rgba(0, 131, 255, 0.1);
  }
  .plan-table-wrap .container .table-wrap .table-head .cell:first-child {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: start;
    border-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .head span {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
    display: block;
    margin-bottom: 12px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .head .title {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #081131;
    margin-bottom: 32px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .periods {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .periods button {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.04em;
    color: #6978a0;
    margin-right: 30px;
    padding: 5px;
    background: none;
    border: 2px solid transparent;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .periods button.active, .plan-table-wrap .container .table-wrap .table-head .cell .periods button:hover {
    border-bottom: 2px solid #081131;
    color: #081131;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .pattern {
    width: 28px;
    height: 28px;
    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;
    margin-bottom: 16px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .pattern span {
    width: 10px;
    height: 10px;
    background: #6978a0;
    opacity: 0.2;
    border-radius: 50%;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .pattern span.active {
    opacity: 1;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:nth-child(3), .plan-table-wrap .container .table-wrap .table-head .cell .pattern span:last-child {
    margin-top: 7px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell strong {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #3b4767;
    display: block;
    margin-bottom: 12px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell strong.old-price {
    text-decoration: line-through !important;
    margin-top: 14px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell a {
    width: 100%;
    height: 48px;
    background: #3b4767;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell a:hover {
    background: #0083ff;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .price b {
    color: #081131;
    font-size: 36px;
    font-weight: 700;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .price div {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 10px;
    padding-left: 5px;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .price div small {
    font-weight: 600;
    font-size: 14px;
    color: #081131;
    line-height: 1;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell .price div span {
    font-weight: 400;
    font-size: 14px;
    color: #6978a0;
    line-height: 1.1;
  }
  .plan-table-wrap .container .table-wrap .table-head .cell > p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #6978a0;
  }
  .plan-table-wrap .container .table-wrap .table-body {
    min-width: 1100px;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child p {
    color: #081131;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head.opened .cell:first-child span {
    color: #0083ff;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 18px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: relative;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell .c-badge {
    width: 100%;
    padding: 2px 5px;
    position: absolute;
    top: 0;
    font-size: 11px;
    left: 0;
    right: 0;
    color: #081131;
    background: rgba(0, 131, 255, 0.1);
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell p {
    font-weight: 400;
    font-size: 18px;
    color: #6978a0;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell span {
    color: #081131;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-head .cell:first-child {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content {
    display: none;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-right: 1px solid rgba(59, 71, 103, 0.1);
    border-top: 1px solid rgba(59, 71, 103, 0.1);
    border-bottom: 1px solid rgba(59, 71, 103, 0.1);
    padding: 18px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info {
    position: relative;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info:hover .info-box {
    opacity: 1;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell .info .info-box {
    position: absolute;
    width: 180px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    top: -100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
            box-shadow: 0px 0px 10px rgba(59, 71, 103, 0.2);
    left: 150%;
    text-align: center;
    padding: 5px;
    opacity: 0;
    pointer-events: none;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell p {
    font-weight: 400;
    font-size: 16px;
    color: #081131;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell span {
    font-weight: 400;
    font-size: 14px;
    color: #6978a0;
  }
  .plan-table-wrap .container .table-wrap .table-body .table-row .row-content .content-row .cell:first-child {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    border-left: 1px solid rgba(59, 71, 103, 0.1);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .vds-filters {
    width: 100%;
    padding: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .vds-filters > .d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
  .vds-filters > .d-flex .table-options {
    padding: 10px 0;
    margin-left: 0;
  }
  .vds-filters .table-tab-buttons {
    margin: 0;
  }
  .vds-filters .table-options {
    margin-left: 50px;
  }
  .vds-filters .table-options strong {
    font-weight: 500;
    font-size: 16px;
    color: #081131;
  }
  .vds-filters .table-options div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .vds-filters .table-options div .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .vds-filters .table-options div .form-check-input {
    width: 24px;
    height: 24px;
    border-radius: 0;
    margin-right: 10px;
  }
  .vds-filters .table-options div .form-check-input:checked {
    background-color: #0083ff;
    border-color: #0083ff;
  }
  .vds-filters .table-options div label {
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    margin-top: 5px;
  }
  .table-tab-buttons {
    max-width: 100%;
    width: 100%;
    margin: 40px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 16px;
    border: 1px solid rgba(59, 71, 103, 0.2);
  }
  .table-tab-buttons a {
    height: 48px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: rgba(105, 120, 160, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .table-tab-buttons a svg,
  .table-tab-buttons a img {
    margin-right: 5px;
  }
  .table-tab-buttons a:first-child {
    margin-right: 12px;
  }
  .table-tab-buttons a:hover, .table-tab-buttons a.active {
    background: #081131;
    color: #fff;
  }
  .table-tab-buttons a:hover svg path, .table-tab-buttons a.active svg path {
    fill: #fff !important;
  }
  .ready-themes {
    padding: 80px 0;
  }
  .ready-themes .tab-buttons {
    margin: 40px auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 16px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ready-themes .tab-buttons button {
    min-width: 123px;
    border: none;
    height: 48px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: rgba(105, 120, 160, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 400;
    font-size: 14px;
    color: #3b4767;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    margin-left: 0;
    margin: 5px;
  }
  .ready-themes .tab-buttons button svg,
  .ready-themes .tab-buttons button img {
    margin-right: 5px;
  }
  .ready-themes .tab-buttons button:first-child {
    margin-left: 5px;
  }
  .ready-themes .tab-buttons button:hover, .ready-themes .tab-buttons button.active {
    background: #081131;
    color: #fff;
  }
  .ready-themes .tab-buttons button:hover svg path, .ready-themes .tab-buttons button.active svg path {
    fill: #fff !important;
  }
  .ready-themes .themes-slider {
    width: 100%;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ready-themes .themes-slider .item {
    padding: 20px;
  }
  .ready-themes .themes-slider .item img {
    max-width: 100%;
    height: auto;
  }
  .domain-selection-options {
    margin-top: -70px;
    position: relative;
  }
  .domain-selection-options .container {
    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;
  }
  .domain-selection-options .container .option {
    max-width: 816px;
    width: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    margin-bottom: 40px;
  }
  .domain-selection-options .container .option .heading {
    margin-bottom: 16px;
  }
  .domain-selection-options .container .option .heading h4 {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #081131;
    margin-bottom: 5px;
  }
  .domain-selection-options .container .option .heading p {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
  }
  .domain-selection-options .container .option .domain-input-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .domain-selection-options .container .option .domain-input-group .input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 56px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .domain-selection-options .container .option .domain-input-group .input input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border: none;
    background: #ffff;
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
  }
  .domain-selection-options .container .option .domain-input-group .input img {
    max-width: 20px;
    margin: 0 10px;
  }
  .domain-selection-options .container .option .domain-input-group .select {
    width: 100%;
    margin: 10px 0;
  }
  .domain-selection-options .container .option .domain-input-group .select select {
    width: 100%;
    height: 56px;
    background: #fff;
    border: 1px solid rgba(59, 71, 103, 0.1);
    font-weight: 400;
    font-size: 16px;
  }
  .domain-selection-options .container .option .domain-input-group button {
    width: 100%;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    background: #3b4767;
    border: none;
  }
  .domain-selection-options .container .option .results {
    border-top: 1px solid rgba(59, 71, 103, 0.2);
    margin-top: 24px;
    padding-top: 24px;
  }
  .domain-selection-options .container .option .results .success-text {
    font-family: "Georgia";
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    color: #00bc87;
    margin-bottom: 5px;
  }
  .domain-selection-options .container .option .results .domain-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
  .domain-selection-options .container .option .results .domain-item:last-child {
    padding-bottom: 0;
  }
  .domain-selection-options .container .option .results .domain-item strong {
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #3b4767;
  }
  .domain-selection-options .container .option .results .domain-item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #6978a0;
  }
  .domain-selection-options .container .option .results .domain-item button {
    width: 131px;
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    background: #0083ff;
    border: none;
  }
  .sepet-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 24px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid rgba(59, 71, 103, 0.2);
  }
  .sepet-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
  }
  .sepet-item .info {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sepet-item .info span {
    font-weight: 400;
    color: #6978a0;
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px;
  }
  .sepet-item .info span b {
    color: #081131;
  }
  .sepet-item .info p {
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #3b4767;
  }
  .sepet-item .prices {
    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;
  }
  .sepet-item .prices .old {
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
    color: #6978a0;
    margin-right: 10px;
  }
  .sepet-item .prices .current {
    font-weight: 600;
    font-size: 24px;
    color: #3b4767;
  }
  .sepet-item .period {
    padding: 0 40px;
  }
  .sepet-item .period select {
    width: 138px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    font-weight: 400;
    font-size: 16px;
    color: #3b4767;
    padding-left: 15px;
  }
  .sepet-item .actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sepet-item .actions button {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(59, 71, 103, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: 12px;
    background: #fff;
  }
  #footer {
    position: relative;
    background: #151b2c;
    padding-top: 8px;
  }
  #footer::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    height: 8px;
  }
  #footer .center {
    border-top: 1px solid rgba(136, 143, 168, 0.2);
    border-bottom: 1px solid rgba(136, 143, 168, 0.2);
    padding: 28px 0;
  }
  #footer .center .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #footer .center .left > div {
    background: rgba(102, 112, 147, 0.1);
    border-radius: 4px;
    padding: 40px 24px;
  }
  #footer .center .left > div p {
    font-size: 12px;
    color: #888fa8;
    font-weight: 500;
  }
  #footer .center .left > div p strong {
    display: block;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
  }
  #footer .center .left > div ul {
    padding: 0;
    margin: 0;
  }
  #footer .center .left > div ul li {
    position: relative;
    padding: 7px 0;
    color: #888fa8;
  }
  #footer .center .left > div ul li hr {
    margin: 16px 0;
    border-color: rgba(136, 143, 168, 0.2);
  }
  #footer .center .left > div ul li span {
    padding-right: 0;
    font-size: 14px;
    line-height: 24px;
  }
  #footer .center .left > div ul li a {
    position: relative;
    font-size: 14px;
    color: #888fa8;
    font-weight: 500;
    padding-right: 20px;
    display: inline-block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  #footer .center .left > div ul li a > i {
    position: absolute;
    right: 0;
    top: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    margin-top: -10px;
  }
  #footer .center .right {
    padding-left: 30px;
  }
  #footer .center .right strong {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    color: #888fa8;
    font-weight: 500;
    border: 1px solid rgba(136, 143, 168, 0.2);
    padding: 14px 14px 14px 14px;
    border-radius: 4px;
  }
  #footer .center .right strong .fa-chevron-down {
    margin-left: auto;
    display: block;
  }
  #footer .center .right .row > div {
    padding: 0 15px 15px 0;
  }
  #footer .center .right ul {
    padding: 4px 0;
    display: none;
  }
  #footer .center .right ul li {
    padding: 4px 0;
  }
  #footer .center .right ul li a {
    font-size: 14px;
    color: #fff;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
  #footer .bottom {
    text-align: center !important;
    padding: 64px 0 54px;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid rgba(136, 143, 168, 0.2);
  }
  #footer .bottom img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  #footer .bottom p {
    font-size: 15px;
    color: #888fa8;
    padding: 16px 0 14px;
  }
  #footer .bottom ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #footer .bottom ul li {
    padding: 0 5px;
  }
  #footer .bottom ul li a {
    font-size: 22px;
    color: #fff;
  }
  #footer .copyright {
    padding: 20px 0;
    overflow: hidden;
    text-align: center;
  }
  #footer .copyright p {
    padding: 10px 20px;
    color: #fff;
  }
  #footer .copyright ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  #footer .copyright ul a {
    color: #fff;
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*# sourceMappingURL=style.css.map */
#header .hill {
    background: #2930c7;
    padding: 12px 0
}

#header .hill .left .tag {
    font-weight: 400!important;
    color: #fff;
    background: rgba(255,255,255,.1);
    padding: 7px 8px;
    border-radius: 12px
}

#header .hill .center {
    text-align: center!important;
    color: #fff
}

#header .hill .center>div {
    display: table;
    margin: 0 auto
}

#header .hill .center>div>* {
    display: table-cell;
    vertical-align: middle
}

#header .hill .center>div>strong {
    font-size: 15px;
    font-weight: 400!important;
    white-space: nowrap
}

#header .hill .center>div>div ul {
    font-size: 0;
    height: 32px;
    overflow: hidden
}

#header .hill .center>div>div ul li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 16px
}

#header .hill .center>div>div ul li a {
    display: block
}

#header .hill .center>div>div ul li a strong {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    padding-right: 8px
}

#header .hill .center>div>div ul li a>span {
    line-height: 30px;
    padding: 0 9px;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600
}

#header .hill .center>div>div ul li a>span u {
    opacity: .5;
    text-decoration: line-through
}

#header .hill .center>div>div ul li a>span.active {
    display: inline-block
}

#header .hill .center>div>div ul li a:hover {
    color: #fff
}

#header .hill .center>div>div ul li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    width: 1px;
    height: 24px;
    margin-top: -12px;
    background: rgba(255,255,255,.2)
}

#header .hill .center>div>div ul li:first-child:before {
    display: none
}

#header .hill .center>div>span {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    white-space: nowrap
}

#header .hill .center>div>span a {
    color: #fff;
    text-decoration: underline!important
}

#header .hill .right a {
    display: block;
    font-size: 24px;
    line-height: 32px;
    color: #fff
}
