/* reset */
* {
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

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

body {
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
}

.top-bar {
  width: 100%;
  height: 40px;
  background: #cf2051;
}

.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: 100%;
}

.top-bar .container a {
  color: #fff;
  font-size: 14px;
  margin-right: 15px;
}

header {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #eee;
  background: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

header.sticky {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01), 0 8px 16px rgba(0, 0, 0, 0.01), 0 16px 32px rgba(0, 0, 0, 0.01), 0 32px 64px rgba(0, 0, 0, 0.01);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01), 0 8px 16px rgba(0, 0, 0, 0.01), 0 16px 32px rgba(0, 0, 0, 0.01), 0 32px 64px rgba(0, 0, 0, 0.01);
}

header .container {
  height: 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;
}

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

header .container .header-buttons a {
  margin-left: 10px;
}

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 {
  height: 100px;
  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 {
  font-size: 16px;
  color: #707070;
  font-weight: 600;
  padding: 0 15px;
}

@media (min-width: 1024px) {

  header .container nav ul > li:hover > a {
    color: #2093cf;
  }

  header .container nav ul > li:hover .mega-menu {
    opacity: 1;
    pointer-events: all;
  }

}

header .container nav ul > li .mega-menu {
  position: fixed;
  top: 140px;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01), 0 8px 16px rgba(0, 0, 0, 0.01), 0 16px 32px rgba(0, 0, 0, 0.01), 0 32px 64px rgba(0, 0, 0, 0.01);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01), 0 8px 16px rgba(0, 0, 0, 0.01), 0 16px 32px rgba(0, 0, 0, 0.01), 0 32px 64px rgba(0, 0, 0, 0.01);
  width: 100%;
  padding: 24px;
  border-top: 1px solid rgba(112, 112, 112, 0.1);
  opacity: 0;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  pointer-events: none;
  z-index: 9999;
}

header .container nav ul > li .mega-menu .mega-menu-banner {
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  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: 20px;
}

header .container nav ul > li .mega-menu .mega-menu-banner p {
  margin-bottom: 0 !important;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

header .container nav ul > li .mega-menu .mega-menu-banner a {
  background: #fff;
  width: 160px;
  color: #2093cf;
}

header .container nav ul > li .mega-menu .row {
  width: 100%;
}

header .container nav ul > li .mega-menu a {
  width: 100%;
  padding: 12px;
  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;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #cf2051;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
          box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

header .container nav ul > li .mega-menu a:hover {
  background: #2093cf;
}

header .container nav ul > li .mega-menu a:hover .title strong {
  color: #fff;
}

header .container nav ul > li .mega-menu a:hover .title .icon {
  background: #fff;
  color: #2093cf;
}

header .container nav ul > li .mega-menu a:hover p {
  color: #fff;
}

header .container nav ul > li .mega-menu a .title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 10px;
}

header .container nav ul > li .mega-menu a .title strong {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0d1c38;
}

header .container nav ul > li .mega-menu a .title .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #cf2051;
  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: 24px;
}

header .container nav ul > li .mega-menu a span {
  padding: 0 10px;
  height: 30px;
  background: #2093cf;
  color: #fff;
  border-radius: 4px;
  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;
}

header .container nav ul > li .mega-menu a p {
  color: #707070;
  text-align: center;
  line-height: 1.6;
}

.pb-60 {
  padding-bottom: 60px;
}

.slick-dots {
  bottom: 10px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 30px;
}

.slick-dots li {
  margin: 0;
  padding: 0;
}

.slick-dots li.slick-active {
  margin-right: 10px;
}

.slick-dots li.slick-active button {
  margin: 0;
  background-color: #fff !important;
  border: 0px solid #fff !important;
  width: 25px !important;
  height: 3px !important;
}

.slick-dots li.slick-active button::before {
  color: #fff !important;
}

.slick-dots li button {
  border: 0 !important;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.5) !important;
  width: 15px !important;
  height: 3px !important;
}

.slick-dots li button::before {
  width: 0px !important;
  height: 0px !important;
  font-size: 0px !important;
  color: #fff !important;
  content: "" !important;
}

.hero-wrapper {
  width: 100%;
  height: 428px;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  background: url(../images3/herobg.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-wrapper .arrow-btn {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: #2093cf;
  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-size: 18px;
  border: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero-wrapper .arrow-btn.prev {
  left: 20px;
}

.hero-wrapper .arrow-btn.next {
  right: 20px;
}

.hero-wrapper.auto-height {
  height: auto;
}

.hero-wrapper.auto-height .hero-slider .slider-item {
  height: auto;
}

.hero-wrapper.auto-height .hero-slider .slider-item .hero-text {
  height: auto;
}

.hero-wrapper.auto-height .hero-slider .slider-item .hero-img {
  height: auto;
}

.hero-wrapper .overlay {
  width: 100%;
  height: 100%;
  background: rgba(47, 49, 75, 0.8);
}

.hero-wrapper .hero-slider {
  height: 100%;
}

.hero-wrapper .hero-slider .slider-item {
  height: 428px;
}

.hero-wrapper .hero-slider .slider-item .hero-text {
  height: 428px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
}

.hero-wrapper .hero-slider .slider-item .hero-text ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-wrapper .hero-slider .slider-item .hero-text ul li {
  padding-right: 20px;
  font-size: 16px;
}

.hero-wrapper .hero-slider .slider-item .hero-text .title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-wrapper .hero-slider .slider-item .hero-text p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-wrapper .hero-slider .slider-item .hero-text a {
  padding: 0 20px;
  height: 45px;
  border-radius: 5px;
  color: #2093cf;
  background: #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: 500;
  margin-top: 15px;
}

.hero-wrapper .hero-slider .slider-item .hero-img {
  width: 100%;
  height: 428px;
  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: 50px 0;
}

.hero-wrapper .hero-slider .slider-item .hero-img img {
  max-width: 100%;
  max-height: 350px;
}

.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;
  margin-bottom: 40px;
}

.section-title .title {
  color: #2093cf;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title p {
  color: #707070;
  font-size: 15px;
}

.search-wrap {
  width: 100%;
  max-width: 900px;
  height: 70px;
  border: 1px solid #eee;
  margin: 0 auto;
  border-radius: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  padding: 0 10px;
  -webkit-box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.13);
          box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.13);
}

.search-wrap input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 70px;
  padding: 0 15px;
  font-size: 17px;
  border: none;
  height: 70px;
  background: #fff;
}

.search-wrap input::-webkit-input-placeholder {
  color: #707070;
  letter-spacing: 0.5px;
}

.search-wrap input:-ms-input-placeholder {
  color: #707070;
  letter-spacing: 0.5px;
}

.search-wrap input::-ms-input-placeholder {
  color: #707070;
  letter-spacing: 0.5px;
}

.search-wrap input::placeholder {
  color: #707070;
  letter-spacing: 0.5px;
}

.search-wrap button {
  height: 50px;
  border-radius: 50px;
  padding: 0 40px;
  border: 0;
  background: #2093cf;
  color: #fff;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.home-domain {
  padding: 50px 0;
}

.home-domain .pack-buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}

.home-domain .pack-buttons a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 70px;
  margin: 0 20px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  color: #fff;
  border-radius: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.domain-carousel {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.domain-carousel .c-item {
  background: #fff;
  border: 1px solid rgba(29, 29, 29, 0.16);
  border-radius: 10px;
  padding: 10px;
  margin: 0 5px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.domain-carousel .c-item span {
  width: 60px;
  height: 60px;
  border-radius: 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;
  padding: 5px;
  background: #2093cf;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
}

.domain-carousel .c-item .price {
  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;
}

.domain-carousel .c-item .price b {
  font-size: 18px;
  color: #000;
}

.packs-wrapper {
  padding: 50px 0;
  width: 100%;
}

.h-pack {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 16px rgba(29, 29, 29, 0.16);
          box-shadow: 0px 6px 16px rgba(29, 29, 29, 0.16);
  padding: 0 20px 20px 20px;
  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;
}

.h-pack .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #2093cf;
  color: #fff;
  font-size: 44px;
  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;
  margin-bottom: 20px;
}

.h-pack h2 {
  color: #151926;
  margin-bottom: 10px;
}

.h-pack .pricing {
  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;
  width: 100%;
  padding: 16px;
  margin-bottom: 20px;
}

.h-pack .pricing .old-price {
  font-size: 15px;
  color: #707070;
}

.h-pack .pricing .old-price strong {
  text-decoration: line-through;
}

.h-pack .pricing .current-price {
  color: #2093cf;
}

.h-pack .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.h-pack .pricing .current-price span {
  color: #707070;
}

.h-pack > a {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  background: #2093cf;
  color: #fff;
  font-weight: 600;
  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-size: 18px;
}

.main-btn {
  width: auto;
  height: 45px;
  padding: 0 20px;
  border-radius: 10px;
  background: #cf2051;
  color: #fff;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 15px;
}

.main-btn.border-btn {
  border: 1px solid #2093cf;
  color: #2093cf;
  background: #fff;
}

.host-wrapper {
  padding: 50px 0;
}

.page-box {
  margin-top: -100px;
  background: #fff;
  z-index: 99;
  padding: 30px 20px;
  border-radius: 20px;
  position: relative;
  -webkit-box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.3);
          box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.3);
}

.host-pack {
  width: 100%;
  background: #304048;
  border-radius: 20px;
  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;
}

.host-pack.blue .title {
  background: #2093cf;
}

.host-pack.blue .pricing {
  border-color: #2093cf;
}

.host-pack.blue .pricing .current-price {
  color: #2093cf;
}

.host-pack.blue > a {
  background: #2093cf;
}

.host-pack.blue ul li.colored {
  color: #2093cf;
}

.host-pack.pink .title {
  background: #cf2060;
}

.host-pack.pink .pricing {
  border-color: #cf2060;
}

.host-pack.pink .pricing .current-price {
  color: #cf2060;
}

.host-pack.pink > a {
  background: #cf2060;
}

.host-pack.pink ul li.colored {
  color: #cf2060;
}

.host-pack.purple .title {
  background: #8320cf;
}

.host-pack.purple .pricing {
  border-color: #8320cf;
}

.host-pack.purple .pricing .current-price {
  color: #8320cf;
}

.host-pack.purple > a {
  background: #8320cf;
}

.host-pack.purple ul li.colored {
  color: #8320cf;
}

.host-pack .title {
  padding: 0 30px;
  height: 44px;
  border-radius: 44px;
  background: #20cfa5;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: -20px;
}

.host-pack .pricing {
  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;
  width: 100%;
  padding: 16px;
  border-bottom: 3px solid #20cfa5;
}

.host-pack .pricing .old-price {
  font-size: 15px;
  color: #f4f4f4;
}

.host-pack .pricing .old-price strong {
  text-decoration: line-through;
}

.host-pack .pricing .current-price {
  color: #20cfa5;
}

.host-pack .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.host-pack .pricing .current-price span {
  color: #f4f4f4;
}

.host-pack ul {
  width: 100%;
}

.host-pack ul li {
  width: 100%;
  padding: 10px 30px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
}

.host-pack ul li.colored {
  color: #20cfa5;
}

.host-pack ul li:nth-child(even) {
  background: #243239;
}

.host-pack > a {
  width: 90%;
  height: 50px;
  border-radius: 10px;
  background: #20cfa5;
  color: #fff;
  font-weight: 600;
  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-size: 18px;
  margin: 30px 15px;
}

.dedi-wrapper {
  padding: 50px 0;
}

.grey-bg {
  background: rgba(112, 112, 112, 0.05);
}

.dedicated-item-wrap {
  margin-bottom: 25px;
}

.dedicated-content {
  padding: 16px;
  width: 100%;
  background: #fff;
  margin-top: 15px;
  -webkit-box-shadow: 0px 5px 16px rgba(29, 29, 29, 0.3);
          box-shadow: 0px 5px 16px rgba(29, 29, 29, 0.3);
  border-radius: 10px;
  display: none;
}

.dedicated-content ul {
  width: 100%;
  -webkit-column-count: 4;
          column-count: 4;
}

.dedicated-content ul li {
  padding: 8px 0;
  color: #707070;
}

.dedicated-content ul li .fa-check-circle {
  margin-right: 5px;
  color: #2093cf;
}

.dedicated-item2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  padding: 12px 0;
  background: #fd7e14;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
  box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.dedicated-item2:hover {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}

.dedicated-item2.popular {
  border: 2px solid #2093cf;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
  box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
}

.dedicated-item2.popular::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  height: 22px;
  border-radius: 5px 5px 0 0;
  background: #fd7e14;
  color: #fff;
  font-size: 10px;
  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;
  font-weight: 600;
}

.dedicated-item2 .d-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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 12px;
}

.dedicated-item2 .d-cell .see-ul {
  font-size: 12px;
  color: #0d1c38;
  padding: 5px 0;
  display: block;
}

.dedicated-item2 .d-cell .see-ul:hover {
  text-decoration: underline;
}

.dedicated-item2 .d-cell:first-child {
  background: #fff;
  border-radius: 10px;
  margin-left: 12px;
  margin-right: 12px;
  border-right: 0;
  color: #2093cf;
}

.dedicated-item2 .d-cell:first-child .name {
  color: #2093cf;
}

.dedicated-item2 .d-cell:first-child span {
  color: #2093cf;
}

.dedicated-item2 .d-cell:last-child {
  max-width: 150px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 0;
}

.dedicated-item2 .d-cell:nth-last-child(2) {
  border-right: 0;
}

.dedicated-item2 .d-cell:nth-last-child(3) {
  border-right: 0;
}

.dedicated-item2 .d-cell .add-cart {
  margin-top: 10px;
  width: 100%;
  height: 36px;
  font-size: 13px;
  border-radius: 5px;
  background: #8320cf;
  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;
}

.dedicated-item2 .d-cell .name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.dedicated-item2 .d-cell span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.dedicated-item2 .d-cell .icon {
  font-size: 18px;
  color: #fff;
}

.dedicated-item2 .d-cell small {
  font-size: 13px;
  color: #f4f4f4;
}

.dedicated-item2 .d-cell .pricing {
  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;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 5px 0;
  border-radius: 10px;
}

.dedicated-item2 .d-cell .pricing .old-price {
  font-size: 13px;
  color: #f4f4f4;
}

.dedicated-item2 .d-cell .pricing .old-price strong {
  text-decoration: line-through;
}

.dedicated-item2 .d-cell .pricing .current-price {
  color: #fff;
}

.dedicated-item2 .d-cell .pricing .current-price b {
  font-size: 20px;
  font-weight: 700;
}

.dedicated-item2 .d-cell .pricing .current-price span {
  font-size: 13px;
  color: #f4f4f4;
}




.dedicated-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  padding: 12px 0;
  background: #2093cf;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
          box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.dedicated-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.dedicated-item.popular {
  border: 2px solid #2093cf;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
          box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
}

.dedicated-item.popular::before {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  height: 22px;
  border-radius: 5px 5px 0 0;
  background: #2093cf;
  color: #fff;
  font-size: 10px;
  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;
  font-weight: 600;
}

.dedicated-item .d-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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
}

.dedicated-item .d-cell .see-ul {
  font-size: 12px;
  color: #0d1c38;
  padding: 5px 0;
  display: block;
}

.dedicated-item .d-cell .see-ul:hover {
  text-decoration: underline;
}

.dedicated-item .d-cell:first-child {
  background: #fff;
  border-radius: 10px;
  margin-left: 12px;
  margin-right: 12px;
  border-right: 0;
  color: #2093cf;
}

.dedicated-item .d-cell:first-child .name {
  color: #2093cf;
}

.dedicated-item .d-cell:first-child span {
  color: #2093cf;
}

.dedicated-item .d-cell:last-child {
  max-width: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 0;
}

.dedicated-item .d-cell:nth-last-child(2) {
  border-right: 0;
}

.dedicated-item .d-cell:nth-last-child(3) {
  border-right: 0;
}

.dedicated-item .d-cell .add-cart {
  margin-top: 10px;
  width: 100%;
  height: 36px;
  font-size: 13px;
  border-radius: 5px;
  background: #8320cf;
  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;
}

.dedicated-item .d-cell .name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.dedicated-item .d-cell span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.dedicated-item .d-cell .icon {
  font-size: 18px;
  color: #fff;
}

.dedicated-item .d-cell small {
  font-size: 13px;
  color: #f4f4f4;
}

.dedicated-item .d-cell .pricing {
  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;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 5px 0;
  border-radius: 10px;
}

.dedicated-item .d-cell .pricing .old-price {
  font-size: 13px;
  color: #f4f4f4;
}

.dedicated-item .d-cell .pricing .old-price strong {
  text-decoration: line-through;
}

.dedicated-item .d-cell .pricing .current-price {
  color: #fff;
}

.dedicated-item .d-cell .pricing .current-price b {
  font-size: 20px;
  font-weight: 700;
}

.dedicated-item .d-cell .pricing .current-price span {
  font-size: 13px;
  color: #f4f4f4;
}

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

.line {
  width: 90px;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  border-radius: 4px;
  margin-bottom: 10px;
}

.faq-list .faq-item {
  width: 100%;
  margin-bottom: 12px;
}

.faq-list .faq-item.opened .faq-body {
  display: block;
}

.faq-list .faq-item .faq-head {
  width: 100%;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  -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;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.faq-list .faq-item .faq-head h3 {
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.faq-list .faq-item .faq-head span {
  width: 40px;
  height: 40px;
  font-size: 24px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-list .faq-item .faq-body {
  background: #eef6ff;
  padding: 12px;
  border-radius: 10px;
  display: none;
}

.faq-list .faq-item .faq-body p {
  margin-bottom: 0;
  font-size: 14px;
  color: #151926;
  line-height: 1.6;
  font-weight: 500;
}

.features-wrapper {
  padding: 50px 0;
}

.f-item {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 6px 80px rgba(32, 146, 207, 0.07);
          box-shadow: 0px 6px 80px rgba(32, 146, 207, 0.07);
  margin-bottom: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.f-item:hover {
  background: #2093cf;
}

.f-item:hover .title span {
  background: #fff;
  color: #2093cf;
}

.f-item:hover .title h3 {
  color: #fff;
}

.f-item:hover p {
  color: #fff;
}

.f-item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.f-item .title span {
  width: 60px;
  height: 60px;
  border-radius: 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;
  font-size: 24px;
  color: #fff;
  background: #2093cf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}

.f-item .title h3 {
  font-size: 20px;
  font-weight: 600;
  color: #5e5e5e;
  margin-bottom: 0;
}

.f-item p {
  color: #707070;
  line-height: 1.6;
  font-size: 15px;
}

footer {
  background: #151b2c;
  border-top: 10px solid #2093cf;
}

footer .footer-links {
  padding: 30px 0;
}

footer .footer-links .links {
  margin-bottom: 20px;
}

footer .footer-links .links strong {
  display: block;
  color: #2093cf;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

footer .footer-links .links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

footer .footer-links .links a::before {
  margin-right: 6px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2093cf;
}

footer .footer-mid {
  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;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 20px 0;
}

footer .footer-mid .left {
  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;
}

footer .footer-mid .left .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

footer .footer-mid .left .socials a {
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
  background: #2093cf;
  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;
}

footer .footer-mid .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-mid .right .ri {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 250px;
  margin-left: 30px;
}

footer .footer-mid .right .ri .icon {
  font-size: 50px;
  margin-right: 15px;
}

footer .footer-mid .right .ri strong {
  display: block;
  color: #fff !important;
}

footer .footer-mid .right .ri span {
  display: block;
  color: #fff !important;
}

footer .footer-bottom {
  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-top: 20px;
  padding-bottom: 10px;
}

footer .footer-bottom p {
  font-size: 15px;
  color: #fff;
}

.hero-domain {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  -webkit-box-shadow: 0px 0px 16px #1d1d1d;
          box-shadow: 0px 0px 16px #1d1d1d;
  z-index: 9;
  position: relative;
}

.domain-price-table {
  padding: 50px 0;
  border-radius: 10px;
}

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

.domain-price-table table thead tr th {
  padding: 14px 12px;
  background: #2093cf;
  color: #fff;
  text-align: center;
}

.domain-price-table table thead tr th:first-child {
  text-align: start;
  border-radius: 10px 0 0 0;
}

.domain-price-table table thead tr th:last-child {
  border-radius: 0 10px 0 0;
}

.domain-price-table table tbody {
  background: rgba(32, 147, 207, 0.05);
  padding: 10px;
}

.domain-price-table table tbody tr {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.domain-price-table table tbody tr:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}

.domain-price-table table tbody tr:nth-child(odd) {
  background: #fff;
}

.domain-price-table table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}

.domain-price-table table tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}

.domain-price-table table tbody tr td {
  padding: 12px;
  background: transparent;
  color: #707070;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.domain-price-table table tbody tr td strong {
  font-weight: 600;
  color: #151b2c;
  margin-right: 5px;
}

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

.input-item {
  width: 100%;
  margin-bottom: 10px;
}

.input-item label {
  font-size: 14px;
  font-weight: 500;
  color: #151926;
  display: block;
  margin-bottom: 5px;
}

.input-item .input-box {
  position: relative;
}

.input-item .input-box span {
  position: absolute;
  width: 40px;
  height: 50px;
  top: 0;
  cursor: pointer;
  right: 0;
  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-size: 15px;
  color: #707070;
}

.input-item input {
  width: 100%;
  min-width: 100%;
  height: 50px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 6px;
  padding: 0 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  background: rgba(112, 112, 112, 0.05);
}

.input-item input:focus {
  border-color: #2093cf;
}

.input-item textarea {
  width: 100%;
  min-width: 100%;
  min-height: 160px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  border-radius: 6px;
  padding: 10px;
  resize: vertical;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  background: rgba(112, 112, 112, 0.05);
}

.input-item textarea:focus {
  border-color: #2093cf;
}

.contact-form {
  margin-top: -30px;
  position: relative;
  z-index: 9;
  margin-bottom: 50px;
}

.contact-page-form {
  -webkit-box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
          box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
}

.c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(112, 112, 112, 0.2);
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 20px 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.c-box:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.c-box span {
  font-size: 48px;
  color: #fff;
  display: block;
}

.c-box strong {
  color: #fff;
  font-size: 18px;
}

.c-box p {
  color: #f3f3f3;
  font-weight: 500;
}

.about-content {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}

.about-content .page-box {
  margin-top: 0;
}

.about-content .page-box p {
  font-size: 16px;
  color: #707070;
  line-height: 1.6;
}

.page-links-wrap {
  height: 100%;
  position: relative;
}

.page-links {
  width: 100%;
  padding: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
}

.page-links a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 12px;
}

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

.page-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.page-links a.active {
  background: #fff;
  border-radius: 10px;
  color: #2093cf;
}

.bank-item {
  width: 100%;
  border: 1px solid rgba(32, 147, 207, 0.2);
  border-radius: 20px;
  padding: 12px;
  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;
}

.bank-item button {
  margin-top: 10px;
  width: 100%;
  background: #20cfa5;
  height: 45px;
  border-radius: 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;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
}

.bank-item ul {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: rgba(238, 238, 238, 0.5);
  width: 100%;
  border-radius: 10px;
  padding: 12px 0;
}

.bank-item ul li {
  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: 20px;
}

.bank-item ul li strong {
  color: #151b2c;
  margin-bottom: 5px;
}

.bank-item ul li span {
  font-size: 15px;
  color: #707070;
  font-weight: 600;
}

.bank-item .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  background: #2093cf;
  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: 10px;
}

.bank-item .logo img {
  max-width: 200px;
  max-height: 70px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.page-not-found {
  padding: 100px 0;
}

.page-not-found .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;
  text-align: center;
}

.page-not-found .container img {
  max-width: 560px;
  margin-top: 30px;
}

.page-not-found .container h1 {
  color: #151b2c;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-not-found .container p {
  color: #707070;
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
}

.login-wrapper {
  width: 100%;
  background-image: url(../images3/loginbg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.login-wrapper .overlay {
  padding: 100px 0;
  background: rgba(47, 49, 75, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.login-wrapper .overlay .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.login-wrapper .overlay .login-box {
  max-width: 560px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
          box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
  padding: 16px 12px;
  border-radius: 10px;
}

.login-wrapper .overlay .login-box .head {
  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: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.login-wrapper .overlay .login-box .head a {
  font-size: 14px;
}

.login-wrapper .overlay .login-box .section-title {
  margin-bottom: 20px;
}

.login-wrapper .overlay .login-box .section-title .title {
  font-size: 24px;
}

.login-wrapper .overlay .login-box .form-wrap {
  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;
}

.login-wrapper .overlay .login-box .form-wrap .main-btn {
  margin: 10px 0;
  width: 100%;
  height: 47px;
}

.login-wrapper .overlay .login-box .forget-pass {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #2093cf;
  margin-bottom: 10px;
}

.login-wrapper .overlay .login-box p {
  color: #707070;
}

.login-wrapper .overlay .login-box p a {
  color: #2093cf;
}

.login-wrapper .overlay .login-box .account-type {
  max-width: 300px;
  width: 100%;
  border-radius: 5px;
  background: rgba(32, 147, 207, 0.1);
  margin: 0 auto 20px auto;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-wrapper .overlay .login-box .account-type button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 40px;
  border-radius: 5px;
  background: none;
  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;
  color: #2093cf;
  font-weight: 500;
  font-size: 14px;
}

.login-wrapper .overlay .login-box .account-type button.active {
  background: #2093cf;
  color: #fff;
}

.login-wrapper .overlay .login-box .account-type button:last-child {
  margin-left: 10px;
}

.pack-item {
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.03), 0 4px 8px rgba(0, 0, 0, 0.03), 0 8px 16px rgba(0, 0, 0, 0.03), 0 16px 32px rgba(0, 0, 0, 0.03), 0 32px 64px rgba(0, 0, 0, 0.03);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.03), 0 4px 8px rgba(0, 0, 0, 0.03), 0 8px 16px rgba(0, 0, 0, 0.03), 0 16px 32px rgba(0, 0, 0, 0.03), 0 32px 64px rgba(0, 0, 0, 0.03);
  padding: 20px 0;
  position: relative;
  background: #fff;
}

.pack-item.popular {
  background: -webkit-gradient(linear, right top, left top, from(#32a8e7), to(#157db4));
  background: linear-gradient(to left, #32a8e7, #157db4);
}

.pack-item.popular .head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pack-item.popular .head::after {
  background: #fff;
}

.pack-item.popular .head .icon {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.pack-item.popular .head strong {
  color: #fff;
}

.pack-item.popular .head span {
  color: rgba(255, 255, 255, 0.8);
}

.pack-item.popular ul {
  border-color: rgba(255, 255, 255, 0.4);
}

.pack-item.popular ul li {
  color: #fff;
}

.pack-item.popular ul li span {
  background: #fff;
  color: #2093cf;
}

.pack-item.popular .pricing {
  background: #fff;
}

.pack-item.popular .pricing .old-price {
  color: #707070;
}

.pack-item.popular .pricing .current-price {
  color: #2093cf;
}

.pack-item.popular .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.pack-item.popular .pricing .current-price span {
  color: #707070;
}

.pack-item::before {
  content: "";
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(#32a8e7), to(#157db4));
  background: linear-gradient(to left, #32a8e7, #157db4);
  position: absolute;
  top: -4px;
  left: 0;
}

.pack-item .head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(32, 147, 207, 0.4);
  padding: 0 20px 15px 20px;
  position: relative;
}

.pack-item .head::after {
  width: 54px;
  height: 2px;
  position: absolute;
  content: "";
  left: 20px;
  bottom: -1px;
  background: #2093cf;
}

.pack-item .head .icon {
  margin-right: 15px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  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-size: 26px;
  color: #2093cf;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: 1px solid rgba(32, 147, 207, 0.4);
}

.pack-item .head strong {
  display: block;
  font-size: 18px;
  color: #2093cf;
}

.pack-item .head span {
  color: #707070;
  font-weight: 500;
}

.pack-item ul {
  padding: 0 20px;
  border-bottom: 1px solid rgba(32, 147, 207, 0.4);
  padding-bottom: 15px;
}

.pack-item ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  color: #707070;
  font-weight: 600;
}

.pack-item ul li span {
  width: 30px;
  height: 30px;
  background: #2093cf;
  color: #fff;
  border-radius: 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-right: 15px;
}

.pack-item .pricing {
  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;
  width: 90%;
  margin-left: 5%;
  margin-top: 15px;
  padding: 16px;
  border-radius: 10px;
  background: #2093cf;
}

.pack-item .pricing .old-price {
  font-size: 15px;
  color: #f4f4f4;
}

.pack-item .pricing .old-price strong {
  text-decoration: line-through;
}

.pack-item .pricing .current-price {
  color: #fff;
}

.pack-item .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.pack-item .pricing .current-price span {
  color: #f4f4f4;
}

.pack-item a {
  width: 90%;
  margin-left: 5%;
  margin-top: 15px;
}

.blog-item {
  padding: 50px 0;
}

.blog-item.reverse .blog-text {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: end;
}

.blog-item .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;
}

.blog-item .blog-text h3 {
  font-size: 26px;
  font-weight: 600;
  color: #2f314b;
  margin-bottom: 10px;
  display: block;
}

.blog-item .blog-text p {
  color: #707070;
  font-size: 16px;
  line-height: 1.6;
  display: block;
  max-width: 95%;
}

.blog-item .blog-img {
  width: 90%;
  height: 100%;
  border-radius: 30px;
  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;
}

.blog-item .blog-img img {
  max-width: 400px;
  height: auto;
}

.h-features-banner {
  background-image: url(../images3/vds-banner.png);
  background-size: 105%;
  background-position: center center;
  margin: 60px 0;
}

.h-features-banner .overlay {
  padding: 60px 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 147, 207, 0.4);
}

.h-features-banner .h-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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
  border: 2px solid #eee;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
}

.h-features-banner .h-feature-item .icon {
  font-size: 40px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #2093cf;
  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: 10px;
}

.h-features-banner .h-feature-item strong {
  font-size: 18px;
  color: #151b2c;
  display: block;
  margin-bottom: 5px;
}

.h-features-banner .h-feature-item p {
  color: #707070;
}

.red-bg {
  background: #cf2060 !important;
}

.green-bg {
  background: #20cfa5 !important;
}

.purple-bg {
  background: #8320cf !important;
}

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

.c-features .cf-item {
  width: 100%;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-features .cf-item span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  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;
  background: #2093cf;
  font-size: 50px;
  color: #fff;
  margin-right: 20px;
}

.c-features .cf-item strong {
  display: block;
  font-size: 20px;
  color: #151b2c;
  margin-bottom: 5px;
}

.c-features .cf-item p {
  font-size: 15px;
  color: #707070;
  display: block;
  max-width: 90%;
}

.c-features .cf-image {
  width: 100%;
}

.c-features .cf-image img {
  max-width: 100%;
  height: auto;
}

.h-pack-item {
  width: 100%;
  border-radius: 20px;
  padding: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
  background: linear-gradient(to right, #2093cf, #157db4);
  -webkit-box-shadow: 0px 4px 15px rgba(32, 147, 207, 0.5);
          box-shadow: 0px 4px 15px rgba(32, 147, 207, 0.5);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.h-pack-item:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.h-pack-item > a {
  width: 100%;
  height: 60px;
  border-radius: 0 0 20px 20px;
  border: 2px solid #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;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.h-pack-item .head-pack {
  padding: 12px 16px;
  color: #fff;
}

.h-pack-item .head-pack strong {
  font-size: 22px;
}

.h-pack-item .head-pack p {
  font-size: 16px;
  margin-bottom: 0;
}

.h-pack-item .inner-pack {
  width: 100%;
  border-radius: 20px 20px 0 0;
  background: #fff;
  padding: 16px;
}

.h-pack-item .inner-pack ul li {
  padding: 12px 8px;
  color: #151b2c;
  font-weight: 600;
}

.h-pack-item .inner-pack ul li span {
  color: #20a5cf;
  font-size: 18px;
  margin-right: 10px;
}

.h-pack-item .inner-pack .pricing {
  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;
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border-radius: 20px;
}

.h-pack-item .inner-pack .pricing .old-price {
  font-size: 15px;
  color: #667093;
}

.h-pack-item .inner-pack .pricing .old-price strong {
  text-decoration: line-through;
}

.h-pack-item .inner-pack .pricing .current-price {
  color: #00104b;
}

.h-pack-item .inner-pack .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.h-pack-item .inner-pack .pricing .current-price span {
  color: #00104b;
}

.specs-table-wrapper {
  background-image: url(../images3/hosting-bg.png);
  background-size: 105%;
  background-position: center center;
  margin: 60px 0;
}

.specs-table-wrapper .overlay {
  padding: 60px 0;
  width: 100%;
  height: 100%;
  background: rgba(32, 147, 207, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.specs-table-wrapper .title {
  text-align: center;
  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: 30px;
}

.specs-table-wrapper .title .line {
  background: #fff;
}

.specs-table-wrapper .title h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.specs-table {
  background: -webkit-gradient(linear, left top, right top, from(#1d335a), to(#0d1c38));
  background: linear-gradient(to right, #1d335a, #0d1c38);
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  color: #fff;
}

.specs-table .head {
  background: rgba(0, 0, 0, 0.13);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 12px;
  min-height: 70px;
  margin-bottom: 12px;
}

.specs-table .head h4 {
  color: #2093cf;
  font-weight: 600;
  margin-bottom: 0;
}

.specs-table .body {
  padding: 12px;
}

.specs-table .body ul.spec-f li:nth-child(even) {
  background: rgba(0, 0, 0, 0.13);
  border-radius: 10px;
}

.specs-table .body ul li {
  padding: 8px 0;
  font-size: 15px;
  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;
}

.specs-table .body ul li a {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background: #2093cf;
  margin-top: 10px;
  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;
}

.specs-table .body ul li .yes {
  color: #20cfa5;
}

.specs-table .body ul li .no {
  color: #cf2060;
}

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

.service {
  margin-bottom: 40px;
  padding-right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service .icon {
  min-width: 64px;
  max-width: 64px;
  margin-right: 20px;
}

.ssl-tab-buttons {
  width: 100%;
  height: 65px;
  border-radius: 10px;
  background: rgba(32, 147, 207, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.ssl-tab-buttons button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 5px;
  height: 55px;
  border-radius: 10px;
  border: none;
  background: none;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.ssl-tab-buttons button:hover, .ssl-tab-buttons button.active {
  background: #2093cf;
}

.ssl-item {
  width: 100%;
  padding: 16px;
  background: rgba(32, 147, 207, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
}

.ssl-item .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;
}

.ssl-item .head .pricing {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: center;
}

.ssl-item .head .pricing .old-price {
  font-size: 15px;
  color: #707070;
}

.ssl-item .head .pricing .old-price strong {
  text-decoration: line-through;
}

.ssl-item .head .pricing .current-price {
  color: #2093cf;
}

.ssl-item .head .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.ssl-item .head .pricing .current-price span {
  color: #707070;
}

.ssl-item ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px 0;
}

.ssl-item ul li {
  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: 10px 5px;
  min-width: 50%;
  max-width: 50%;
  border-right: 1px solid rgba(32, 147, 207, 0.3);
  border-bottom: 1px solid rgba(32, 147, 207, 0.3);
}

.ssl-item ul li:nth-child(2n) {
  border-right: 0;
}

.ssl-item ul li:nth-last-child(2) {
  border-bottom: 0;
}

.ssl-item ul li:nth-last-child(1) {
  border-bottom: 0;
}

.ssl-item ul li span {
  color: #707070;
}

.ssl-item ul li strong {
  color: #0d1c38;
}

.host-paket-box {
  max-width: 720px;
  width: 100%;
  border-radius: 10px;
  padding: 20px 30px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #2d2d2d;
  font-weight: 600;
  display: none;
  position: relative;
}

.host-paket-box .paket-logo {
  z-index: 10;
  left: -12%;
  position: absolute;
}

.host-paket-box .paket-logo.v2 {
  left: -5%;
}

.host-paket-box.show-paket {
  display: block;
}

.host-paket-box.lightpurple-paket .pricing a {
  background-color: #5f2eee;
}

.host-paket-box.yellow-paket .pricing span {
  background-color: #c88e05;
}

.host-paket-box.yellow-paket .pricing a {
  background-color: #fbb100;
}

.host-paket-box.red-paket .pricing span {
  background-color: #460e0e;
}

.host-paket-box.red-paket .pricing a {
  background-color: #990a32;
}

.host-paket-box.light-red-paket .pricing span {
  background-color: #8b1117;
}

.host-paket-box.light-red-paket .pricing a {
  background-color: #ca121b;
}

.host-paket-box .text .title {
  font-size: 60px;
  color: #2d2d2d;
  margin-bottom: 10px;
  width: 100%;
}

.host-paket-box .text .title span {
  color: #a8a8a8;
}

.host-paket-box .pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -30px;
}

.host-paket-box .pricing span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 125px;
  height: 140px;
  background-color: #25285a;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  line-height: 1;
  color: #fff;
  font-size: 18px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 500;
}

.host-paket-box .pricing a {
  width: 115px;
  height: 140px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.2;
  text-align: center;
  -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: 18px;
  margin-left: -50px;
  background-color: #008afb;
}

.host-paketler-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.host-paketler-wrap.no-flex {
  display: block;
}

.purple-text {
  color: #25285a !important;
}

.host-paket {
  padding: 20px;
  background-color: #f3f3f3;
  border-radius: 10px;
  border: 6px solid #008afb;
  max-width: 286px;
  width: 100%;
}

.host-paket:nth-child(2) {
  margin-left: -6px;
  z-index: 2;
}

.host-paket:nth-child(3) {
  margin-left: -6px;
  z-index: 3;
}

.host-paket:nth-child(4) {
  margin-left: -6px;
  z-index: 2;
}

.host-paket.purple {
  border: 6px solid #5f2eee;
}

.host-paket.purple .pricing-box .cell:last-child {
  background-color: #5f2eee;
}

.host-paket.purple .pricing-box .cell:last-child::before {
  border-right: 50px solid #5f2eee;
}

.host-paket.purple .sepete-ekle {
  background-color: #5f2eee;
}

.host-paket.darkpurple {
  border: 6px solid #25285a;
}

.host-paket.darkpurple .pricing-box .cell:last-child {
  background-color: #25285a;
}

.host-paket.darkpurple .pricing-box .cell:last-child::before {
  border-right: 50px solid #25285a;
}

.host-paket.darkpurple .sepete-ekle {
  background-color: #25285a;
}

.host-paket.disabled {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.host-paket.disabled ul li.green {
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
}

.host-paket.grey-paket {
  border: 6px solid #757575;
}

.host-paket.grey-paket .pricing-box .cell:last-child {
  background-color: #757575;
}

.host-paket.grey-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #757575;
}

.host-paket.grey-paket .grey {
  color: #757575;
}

.host-paket.grey-paket .sepete-ekle {
  background-color: #757575;
}

.host-paket.blue-paket {
  margin-left: 0 !important;
  max-width: 280px;
  border: none;
  border-radius: 30px;
}

.host-paket.blue-paket .title {
  font-size: 32px;
}

.host-paket.blue-paket .pricing-box .cell:last-child {
  background-color: #0aacba;
}

.host-paket.blue-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #0aacba;
}

.host-paket.blue-paket ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.host-paket.blue-paket ul li:last-child {
  border-bottom: 0;
}

.host-paket.blue-paket ul li.grey {
  color: #0aacba !important;
}

.host-paket.blue-paket ul li.blue {
  color: #0aacba !important;
}

.host-paket.blue-paket .sepete-ekle {
  background-color: #0aacba;
}

.host-paket.vds-paket {
  max-width: 210px !important;
  width: 210px !important;
  border-radius: 15px !important;
  border: 6px solid #5f2eee !important;
  padding: 10px;
}

.host-paket.vds-paket .title {
  font-size: 16px !important;
}

.host-paket.vds-paket > p {
  font-size: 12px !important;
}

.host-paket.vds-paket .host-spec {
  padding: 0 !important;
}

.host-paket.vds-paket .pricing-box .cell {
  font-size: 12px;
}

.host-paket.vds-paket .pricing-box .cell b {
  font-size: 22px !important;
}

.host-paket.vds-paket .sepete-ekle {
  height: 42px !important;
}

.host-paket.lightpurple-paket {
  margin-left: 0 !important;
  max-width: 280px;
  border: none;
  border-radius: 30px;
}

.host-paket.lightpurple-paket .title {
  font-size: 32px;
}

.host-paket.lightpurple-paket .pricing-box .cell:last-child {
  background-color: #5f2eee;
}

.host-paket.lightpurple-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #5f2eee;
}

.host-paket.lightpurple-paket ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.host-paket.lightpurple-paket ul li:last-child {
  border-bottom: 0;
}

.host-paket.lightpurple-paket .sepete-ekle {
  background-color: #5f2eee;
}

.host-paket.game-paket {
  margin-left: 0 !important;
  max-width: 280px;
  border: none;
  border-radius: 10px;
  border: 6px solid #008afb;
}

.host-paket.game-paket .pricing-box {
  z-index: 22;
  position: relative;
}

.host-paket.game-paket .game-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.host-paket.game-paket .game-title .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2d2d2d;
  margin-left: 10px;
}

.host-paket.game-paket .game-title .text p {
  font-size: 14px;
  color: #858585;
}

.host-paket.game-paket .game-title .text span {
  font-size: 20px;
}

.host-paket.game-paket .game-title img {
  /* position: absolute;
  bottom: 0%;
  left: -24%; */
  z-index: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  height: auto;
}

.host-paket.game-paket.rust1 {
  border: 6px solid #5d5146;
}

.host-paket.game-paket.rust1 .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.rust1 .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.rust1 .pricing-box .cell:last-child {
  background-color: #5d5146;
}

.host-paket.game-paket.rust1 .pricing-box .cell:last-child::before {
  border-right: 50px solid #5d5146;
}

.host-paket.game-paket.rust1 .sepete-ekle {
  background-color: #5d5146;
}

.host-paket.game-paket.rust2 {
  border: 6px solid #9d0000;
}

.host-paket.game-paket.rust2 .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.rust2 .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.rust2 .pricing-box .cell:last-child {
  background-color: #9d0000;
}

.host-paket.game-paket.rust2 .pricing-box .cell:last-child::before {
  border-right: 50px solid #9d0000;
}

.host-paket.game-paket.rust2 .sepete-ekle {
  background-color: #9d0000;
}

.host-paket.game-paket.rust3 {
  border: 6px solid #2c3521;
}

.host-paket.game-paket.rust3 .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.rust3 .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.rust3 .pricing-box .cell:last-child {
  background-color: #2c3521;
}

.host-paket.game-paket.rust3 .pricing-box .cell:last-child::before {
  border-right: 50px solid #2c3521;
}

.host-paket.game-paket.rust3 .sepete-ekle {
  background-color: #2c3521;
}

.host-paket.game-paket.rust4 {
  border: 6px solid #1b1b1a;
}

.host-paket.game-paket.rust4 .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.rust4 .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.rust4 .pricing-box .cell:last-child {
  background-color: #1b1b1a;
}

.host-paket.game-paket.rust4 .pricing-box .cell:last-child::before {
  border-right: 50px solid #1b1b1a;
}

.host-paket.game-paket.rust4 .sepete-ekle {
  background-color: #1b1b1a;
}

.host-paket.game-paket.green {
  border: 6px solid #2e8504;
}

.host-paket.game-paket.green .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.green .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.green .pricing-box .cell:last-child {
  background-color: #2e8504;
}

.host-paket.game-paket.green .pricing-box .cell:last-child::before {
  border-right: 50px solid #2e8504;
}

.host-paket.game-paket.green .sepete-ekle {
  background-color: #2e8504;
}

.host-paket.game-paket.dark-yellow {
  border: 6px solid #b5ac2d;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell:last-child {
  background-color: #b5ac2d;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell:last-child::before {
  border-right: 50px solid #b5ac2d;
}

.host-paket.game-paket.dark-yellow .sepete-ekle {
  background-color: #b5ac2d;
}

.host-paket.game-paket.turkuvaz {
  border: 6px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child {
  background-color: #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child::before {
  border-right: 50px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .sepete-ekle {
  background-color: #5fa4a3;
}

.host-paket.game-paket.light-green {
  border: 6px solid #31984b;
}

.host-paket.game-paket.light-green .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.light-green .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.light-green .pricing-box .cell:last-child {
  background-color: #31984b;
}

.host-paket.game-paket.light-green .pricing-box .cell:last-child::before {
  border-right: 50px solid #31984b;
}

.host-paket.game-paket.light-green .sepete-ekle {
  background-color: #31984b;
}

.host-paket.game-paket.turkuvaz {
  border: 6px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child {
  background-color: #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child::before {
  border-right: 50px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .sepete-ekle {
  background-color: #5fa4a3;
}

.host-paket.game-paket.dark {
  border: 6px solid #202020;
}

.host-paket.game-paket.dark .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.dark .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.dark .pricing-box .cell:last-child {
  background-color: #202020;
}

.host-paket.game-paket.dark .pricing-box .cell:last-child::before {
  border-right: 50px solid #202020;
}

.host-paket.game-paket.dark .sepete-ekle {
  background-color: #202020;
}

.host-paket.game-paket.red {
  border: 6px solid #9d0000;
}

.host-paket.game-paket.red .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.red .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.red .pricing-box .cell:last-child {
  background-color: #9d0000;
}

.host-paket.game-paket.red .pricing-box .cell:last-child::before {
  border-right: 50px solid #9d0000;
}

.host-paket.game-paket.red .sepete-ekle {
  background-color: #9d0000;
}

.host-paket.game-paket.orange {
  border: 6px solid #ed981f;
}

.host-paket.game-paket.orange .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.orange .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.orange .pricing-box .cell:last-child {
  background-color: #ed981f;
}

.host-paket.game-paket.orange .pricing-box .cell:last-child::before {
  border-right: 50px solid #ed981f;
}

.host-paket.game-paket.orange .sepete-ekle {
  background-color: #ed981f;
}

.host-paket.game-paket.blue {
  border: 6px solid #079fdd;
}

.host-paket.game-paket.blue .pricing-box .cell {
  font-size: 13px;
}

.host-paket.game-paket.blue .pricing-box .cell b {
  font-size: 26px;
  line-height: 1;
}

.host-paket.game-paket.blue .pricing-box .cell:last-child {
  background-color: #079fdd;
}

.host-paket.game-paket.blue .pricing-box .cell:last-child::before {
  border-right: 50px solid #079fdd;
}

.host-paket.game-paket.blue .sepete-ekle {
  background-color: #079fdd;
}

.host-paket.game-paket .pricing-box .cell:last-child {
  background-color: #5f2eee;
}

.host-paket.game-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #5f2eee;
}

.host-paket.game-paket ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.host-paket.game-paket ul li:last-child {
  border-bottom: 0;
}

.host-paket.game-paket .sepete-ekle {
  background-color: #5f2eee;
}

.host-paket.red-paket {
  margin-left: 0 !important;
  max-width: 280px;
  border: none;
  border-radius: 30px;
}

.host-paket.red-paket .title {
  font-size: 32px;
}

.host-paket.red-paket .pricing-box .cell:last-child {
  background-color: #990a32;
}

.host-paket.red-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #990a32;
}

.host-paket.red-paket ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.host-paket.red-paket ul li:last-child {
  border-bottom: 0;
}

.host-paket.red-paket .sepete-ekle {
  background-color: #990a32;
}

.host-paket.yellow-paket {
  margin-left: 0 !important;
  max-width: 280px;
  border: none;
  border-radius: 30px;
}

.host-paket.yellow-paket .title {
  font-size: 32px;
}

.host-paket.yellow-paket .pricing-box .cell:last-child {
  background-color: #fbb100;
}

.host-paket.yellow-paket .pricing-box .cell:last-child::before {
  border-right: 50px solid #fbb100;
}

.host-paket.yellow-paket ul li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.host-paket.yellow-paket ul li:last-child {
  border-bottom: 0;
}

.host-paket.yellow-paket .sepete-ekle {
  background-color: #fbb100;
}

.host-paket .title {
  font-size: 23px;
  color: #2d2d2d;
}

.host-paket > p {
  color: #858585;
  font-size: 16px;
}

.host-paket ul li {
  color: #2d2d2d;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 5px;
}

.host-paket ul li.green {
  color: #29a71a;
}

.host-paket ul li.grey {
  color: #008afb;
}

.host-paket ul li.blue {
  color: #008afb;
}

.host-paket ul li.purple {
  color: #5f2eee;
}

.host-paket ul li.darkpurple {
  color: #25285a;
}

.host-paket .sepete-ekle {
  width: 100%;
  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;
  border-radius: 10px;
  height: 60px;
  background-color: #008afb;
  margin-top: 10px;
}

.host-paket .pricing-box {
  background-color: #3d3d3d;
  width: 100%;
  height: 75px;
  overflow: hidden;
  border-radius: 7px !important;
  margin: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.host-paket .pricing-box .cell {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 75px;
  color: #fff;
  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;
}

.host-paket .pricing-box .cell b {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.host-paket .pricing-box .cell span {
  text-decoration: line-through;
}

.host-paket .pricing-box .cell:first-child {
  margin-right: 30px;
}

.host-paket .pricing-box .cell:last-child {
  -webkit-box-flex: 1.4;
  -ms-flex: 1.4;
  flex: 1.4;
  position: relative;
  background-color: #008afb;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.host-paket .pricing-box .cell:last-child::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 75px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 50px solid #008afb;
  position: absolute;
  top: 0;
  left: -50px;
}

.page-in-links {
  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: 10px;
  height: 100%;
}

.host-spec-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 30px;
}

.host-spec-wrap .host-spec-mini {
  margin: 0 !important;
}

.host-spec {
  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;
  color: #2d2d2d;
  font-size: 13px;
  padding: 10px;
  font-weight: 700;
}

.host-spec span {
  font-size: 36px;
  color: #2d2d2d;
}

.host-spec.host-spec-mini {
  padding: 0 !important;
  font-size: 11px;
}

.host-spec.host-spec-mini span {
  font-size: 30px;
}

.host-paket.vds-paket .host-spec {
  padding: 0 !important;
}

.call-us-wrap {
  width: 100%;
  background-image: url(../images3/callus.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.call-us-wrap .overlay {
  padding: 40px 0;
  background: rgba(47, 49, 75, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.call-us-wrap .overlay .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;
  text-align: center;
}

.call-us-wrap .overlay .container h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 10px;
}

.call-us-wrap .overlay .container h3 b {
  font-size: 32px;
}

.call-us-wrap .overlay .container p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.call-us-wrap .overlay .container ul {
  max-width: 700px;
  -webkit-column-count: 3;
          column-count: 3;
  margin-bottom: 40px;
}

.call-us-wrap .overlay .container ul li {
  color: #fff;
  background: #2093cf;
  padding: 2px 4px;
  border-radius: 4px;
}

.host-slider-item {
  padding: 22px 0;
  margin-right: 15px;
}

.host-arrow {
  position: absolute;
  width: 42px;
  height: 52px;
  border-radius: 10px;
  background: #2093cf;
  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-size: 20px;
  border: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.host-arrow.prev {
  left: -60px;
}

.host-arrow.next {
  right: -60px;
}

.blog-slider-wrap {
  position: relative;
}

.blog-slider-wrap .blog-arrow {
  position: absolute;
  width: 42px;
  height: 52px;
  border-radius: 10px;
  background: #2093cf;
  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-size: 20px;
  border: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blog-slider-wrap .blog-arrow.prev {
  left: -60px;
}

.blog-slider-wrap .blog-arrow.next {
  right: -60px;
}


.h-blog-item {
  max-width: 100%;
  width: 100%;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(32, 147, 207, 0.5);
  border-radius: 5px;
  background-color: #ffffff;
  padding: 12px;
  margin: 0 10px;
}

.h-blog-item .image {
  width: 100%;
  height: 224px;
  overflow: hidden;
  border-radius: 5px;
}

.h-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.h-blog-item .info {
  padding: 12px 0 6px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.h-blog-item .info span {
  color: #707070;
  font-size: 13px;
  display: block;
  margin-right: 10px;
}

.h-blog-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2093cf;
}

.h-blog-item p {
  color: #707070;
}

.h-blog-item a {
  width: 100%;
}


.h-specs-table {
  padding: 60px 0;
}

.h-specs-table .table-item {
  width: 100%;
}

.h-specs-table .table-item table {
  width: 100%;
}

.h-specs-table .table-item table thead tr th {
  background-color: #2093cf;
  border: #ccc 1px solid;
  border-top: 0;
  font-size: 18px;
  padding: 14px 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.h-specs-table .table-item table thead tr th:first-child {
  background: none;
  border: none;
  width: 400px;
  max-width: 400px !important;
}

.h-specs-table .table-item table tbody tr:nth-child(even) {
  background-color: #f3f3f3;
}

.h-specs-table .table-item table tbody tr:last-child {
  background: #fff;
}

.h-specs-table .table-item table tbody tr td {
  border-left: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  color: #2a363f;
  font-weight: 500;
  color: #0d1c38;
  padding: 14px 10px;
  text-align: center;
}

.h-specs-table .table-item table tbody tr td:first-child {
  text-align: left;
}

.h-specs-table .table-item table tbody tr td .price-box {
  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;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing {
  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;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing .old-price {
  font-size: 15px;
  color: #707070;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing .old-price strong {
  text-decoration: line-through;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing .current-price {
  color: #2093cf;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing .current-price b {
  font-size: 30px;
  font-weight: 700;
}

.h-specs-table .table-item table tbody tr td .price-box .pricing .current-price span {
  color: #707070;
}


/******************** RESPONSIVE *******************/
@media (max-width: 1024px) {
  .top-bar .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  .top-bar .container .left {
    display: none;
  }
  .top-bar .container a {
    color: #fff;
    font-size: 14px;
    margin-right: 15px;
  }
  header {
    width: 100%;
    height: 100px;
  }
  header .container {
    height: 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;
  }
  header .container .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .container .header-buttons {
    display: none;
  }
  header .container nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 99999 !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: .3s all;
    transition: .3s all;
    /* ul {
        display: flex;
        align-items: center;
        & > li {
          height: 100px;
          display: flex;
          align-items: center;
          & > a {
            font-size: 16px;
            color: #707070;
            font-weight: 600;
            padding: 0 15px;
          }

          &:hover {
            & > a {
              color: $blue;
            }
            .mega-menu {
              opacity: 1;
              pointer-events: all;
            }
          }

          .mega-menu {
            position: fixed;
            top: 140px;
            left: 0;
            right: 0;
            background: #fff;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.01), 0 4px 8px rgba(0, 0, 0, 0.01),
              0 8px 16px rgba(0, 0, 0, 0.01), 0 16px 32px rgba(0, 0, 0, 0.01), 0 32px 64px rgba(0, 0, 0, 0.01);
            width: 100%;
            padding: 24px;
            border-top: 1px solid rgba(#707070, 0.1);
            opacity: 0;
            transition: 0.3s all;
            pointer-events: none;
            z-index: 9999;

            .mega-menu-banner {
              width: 100%;
              padding: 10px 20px;
              border-radius: 10px;
              background: linear-gradient(to right, #2093cf, #157db4);
              display: flex;
              align-items: center;
              justify-content: space-between;
              margin-top: 20px;
              p {
                margin-bottom: 0 !important;
                color: #fff;
                font-size: 18px;
                font-weight: 600;
              }
              a {
                background: #fff;
                width: 160px;
                color: $blue;
              }
            }

            .row {
              width: 100%;
            }
            a {
              width: 100%;
              padding: 12px;
              //background: rgba(#707070, 0.1);
              display: flex;
              flex-direction: column;
              align-items: center;
              height: 100%;
              border-radius: 10px;
              border: 1px solid $blue;
              box-shadow: 0px 0px 0px 4px rgba($blue, 0.1);
              transition: 0.2s all;
              &:hover {
                background: $blue;
                .title {
                  strong {
                    color: #fff;
                  }
                  .icon {
                    background: #fff;
                    color: $blue;
                  }
                }
                p {
                  color: #fff;
                }
              }
              .title {
                width: 100%;
                display: flex;
                align-items: center;
                flex-direction: column;
                margin-bottom: 10px;
                strong {
                  margin-top: 10px;
                  font-size: 18px;
                  font-weight: 700;
                  color: #0d1c38;
                }
                .icon {
                  width: 50px;
                  height: 50px;
                  border-radius: 10px;
                  background: $blue;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  color: #fff;
                  font-size: 24px;
                }
              }
              span {
                padding: 0 10px;
                height: 30px;
                background: $blue;
                color: #fff;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: center;
              }
              p {
                color: #707070;
                text-align: center;
                line-height: 1.6;
              }
            }
          }
        }
      } */
  }
  header .container nav.show {
    opacity: 1;
    pointer-events: all;
  }
  header .container nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 20px;
    position: relative;
    z-index: 999999;
  }
  header .container nav ul > li {
    width: 100%;
    min-height: none !important;
    height: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .container nav ul > li > a {
    width: 100%;
    border-bottom: 1px solid #eee;
    height: 60px;
    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;
  }
  header .container nav ul > li .mega-menu {
    position: static !important;
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    pointer-events: all;
    z-index: 99999;
    padding: 10px 0;
    display: none;
  }
  header .container nav ul > li .mega-menu .mega-menu-banner {
    display: none;
  }
  header .container nav ul > li .mega-menu a {
    padding: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 0;
  }
  header .container nav ul > li .mega-menu a .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 0;
    padding: 0 10px;
  }
  header .container nav ul > li .mega-menu a .title strong {
    font-size: 15px;
    margin-top: 0;
    font-weight: 500;
  }
  header .container nav ul > li .mega-menu a .title .icon {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  header .container nav ul > li .mega-menu a p {
    display: none;
  }
  header .container nav ul > li .mega-menu a span {
    display: none;
  }
  .hero-wrapper {
    width: 100%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
    background: url(../images/herobg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
  }
  .hero-wrapper .arrow-btn {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff;
    color: #2093cf;
    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-size: 18px;
    border: none;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .hero-wrapper .arrow-btn.prev {
    left: 20px;
  }
  .hero-wrapper .arrow-btn.next {
    right: 20px;
  }
  .hero-wrapper.auto-height {
    height: auto;
  }
  .hero-wrapper.auto-height .hero-slider .slider-item {
    height: auto;
  }
  .hero-wrapper.auto-height .hero-slider .slider-item .hero-text {
    height: auto;
  }
  .hero-wrapper.auto-height .hero-slider .slider-item .hero-img {
    height: auto;
  }
  .hero-wrapper .overlay {
    width: 100%;
    height: 100% !important;
    padding-bottom: 20px;
    background: rgba(47, 49, 75, 0.8);
  }
  .hero-wrapper .hero-slider {
    height: 100%;
  }
  .hero-wrapper .hero-slider .slick-dots {
    left: 0 !important;
    bottom: -40px !important;
  }
  .hero-wrapper .hero-slider .slider-item {
    height: 100%;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .hero-wrapper .hero-slider .slider-item .hero-text {
    height: 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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
    padding: 20px;
  }
  .hero-wrapper .hero-slider .slider-item .hero-text ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-wrapper .hero-slider .slider-item .hero-text ul li {
    padding-right: 10px;
    font-size: 14px;
  }
  .hero-wrapper .hero-slider .slider-item .hero-text .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .hero-wrapper .hero-slider .slider-item .hero-text p {
    color: rgba(255, 255, 255, 0.8);
  }
  .hero-wrapper .hero-slider .slider-item .hero-text a {
    padding: 0 20px;
    height: 45px;
    border-radius: 5px;
    color: #2093cf;
    background: #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: 500;
    margin-top: 15px;
  }
  .hero-wrapper .hero-slider .slider-item .hero-img {
    width: 100%;
    height: 100%;
    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: 20px 0;
  }
  .hero-wrapper .hero-slider .slider-item .hero-img img {
    max-width: 90%;
    height: auto;
    width: 100%;
    max-height: none;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .section-title .title {
    color: #2093cf;
    font-size: 25px;
  }
  .section-title p {
    color: #707070;
    font-size: 15px;
  }
  .search-wrap {
    width: 100%;
    max-width: 900px;
    height: 70px;
    border: 1px solid #eee;
    margin: 0 auto;
    border-radius: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
    padding: 0 10px;
    -webkit-box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.13);
            box-shadow: 0px 0px 96px rgba(0, 0, 0, 0.13);
  }
  .search-wrap input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 70px;
    padding: 0 15px;
    font-size: 17px;
    border: none;
    height: 70px;
    background: #fff;
  }
  .search-wrap input::-webkit-input-placeholder {
    color: #707070;
    letter-spacing: 0.5px;
  }
  .search-wrap input:-ms-input-placeholder {
    color: #707070;
    letter-spacing: 0.5px;
  }
  .search-wrap input::-ms-input-placeholder {
    color: #707070;
    letter-spacing: 0.5px;
  }
  .search-wrap input::placeholder {
    color: #707070;
    letter-spacing: 0.5px;
  }
  .search-wrap button {
    padding: 0 15px;
    border: 0;
    font-size: 0;
  }
  .search-wrap button .fa-search {
    font-size: 20px;
  }
  .home-domain {
    padding: 50px 0;
  }
  .home-domain .pack-buttons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home-domain .pack-buttons a {
    min-width: 48%;
    width: 48%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 60px;
    margin: 5px 1%;
    background: -webkit-gradient(linear, left top, right top, from(#2093cf), to(#157db4));
    background: linear-gradient(to right, #2093cf, #157db4);
    color: #fff;
    border-radius: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
  }
  .h-pack {
    margin-bottom: 50px;
  }
  .main-btn {
    width: auto;
    height: 45px;
    padding: 0 20px;
    border-radius: 10px;
    background: #2093cf;
    color: #fff;
    font-weight: 600;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 15px;
  }
  .main-btn.border-btn {
    border: 1px solid #2093cf;
    color: #2093cf;
    background: #fff;
  }
  .host-arrow,
  .blog-arrow {
    display: none !important;
  }
  .host-wrapper {
    padding: 50px 0;
  }
  .page-box {
    margin-top: -100px;
    background: #fff;
    z-index: 99;
    padding: 30px 20px;
    border-radius: 20px;
    position: relative;
    -webkit-box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.3);
            box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.3);
  }
  .blog-item {
    padding: 50px 0;
  }
  .blog-item .row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .blog-item.reverse .row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .blog-item.reverse .blog-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: start;
  }
  .blog-item .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;
    padding-top: 20px;
  }
  .blog-item .blog-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2f314b;
    margin-bottom: 10px;
    display: block;
  }
  .blog-item .blog-text p {
    color: #707070;
    font-size: 16px;
    line-height: 1.6;
    display: block;
    max-width: 100%;
  }
  .blog-item .blog-img {
    width: 90%;
    height: 100%;
    border-radius: 30px;
    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;
  }
  .blog-item .blog-img img {
    max-width: 90%;
    height: auto;
  }
  .faq-img {
    margin-bottom: 30px;
  }
  .faq-img img {
    max-width: 90%;
  }
  .call-us-wrap .overlay {
    padding: 40px 0;
    background: rgba(47, 49, 75, 0.6);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
  .call-us-wrap .overlay .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;
    text-align: center;
  }
  .call-us-wrap .overlay .container h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
  }
  .call-us-wrap .overlay .container h3 b {
    font-size: 28px;
  }
  .call-us-wrap .overlay .container p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
  }
  .call-us-wrap .overlay .container ul {
    max-width: 700px;
    -webkit-column-count: 1;
            column-count: 1;
    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;
    margin-bottom: 40px;
  }
  .call-us-wrap .overlay .container ul li {
    margin: 3px;
    color: #fff;
    width: 100%;
    max-width: 200px;
    background: #2093cf;
    padding: 5px 4px;
    border-radius: 4px;
  }
  footer {
    background: #151b2c;
    border-top: 10px solid #2093cf;
  }
  footer .footer-links {
    padding: 30px 0;
  }
  footer .footer-links .links {
    margin-bottom: 20px;
  }
  footer .footer-links .links strong {
    display: block;
    color: #2093cf;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
  }
  footer .footer-links .links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-size: 15px;
    margin-bottom: 6px;
  }
  footer .footer-links .links a::before {
    margin-right: 6px;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2093cf;
  }
  footer .footer-mid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-mid .left {
    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-mid .left .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  }
  footer .footer-mid .left .socials a {
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 18px;
    background: #2093cf;
    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;
  }
  footer .footer-mid .right {
    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;
  }
  footer .footer-mid .right .ri {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 70%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0px;
    margin: 10px 0 !important;
    text-align: center;
  }
  footer .footer-mid .right .ri .icon {
    font-size: 50px;
    margin-right: 15px;
  }
  footer .footer-mid .right .ri strong {
    display: block;
    color: #fff !important;
  }
  footer .footer-mid .right .ri span {
    display: block;
    color: #fff !important;
  }
  footer .footer-bottom {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10px;
  }
  .h-pack-item {
    margin-bottom: 20px;
  }
  .h-specs-table .table-item {
    width: 100%;
    overflow-x: auto;
  }
  .h-specs-table .table-item table {
    min-width: 1200px;
  }
  .dedicated-content {
    padding: 8px;
    width: 100%;
    background: #fff;
    margin-top: 15px;
    -webkit-box-shadow: 0px 5px 16px rgba(29, 29, 29, 0.3);
            box-shadow: 0px 5px 16px rgba(29, 29, 29, 0.3);
    border-radius: 10px;
    display: none;
  }
  .dedicated-content ul {
    width: 100%;
    -webkit-column-count: 2;
            column-count: 2;
  }
  .dedicated-content ul li {
    padding: 8px 0;
    color: #707070;
  }
  .dedicated-content ul li .fa-check-circle {
    margin-right: 3px;
    color: #2093cf;
  }
  .dedicated-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    padding: 12px;
    background: #2093cf;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
            box-shadow: 0px 0px 0px 5px rgba(32, 147, 207, 0.4);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dedicated-item:hover {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  .dedicated-item.popular {
    border: 2px solid #2093cf;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
            box-shadow: 0px 0px 0px 4px rgba(32, 147, 207, 0.1);
  }
  .dedicated-item.popular::before {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: -50px;
    -webkit-transform: translateY(-50%) rotate(-90deg);
            transform: translateY(-50%) rotate(-90deg);
    height: 22px;
    border-radius: 5px 5px 0 0;
    background: #2093cf;
    color: #fff;
    font-size: 10px;
    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;
    font-weight: 600;
  }
  .dedicated-item .d-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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
    width: 100%;
  }
  .dedicated-item .d-cell .see-ul {
    font-size: 12px;
    color: #0d1c38;
    padding: 5px 0;
    display: block;
  }
  .dedicated-item .d-cell .see-ul:hover {
    text-decoration: underline;
  }
  .dedicated-item .d-cell:first-child {
    background: #fff;
    border-radius: 10px;
    margin-left: 12px;
    margin-right: 12px;
    border-right: 0;
    color: #2093cf;
  }
  .dedicated-item .d-cell:first-child .name {
    color: #2093cf;
  }
  .dedicated-item .d-cell:first-child span {
    color: #2093cf;
  }
  .dedicated-item .d-cell:last-child {
    max-width: 150px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 0;
  }
  .dedicated-item .d-cell:nth-last-child(2) {
    border-right: 0;
  }
  .dedicated-item .d-cell:nth-last-child(3) {
    border-right: 0;
  }
  .dedicated-item .d-cell .add-cart {
    margin-top: 10px;
    width: 100%;
    height: 36px;
    font-size: 13px;
    border-radius: 5px;
    background: #8320cf;
    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;
  }
  .dedicated-item .d-cell .name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
  }
  .dedicated-item .d-cell span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
  }
  .dedicated-item .d-cell .icon {
    font-size: 18px;
    color: #fff;
  }
  .dedicated-item .d-cell small {
    font-size: 13px;
    color: #f4f4f4;
  }
  .dedicated-item .d-cell .pricing {
    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;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    padding: 5px 0;
    border-radius: 10px;
  }
  .dedicated-item .d-cell .pricing .old-price {
    font-size: 13px;
    color: #f4f4f4;
  }
  .dedicated-item .d-cell .pricing .old-price strong {
    text-decoration: line-through;
  }
  .dedicated-item .d-cell .pricing .current-price {
    color: #fff;
  }
  .dedicated-item .d-cell .pricing .current-price b {
    font-size: 20px;
    font-weight: 700;
  }
  .dedicated-item .d-cell .pricing .current-price span {
    font-size: 13px;
    color: #f4f4f4;
  }
  .host-paket.game-paket {
    max-width: 100%;
    margin-bottom: 10px;
  }
  .login-wrapper {
    width: 100%;
    background-image: url(../images/loginbg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .login-wrapper .row > div {
    padding: 0;
  }
  .login-wrapper .overlay {
    padding: 50px 0;
    background: rgba(47, 49, 75, 0.6);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
  .login-wrapper .overlay .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .login-wrapper .overlay .login-box {
    max-width: 560px;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
            box-shadow: 0px 0px 16px rgba(29, 29, 29, 0.2);
    padding: 16px 12px;
    border-radius: 10px;
  }
  .login-wrapper .overlay .login-box .head {
    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: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(112, 112, 112, 0.1);
  }
  .login-wrapper .overlay .login-box .head a {
    font-size: 14px;
    margin-top: 10px;
  }
  .login-wrapper .overlay .login-box .section-title {
    margin-bottom: 20px;
  }
  .login-wrapper .overlay .login-box .section-title .title {
    font-size: 24px;
  }
  .login-wrapper .overlay .login-box .form-wrap {
    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;
  }
  .login-wrapper .overlay .login-box .form-wrap .main-btn {
    margin: 10px 0;
    width: 100%;
    height: 47px;
  }
  .login-wrapper .overlay .login-box .forget-pass {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #2093cf;
    margin-bottom: 10px;
  }
  .login-wrapper .overlay .login-box p {
    color: #707070;
  }
  .login-wrapper .overlay .login-box p a {
    color: #2093cf;
  }
  .login-wrapper .overlay .login-box .account-type {
    max-width: 300px;
    width: 100%;
    border-radius: 5px;
    background: rgba(32, 147, 207, 0.1);
    margin: 0 auto 20px auto;
    padding: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .login-wrapper .overlay .login-box .account-type button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 40px;
    border-radius: 5px;
    background: none;
    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;
    color: #2093cf;
    font-weight: 500;
    font-size: 14px;
  }
  .login-wrapper .overlay .login-box .account-type button.active {
    background: #2093cf;
    color: #fff;
  }
  .login-wrapper .overlay .login-box .account-type button:last-child {
    margin-left: 10px;
  }
  .contact-page-form .row > div {
    padding-bottom: 10px;
  }
  .ssl-tab-buttons {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: rgba(32, 147, 207, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ssl-tab-buttons button {
    width: 48%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 1%;
    height: 55px;
    border-radius: 10px;
    border: none;
    background: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .ssl-tab-buttons button:hover, .ssl-tab-buttons button.active {
    background: #2093cf;
  }
  .ssl-item {
    width: 100%;
    padding: 16px;
    background: rgba(32, 147, 207, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .ssl-item .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;
  }
  .ssl-item .head .pricing {
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: center;
  }
  .ssl-item .head .pricing .old-price {
    font-size: 15px;
    color: #707070;
  }
  .ssl-item .head .pricing .old-price strong {
    text-decoration: line-through;
  }
  .ssl-item .head .pricing .current-price {
    color: #2093cf;
  }
  .ssl-item .head .pricing .current-price b {
    font-size: 30px;
    font-weight: 700;
  }
  .ssl-item .head .pricing .current-price span {
    color: #707070;
  }
  .ssl-item ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px 0;
  }
  .ssl-item ul li {
    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: 10px 5px;
    min-width: 50%;
    text-align: center;
    max-width: 50%;
    border-right: 1px solid rgba(32, 147, 207, 0.3);
    border-bottom: 1px solid rgba(32, 147, 207, 0.3);
  }
  .ssl-item ul li:nth-child(2n) {
    border-right: 0;
  }
  .ssl-item ul li:nth-last-child(2) {
    border-bottom: 0;
  }
  .ssl-item ul li:nth-last-child(1) {
    border-bottom: 0;
  }
  .ssl-item ul li span {
    color: #707070;
  }
  .ssl-item ul li strong {
    color: #0d1c38;
  }
  .pack-item {
    margin-bottom: 20px;
  }
  .h-feature-item {
    margin-bottom: 10px;
  }

  .ws-price-campaign {
    background-color: #63dca2;
    color: #fff;
    padding: 5px 6px 2px;
    border-radius: 6px 6px 0 0;
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
  }

  .ws-price-campaign .ws-pc-top {
    line-height: 10px
  }

  .ws-price-campaign .ws-pc-title {
    font-size: 12px;
    font-weight: 600
  }
  .ws-price-campaign .ws-pc-alt {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    background-color: #50bf8a;
    width: calc(100% + 3px);
    border-radius: 4px;
    text-transform: uppercase
  }
}

/*# sourceMappingURL=style.css.map */
