/* --------------------------------------------------------------------------

                            import

---------------------------------------------------------------------------*/

@import url('bootstrap.min.css');
@import url('../aos/aos.css');
@import url('animate.min.css');
@import url('custom-animation.css');
@import url('framework.css');
@import url('swiper-bundle.css');
@import url('variables.css');
@import url('slick.css');
@import url('slick-theme.css');
/* --------------------------------------------------------------------------

                            body

---------------------------------------------------------------------------*/
.w-15{
  width: 15% !important;
}
.h-100{
  height: 100% !important;
}
.open_ticket .select{
  height: 50px !important;
}
input[type="checkbox"] {
    accent-color:var(--color-primary-tow);
    height: 15px;
    width: 15px;
}
input[type="radio"] {
    accent-color:var(--color-primary-tow);
    height: 15px;
    width: 15px;
}
ul .na {
    color: #ccc;
    text-decoration: line-through;
}
.bus-plans{
  background-color: var(--color-primary-tow) !important;
}
.advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background:var(--color-primary-tow) !important;
    color:var(--color-white) !important;
}
.home-plan .price_box .box_top{
    padding: 20px;
    text-align: center;
    border: var(--bs-border-width) var(--bs-border-style) #eaedf0 !important;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
 .btn-primary {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white) !important;
  background: var(--color-primary-tow) !important;
  padding:12px 30px;
  border-radius: 5px;
  transition: 0.3s;
  font-family: var(--font-primary);
  border-color: var(--color-primary-tow) !important;
}

 .btn-primary:hover,
 .btn-primary:focus:hover, .btn-primary:focus {
  color: var(--color-white) !important;
  background:var(--color-primary-tow) !important;
  border-color: var(--color-primary-tow) !important;
}

.btn-only-outline-primary{
  font-size: 16px;
    font-weight: 500;
  color: var(--color-primary-tow) !important;
  background: none;
  padding: 8px 23px;
  border-radius: 5px;
  transition: 0.3s;
  font-family: var(--font-primary) !important;
  border-color: var(--color-primary-tow) !important;
}

.btn-only-outline-primary:hover, .btn-only-outline-primary:focus:hover, .btn-only-outline-primary:focus{
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary-tow) !important;
  background: none;
  padding: 8px 23px;
  border-radius: 5px;
  transition: 0.3s;
  font-family: var(--font-primary);
  border-color: var(--color-primary-tow) !important;
}

.btn-outline-primary {
 font-size: 16px;
 color: var(--color-primary-tow) !important;
 background: none;
 padding: 8px 23px;
 border-radius: 5px;
 transition: 0.3s;
 font-family: var(--font-primary) !important;
 border-color: var(--color-primary-tow) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus:hover,
.btn-outline-primary:focus {
 color: var(--color-white) !important;
 background:var(--color-primary-tow) !important;
 border-color: var(--color-primary-tow) !important;
}


.btn-outline-white {
 font-size: 16px;
 color: var(--color-white) !important;
 background: none;
 padding: 8px 23px;
 border-radius: 5px;
 transition: 0.3s;
 font-family: var(--font-primary) !important;
 border-color: var(--color-white) !important;
}

.btn-outline-white:hover,
.btn-outline-white:focus:hover,
.btn-outline-white:focus {
 color: var(--color-primary) !important;
 background: rgba(var(--color-white-rgb)) !important;
 border-color: var(--color-white) !important;
}


.btn-white {
 font-size: 16px;
 color: var(--color-secondary-dark);
 background: var(--color-white);
 padding: 8px 23px;
 border-radius: 0px;
 transition: 0.3s;
 font-family: var(--font-primary);
 border-color: var(--color-white);
}

.btn-white:hover,
.btn-white:focus:hover, .btn-white:focus {
 color: var(--color-secondary-dark);
 background: rgba(var(--color-white-rgb), 0.85);
 border-color: var(--color-white);
}





/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
main section {
  padding: 40px 0 40px 0;
  overflow: hidden;
}

.header-content{
  margin-top: 55px;
  margin-bottom: 30px;
}

.whithoutheadercontent{
  margin-top: 85px;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary-dark);
}

.main-headings{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-secondary-dark);
}
@media (min-width: 1280px) {
  .section-header p {
    max-width: 100%;
  }

  .section-header p.w-100 {
    max-width: 100%;
  }
}


/* --------------------------------------------------------------------------

                              Body Common

---------------------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--color-primary);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary-tow);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}


.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: var(--color-black);
    color: #fff;
    height: auto;
    font-size: 16px;
    font-weight: 600;
    /* z-index: 1; */
    transition: all 0.5s;
    padding: 10px;
    position:relative;

}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 991;
  padding: 20px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

#header .logo img {
  max-height: 40px;
}

/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 25px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.appointment-btn:hover {
  background: #65c9cd;
  color: var(--color-White);
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 16px;
  font-size: 15px;
  color: #626262;
  white-space: nowrap;
  transition: 0.3s;
  text-transform:capitalize;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--color-primary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 15px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
    border-top: 2px solid var(--color-primary);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 10px;
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
    white-space: revert;
    position: relative;
    display:flex !important;

}

.navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 63px;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -122%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}
/*
.navbar */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
  @media (min-width: 992px) {
    .navbar .dropdown.megamenu>ul.row {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      align-items: baseline;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
  display: flex !important;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
.navbar .dropdown.megamenu {
    position: static;
}
.navbar .dropdown.megamenu > ul li .categroy {
    font-size:20px;
    font-weight:500;
    line-height: 2;
    text-align: start;
    width: 100%;
    display: block;
    margin-left: 10px;
}
.navbar .dropdown.megamenu>ul li .megamenu-items {
    margin-top: 5px;
}
.navbar .dropdown a span {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    display: contents;
}
.navbar .dropdown .active > a{
    color:var(--color-primary);
}
.navbar .dropdown>a span::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}


.dropdown-menu.dropdown-menu-right{
  left: auto !important;
  right: 0px;
}

/* ----------------------------------------------------------------------
                             Home Banner
-------------------------------------------------------------------------*/

.swiper-banner{
      background: var(--color-white);
    background-image: url("../images/home-banner_1.png");
    background-position: center;
    background-size: cover;
}
.home-banner {
	position:relative;
	padding:75px 0px;
}
.home-banner h1 {
	font-size:51px;
	font-weight: 700;
	padding: 0px;
	margin: 0px;
	color:var(--color-white);
	line-height:80px;
}
.swiper-slide .home-banner-tow h1{
  font-size:45px;
	font-weight: 700;
	padding: 0px;
	margin: 0px;
	color:var(--color-white);
	line-height:80px;

}
.home-banner a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 3px;
	margin: 20px 0 0 0;
	font-weight: 500;
}



.main-heading {
    color: var(--color-primary);
}
.main-heading-1 {
    font-size:25px;
    font-weight:600;
    text-align: center;
    padding: 0px;
    margin: 0;
    color: var(--color-primary);
}
.main-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    padding: 0px;
    margin: 0;
}
.sub-heading {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    padding: 0px;
    margin: 0;
}
.sub-heading {
    color: var(--color-black);
}
.hosting-services, .faq-section {
	padding:80px 0px;
	position:relative;
}
.hosting-services.backgroung-banner {
	position:relative;
	background-size:cover;
}
.hosting-services.backgroung-banner:before {
	width: 100%;
	height: 100%;
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.fancy-box {
    background:var(--color-White);
    position: relative;
    padding: 30px;
    overflow: hidden;
    margin-top: 50px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.fancy-box:before {
    position: absolute;
    content: "";
    left: -150px;
    top: 0;
    height: 2px;
    width: 120px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.fancy-box:before, .fancy-box:after, .fancy-box-03:before {
    background: var(--color-primary-tow);
}
.fancy-box:hover:before {
    left: 0;
}
.fancy-box:hover:after {
    right: 0;
}
.fancy-box:after {
    position: absolute;
    content: "";
    right: -150px;
    bottom: 0;
    height: 2px;
    width: 120px;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.fancy-box h4 {
    font-size: 22px;
    font-weight: 600;
    padding: 20px 0px;
    margin-bottom: 0px;
    color: var(--color-primary);
}
.svg-icon svg{
      width:50px;
    fill: var(--color-primary-tow);
    height: auto;
    transition: all 0.5s;
    display: inline-block;
}

/* ----------------------------------------------------------------------
                             Home Domain Search
-------------------------------------------------------------------------*/

.home-domain-search {
	padding: 80px 0px;
}
.home-domain-search #homepageDomainSearch {
	width: 70%;
	margin:25px auto 0 auto;
}
.home-domain-search #homepageDomainSearch .optionalField {
	color: var(--color-black);
	width: 70%;
	line-height: 45px;
	font-size: 20px;
	padding: 10px;
	border-top-left-radius: 3px;
	border: 0;
	border-bottom-left-radius: 3px;
	float: left;
}
.home-domain-search #homepageDomainSearch .domain_submit {
	border: 0;
	padding: 10px;
	font-size: 20px;
	width: 27%;
	margin: 0;
	float: left;
	line-height: 45px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	cursor:pointer;
}
.home-domain-search #homepageDomainSearch .domain_submit {
    background:var(--color-primary-tow);
    color:var(--color-white);
}
.section-bg {
    position: absolute;
    top: -20px;
    height: 100%;
    width: 100%;
}



/* ----------------------------------------------------------------------
                             Plan and Pricing box
-------------------------------------------------------------------------*/

.home-plan {
	padding: 80px 0px;
}
.home-plan .price_box {
	text-align: center;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
	margin-top: 50px;
	position: relative;
	z-index: 1;
	background:var(color-white);
}
.home-plan .price_box .box_top {
    background: var(--color-primary);
}
.home-plan .price_box .box_top .price {
    color:var(--color-white);
}
.home-plan .price_box .box_top .price_title {
    color:var(--color-white);
}
.home-plan .price_box .box_top p {
    color:var(--color-white);
}
.home-plan .price_box .box_top p {
    font-size: 14px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.home-plan .price_box .box_top .hr, footer .footer-menu .footer-head:before {
    background:var(--color-primary-tow);
    opacity: 1;
}
.home-plan .price_box .box_top {
	padding: 20px 0;
}
.home-plan .price_box .box_top .price_title {
	font-size: 24px;
  font-weight: 500;
}
.home-plan .price_box .box_top p {
	font-size: 14px;
	padding: 0;
	margin: 0;
	text-align:center;
  font-weight: 400;
}
.home-plan .price_box .box_top .hr {
	border: none;
	text-align: center;
	display: table;
 transition: all .5s ease 0s;
	width: 60px;
	margin: 10px auto;
	height: 3px;
	padding:0px;
}
.home-plan .price_box:hover .box_top .hr {
	width: 80px;
}
.home-plan .price_box .box_top .price {
	font-size: 60px;
	font-weight: 600;
	line-height: 30px;
	padding-top: 15px;
}
.home-plan .price_box .box_top .price span {
    font-size: 35px;
    padding: 0 5px;
    margin: 0;
    vertical-align: super;
    font-weight: 600;
}
.home-plan .price_box .box_top .price small {
	font-size: 16px;
	font-weight: normal;
}
.home-plan .price_box ul {
	margin: 0;
	padding: 15px 20px;
	text-align: left;
	list-style: none;
}
.home-plan .price_box ul li {
    font-size: 18px;
    line-height: 34px;
    width: 100%;
    font-weight: 500;
}
.home-plan .price_box ul li:before {
	content: "";
	background: url('../images/checked.svg') no-repeat 0 0;
	width: 15px;
	height: 15px;
	float: left;
	margin-right: 5px;
	margin-top: 9px;
}


/* ----------------------------------------------------------------------
                             Plan and Pricing box
-------------------------------------------------------------------------*/

.home-plan {
	padding: 80px 0px;
}
.home-plan .price_box {
	text-align: center;
	box-shadow: 0 7px 20px rgba(0, 0, 0, 0.06);
	margin-top: 50px;
	position: relative;
	z-index: 1;
	background:var(--color-white);
}
.home-plan .price_box .box_top {
	padding: 20px 0;
}
.home-plan .price_box .box_top .price_title {
	font-size: 24px;
}
.home-plan .price_box .box_top p {
	font-size: 14px;
	padding: 0;
	margin: 0;
	text-align:center;
}
.home-plan .price_box .box_top .hr {
	border: none;
	text-align: center;
	display: table;
 transition: all .5s ease 0s;
	width: 60px;
	margin: 10px auto;
	height: 3px;
	padding:0px;
}
.home-plan .price_box:hover .box_top .hr {
	width: 80px;
}
.home-plan .price_box .box_top .price {
	font-size:55px;
	font-weight: 600;
	line-height: 30px;
	padding-top: 15px;
}
.home-plan .price_box .box_top .price i {
	font-size: 35px;
	padding: 0;
	margin: 0;
	vertical-align: super;
}
.home-plan .price_box .box_top .price small {
	font-size: 16px;
	font-weight: normal;
}
.home-plan .price_box ul {
	margin: 0;
	padding: 15px 20px;
	text-align: left;
	list-style: none;
}
.home-plan .price_box ul li {
	font-size: 16px;
	line-height: 34px;
	width: 100%;
}
.home-plan .price_box ul li:before {
	content: "";
	background: url('../images/checked.svg') no-repeat 0 0;
	width: 15px;
	height: 15px;
	float: left;
	margin-right: 5px;
	margin-top: 9px;
}
.home-plan .price_box .bottom button.green-button {
	display: inline-block;
	margin: 15px 0px 30px 0px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 500;
	border:0px;
	border-radius:3px;
	cursor:pointer;
  color: var(--color-white);
  background: var(--color-primary-tow);
}
/* ----------------------------------------------------------------------
                             Page Banner
-------------------------------------------------------------------------*/



.hosting-page-banner {
	background-size: cover;
	position: relative;
	padding: 80px 0px;
	display:inline-block;
	width:100%;
}
.hosting-page-banner h1 {
	font-size: 50px;
	font-weight: 700;
	padding: 0px;
	margin: 0px;
}
.hosting-page-banner span.top {
	font-size: 18px;
	padding: 8px 10px;
	display: inline-block;
	font-weight:500;
	border-radius: 3px;
}
.hosting-page-banner p {
	font-size: 16px;
	font-weight: 400;
	padding: 20px 0 0 0;
}
.hosting-page-banner ul {
	padding: 20px 0 0 0;
	margin: 0px;
	display: inline-block;
	width: 100%;
}
.hosting-page-banner.reseller-hosting ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	width: 50%;
	float:inherit;
	line-height: 30px;
}
.hosting-page-banner.cloud-hosting ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	width: 50%;
	float:inherit;
	line-height: 30px;
}
.hosting-page-banner ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	width: 50%;
	float: left;
	line-height: 30px;
}
.hosting-page-banner ul li:before {
	content: "";
	background: url('../images/checked-white.svg') no-repeat 0 0;
	width: 15px;
	height: 15px;
	float: left;
	margin-right: 5px;
	margin-top: 8px;
}
.hosting-page-banner a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 3px;
	margin: 20px 0 0 0;
	font-weight: 500;
}


/* ----------------------------------------------------------------------
                             Hosting Services 1
-------------------------------------------------------------------------*/

.hosting-services, .faq-section {
	padding:80px 0px;
	position:relative;
}
.hosting-services.backgroung-banner {
	position:relative;
	background-size:cover;
}
.hosting-services.backgroung-banner:before {
	width: 100%;
	height: 100%;
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.hosting-services-1 hr, .hosting-services-3 hr {
    background:var(--color-primary-tow);
    opacity: 1;
}
.hosting-services-1 {
	text-align: center;
	margin-top: 50px;
}
.hosting-services-1 img {
	text-align: center;
  margin: auto;
}
.hosting-services-1 h3 {
	font-size:22px;
	font-weight:600;
	padding:15px 0px 0px 0px;
}
.hosting-services-1 hr {
	border: none;
	text-align: center;
	display: table;
 transition: all .5s ease 0s;
	width: 60px;
	margin: 15px auto;
	height: 3px;
}
.hosting-services-1 p {
	font-size: 18px;
	text-align: center;
	line-height: 35px !important;
	margin: 0;
	padding: 0;
	font-weight: 500 !important;
}
.hosting-services-1:hover hr {
	width: 80px;
}
/* ----------------------------------------------------------------------
                             Hosting Services 2
-------------------------------------------------------------------------*/
.hosting-services-2 h3, .hosting-services-2 p {
    color:var(--color-white);
}
.hosting-services-2 hr {
    background:var(--color-primary-tow);
    opacity: 1;
}
.hosting-services-2 {
	text-align: left;
	margin-top: 50px;
	display:inline-block;
	width:100%;
}
.hosting-services-2 .left {
	float: left;
	width: 20%;
  padding-left: 30px;
}
.hosting-services-2 .right {
	float: left;
	width: 80%;
}
.hosting-services-2 img {
	padding-top: 25px;
}
.hosting-services-2 h3 {
	font-size:22px;
	font-weight:600;
	padding:0px 0px 0px 0px;
}
.hosting-services-2 hr {
	border: none;
	text-align: center;
	display: table;
transition: all .5s ease 0s;
	width: 60px;
	margin: 15px 0;
	height: 3px;
}
.hosting-services-2 p {
    font-size: 17px;
    text-align: left;
    line-height: 30px;
    margin: 0;
    padding: 0;
    font-weight: 500 !important;
}
.hosting-services-2:hover hr {
	width: 80px;
}
/* ----------------------------------------------------------------------
                             Hosting Services 3
-------------------------------------------------------------------------*/

.hosting-services-3 {
	text-align: center;
	margin-top: 50px;
	width:100%;
}
.hosting-services-3 h3 {
	font-size:20px;
	font-weight:600;
	padding:0px 0px 0px 0px;
	line-height:30px;
}
.hosting-services-3 hr {
	border: none;
	text-align: center;
	display: table;
 transition: all .5s ease 0s;
	width: 60px;
	margin: 25px auto 15px auto;
	height: 3px;
}
.hosting-services-3:hover hr {
	width: 80px;
}



/* ----------------------------------------------------------------------
                             Footer
-------------------------------------------------------------------------*/
.blue-bg {
    background:var(--color-primary);
}
footer {
	padding:60px 0px;
}
footer .about-footer {
    background: var(--color-primary-dark);
    padding: 20px;
    display: inline-table;
    z-index: 555;
    position: sticky;
}
footer .about-footer p {
	font-size: 15px;
	font-weight: 400;
	padding: 0px 0px 20px 0px;
	margin:0;
	color:#FFF;
}
footer .about-footer ul{
  padding: 0px;
}
footer .about-footer .footer-head {
  font-size: 22px;
  font-weight: 600;
  padding: 15px 0px 15px 0px;
  color:var(--color-white);
  position: relative;
}
footer .about-footer .footer-head::before {
 content: "";
 width: 50px;
 margin: 0;
 height: 3px;
 padding: 0px;
 position: absolute;
 top: 0;
}
footer .about-footer .footer-head:before {
    background: var(--color-primary-tow);
    opacity: 1;
}
footer .about-footer ul li {
	list-style: none;
	float: left;
	width:100%;
	padding:5px 0px;
	font-size: 15px;
	font-weight: 400;
	color:var(--color-white);
}
footer .about-footer ul li i {
	padding:0px 5px 0px 0px;
}
footer .about-footer ul li a {
	font-size: 15px;
	font-weight: 400;
	color:var(--color-white);
}
footer .about-footer ul li a i {
    font-size: 23px;
    color:var(--color-White);
}
footer .about-footer ul.social-menu {
	display:inline-block;
	width:100%;
	padding:20px 0px 0px 0px;
}
footer .about-footer ul.social-menu li {
	float:left;
	margin:0px 10px 0px 0px;
	width:auto;
}
footer .footer-menu {
	padding:0px;
  z-index: 555;
  position: sticky;
}
footer .footer-menu .footer-head {
	font-size: 22px;
	font-weight: 600;
	padding: 15px 0px 15px 0px;
	color:var(--color-white);
	position: relative;
}
footer .footer-menu .footer-head::before {
 content: "";
 width: 50px;
 margin: 0;
 height: 3px;
 padding: 0px;
 position: absolute;
 top: 0;
}
footer .footer-menu ul{
  padding: 0px;
}
footer .footer-menu ul li {
    list-style: none;
    float: left;
    width: 100%;
    padding: 5px 0px;
    padding-left: 28px;
    position: relative;
}
footer .footer-menu ul li:before {
    content: "";
    background: url('../images/checked-white.svg') no-repeat 0 0;
    width: 15px;
    height: 15px;
    margin-top: 4px;
    position: absolute;
    left: 4px;
    top: 5px;
}
footer .footer-menu ul li a {
    font-size: 15px;
    font-weight: 400;
    color:var(--color-white);
}
footer .footer-menu ul li a:hover {
	color:#d8e2ea;
}
.copyright {
	background:var(--color-primary-dark);

	padding: 15px 0;
}
.copyright .copyright-text {
	color:var(--color-white);
}
.copyright ul.legal-menu {
	float: right;
	padding-top: 7px;
}
.copyright ul.legal-menu li {
	float: left;
	margin-left: 10px;
	padding-left: 10px;
	border-left: 1px solid var(--color-primary);
	line-height: 14px;
}
.copyright ul.legal-menu li:first-child {
	border-left: 0px;
	padding: 0;
	margin: 0;
}
.copyright ul.legal-menu li a {
	color:var(--color-white);
}



/* ========================== Sale-banner ======================== */

/* ==================== Winter-Sale ============================ */

.Winter-Sale{
  width: 100%;
  height:100%;
    display: flex;
    background-color: #adadad;
    margin: 0;
    align-items: center;
    overflow: hidden !important;
    background-image: linear-gradient(0deg, #ffffff 5%, #000000a3 29%, #00000078 60%), url('../images/Winter-Sale.jpg') !important;
    background-size: cover;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

.Winter-Sale .Winter-Sale-heading{
    font-size:100px;
    font-weight: 700;
    font-family: system-ui;
    text-transform: uppercase;
    color: white;
    text-align:center;
    line-height: 30px;
    margin-bottom:50px;
}
.Winter-Sale .Winter-Sale-heading .Sale{
    color:var(--color-primary-tow);
}
.Winter-Sale .Winter-Sale-paragraph{
    font-size:35px;
    font-weight: 500;
    font-family: system-ui;
    text-transform: uppercase;
  color:var(--color-white);
    text-align:center;
    line-height: 30px;
    margin-top:50px;
}
.Winter-Sale .offier{
    font-size:65px;
    font-weight: 500;
    font-family: system-ui;
    text-transform: uppercase;
    color:var(--color-primary-tow);
    text-align:center;
    line-height:80px;
}
.Winter-Sale .Start{
  justify-content:center;
  text-align: center;
}

.Winter-Sale .Start a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 3px;
	margin: 20px 0 0 0;
	font-weight: 500;
  background: #ff9c34;
  color: #FFF;
}

.snow, .snow:before, .snow:after {
  position: absolute;
  top: -600px;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(5px 5px at 298px 153px, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0)), radial-gradient(6px 6px at 342px 576px, white 50%, rgba(0, 0, 0, 0)), radial-gradient(5px 5px at 181px 24px, rgba(255, 255, 255, 0.7) 50%, rgba(0, 0, 0, 0)), radial-gradient(6px 6px at 148px 471px, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0)), radial-gradient(4px 4px at 143px 316px, rgba(255, 255, 255, 0.8) 50%, rgba(0, 0, 0, 0)), radial-gradient(3px 3px at 103px 371px, rgba(255, 255, 255, 0.9) 50%, rgba(0, 0, 0, 0)), radial-gradient(4px 4px at 288px 367px, white 50%, rgba(0, 0, 0, 0)), radial-gradient(5px 5px at 193px 473px, rgba(255, 255, 255, 0.8) 50%, rgba(0, 0, 0, 0)), radial-gradient(4px 4px at 456px 306px, rgba(255, 255, 255, 0.8) 50%, rgba(0, 0, 0, 0)), radial-gradient(4px 4px at 546px 420px, rgba(255, 255, 255, 0.7) 50%, rgba(0, 0, 0, 0)), radial-gradient(5px 5px at 270px 151px, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0)), radial-gradient(3px 3px at 446px 173px, white 50%, rgba(0, 0, 0, 0)), radial-gradient(6px 6px at 309px 159px, rgba(255, 255, 255, 0.9) 50%, rgba(0, 0, 0, 0)), radial-gradient(6px 6px at 465px 578px, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0)), radial-gradient(5px 5px at 352px 444px, white 50%, rgba(0, 0, 0, 0)), radial-gradient(4px 4px at 400px 81px, rgba(255, 255, 255, 0.6) 50%, rgba(0, 0, 0, 0)), radial-gradient(3px 3px at 145px 519px, rgba(255, 255, 255, 0.9) 50%, rgba(0, 0, 0, 0)), radial-gradient(6px 6px at 474px 573px, rgba(255, 255, 255, 0.9) 50%, rgba(0, 0, 0, 0)) ;
  background-size: 600px 600px;
  animation: snow 3s linear infinite;
  content: "";
}

@keyframes snow {
  to {
    transform: translateY(600px);
  }
}

/* ================== happy-new-year ======================== */

.happy-new-year{
	display: grid;
	overflow:hidden;
	position: relative;
}

.lightrope {
	top: 0;
	left: 0;
  margin: -15px 0 0 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  width: 100%;
}
  .lightrope li {
		position: relative;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    width: 12px;
    height: 28px;
    border-radius: 50%;
    margin: 20px;
    display: inline-block;
    background: #00f7a5;
    box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
    -webkit-animation-name: flash-1;
            animation-name: flash-1;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
      }
     .lightrope li:nth-child(2n+1) {
      background: cyan;
      box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.5);
      -webkit-animation-name: flash-2;
              animation-name: flash-2;
      -webkit-animation-duration: 0.4s;
              animation-duration: 0.4s;
    }
      .lightrope li:nth-child(4n+2) {
      background: #f70094;
      box-shadow: 0px 4.6666666667px 24px 3px #f70094;
      -webkit-animation-name: flash-3;
              animation-name: flash-3;
      -webkit-animation-duration: 1.1s;
              animation-duration: 1.1s;
    }
  .lightrope li:nth-child(odd) {
      -webkit-animation-duration: 1.8s;
              animation-duration: 1.8s;
    }
    .lightrope li:nth-child(3n+1) {
      -webkit-animation-duration: 1.4s;
              animation-duration: 1.4s;
    }
    .lightrope li:before {
      content: "";
      position: absolute;
      background: #222;
      width: 10px;
      height: 9.3333333333px;
      border-radius: 3px;
      top: -4.6666666667px;
      left: 1px;
    }
      .lightrope li:after {
      content: "";
      top: -14px;
      left: 9px;
      position: absolute;
      width: 52px;
      height: 18.6666666667px;
      border-bottom: solid #222 2px;
      border-radius: 50%;
    }
    .lightrope li:last-child:after {
      content: none;
    }
      .lightrope li:first-child {
      margin-left: -40px;
    }

@-webkit-keyframes flash-1 {
  0%, 100% {
    background: #00f7a5;
    box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}

@keyframes flash-1 {
  0%, 100% {
    background: #00f7a5;
    box-shadow: 0px 4.6666666667px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}

@-webkit-keyframes flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4.6666666667px 24px 3px cyan;
  }
  50% {hadow: 0px 4.6666666667px 24px 3px #00f7a5;
  }
  50% {
    background: rgba(0, 247, 165, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 247, 165, 0.2);
  }
}
@-webkit-keyframes flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4.6666666667px 24px 3px cyan;
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2);
  }
}
@keyframes flash-2 {
  0%, 100% {
    background: cyan;
    box-shadow: 0px 4.6666666667px 24px 3px cyan;
  }
  50% {
    background: rgba(0, 255, 255, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(0, 255, 255, 0.2);
  }
}
@-webkit-keyframes flash-3 {
  0%, 100% {
    background: #f70094;
    box-shadow: 0px 4.6666666667px 24px 3px #f70094;
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
  }
}
@keyframes flash-3 {
  0%, 100% {
    background: #f70094;
    box-shadow: 0px 4.6666666667px 24px 3px #f70094;
  }
  50% {
    background: rgba(247, 0, 148, 0.4);
    box-shadow: 0px 4.6666666667px 24px 3px rgba(247, 0, 148, 0.2);
  }
}

.animate-charcter
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
      font-size: 190px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.happy-new-year .sky {
	width:100%;
  height:auto;
  background: none repeat scroll 0 0 #000854;
  color: #FFF;
  padding: 12px;
  display: block;
	background: rgb(181,189,200);
	background: -moz-radial-gradient(center, ellipse cover,  rgba(135,206,235,1) 0%, rgba(0,8,84,1) 45%, rgba(8,16,42,1) 100%);
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(135,206,235,1) 0%,rgba(0,8,84,1) 45%,rgba(8,16,42,1) 100%);
	background: radial-gradient(ellipse at center, hsl(200, 100%, 80%) 0%, hsl(200, 60%, 40%) 45%, hsl(200, 100%, 10%) 100%);
	display: grid;
	padding:30px 0px;
}

