/* Yusuf Akcesme 03.06.2022 */
/* 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;
}

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-line {
  width: 100%;
  height: 4px;
  background-color: #e3212c;
  background-image: -webkit-gradient(linear, left top, right top, from(#e3212c), color-stop(74%, #a52322));
  background-image: linear-gradient(to right, #e3212c 0%, #a52322 74%);
}

.top-bar {
  width: 100%;
  border-bottom: 1px solid #eee;
  height: 40px;
}

.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: #787da7;
  font-weight: 500;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.top-bar .container a:hover {
  color: #1e266d;
}

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

.top-bar .container .top-left a {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar .container .top-left a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #787da7;
  margin-left: 10px;
}

.top-bar .container .top-left a:last-child::after {
  display: none;
}

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

.top-bar .container .top-right a {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar .container .top-right a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #787da7;
  margin-right: 10px;
}

.top-bar .container .top-right a:first-child::before {
  display: none;
}

header {
  height: 74px;
  border-bottom: 1px solid #eee;
  background: #fff;
  -webkit-transition: .3s all;
  transition: .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 {
  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%;
}

header .container .hamburger-btn {
  display: none;
}

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

header .container nav > ul > li > a {
  padding: 0 20px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  font-weight: 500;
  font-size: 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

header .container nav > ul > li:hover > a {
  background: rgba(29, 102, 255, 0.1);
  color: #1e266d;
  border-bottom: 2px solid #1e266d;
}

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

header .container nav > ul > li .mega-menu {
  position: fixed;
  top: 114px;
  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(120, 125, 167, 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 .row {
  width: 100%;
}

header .container nav > ul > li .mega-menu a {
  width: 100%;
  padding: 12px;
  background: rgba(120, 125, 167, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

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

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: #1e266d;
}

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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

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

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

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

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 {
  color: #1e266d;
  font-size: 15px;
  font-weight: 500;
}

header .container .header-buttons a.main-btn {
  padding: 0 20px;
  height: 45px;
  border-radius: 45px;
  background: #1e266d;
  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: 15px;
  font-weight: 500;
  margin-left: 20px;
}

.main-btn {
  padding: 0 20px;
  height: 45px;
  border-radius: 45px;
  background: #1e266d;
  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: 15px;
  border: none;
  font-weight: 500;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.main-btn.border-btn {
  border: 1px solid #1e266d;
  color: #1e266d;
  background: transparent;
}

.main-btn.border-btn:hover {
  background: #1e266d;
  color: #fff;
}

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

.main-btn.white-btn:hover {
  background: #1e266d;
  color: #fff;
}

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

.welcome-hero-wrapper {
  width: 100%;
  height: 560px;
  background: -webkit-gradient(linear, right bottom, left top, from(rgb(231 231 239)), color-stop(rgb(231 231 239)), color-stop(#e8e8f0), to(rgb(231 231 239)));
  background: linear-gradient(to left top, rgb(231 231 239), rgb(231 231 239), #e8e8f0, rgb(232 233 240));
}

.welcome-hero-wrapper .container {
  height: 560px;
}

.welcome-hero-wrapper .container .hero-item {
  height: 560px;
  width: 100%;
}

.welcome-hero-wrapper .container .hero-item .hero-content {
  height: 560px;
  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;
}

.welcome-hero-wrapper .container .hero-item .hero-content span {
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 15px;
  color: #ac2221;
  display: block;
  margin-bottom: 10px;
}

.welcome-hero-wrapper .container .hero-item .hero-content h2 {
  color: #000000;
  font-size: 44px;
  max-width: 80%;
  font-weight: 700;
  margin-bottom: 20px;
}

.welcome-hero-wrapper .container .hero-item .hero-content p {
  font-size: 16px;
  color: #787da7;
  line-height: 1.6;
  max-width: 80%;
}

.welcome-hero-wrapper .container .hero-item .hero-content .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

.welcome-hero-wrapper .container .hero-item .hero-content .hero-buttons a {
  margin-right: 15px;
  min-width: 140px;
}

.welcome-hero-wrapper .container .hero-item .hero-image {
  height: 560px;
  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: url(../images/slide.png);
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center center;
}

.welcome-hero-wrapper .container .hero-item .hero-image img {
  max-height: 1%;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.home-domain-wrap {
  margin-top: -35px;
  position: relative;
  z-index: 9;
}

.home-domain-wrap .container .domain-search-box {
  width: 100%;
  padding: 24px;
  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);
  border-radius: 10px;
}

.home-domain-wrap .container .domain-search-box .box-heading {
  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-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.home-domain-wrap .container .domain-search-box .box-heading .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-domain-wrap .container .domain-search-box .box-heading .title span {
  font-size: 40px;
  margin-right: 10px;
  color: #1e266d;
}

.home-domain-wrap .container .domain-search-box .box-heading .title strong {
  display: block;
  color: #000000;
  font-size: 16px;
}

.home-domain-wrap .container .domain-search-box .box-heading .title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #787da7;
}

.home-domain-wrap .container .domain-search-box .box-heading .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-domain-wrap .container .domain-search-box .box-heading .buttons a {
  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: 0 15px;
  height: 40px;
  border-radius: 36px;
  background: rgba(29, 102, 255, 0.1);
  font-size: 14px;
  margin-left: 10px;
}

.home-domain-wrap .container .domain-search-box .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;
}

.home-domain-wrap .container .domain-search-box .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;
  color: #000000;
}

.home-domain-wrap .container .domain-search-box .search-wrap input::-webkit-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.home-domain-wrap .container .domain-search-box .search-wrap input:-ms-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.home-domain-wrap .container .domain-search-box .search-wrap input::-ms-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.home-domain-wrap .container .domain-search-box .search-wrap input::placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.home-domain-wrap .container .domain-search-box .search-wrap button {
  height: 50px;
  border-radius: 50px;
  padding: 0 40px;
  border: 0;
  background: #1e266d;
  color: #fff;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.home-domain-wrap .container .domain-search-box .domain-carousel .c-item {
  width: 200px;
  background: rgba(30, 38, 109, 0.1);
  border-radius: 10px;
  padding: 10px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home-domain-wrap .container .domain-search-box .domain-carousel .c-item span {
  width: 60px;
  height: 60px;
  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;
  padding: 5px;
  background: #ac2221;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
}

.home-domain-wrap .container .domain-search-box .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;
}

.home-domain-wrap .container .domain-search-box .domain-carousel .c-item .price .discount {
  background: rgba(65, 200, 38, 0.1);
  padding: 2px 8px;
  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;
  color: #41c826;
  font-size: 12px;
  font-weight: 600;
}

.home-domain-wrap .container .domain-search-box .domain-carousel .c-item .price b {
  font-size: 18px;
  color: #000000;
}

.discount {
  background: rgba(65, 200, 38, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  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;
  color: #41c826;
  font-size: 12px;
  font-weight: 600;
}

.discount.red {
  background: rgba(249, 35, 35, 0.1);
  color: #f92323;
}

.discount.orange {
  background: rgba(255, 153, 16, 0.1);
  color: #ff9910;
}

.discount.purple {
  background: rgba(107, 30, 248, 0.1);
  color: #6b1ef8;
}

.discount.blue {
  background: rgba(29, 102, 255, 0.1);
  color: #1e266d;
}

.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: 50px;
}

.section-title.dark .title {
  color: #000000 !important;
}

.section-title.dark p {
  color: #787da7 !important;
}

.section-title span {
  background: rgba(30, 38, 109, 0.1);
  height: 34px;
  padding: 0 15px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1e266d;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
}

.section-title p {
  color: #787da7;
  font-size: 15px;
  font-weight: 500;
  display: block;
  max-width: 860px;
}

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

.pack-item {
  width: 100%;
  border-radius: 10px;
  padding: 16px;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(120, 125, 167, 0.04)), color-stop(rgba(120, 125, 167, 0.01)), color-stop(#fff), to(rgba(120, 125, 167, 0.04)));
  background: linear-gradient(to right top, rgba(120, 125, 167, 0.04), rgba(120, 125, 167, 0.01), #fff, rgba(120, 125, 167, 0.04));
  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;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border: 1px solid rgba(120, 125, 167, 0.05);
  position: relative;
  margin-bottom: 15px;
}

.pack-item.popular {
  border: 2px solid #ac2221;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(172, 34, 33, 0);
          box-shadow: 0px 0px 0px 4px rgba(172, 34, 33, 0);
}

.pack-item.popular::before {
  content: attr(data-title);
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 30px;
  border-radius: 5px 5px 0 0;
  background: #ac2221;
  color: #fff;
  font-size: 13px;
  padding: 0 20px;
  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;
}

.pack-item:hover {
  background: rgba(120, 125, 167, 0.04);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.pack-item .title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 10px 0;
}

.pack-item p {
  color: #787da7;
  font-size: 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: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  -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);
}

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

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

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

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

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

.pack-item ul {
  width: 100%;
  margin-top: 20px;
}

.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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 40px;
  padding: 0 10px;
  color: #000000;
  border-radius: 5px;
  margin-bottom: 5px;
}

.pack-item ul li span {
  color: #ac2221;
  font-size: 20px;
  margin-right: 15px;
  background: #fff;
  width: 40px;
  height: 36px;
  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;
}

.pack-item .main-btn {
  width: 100%;
}

footer {
  width: 100%;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 100%;
  height: 4px;
  background-color: #e3212c;
  background-image: -webkit-gradient(linear, left top, right top, from(#e3212c), color-stop(74%, #a52322));
  background-image: linear-gradient(to right, #e3212c 0%, #a52322 74%);
}

footer .container .footer-top {
  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: 20px 0;
}

footer .container .footer-top .logo a img {
  max-width: 160px;
}

footer .container .footer-top .socials {
  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;
}

footer .container .footer-top .socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  background: rgba(120, 125, 167, 0.1);
  color: #787da7;
  font-size: 18px;
  margin: 0 8px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

footer .container .footer-top .socials a:hover {
  background: #1e266d;
  color: #fff;
}

footer .container .footer-top .call-us a {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

footer .container .footer-top .call-us a span {
  color: #1e266d;
  font-size: 20px;
}

footer .container .footer-mid {
  padding: 20px 0;
}

footer .container .footer-mid .footer-links {
  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 .container .footer-mid .footer-links strong {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

footer .container .footer-mid .footer-links a {
  color: #787da7;
  padding: 4px 0;
  display: block;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

footer .container .footer-mid .footer-links a:hover {
  padding-left: 5px;
  color: #1e266d;
}

footer .footer-bottom {
  width: 100%;
  padding: 20px 0;
  background: rgba(120, 125, 167, 0.1);
}

footer .footer-bottom .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;
}

footer .footer-bottom .container p {
  margin-bottom: 0;
  font-size: 15px;
  color: #787da7;
}

footer .footer-bottom .container .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-bottom .container .links a {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #787da7;
}

footer .footer-bottom .container .links a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #787da7;
  margin-right: 10px;
}

footer .footer-bottom .container .links a:first-child::before {
  display: none;
}

.call-us-wrap {
  padding: 40px 0;
}

.call-us-wrap .container .call-us-box {
  width: 100%;
  min-height: 200px;
  border-radius: 10px;
  background-image: url(../images/callusbg.jpeg);
  background-size: cover;
  background-position: center center;
}

.call-us-wrap .container .call-us-box .overlay {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background: rgba(30, 38, 109, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.call-us-wrap .container .call-us-box .overlay .inner {
  padding: 30px;
  height: 100%;
}

.call-us-wrap .container .call-us-box .overlay .inner .title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.call-us-wrap .container .call-us-box .overlay .inner p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  max-width: 80%;
}

.call-us-wrap .container .call-us-box .overlay .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.call-us-wrap .container .call-us-box .overlay .inner ul li {
  color: #fff;
  padding-right: 15px;
}

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

.page-blog-item .pb-content {
  width: 100%;
}

.page-blog-item .pb-content span {
  background: rgba(30, 38, 109, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #1e266d;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-blog-item .pb-content .title {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.page-blog-item .pb-content p {
  color: #787da7;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  display: block;
  max-width: 90%;
}

.page-blog-item .pb-content a {
  color: #1e266d;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  position: relative;
}

.page-blog-item .pb-content a::before {
  position: absolute;
  left: 0;
  content: "";
  bottom: -3px;
  width: 0%;
  height: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  background: #1e266d;
}

.page-blog-item .pb-content a:hover::before {
  width: 100%;
}

.page-blog-item.reverse .pb-image::before {
  border-radius: 0px 70px 70px 70px;
}

.page-blog-item .pb-image {
  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;
  position: relative;
}

.page-blog-item .pb-image::before {
  /*content: "";*/
  width: 80%;
  height: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 70px 0 70px 70px;
  background: rgba(29, 102, 255, 0.05);
}