.happy-new-year .sky .off .sale .off-heading {
    font-size: 100px;
    color: #fb9a35;
    font-weight: bolder;
    text-transform: uppercase;
    z-index: 5;
    text-align: center !important;
    margin-top: 30px;
    line-height: 50px;
    margin-bottom: 10px;
}
.happy-new-year .sky .off .sale  .Save-heading {
    font-size: 30px !important;
    color: #000;
    font-weight: 600;
    text-align: center !important;
    line-height: 40px;
}
.happy-new-year .sky .off .sale .off-heading .off-tow{
 font-size: 55px;
 color:#fb9a35;
 font-weight:bolder;
 text-transform: uppercase;
 z-index: 5;
	text-align: center !important;
	margin-top:40px;
}
.happy-new-year .sky .heading{
	font-size: 60px;
	color:#fb9a35;
	font-weight:bolder;
	text-transform: uppercase;
	margin-top:30px;
	margin-bottom:30px;
	line-height: 60px;
}
.happy-new-year .sky h5{
	font-size: 30px;
	color:#fb9a35;
	font-weight:500;
	line-height: 35px;
	padding-bottom: 20px;
}
.happy-new-year .sky p{
	font-size: 30px;
	color:#fff;
	font-weight:500;
	line-height: 35px;
}
.happy-new-year .sky .Start a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 3px;
    margin: 20px 0 0 0;
    font-weight: 500;
    background: #ff9c34;
    color: #FFF;
		margin-bottom: 50px;
}
.z-index-5{
	z-index: 5;
}
.align-itam-center{
	align-items: center;
}
.happy-new-year .off{
	width:100%;
	height:100%;
	border-radius: 5px;
	background-color: #fff;
	padding: 20px 20px;
}
.happy-new-year .off .sale{
  border: 2px dotted #000;
	padding: 15px 15px;
}
.happy-new-year .off .sale .coupon{
    color: #000;
		text-align: center;
		font-size: 23px;
		font-weight:600;
		padding: 0px;
		margin: 0px;
}
.happy-new-year .off .sale .code{
    color: #dc3545 !important;
    padding-bottom: 20px;
		text-align: center;
		font-size: 40px;
		font-weight:600;
		padding-top: 10px;
}



/* ===================== Christmas-sale ========================= */

.Christmas-sale{
    position: relative;
    background: url("../images/Christmas-sale.jpg") ;
    background-repeat: no-repeat;
		background-size: cover;
    width: 100%;
    height:auto;
    overflow: hidden;
		padding: 50px 0px;
}


.Christmas-sale  .sale-heading{
 font-size: 50px;
 color:#fb9a35;
 font-weight:bolder;
 text-transform: uppercase;
 margin-top: 50px;
 z-index: 5;
}
.Christmas-sale .sub-heading{
	font-size:30px !important;
	color:#fff;
	font-weight: 500;
	z-index: 5;
}
.Christmas-sale  .heading{
	font-size: 70px;
	color:#0e538a;
	font-weight:bolder;
	text-transform: uppercase;
	margin-top:10px;
	margin-bottom:10px;
	z-index: 5;
	text-align: center;
	line-height: 70px;
}
.Christmas-sale  h5{
	font-size: 30px;
	color:#fb9a35;
	font-weight:500;
	line-height: 35px;
	text-align: center;
}
.Christmas-sale  p{
	font-size: 30px;
	color:#fff;
	font-weight:500;
	line-height: 35px;
	text-align: center;
}
.Christmas-sale .Start {
    text-align:center;
}
.Christmas-sale .Start a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 3px;
    margin: 20px 0 0 0;
    font-weight: 500;
    background: #ff9c34;
    color: #FFF;
		margin-bottom: 50px;
}

.ribbon {
  width:300px;
  height: 60px;
  margin: 100px auto 0px;
  position: relative;
  color: #fff;
  font: 28px/60px sans-serif;
  text-align: center;
  text-transform: uppercase;
  background: #e6a335;
}

.ribbon i {
  position: absolute !important;
}

.ribbon i:first-child {
  right: auto;
  left: -60px;
  border: 30px solid #e6a335;
  border-left-color: transparent;
}

.ribbon i:nth-child(2) {
  left: auto;
  right: -20px;
  border-right-color: transparent;
  border-left-color: #e6a335;
}

.ribbon i:nth-child(3){
  width: 20px;
  bottom: -20px;
  left: -60px;
  z-index: -2;
  border: 30px solid #e6a335;
  border-left-color: transparent;
}

.ribbon i:last-child {
  left: auto;
  right: -60px;
  border: 30px solid #e6a335;
  border-right-color: transparent;
}


 /* ========testimonials============== */
.testim {
		width: 100%;
    margin: 50px 0px 50px 0px;
    background: var(--color-primary);
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}
.testim .cont div.img img {
    display: block;
    width: 130px;
    height: 130px;
    line-height: 130px;
    margin: auto;
    border-radius: 50%;
}

.testim div h2 {
    color:var(--color-primary-tow);
    font-size: 1.rem !important;
    margin: 15px 0;
    z-index: 999;
    text-align: center;
}

.testim div p {
    font-size: 1.15em;
    color:var(--color-white);
    width: 80%;
    margin: auto;
    text-align: center;
}


 /* ========testimonials============== */


/* =========domain-transfer============== */

.domain-transfer{
  display: flex !important;
}
.domain-transfer .select{
	padding: 10px;
}
.domain-transfer .width-50{
  width:50% !important;
}
.domain-transfer .width-25{
  width: 25% !important;
}

/* =============hosting================ */
.hosting-page-banner {
	background:#014073;
}
.hosting-page-banner.shared-hosting {
	background-image:url("../images/shared-hosting-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
    margin-bottom: 50px;
}
.hosting-page-banner.reseller-hosting {
	background-image:url("../images/reseller-hosting-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px !important;
}
.hosting-page-banner.dedicated-server {
	background-image:url("../images/dedicated-server-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.vps-server {
	background-image:url("../images/vps-server-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.wordpress-banner {
    background-image: url("../images/wordpress-banner.jpg");
    background-repeat: no-repeat;
    padding: 80px 0px;
    background-size: cover;
    margin-bottom: 50px;
}
.hosting-page-banner.cloud-hosting {
	background-image:url("../images/cloud-hosting-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.ssl-certificate {
	background-image:url("../images/ssl-certificate-banner.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.business-email{
	background-image:url("../images/bg-1.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.enterprise-email {
	background-image:url("../images/bg-2.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.codeguard {
	background-image:url("../images/bg-3.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.affiliate{
	background-image:url("../images/bg-4.jpg");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
.hosting-page-banner.webpackage{
	background-image:url("../images/bg-5.png");
	background-repeat:no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}
#hero:before {
    content: "";
    background: rgba(var(--color-secondary-rgb), 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.hosting-page-banner:before {
	width: 100%;
	height: 100%;
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .6);
}
.hosting-page-banner h1 {
	color:var(--color-white);
}
.hosting-page-banner span.top {
	background: var(--color-gray);
	color: var(--color-white);
	border: 1px solid var(--color-gray);
}
.hosting-page-banner p,
.home-banner p {
	color:var(--color-white);
}
.hosting-page-banner ul li {
	color:var(--color-white);
}
.hosting-page-banner a,
.home-banner a,
ul.services-list a {
	background: #ff9c34;
	color:var(--color-white);
}
.hosting-page-banner.dedicated-server p{
  font-size:19px !important;
  font-weight: 500;
  margin-bottom: 0px;
  padding-top: 0px;
}
.hosting-page-banner.enterprise-email p{
  font-size:19px !important;
  font-weight: 500;
  margin-bottom: 0px;
  padding-top: 0px;
}
.hosting-page-banner.business-email p{
  font-size:19px !important;
  font-weight: 500;
  margin-bottom: 0px;
  padding-top: 0px;
}
.hosting-page-banner.ssl-certificate p{
  font-size:18px !important;
  font-weight: 400;
  margin-bottom: 0px;
  padding-top: 10px;
}
.paragraph{
    font-size: 19px !important;
    font-weight: 500 !important;
    line-height: 34px;
}
.plan-tabing{
  border: none;
  margin: 0;
  padding: 0;
}

.plan-tabing li.nav-item{
  border: none;
  margin: 0;
  padding: 0;
}

.plan-tabing li.nav-item a.nav-link{
border: 1px solid;
border-color: var(--color-primary);
color: var(--color-primary);
text-align: center;
border-radius: 0px;
font-size: 19px;
font-weight: 500;
}

.plan-tabing li.nav-item a.nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 19px;
    font-weight: 500;
}

.plan-tabing li.nav-item a.nav-link.plan-first-items{
  border-radius: 50px 0 0 50px;
}

.plan-tabing li.nav-item a.nav-link.plan-last-items{
  border-radius: 0px 50px 50px 0px;
}

/* ----------------------------------------------------------------------
                             Apps Logo
-------------------------------------------------------------------------*/

.app-logo {
	text-align: center;
	margin-top: 50px;
	transition: ease-in-out 0.5s;
	position: relative;
}
.app-logo img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	filter: grayscale(100%);
}
.app-logo:hover img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	filter: grayscale(0%);
}
.app-logo:hover {
	transform: scale(1.05);
}

.box-shadow {
	box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
	border-radius: 5px;
}
.services-hover {
 transition: all .2s ease-out;
	will-change: transform;
}
.services-hover:hover {
	transform: translateY(-10px);
	box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
}

/* ----------------------------------------------------------------------
                             Hosting Services
-------------------------------------------------------------------------*/

ul.services-list {
	padding: 0px;
	margin: 0px;
	display: inline-block;
	width: 100%;
}
ul.services-list li {
	list-style: none;
	font-size: 16px;
	font-weight: 500;
	width: 100%;
	float: left;
	padding: 15px 0px 0px 0px;
	color: #333;
}
ul.services-list li:before {
	content: "";
	background: url('../images/checked.svg') no-repeat 0 0;
	width: 15px;
	height: 15px;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
}
ul.services-list a {
	display: inline-block;
	padding: 10px 20px;
	font-size: 18px;
	border-radius: 3px;
	margin: 20px 0 0 0;
	font-weight: 500;
}


/* ====================accordion================== */

.faq .accordion .accordion-item{
  border:none;
  border-radius: 4px;
  margin-top: 15px;
  border:1px solid #ff9c34;
  border-color:#E3E1;
  color: var(--color-secondary);
  font-size:18px;
  line-height: 1.7;
}


.faq .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 20px;
    line-height: 24px;
    background: var(--color-primary-tow);
    border-radius: 0px;
    border: none !important;
    color: var(--color-white);
    font-weight: 500;
}

.faq .accordion .accordion-item .accordion-header .accordion-button.collapsed{
  background: rgba(var(--color-black-rgb), 0.1);
  border-radius: 0px;
  color: var(--color-black);
}

.section-ptb p.tabcon-header-note {
    font: 500 21px/21px 'proxima_nova', Arial;
    color:var(--color-primary-tow);
}
.section-ptb p.tabcon-header-note .WebRupee{
  font-size:20px;
  font-weight: 500;
}
.section-ptb p.tabcon-header-note .storage-addon-price{
  font-size:25px;
  font-weight:600;
}
.main-heading-2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    padding: 0px;
    margin: 0;
    color:var(--color-primary);
}
.terms h5{
  font-size: 23px;
  font-weight: 600;
  color: var(--color-primary);
}
.lead {
    font-size: 1.25rem;
    font-weight: 400;
}
hr{
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid;
    opacity: 0.25;
    color: var(--color-primary-tow);
}


/* ==========our_team_banner============ */


.hosting-page-banner.our_team_banner{
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%), url("../images/our_team.png") center center no-repeat;
    background-size: cover;
    max-width: 100%;
    height:auto;
    margin-bottom: 50px;
}

.staff-member {
  position: relative;
  display: block;
}
.staff-member {
    position: relative;
    display: block;
}
.staff-member img {
  width: 100%;
}

.staff-member h5, .staff-member p, .staff-member span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.staff-member h5, .staff-member p, .staff-member span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.staff-member span {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-black);
    display: inline-block;
}

.social li a:hover span {
  color: #031974;
}

.staff-member .overlay {
  background-color: var(--color-primary);
  color:var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 4px;
}

.staff-member .overlay .teacher-quote {
  font-size: 0.9rem;
  font-weight: 300;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.staff-member .overlay .teacher-name {
  color: #fff;
  text-decoration: none !important;
  display: block;
  margin-top: 15px;
}

.staff-member .overlay h5 {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  opacity: 0;
}

.staff-member .overlay .teacher-field {
  font-size: 0.9rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 0;
}

.staff-member .overlay ul.social {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.staff-member .overlay ul.social li {
  margin: 0;
}

.staff-member .overlay ul.social a {
  margin: 0 5px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  text-align: center;
  border-radius: 50%;
  display: block;
}

.staff-member .overlay ul.social {
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
}

.staff-member:hover .social {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.staff-member .overlay .teacher-see-profile {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.staff-member:hover .overlay {
  opacity: 0.92;
}

.staff-member:hover .overlay h5, .staff-member:hover .overlay p, .staff-member:hover .overlay span, .staff-member:hover .overlay ul.social {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}
.ti-facebook:before {
    content: "\F344";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ti-linkedin:before {
  content: "\F437";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ti-dribbble:before {
  content: "\F472";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.hosting-page-banner.contact_us_banner {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%), url("../images/support.jpg") center center no-repeat;
    background-size: cover;
    max-width: 100%;
    height:auto;
    margin-bottom: 50px;
}

.hosting-page-banner.contact_us_banner p{
  font-size:20px;
  font-weight: 500;
}
.contact_us_banner .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
    letter-spacing: 1px;
}
.hosting-page-banner.register{
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 255, 255, 0) 100%), url("../images/register.jpg") center center no-repeat;
    background-size: cover;
    max-width: 100%;
    height:auto;
    margin-bottom: 50px;
}
.asterix{
  color: var(--color-primary-tow);
}
.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}
.cell {
    border: 2px dotted;
    box-shadow: 0px 0px 10px #e6e6e6;
}
.cell:hover {
    background: var(--color-primary);
    transition: all.5s;
    color: #fff !important;
}
p.iagree {
    text-align: left;
    margin: 10px 0;
    font-weight:500;
}



.compare-pricing-table table {
	position: relative;
	text-align: center;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.compare-pricing-table .t-hide {
	border: 0;
	background: rgba(0,0,0,0);
}

.compare-pricing-table table thead {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}


.compare-pricing-table .select-header {
	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;
}

table > tbody > tr > td:first-child::before {
	content: "";
	display: block;
	width: 3px;
	height: 100%;
	background-color: #7759ce;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

small, .small {
  font-size: 85%;
  font-weight: 400;
}

.compare-content-body tr td.compare-title {
    max-width: 350px;
    font-size: 18px;
    font-weight: 500;
}

.compare-content-body tr td {
    padding: 6px 15px;
    vertical-align: middle;
    color: var(--color-secondary);
    font-size: 17px;
    font-weight: 500;
}

.compare-content-body tr td.compare-header {
	font-size: 15px;
	padding: 12px 15px;
	font-weight: 500;
  text-align: center !important;
}

.small-text:not(p) {
	opacity: 1;
}
.small-text {
  font-size: 13px;
}

.compare-pricing-table .table-bordered thead th, .compare-pricing-table .table-bordered thead td {
  border-bottom-width: 0px;
}
.social-nav ul li::before{
  content: "";
  display: none !important;
}
.social-nav ul li a{
  background: none !important;
  color: var(--color-primary-tow);
  padding: 0px;
}
.social-nav ul li{
    justify-content: end;
    display: block;
    width: 100%;
    text-align: end;
}
.copyright-text a{
  background: none !important;
  color: var(--color-primary-tow);
  padding: 0px;
}
.hosting-page-banner.cover-page{
    background-image: url("../images/bg-5.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height:100vh;
}
.hosting-page-banner.coming-soon-page{
    background-image: url("../images/bg-5.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.coming-soon-page .notfound-404 h1 {
    font-size: 230px;
    font-weight: 700;
    margin: 0;
    background-size: cover;
    background-position: center;
}
.full-height {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 15px;
}
.theme-banner {
    overflow: hidden;
}



.page-header-section {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}


.page-header-breadcrumb .custom-breadcrumb ol li a, .page-header-breadcrumb .custom-breadcrumb ol li.breadcrumb-item.active {
  color: inherit;
  opacity: 0.7;
}

.custom-breadcrumb ol li.list-inline-item:not(:last-child) {
  margin-right: 0;
}


.custom-breadcrumb ol {
  margin: 0;
  padding: 0;
  line-height: 0;
}


.custom-breadcrumb ol li a, .custom-breadcrumb ol li.breadcrumb-item.active {
  opacity: 0.7;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}


.custom-breadcrumb ol li a:hover, .page-header-breadcrumb .custom-breadcrumb ol li a:hover {
  opacity: 1;
}


.custom-breadcrumb ol li.breadcrumb-item {
  padding-left: 0;
}


.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-size: 11px;
  font-weight: 600;
  color: inherit;
  float: none;
}



.custom-pagination-nav ul li {
  text-align: center;
  margin-right: 10px;
}

.custom-pagination-nav ul li:focus, .custom-pagination-nav ul li a:focus {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-pagination-nav ul li a.page-link {
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 100%;
  padding: inherit;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.single-blog-card .card-body h3 a{
    color: var(--color-black);
    font-size: 25px;
    font-weight: 600;
}
.single-blog-card .card-body h3 a:hover {
    color:var(--color-primary-tow);
    font-size: 25px;
    font-weight: 600;
}
p:not(:last-child) {
    margin-bottom: 1.25em;
    font-size: 17px;
    font-weight: 500;
}
a.detail-link {
    display: inline-block;
    text-decoration: none;
    color: var(--color-black);
    font-weight: 600;
    font-size: 15px;
      color: var(--color-primary-tow);
}
.detail-link i {
    font-size: 15px;
    vertical-align: middle;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    color: var(--color-White);
    font-weight: 600;
    line-height: 5px;
    margin-left: 1px;
}
.custom-pagination-nav ul li.page-item:first-child .page-link,
.custom-pagination-nav ul li.page-item:last-child .page-link {
  border: none;
  background: transparent;
}
.badge-info {
    color: #fff;
    background-color: #17a2b8;
}
.single-blog-card span.category {
    z-index: 2;
    top: 0px;
    right: auto;
    left: 0px;
}
.badge-pill {
    padding-right: .875em;
    padding-left: .875em;
    border-radius: 50rem;
}
.badge {
    padding: 0.25rem .45rem;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 11px;
}
.badge-primary {
    background: var(--color-primary-tow);
    padding: 6px 18px;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-white);
    border-radius: 0px;
}
.card-body .post-meta ul li i{
  color: var(--color-primary-tow);
}
.card-body .post-meta ul li {
    margin-left: 0.5rem;
    font-size: 17px;
    font-weight: 500;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: var(--color-primary-tow);
    border-color: var(--color-primary-tow);
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-right: -1px;
    line-height: 1.25;
    color:var(--color-gray);
    background-color:var(--color-white);
    border: 1px solid var(--color-gray);
}
.page-link:hover {
    z-index: 2;
    text-decoration: none;
    color:var(--color-white);
    border-color: var(--color-white);
    background-color: var(--color-primary-tow);
}
.page-item .page-link i{
  color: var(--color-primary-tow);
  font-size: 26px;
}

/* ==========Network============= */

#subheader{
  background-image:url("../images/subheader.jpg");
  background-repeat: no-repeat;
  width: 100%;
  height:auto;
  margin-bottom: 50px;
}
#subheader h1 {
    font-size:60px;
    color: var(--color-primary-tow);
    font-weight: 600;
    letter-spacing: -2px;
}
.de-spot span {
    position: absolute;
    display: inline-block;
    background: var(--color-white);
    padding: 0 10px;
    font-size: 12px;
    font-weight: bold;
    left: 30px;
    line-height: 1.8em;
    color:var(--color-black);
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
}
.de-spot {
    padding: 0;
    margin: 0;
    position: absolute;
    vertical-align: center;
    text-align: center;
}
.de-circle-1 {
    width: 15px;
    height: 15px;
    background-color: var(--color-primary-tow);
    border-radius: 50%;
    position: absolute;
    margin:5px 0 0 5px;
    left:31%;
}

.de-circle-2 {
    border: 4px solid var(--color-primary-tow);
    -webkit-border-radius: 30px;
    height: 25px;
    width: 25px;
    position: absolute;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0;
    left:31%;
}
@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}
/* ==========Network============= */

.error-page h1 {
    font-size:80px;
    line-height: 60px;
    color:var(--color-white);
    font-weight: 700;
    margin-top:109px;
    margin-bottom: 44px;
}
.error-page h3 {
    font-size:40px;
    line-height: 60px;
    color:var(--color-white);
    font-weight: 700;
    margin-top:50px;
    margin-bottom:30px;
}
.error-page p {
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color:var(--color-white);
    margin-bottom:57px;
}
.error-page{
    background: url("../images/404.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height:100vh;
}

.sidebar-widget, .widget.woocommerce {
    border: 1px solid #e1eeff;
    padding: 25px 30px;
    margin-bottom: 30px;
}
.widget-title, .widget.woocommerce h2 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: bold;
}
.widget-title:before, .widget.woocommerce h2:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color:var(--color-primary-tow) !important;;
}
.widget_archive ul {
    font-weight: normal;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.widget_archive ul li:not(:last-child) {
    border-bottom: 1px solid var(--color-primary) !important;;
    padding: 10px 0px;
}
.widget_archive ul li a {
    color:var(--color-gray);
    font-size: 18px;
    font-weight: 500;
}
.widget_archive ul li span{
    color:var(--color-gray);
    font-size: 15px;
    font-weight:400;
}
.widget_categories ul {
    font-weight: normal;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}
.widget_categories ul li a {
    color: #7884ac;
    padding: 15px 0;
    display: block;
    width: 100%;
}
.widget_categories ul li:not(:last-child) a {
    border-bottom: 1px solid #e1eeff;
}
.sidebar-list li:not(:last-child), aside .sidebar-list li:not(:last-child) {
    border-bottom: 1px solid #e1eeff;
    padding-bottom: 15px;
}
aside .sidebar-list li h4 {
    margin-bottom: 0;
}
aside .footer-posts h4 a {
    color: #7884ac;
}

.sidebar-widget, .widget.woocommerce {
    border: 1px solid var(--color-black);
    padding: 25px 30px;
    margin-bottom: 30px;
}
.tagcloud a:not(:last-child) {
    margin-right: 2px;
}
.tagcloud a {
    font-size: 14px !important;
    color:var(--color-black) !important;
    background:var(--color-white) !important;
    margin-top: 5px;
    display: inline-block;
    padding: 6px 10px;
    -webkit-transition: all .2s;
    transition: all .2s;
    border: 1px solid;
    font-weight:500;
}
.tagcloud a:hover {
    color:var(--color-white) !important;
    background:var(--color-primary-tow) !important;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.search-form button, .woocommerce-product-search button {
    width: 74px;
    float: right;
    border: 1px solid var(--color-black);
    border-left: 0;
    text-align: center;
    color: #9aa4ac;
    line-height: 48px;
    padding: 0;
    background: transparent;
    -webkit-transition: all .2s;
    transition: all .2s;
}
.search-form {
    position: relative;
}
.search-form input, .woocommerce-product-search input {
    border: 1px solid var(--color-black);
    border-radius: 0;
    font-family: 'Karla', sans-serif;
    height: 50px;
    padding: 0 30px;
    width: calc(100% - 74px);
    float: left;
}
.post-content ul li i{
      color:var(--color-primary-tow) !important;
}
.post-detail .post-content{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
  border-radius: 10px;
}
.post-content ul li i{
  color: var(--color-primary-tow) !important;
  font-weight: bold;
  font-size:17px !important;
}
.post-content ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	 align-items: center;
	 padding: 0;
	 margin: 0;
}
.post-content ul li{
  width:25%;
}
.post-content {
	margin-top: 20px;
}
.post-detail .post-content ul li a{
  color: var(--color-black) !important;
  font-weight: bold;
  font-size:17px !important;
}
.post-detail .post-content ul li a:hover{
  color:var(--color-primary-tow) !important;
  font-weight: bold;
  transition: 0.3s;
}
.post-content h3 {
    font-size:18px !important;
    font-weight: 600;
    line-height:35px;
    color:var(--color-black) !important;
    padding: 15px 0px;
}
.post-content h3:hover{
    color:var(--color-primary-tow) !important;
    transition: 0.3s;
}
.post-content p{
  font-size: 17px !important;
  font-weight: 500;
}
.post-detail .post-content{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
    border-radius: 10px;
}
.post-detail .post-content a{
  font-size:26px !important;
  font-weight: 600;
  line-height:30px;
  color:var(--color-black) !important;
  margin-bottom: 20px;
}
.post-detail .post-content a:hover{
  color:var(--color-primary-tow) !important;
  margin-bottom: 20px;
}
.footer-posts h4 a {
    line-height: 24px;
    color:var(--color-black) !important;
    display: inline-block;
    font-size:17px;
    font-weight: bold;
}
.footer-posts h4 a:hover{
    line-height: 24px;
    color:var(--color-primary-tow) !important;
    display: inline-block;
    font-size:17px;
    font-weight: bold;
}
.footer-posts h4 span{
  font-size: 16px !important;
  color: var(--color-gray);
  font-weight: 500;
}

.vertical-center{
    background: url("../images/dark-2.jpg") center top / 100% no-repeat rgb(16, 18, 36);
  width:100%;
  height: auto;
}
.spacer-double {
    width: 100%;
    height: 60px;
    display: block;
    clear: both;
}
.id-color {
    color: var(--color-primary);
    font-size: 35px;
    font-weight: 600;
}
.vertical-center .heading{
    font-size:100px;
    letter-spacing: -1.8px;
    margin-bottom: 20px;
    line-height:130px;
   color: var(--color-white);
   font-weight: 600;
}
.vertical-center .s2{
  display: block;
}
.vertical-center .s2 .c1{
    font-size: 240px;
    letter-spacing: -20px;
    line-height: .85em;
    position: relative;
      color: var(--color-white);
      font-weight: bold;
}
.vertical-center .s2 .c1 span{
    background: var(--color-primary);
}

.vertical-center .s2 .c1 span{
    position: absolute;
    top: 40px;
    right: 0;
    color: var(--color-white);
    display: block;
    font-size: 40px;
    line-height: 1em;
    background:var(--color-primary);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    padding: 10px 20px 10px 0;
}
.vertical-center .s2 .c2 > span {
    line-height: 1em;
    letter-spacing: 0;
    display: block;
}
.vertical-center .s2 .c2 {
    color: rgba(255, 255, 255, 0);
    -webkit-text-stroke: 1px rgba(255, 255, 255, .5);
    font-size: 140px;
    padding-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
}
.vertical-center .s2 .c3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
}
.Partner{
  padding:20px;
  text-align: center;
  border-radius: 5px;
  border: 2px dotted var(--color-primary-tow);
}
.Partner:hover{

}
.img img {
    max-width: 125px;
    margin: auto;
    border-radius: 50%;
}
.Partner .partner-heading h5 h6{
  color: var(--color-black) !important;
}
#homepageDomainSearch {
    width:80%;
    margin: 25px auto 0 auto;
}
#homepageDomainSearch .optionalField {
    color: #ccc;
    width: 70%;
    line-height: 45px;
    font-size: 20px;
    padding: 10px;
    border-top-left-radius: 3px;
    border: 0;
    border-bottom-left-radius: 3px;
    float: left;
}
#homepageDomainSearch .domain_submit {
    background: var(--color-primary-tow);
    color: var(--color-white);
}
#homepageDomainSearch .domain_submit {
    border: 0;
    padding: 10px;
    font-size: 20px;
    width: 27%;
    margin: 0;
    float: left;
    line-height: 45px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
}
.hosting-page-banner.thank{
    background-image: url("../images/bg-5.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height:100vh;
}
.hosting-page-banner.thank-1{
    background-image: url("../images/blogrecent4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height:100vh;
    background-position: center;
}
.countdown div{
  border: 1px solid var(--color-white);
  padding: 10px;
  margin: 10px;
  width: 120px !important;
}
.countdown{
  display: flex;
}
.navbar .dropdown .icon::before{
  content:"";
  display:none !important;
}
.navbar .dropdown .icon:hover {
    color: var(--color-primary);
    padding-left: 00px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover>.icon {
    color: var(--color-primary);
    padding-left:10px;
}
.x-icon {
	width: 24px;
	color: #FFF;
	fill: #FFF;
	margin-top: 3px;
}