.page-blog-item .pb-image img {
  max-width: 400px;
}

.features-wrapper {
  padding: 60px 0;
  background: rgba(120, 125, 167, 0.04);
}

.features-wrapper .feature-item {
  width: 100%;
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  position: relative;
}

.features-wrapper .feature-item .number {
  font-size: 54px;
  font-weight: 700;
  width: 90px;
  display: inline-block;
  line-height: 1;
  color: #000000;
  z-index: 0;
  opacity: 0.2;
}

.features-wrapper .feature-item:hover {
  -webkit-transform: translate(-5px, -5px);
          transform: translate(-5px, -5px);
  -webkit-box-shadow: 5px 5px 0px 5px rgba(29, 102, 255, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(29, 102, 255, 0.05);
}

.features-wrapper .feature-item.red span {
  background: rgba(249, 35, 35, 0.1);
  color: #f92323;
}

.features-wrapper .feature-item.red:hover {
  -webkit-box-shadow: 5px 5px 0px 5px rgba(249, 35, 35, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(249, 35, 35, 0.05);
}

.features-wrapper .feature-item.orange span {
  background: rgba(255, 153, 16, 0.1);
  color: #ff9910;
}

.features-wrapper .feature-item.orange:hover {
  -webkit-box-shadow: 5px 5px 0px 5px rgba(255, 153, 16, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(255, 153, 16, 0.05);
}

.features-wrapper .feature-item.green span {
  background: rgba(65, 200, 38, 0.1);
  color: #41c826;
}

.features-wrapper .feature-item.green:hover {
  -webkit-box-shadow: 5px 5px 0px 5px rgba(65, 200, 38, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(65, 200, 38, 0.05);
}

.features-wrapper .feature-item.purple span {
  background: rgba(107, 30, 248, 0.1);
  color: #6b1ef8;
}

.features-wrapper .feature-item.purple:hover {
  -webkit-box-shadow: 5px 5px 0px 5px rgba(107, 30, 248, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(107, 30, 248, 0.05);
}

.features-wrapper .feature-item.dark span {
  background: rgba(30, 38, 109, 0.1);
  color: #000000;
}

.features-wrapper .feature-item.dark:hover {
  -webkit-box-shadow: 5px 5px 0px 5px rgba(30, 38, 109, 0.05);
          box-shadow: 5px 5px 0px 5px rgba(30, 38, 109, 0.05);
}

.features-wrapper .feature-item .icon {
  margin-top: -22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 99 !important;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0px -12px 25px white;
          box-shadow: 0px -12px 25px white;
}

.features-wrapper .feature-item span {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: rgba(29, 102, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 40px;
  color: #1e266d;
}

.features-wrapper .feature-item strong {
  font-size: 18px;
  color: #000000;
  display: block;
  margin-bottom: 10px;
}

.features-wrapper .feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #787da7;
}

.user-sign-page {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.user-sign-page .user-sign-content {
  width: 100%;
  height: 100vh;
  padding: 30px;
  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;
}

.user-sign-page .user-sign-content .form-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;
}

.user-sign-page .user-sign-content .form-head .go-back {
  width: 41px;
  height: 41px;
  border-radius: 10px;
  border: 2px solid rgba(120, 125, 167, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #787da7;
}

.user-sign-page .user-sign-content .form-wrap {
  max-width: 400px;
  margin-top: auto;
  margin-bottom: auto;
}

.user-sign-page .user-sign-content .form-wrap .account-type {
  max-width: 300px;
  border-radius: 5px;
  background: rgba(29, 102, 255, 0.1);
  margin: 0 auto 20px auto;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.user-sign-page .user-sign-content .form-wrap .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: #1e266d;
  font-weight: 500;
  font-size: 14px;
}

.user-sign-page .user-sign-content .form-wrap .account-type button.active {
  background: #1e266d;
  color: #fff;
}

.user-sign-page .user-sign-content .form-wrap .account-type button:last-child {
  margin-left: 10px;
}

.user-sign-page .user-sign-content .form-wrap h3 {
  font-size: 23px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 0;
}

.user-sign-page .user-sign-content .form-wrap p {
  font-size: 14px;
  color: #787da7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.user-sign-page .user-sign-content .form-wrap .main-btn {
  height: 50px;
  width: 100%;
  border-radius: 6px;
  margin-top: 30px;
}

.user-sign-page .user-sign-content .form-wrap .forget-pass {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #787da7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}

.user-sign-page .user-sign-content .form-wrap .line {
  width: 100%;
  height: 1px;
  background: rgba(120, 125, 167, 0.1);
}

.user-sign-page .user-sign-content .form-wrap p {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #787da7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 0;
}

.user-sign-page .user-sign-content .form-wrap p a {
  margin-left: 5px;
}

.user-sign-page .user-sign-image {
  width: 100%;
  height: 100vh;
  background-image: url(../images/loginbg.jpg);
  position: relative;
}

.user-sign-page .user-sign-image .overlay {
  width: 100%;
  height: 100vh;
  background: rgba(30, 38, 109, 0.6);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  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;
  padding: 40px;
}

.user-sign-page .user-sign-image .overlay .sign-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 540px;
}

.user-sign-page .user-sign-image .overlay .sign-slider .slick-dots {
  bottom: -30px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 30px;
}

.user-sign-page .user-sign-image .overlay .sign-slider .slick-dots li {
  margin: 0;
  padding: 0;
}

.user-sign-page .user-sign-image .overlay .sign-slider .slick-dots li.slick-active {
  margin-right: 10px;
}

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

.user-sign-page .user-sign-image .overlay .sign-slider .slick-dots li.slick-active button::before {
  color: #fff !important;
}

.user-sign-page .user-sign-image .overlay .sign-slider .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;
}

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

.user-sign-page .user-sign-image .overlay .ss-item {
  padding: 20px;
}

.user-sign-page .user-sign-image .overlay .ss-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  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: 30px;
}

.user-sign-page .user-sign-image .overlay .ss-item .icon span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 30px;
  color: #1e266d;
}

.user-sign-page .user-sign-image .overlay .ss-item h2 {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
}

.user-sign-page .user-sign-image .overlay .ss-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.user-sign-page .user-sign-image .overlay .ss-item .main-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

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

.input-item label {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  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: #787da7;
}

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

.input-item input:focus {
  border-color: #1e266d;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
          box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
}

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

.input-item textarea:focus {
  border-color: #1e266d;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
          box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
}

.page-banner {
  width: 100%;
  height: 280px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.page-banner.auto-height {
  height: auto;
}

.page-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background-color: #045de9;
  background-image: -webkit-gradient(linear, left top, right top, from(#045de9), color-stop(74%, #09c6f9));
  background-image: linear-gradient(to right, #045de9 0%, #09c6f9 74%);
}

.page-banner .overlay {
  width: 100%;
  height: 100%;
  background: rgba(30, 38, 109, 0.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

.page-banner .overlay .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;
  padding-top: 60px;
}

.page-banner .overlay .container .title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.page-banner .overlay .container .line {
  width: 70px;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background-color: #045de9;
  background-image: -webkit-gradient(linear, left top, right top, from(#045de9), color-stop(74%, #09c6f9));
  background-image: linear-gradient(to right, #045de9 0%, #09c6f9 74%);
}

.page-banner .overlay .container p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  max-width: 60%;
}

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

.page-content-box {
  width: 100%;
  padding: 24px;
  background: #fff;
  -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);
  border-radius: 10px;
}

.contact-page-image {
  width: 100%;
  border-radius: 20px;
  padding: 30px;
  background: url(../images/cabstract.png), -webkit-gradient(linear, left top, right bottom, from(#5b8cf4), to(#1e266d));
  background: url(../images/cabstract.png), linear-gradient(to right bottom, #5b8cf4, #1e266d);
  background-size: cover;
  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;
}

.contact-page-image .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  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: 30px;
}

.contact-page-image .icon span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 42px;
  color: #1e266d;
}

.contact-page-image > h2 {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
}

.contact-page-image ul {
  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;
  max-width: 280px;
  margin-top: 30px;
}

.contact-page-image ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0;
  width: 100%;
}

.contact-page-image ul li span {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(120, 125, 167, 0.2);
          box-shadow: 0px 0px 10px rgba(120, 125, 167, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  color: #1e266d;
  margin-bottom: 10px;
}

.contact-page-image ul li p {
  margin-bottom: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.contact-page-form .title {
  text-align: center;
  font-size: 24px;
  color: #000000;
  font-weight: 700;
}

.contact-page-form p {
  color: #787da7;
  text-align: center;
  font-size: 15px;
}

.domain-register-box {
  width: 100%;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: -80px;
  margin-top: 20px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02), 0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02), 0 2px 4px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.02), 0 16px 32px rgba(0, 0, 0, 0.02), 0 32px 64px rgba(0, 0, 0, 0.02);
}

.domain-register-box .search-wrap {
  width: 100%;
  max-width: 900px;
  height: 70px;
  border: 1px solid #eee;
  background: rgba(120, 125, 167, 0.05);
  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;
}

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

.domain-register-box .search-wrap input::-webkit-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.domain-register-box .search-wrap input:-ms-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.domain-register-box .search-wrap input::-ms-input-placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.domain-register-box .search-wrap input::placeholder {
  color: #787da7;
  letter-spacing: 0.5px;
}

.domain-register-box .search-wrap button {
  height: 50px;
  border-radius: 50px;
  padding: 0 40px;
  border: 0;
  background: #1e266d;
  color: #fff;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.domain-register-box .domain-carousel .c-item {
  width: 200px;
  background: rgba(29, 102, 255, 0.05);
  border-radius: 10px;
  padding: 5px 10px;
  margin: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.domain-register-box .domain-carousel .c-item span {
  width: 60px;
  height: 60px;
  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;
  padding: 5px;
  background: rgba(29, 102, 255, 0.1);
  color: #1e266d;
  font-weight: 700;
  font-size: 16px;
  margin-right: 10px;
}

.domain-register-box .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-register-box .domain-carousel .c-item .price .discount {
  background: rgba(65, 200, 38, 0.1);
  padding: 2px 8px;
  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;
  color: #41c826;
  font-size: 12px;
  font-weight: 600;
}

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

.faq-wrapper {
  padding: 60px 0;
  background: rgba(120, 125, 167, 0.05);
}

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

.faq-wrapper .faq-item .faq-head {
  width: 100%;
  border: 1px solid rgba(120, 125, 167, 0.2);
  border-radius: 10px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 16px;
  -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-wrapper .faq-item .faq-head.opened {
  background: #1e266d;
}

.faq-wrapper .faq-item .faq-head.opened h3 {
  color: #fff;
}

.faq-wrapper .faq-item .faq-head.opened span {
  background: #fff;
  color: #1e266d;
}

.faq-wrapper .faq-item .faq-head.opened span .fa-chevron-down {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-wrapper .faq-item .faq-head h3 {
  margin-bottom: 0;
  font-size: 18px;
  color: #000000;
}

.faq-wrapper .faq-item .faq-head span {
  width: 50px;
  height: 50px;
  background: rgba(29, 102, 255, 0.1);
  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: 18px;
  color: #1e266d;
}

.faq-wrapper .faq-item .faq-head span .fa-chevron-down {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.faq-wrapper .faq-item .faq-body {
  display: none;
  margin-top: 10px;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  -webkit-box-shadow: 0 5px 10px 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 5px 10px 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);
}

.faq-wrapper .faq-item .faq-body p {
  margin-bottom: 0;
  font-size: 15px;
  color: #787da7;
  line-height: 1.6;
}

.domain-prices-wrapper {
  padding: 60px 0;
}

.domain-prices-wrapper .domain-price-table {
  border: 1px solid rgba(120, 125, 167, 0.1);
  padding: 12px 10px;
  border-radius: 10px;
}

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

.domain-prices-wrapper .domain-price-table table thead tr th {
  padding: 14px 12px;
  background: #1e266d;
  color: #fff;
  text-align: center;
}

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

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

.domain-prices-wrapper .domain-price-table table tbody {
  background: rgba(29, 102, 255, 0.05);
  padding: 10px;
}

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

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

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

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

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

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

.domain-prices-wrapper .domain-price-table table tbody tr td strong {
  font-weight: 600;
  color: #000000;
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 8px rgba(30, 38, 109, 0.05);
          box-shadow: 0px 0px 8px rgba(30, 38, 109, 0.05);
}

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

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

.page-not-found .container .image {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-not-found .container .image img {
  max-width: 600px;
  height: auto;
  -webkit-animation: move 2s infinite alternate;
          animation: move 2s infinite alternate;
}

@keyframes move {
  0% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.page-not-found .container .text {
  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-top: 40px;
  background: -webkit-gradient(linear, right bottom, left top, from(rgba(29, 102, 255, 0.15)), color-stop(rgba(120, 125, 167, 0.01)), color-stop(#fff), to(rgba(29, 102, 255, 0.1)));
  background: linear-gradient(to left top, rgba(29, 102, 255, 0.15), rgba(120, 125, 167, 0.01), #fff, rgba(29, 102, 255, 0.1));
  border-radius: 20px;
  padding: 40px 20px;
}

.page-not-found .container .text h1 {
  color: #000000;
  font-weight: 700;
}

.page-not-found .container .text p {
  font-size: 16px;
  color: #787da7;
}

.inner-page-wrap {
  padding: 20px;
  margin-top: -80px;
  position: relative;
  z-index: 9;
}

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

.page-links-wrap .page-links-box {
  position: -webkit-sticky;
  position: sticky;
  top: 10px;
  width: 100%;
  border-radius: 10px;
  background: url(../images/cabstract.png), -webkit-gradient(linear, left top, right bottom, from(#5b8cf4), to(#1e266d));
  background: url(../images/cabstract.png), linear-gradient(to right bottom, #5b8cf4, #1e266d);
  padding: 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-links-wrap .page-links-box ul {
  padding: 0;
  margin: 0;
}

.page-links-wrap .page-links-box ul li {
  width: 100%;
}

.page-links-wrap .page-links-box ul li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  height: 47px;
  color: #fff;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.page-links-wrap .page-links-box ul li a.active, .page-links-wrap .page-links-box ul li a:hover {
  background: #fff;
  color: #000000;
  font-weight: 600;
}

.about-content p {
  color: #787da7;
  font-size: 15px;
  line-height: 1.6;
}

.about-content h1,
.about-content h2,
.about-content h3,
.about-content h4,
.about-content h5,
.about-content h6 {
  color: #000000;
  font-weight: 600;
}

.bank-content .bank-buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  background: rgba(29, 102, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

.bank-content .bank-buttons button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
  height: 55px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.bank-content .bank-buttons button:hover, .bank-content .bank-buttons button.active {
  background: #1e266d;
}

.bank-content .bank-buttons button:hover img, .bank-content .bank-buttons button.active img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.bank-content .bank-buttons button:last-child {
  margin-right: 0;
}

.bank-content .bank-buttons button img {
  max-width: 120px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.bank-tab span {
  font-size: 15px;
  color: #000000;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.bank-tab p {
  width: 100%;
  height: 42px;
  border-radius: 5px;
  background: rgba(120, 125, 167, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  color: #787da7;
  font-weight: 500;
  position: relative;
}

.bank-tab p .copy-btn {
  margin-left: auto;
  width: 36px;
  height: 36px;
  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;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  color: #1e266d;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.bank-tab p .copy-btn:hover {
  background: rgba(29, 102, 255, 0.1);
}

.page-banner-content {
  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;
  margin-bottom: 100px;
  width: 100%;
  text-align: start !important;
}

.page-banner-content span {
  background: rgba(255, 255, 255, 0.2);
  height: 32px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 32px;
  -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: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 15px;
}

.page-banner-content h2 {
  color: #fff;
  font-size: 30px;
  max-width: 80%;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-banner-content p {
  font-size: 16px;
  color: #fff;
  width: 100%;
  line-height: 1.6;
  max-width: 100% !important;
}

.page-banner-content .hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.page-banner-content .hero-buttons a {
  margin-right: 15px;
  min-width: 140px;
}

.page-banner-image {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 100px;
}

.page-banner-image img {
  max-height: 300px;
}

@keyframes move {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

.hosting-packs-wrapper {
  margin-top: -50px;
  z-index: 9;
  position: relative;
}

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

.features-items .f-item {
  width: 100%;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 20px 20px 20px;
}

.features-items .f-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  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: 20px;
  position: relative;
  border-top: 2px solid #1e266d;
  border-left: 2px solid #1e266d;
  border-right: 0.5px solid #1e266d;
  border-bottom: 0.5px solid #1e266d;
}

.features-items .f-item .icon span {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 34px;
  color: #1e266d;
}

.features-items .f-item strong {
  font-size: 18px;
  color: #000000;
  display: block;
  margin-bottom: 10px;
}

.features-items .f-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #787da7;
}

.features-items .f-item::before {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 76%;
  border-radius: 20px;
  top: 24%;
  background: rgba(29, 102, 255, 0.05);
}

.ssl-pack {
  width: 100%;
  border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(120, 125, 167, 0.04)), color-stop(rgba(120, 125, 167, 0.01)), color-stop(#fff), to(rgba(120, 125, 167, 0.04)));
  background: linear-gradient(to right top, rgba(120, 125, 167, 0.04), rgba(120, 125, 167, 0.01), #fff, rgba(120, 125, 167, 0.04));
  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;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border: 1px solid rgba(120, 125, 167, 0.1);
  position: relative;
  padding-bottom: 20px;
  transition: 0.2s all;
  margin-bottom: 20px;
}

.ssl-pack:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.ssl-pack .logo {
  width: 100%;
  padding: 20px;
  border-radius: 10px 10px 0 0;
  background: rgba(120, 125, 167, 0.05);
  position: relative;
  margin-bottom: 3px;
}

.ssl-pack .logo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #045de9;
  background-image: -webkit-gradient(linear, left top, right top, from(#045de9), color-stop(74%, #09c6f9));
  background-image: linear-gradient(to right, #045de9 0%, #09c6f9 74%);
}

.ssl-pack .specs-list {
  width: 100%;
  position: relative;
  margin-bottom: 3px;
}

.ssl-pack .specs-list::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #045de9;
  background-image: -webkit-gradient(linear, left top, right top, from(#045de9), color-stop(74%, #09c6f9));
  background-image: linear-gradient(to right, #045de9 0%, #09c6f9 74%);
}

.ssl-pack .specs-list ul {
  padding: 0;
  margin: 0;
  width: 100%;
}

.ssl-pack .specs-list ul li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 15px;
  border-bottom: 1px solid rgba(120, 125, 167, 0.05);
}

.ssl-pack .specs-list ul li .fa-chevron-right {
  margin-right: 15px;
  color: #1e266d;
}

.ssl-pack .specs-list ul li > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ssl-pack .specs-list ul li > div span {
  color: #787da7;
  font-size: 13px;
}

.ssl-pack .specs-list ul li > div strong {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.ssl-pack .main-btn {
  width: 90%;
}

.ssl-pack .price {
  padding: 10px;
  width: 100%;
}

.ssl-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: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  -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);
}

.ssl-pack .pricing .old-price {
  font-size: 15px;
  color: #787da7;
}

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

.ssl-pack .pricing .current-price {
  color: #1e266d;
}

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

.ssl-pack .pricing .current-price span {
  color: #787da7;
}

.dedicated-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  border: 1px solid rgba(120, 125, 167, 0.05);
  padding: 12px 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);
  margin-bottom: 15px;
  position: relative;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.dedicated-item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  background: -webkit-gradient(linear, left bottom, right top, from(rgba(120, 125, 167, 0.08)), color-stop(rgba(120, 125, 167, 0.04)), color-stop(#fff), to(rgba(120, 125, 167, 0.08)));
  background: linear-gradient(to right top, rgba(120, 125, 167, 0.08), rgba(120, 125, 167, 0.04), #fff, rgba(120, 125, 167, 0.08));
}

.dedicated-item.popular {
  border: 2px solid #1e266d;
  -webkit-box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
          box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 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: #1e266d;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 12px;
  border-right: 1px solid rgba(120, 125, 167, 0.1);
}

.dedicated-item .d-cell:first-child {
  background: rgba(29, 102, 255, 0.05);
  border-radius: 10px;
  margin-left: 12px;
  margin-right: 12px;
  border-right: 0;
}

.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: #1e266d;
  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: #1e266d;
  font-weight: 700;
  font-size: 16px;
}

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

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

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

.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%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 12px 6px;
  -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);
}

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

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

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

.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: #787da7;
}

.mobile-menu-bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(30, 38, 109, 0.5);
  z-index: 9990;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-bg.show {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  width: 300px;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 20px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.mobile-menu.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu .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;
  border-bottom: 1px solid rgba(120, 125, 167, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.mobile-menu .head .logo img {
  width: 140px;
}

.mobile-menu .head .close-menu {
  -ms-flex-negative: 0;
      flex-shrink: 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;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(120, 125, 167, 0.2);
  border-radius: 10px;
  background: #fff;
  color: #1e266d;
  font-size: 21px;
}

.mobile-menu > ul {
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-menu > ul > li {
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(120, 125, 167, 0.1);
  margin-bottom: 10px;
}

.mobile-menu > ul > li > a {
  width: 100%;
  height: 40px;
  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: 0 10px;
  color: #000000;
  font-weight: 600;
}

.mobile-menu > ul > li .menu-drop {
  display: none;
  background: #1e266d;
  border-radius: 0 0 5px 5px;
}

.mobile-menu > ul > li .menu-drop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  font-size: 14px;
  color: #fff;
}

/******************* RESPONSIVE *******************/
/******************* RESPONSIVE *******************/
/******************* RESPONSIVE *******************/
/******************* RESPONSIVE *******************/
/******************* RESPONSIVE *******************/
/******************* RESPONSIVE *******************/
@media (max-width: 1024px) {
  .top-bar {
    width: 100%;
    border-bottom: 1px solid #eee;
    height: 40px;
  }
  .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: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  .top-bar .container .top-left {
    display: none;
  }
  .top-bar .container .top-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-bar .container .top-right a {
    margin-left: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-bar .container .top-right a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #787da7;
    margin-right: 5px;
  }
  .top-bar .container .top-right a:first-child::before {
    display: none;
  }
  header {
    height: 74px;
    border-bottom: 1px solid #eee;
  }
  header .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%;
  }
  header .container .hamburger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(120, 125, 167, 0.2);
    border-radius: 10px;
    background: #fff;
    color: #1e266d;
    font-size: 21px;
  }
  header .container nav {
    display: none;
  }
  header .container .header-buttons {
    display: none;
  }
  .welcome-hero-wrapper {
    width: 100%;
    height: auto;
    background: -webkit-gradient(linear, right bottom, left top, from(rgb(231 231 239)), color-stop(rgb(231 231 239)), color-stop(#e8e8f0), to(rgb(231 231 239)));
    background: linear-gradient(to left top, rgb(231 231 239), rgb(231 231 239), #e8e8f0, rgb(231 231 239));
  }
  .welcome-hero-wrapper .container {
    height: auto;
  }
  .welcome-hero-wrapper .container .hero-item {
    height: auto;
    width: 100%;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content {
    height: auto;
    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;
    padding-top: 30px;
    text-align: center;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content span {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    color: #1e266d;
    display: block;
    margin-bottom: 10px;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content h2 {
    color: #000000;
    font-size: 28px;
    max-width: 100%;
    margin-bottom: 10px;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content p {
    font-size: 15px;
    color: #787da7;
    line-height: 1.6;
    max-width: 90%;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content .hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10px;
  }
  .welcome-hero-wrapper .container .hero-item .hero-content .hero-buttons a {
    margin-right: 5px;
    margin-left: 5px;
    min-width: 120px;
  }
  .welcome-hero-wrapper .container .hero-item .hero-image {
    height: auto;
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .welcome-hero-wrapper .container .hero-item .hero-image img {
    max-height: none;
    max-width: 240px;
  }
  .home-domain-wrap {
    margin-top: -25px;
    position: relative;
    z-index: 9;
  }
  .home-domain-wrap .container .domain-search-box {
    padding: 24px;
  }
  .home-domain-wrap .container .domain-search-box .box-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 15px;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .title span {
    font-size: 40px;
    margin-right: 10px;
    color: #1e266d;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .title strong {
    display: block;
    color: #000000;
    font-size: 15px;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .title p {
    margin-bottom: 0;
    font-size: 13px;
    color: #787da7;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home-domain-wrap .container .domain-search-box .box-heading .buttons a {
    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: 0 10px;
    height: 40px;
    border-radius: 36px;
    background: rgba(29, 102, 255, 0.1);
    font-size: 13px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .home-domain-wrap .container .domain-search-box .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;
  }
  .home-domain-wrap .container .domain-search-box .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;
    color: #000000;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap input::-webkit-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap input:-ms-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap input::-ms-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap input::placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap button {
    height: 50px;
    border-radius: 50px;
    padding: 0 15px;
    border: 0;
    font-size: 0;
    background: #1e266d;
    color: #fff;
    font-weight: 500;
    font-weight: 500;
    letter-spacing: 0.5px;
  }
  .home-domain-wrap .container .domain-search-box .search-wrap button .fa-search {
    font-size: 18px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title .title {
    font-size: 26px;
    font-weight: 600;
    color: #000000;
  }
  .section-title p {
    color: #787da7;
    font-size: 14px;
  }
  .home-packs-wrapper {
    padding: 60px 0;
  }
  footer .container .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .container .footer-top .socials {
    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: 15px 0;
  }
  footer .container .footer-top .socials a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: rgba(120, 125, 167, 0.1);
    color: #787da7;
    font-size: 18px;
    margin: 0 8px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  footer .container .footer-top .socials a:hover {
    background: #1e266d;
    color: #fff;
  }
  footer .container .footer-mid {
    padding: 20px 0;
  }
  footer .container .footer-mid .row > .col {
    min-width: 50%;
    width: 50%;
  }
  footer .container .footer-mid .footer-links {
    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: 5px 0;
  }
  footer .container .footer-mid .footer-links strong {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
  }
  footer .container .footer-mid .footer-links a {
    color: #787da7;
    padding: 4px 0;
    display: block;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  footer .container .footer-mid .footer-links a:hover {
    padding-left: 5px;
    color: #1e266d;
  }
  footer .footer-bottom {
    width: 100%;
    padding: 20px 0;
    background: rgba(120, 125, 167, 0.1);
  }
  footer .footer-bottom .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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .footer-bottom .container p {
    margin-bottom: 0;
    font-size: 15px;
    color: #787da7;
  }
  footer .footer-bottom .container .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-bottom .container .links a {
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #787da7;
  }
  footer .footer-bottom .container .links a::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #787da7;
    margin-right: 10px;
  }
  footer .footer-bottom .container .links a:first-child::before {
    display: none;
  }
  .call-us-wrap {
    padding: 40px 0;
  }
  .call-us-wrap .container .call-us-box {
    width: 100%;
    min-height: 200px;
    border-radius: 10px;
    background-image: url(../images/callusbg.jpeg);
    background-size: cover;
    background-position: center center;
  }
  .call-us-wrap .container .call-us-box .overlay {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(30, 38, 109, 0.5);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    padding-bottom: 20px;
  }
  .call-us-wrap .container .call-us-box .overlay .inner {
    padding: 20px;
    height: 100%;
  }
  .call-us-wrap .container .call-us-box .overlay .inner .title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
  }
  .call-us-wrap .container .call-us-box .overlay .inner p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 95%;
  }
  .call-us-wrap .container .call-us-box .overlay .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .call-us-wrap .container .call-us-box .overlay .inner ul li {
    color: #fff;
    padding-right: 5px;
  }
  .page-blog-item {
    padding: 50px 0;
  }
  .page-blog-item .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-blog-item.reverse .row {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .page-blog-item .pb-content {
    width: 100%;
    padding-top: 30px;
  }
  .page-blog-item .pb-content .title {
    font-size: 24px;
  }
  .page-blog-item .pb-image img {
    max-width: 80%;
  }
  .page-banner {
    height: auto;
  }
  .page-banner .overlay {
    padding-bottom: 30px;
  }
  .page-banner .overlay .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;
    padding-top: 30px;
  }
  .page-banner .overlay .container .page-banner-image {
    display: none;
  }
  .page-banner .overlay .container .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page-banner .overlay .container p {
    max-width: 95%;
  }
  .page-content-wrap {
    position: relative;
    z-index: 9;
    margin-top: -40px;
  }
  .page-content-box {
    padding: 24px 12px;
  }
  .inner-page-wrap {
    padding: 20px 0;
    margin-top: -40px;
    position: relative;
    z-index: 9;
  }
  .page-links-wrap {
    height: 100%;
    position: relative;
  }
  .page-links-wrap .page-links-box {
    margin-bottom: 20px;
  }
  .about-content p {
    color: #787da7;
    font-size: 15px;
    line-height: 1.6;
  }
  .about-content h1,
  .about-content h2,
  .about-content h3,
  .about-content h4,
  .about-content h5,
  .about-content h6 {
    color: #000000;
    font-weight: 600;
  }
  .bank-content .bank-buttons {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .bank-content .bank-buttons button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 46%;
    min-width: 46%;
    max-width: 46%;
    margin-right: 10px;
    height: 55px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .bank-content .bank-buttons button:hover, .bank-content .bank-buttons button.active {
    background: #1e266d;
  }
  .bank-content .bank-buttons button:hover img, .bank-content .bank-buttons button.active img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
  .bank-content .bank-buttons button:last-child {
    margin-right: 0;
  }
  .bank-content .bank-buttons button img {
    max-width: 120px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  .dedicated-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .dedicated-item.popular {
    border: 2px solid #1e266d;
    -webkit-box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
            box-shadow: 0px 0px 0px 4px rgba(29, 102, 255, 0.1);
  }
  .dedicated-item.popular::before {
    content: attr(data-title);
    position: absolute;
    top: -22px;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%) rotate(0deg);
            transform: translateY(0%) translateX(-50%) rotate(0deg);
    height: 22px;
    border-radius: 5px 5px 0 0;
    background: #1e266d;
    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%;
    border-right: 0px solid rgba(120, 125, 167, 0.1);
    border-bottom: 1px solid rgba(120, 125, 167, 0.1);
  }
  .dedicated-item .d-cell:first-child {
    background: rgba(29, 102, 255, 0.05);
    border-radius: 10px;
    margin-left: 12px;
    margin-right: 12px;
    border-right: 0;
    border-bottom: 0;
  }
  .dedicated-item .d-cell:last-child {
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: 0;
  }
  .dedicated-item .d-cell:nth-last-child(2) {
    border-bottom: 0;
  }
  .dedicated-item .d-cell:nth-last-child(3) {
    border-bottom: 0;
  }
  .dedicated-item .d-cell .add-cart {
    margin-top: 10px;
    width: 100%;
    height: 44px;
    font-size: 14px;
    border-radius: 5px;
    background: #1e266d;
    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;
  }
  .faq-wrapper {
    padding: 60px 0;
    background: rgba(120, 125, 167, 0.05);
  }
  .faq-wrapper .faq-item {
    width: 100%;
    margin-bottom: 12px;
  }
  .faq-wrapper .faq-item .faq-head {
    width: 100%;
    border: 1px solid rgba(120, 125, 167, 0.2);
    border-radius: 10px;
    background: #fff;
    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-wrapper .faq-item .faq-head h3 {
    margin-bottom: 0;
    font-size: 16px;
    color: #000000;
  }
  .faq-wrapper .faq-item .faq-head span {
    width: 40px;
    height: 40px;
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .faq-wrapper .faq-item .faq-body p {
    margin-bottom: 0;
    font-size: 14px;
    color: #787da7;
    line-height: 1.6;
  }
  .domain-register-box {
    width: 100%;
    padding: 24px 12px;
  }
  .domain-register-box .search-wrap {
    width: 100%;
    max-width: 900px;
    height: 70px;
    border: 1px solid #eee;
    background: rgba(120, 125, 167, 0.05);
    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;
  }
  .domain-register-box .search-wrap input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 70px;
    padding: 0 15px;
    background: none;
    font-size: 17px;
    border: none;
    height: 70px;
    color: #000000;
  }
  .domain-register-box .search-wrap input::-webkit-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .domain-register-box .search-wrap input:-ms-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .domain-register-box .search-wrap input::-ms-input-placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .domain-register-box .search-wrap input::placeholder {
    color: #787da7;
    letter-spacing: 0.5px;
  }
  .domain-register-box .search-wrap button {
    padding: 0 15px;
    font-size: 0;
  }
  .domain-register-box .search-wrap button .fa-search {
    font-size: 18px;
  }
  .domain-prices-wrapper {
    padding: 60px 0;
  }
  .domain-prices-wrapper .domain-price-table {
    border: 1px solid rgba(120, 125, 167, 0.1);
    padding: 10px 8px;
    border-radius: 10px;
  }
  .domain-prices-wrapper .domain-price-table table {
    width: 100%;
    border-collapse: collapse;
  }
  .domain-prices-wrapper .domain-price-table table thead tr th {
    padding: 14px 10px;
  }
  .domain-prices-wrapper .domain-price-table table tbody tr td {
    padding: 12px 10px;
    background: transparent;
    color: #787da7;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }
  .domain-prices-wrapper .domain-price-table table tbody tr td strong {
    margin-bottom: 5px !important;
  }
  .domain-prices-wrapper .domain-price-table table tbody tr td:first-child {
    text-align: start;
  }
  .features-items {
    padding: 60px 0;
  }
  .features-items .f-item {
    margin-bottom: 30px;
  }
  .contact-page-image {
    padding: 20px;
    margin-bottom: 30px;
  }
  .contact-page-image > h2 {
    font-size: 22px;
  }
  .contact-page-image ul {
    max-width: 100%;
    margin-top: 20px;
  }
  .contact-page-image ul li p {
    font-size: 15px;
  }
  .user-sign-page .user-sign-content {
    width: 100%;
    height: 100vh;
    padding: 30px 20px;
    overflow: auto;
  }
  .user-sign-page .user-sign-content .form-head {
    margin-bottom: 20px;
  }
  .user-sign-page .user-sign-image {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */