/* -- :: Root :: -- */
:root {
  --mainColor     : #4caf50;
  --grColor       : #2E84FF;
  --darColor      : #8bc34a;
  --hoverColor    : #8bc34a;
  --typeColor     : #031b4e;
  --pColor        : rgba(3, 27, 78, 0.7);
  --hotColor      : #FF9800;
  --darHotColor   : #ffc107;
  /* Box Shadow */
  --btn-shadow    : 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
  /* SVG Colors */
  --a : #031B4E;
  --b : #C13D3D;
  --c : #EBAA39;
  --d : #5E8DA7;
}
/* --------------------------------- */

/* -- :: Default Elements Properties :: -- */
html {
  overflow-x: hidden;
  overflow-y: hidden;
}
body {
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, a, li, span, div {
  /* font-family: 'Open Sans', sans-serif !important; */
  font-family: 'Segoe UI', sans-serif !important;
  font-display: swap;
}
p {
  line-height: 1.7 !important;
}
button {
  outline: none !important;
}
a {
  text-decoration: none !important;
}
/* --------------------------------- */

/* -- :: Selection :: -- */
::-moz-selection {
  background: #1374ff;
  color: #fff;
}
::selection {
  background: #1374ff;
  color: #fff;
}
/* --------------------------------- */

/* -- :: ScrollBar :: -- */
body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}
body::-webkit-scrollbar-thumb {
  background-color: #3b4d56;
  border-radius: 0;
  -webkit-border-radius: 0;
}
body::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
}
/* --------------------------------- */

/* -- :: Custom Class :: -- */
html.overflow-h {
  overflow: hidden !important;
}
.uppercase {
  text-transform: uppercase;
}
/* section head */
.section-head {
  margin-bottom: 64px;
  text-align: center;
}
.section-head h2 {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  font-family: 'Segoe UI', sans-serif !important;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 auto;
  padding-top: 25px;
  color: var(--typeColor);
}
.section-head .lines {
	position: relative;
	width: 350px;
	height: 1px;
	background: #e6e6e6;
	margin: 10px auto 0;
}
.section-head .lines:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	background: var(--mainColor);
	width: 200px;
	height: 1px;
	transform: translateX(-50%);
	transition: all 0.5s linear;
}
.section-head .lines span {
	position: absolute;
	background: #fff;
	border: 1px solid var(--mainColor);
	width: 10px;
	height: 10px;
	left: 50%;
  top: 50%;
  border-radius: 50%;
	z-index: 2;
	transform: translate(-50%, -50%) rotate(45deg);
}
.section-head p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 20px auto 0;
  color: rgba(3, 27, 78, 0.7);
}
/* background */
.bg-2 {
  background: #ffffff;
}
/* padding */
.p-80 {
  padding: 80px 0;
}
.p-80-50 {
  padding: 80px 0 50px;
}
/* margin */
.mb-min {
  margin-bottom: 15px;
}
.mb-med {
  margin-bottom: 25px;
}
/* button */
.primary-btn {
  border-radius: 4px;
  background: #059347;
  padding: 12px 35px;
  line-height: 16px;
  text-transform: uppercase;
  min-width: 225px;
  border: 0;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  letter-spacing: 1px;
  -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
  transition: all .25s ease-in-out;
}
.primary-btn:hover {
  background: #4CAF50;
  color: #fff;
}
.primary-btn:active {
  box-shadow: inset 0 0 10px 1px var(--darColor);
}
/* --------------------------------- */

/* -- :: Money Back Section :: -- */
.m-b .contain {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.m-b .contain img {
  max-width: 170px;
}
.m-b .contain .t-c h3 {
  font-size: 40px;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--typeColor)
}
.m-b .contain .t-c p {
  font-size: 20px;
  width: 80%;
  color: var(--typeColor);
  opacity: .8;
}
/* --------------------------------- */

/* -- :: Features Section :: -- */
.features .item {
  margin-bottom: 30px;
  padding: 30px 20px;
  border: 1px solid #ecedef;
  border-radius: 4px;
  background: #fff
}
.features .item img {
  max-width: 100px;
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 50%;
  pointer-events: none;
  border: 1px dashed var(--typeColor);
}
.features .item h4 {
  margin-bottom: 20px;
  text-transform: capitalize;
  font-size: 22px;
  color: var(--typeColor);
  font-weight: 600;
}
.features .item p {
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
  color: var(--pColor);
  font-weight: 400;
}
.features .btn-c {
  margin-top: 34px;
}

.fa-times {
	color: #F44336 !important;
}
.fa-check {
	color: #009688 !important;
}
/* --------------------------------- */

/* -- :: FAQs Section :: -- */
.faqs .card .card-header {
  padding: 0;
}
.faqs .card button {
  width: 100%;
  height: 100%;
  padding: 10px;
  cursor: pointer;
  outline: none;
  border: 1px solid #f4f5f7;
  background: #fff;
}
.faqs #accordion .card {
  background: #fff;
  outline: none;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
}
.faqs #accordion .card:not(:last-child) {
  margin-bottom: 20px;
}
.faqs #accordion .card .card-header {
  padding: 0;
  border: none;
}
.faqs #accordion .card button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  color: #232f3e;
  text-decoration: none;
  background: #fff;
  display: flex;
  align-items: center;
  border: none !important;
  transition: 0.2s;
  white-space: normal;
  font-weight: bold;
}
.faqs #accordion .card i {
  transform: rotate(90deg);
  transition: transform 0.1s ease;
}
.faqs #accordion .card button.collapsed i {
  transform: rotate(0);
}
.faqs #accordion .card button:hover {
  border-radius: 0;
  border-bottom-color: #232f3e;
}
.faqs #accordion .card-body {
  border-top: 1px solid #f2f2f2;
}
.faqs #accordion .card-body p {
  font-size: 16px;
  margin-left: 31px;
  color: #898b96;
}
/* --------------------------------- */

/* -- :: loading Spinner :: -- */
.loading {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/loading.png);/*#ff980047;*/
  background-repeat:no-repeat;
  background-position:center;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .main .lds-ring {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.loading .main .lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.loading .main .lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.loading .main .lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.loading .main .lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --------------------------------- */

/* -- :: Media Query :: -- */
/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  /* -- BEGIN: Money Back Section -- */
  .m-b .contain .t-c h3 {
    font-size: 36px;
  }
  .m-b .contain .t-c p {
    width: 100%;
  }
  /* -- BEGIN: Navbar -- */
  body::before {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% + 60px);
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease-in-out;
  }
  body.nav-open::before {
    opacity: 1;
    visibility: visible;
  }
}
/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* -- BEGIN: Custom Class -- */
  .section-head {
    margin-bottom: 40px;
  }
  .section-head h2 {
    font-size: 28px;
  }
  .section-head p {
    font-size: 18px;
    line-height: 26px;
  }
  .p-80 {
    padding: 50px 0;
  }
  .p-80-50 {
    padding: 50px 0 20px;
  }
  /* -- BEGIN: Features Section -- */
  .features .btn-c {
    margin-top: 14px;
  }
  /* -- BEGIN: Money Back Section -- */
  .m-b .contain .t-c h3 {
    font-size: 28px;
  }
  .m-b .contain .t-c p {
    font-size: 18px;
  }
  /* -- BEGIN: FAQ Section -- */
  .faqs #accordion .card button {
    font-size: 14px;
  }
  section ul p {
    font-size: 10px;
      
  }
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* -- BEGIN: Custom Class -- */
  .section-head {
    margin-bottom: 32px;
    text-align: center;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .section-head p {
    font-size: 16px;
    line-height: 24px;
  }
  .p-80 {
    padding: 50px 0;
  }
  .p-80-50 {
    padding: 50px 0 20px;
  }
  .primary-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    min-width: 160px;
    letter-spacing: 0;
  }
  /* -- BEGIN: Features Section -- */
  .features .btn-c {
    margin-top: 6px;
  }
  /* -- BEGIN: Money Back Section -- */
  .m-b .contain .t-c h3 {
    font-size: 24px;
  }
  .m-b .contain .t-c p {
    font-size: 16px;
  }
  /* -- BEGIN: Feature -- */
  .features .items-contain .item img {
    max-width: 80px;
    margin-right: auto !important;
    margin-bottom: 20px;
  }
  .features .items-contain .item .t-c h4 {
    font-size: 20px;
  }
  /* -- BEGIN: FAQ Section -- */
  .faqs #accordion .card,
  .faqs #accordion .card:hover {
    box-shadow: none !important;
  }
  .faqs #accordion .card button {
    padding: 15px 20px;
  }
  .faqs #accordion .card-body p {
    margin-left: 21px;
  }
}
/* --------------------------------- */

/****** Promo ******/
#promo-sidebar {
    position: fixed;
    text-align: center;
    height: auto;
    left: 0px;
    z-index: 1000000;
    font-size: 12px;
    font-weight: 700;
    top: 40%;
    top: -webkit-calc(50% - 102px);
    top: calc(50% - 102px);
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%);
}
#promo-side-div {
    position: absolute;
    padding: 15px 30px 15px 30px;
    width: 200px;
    left: 0px;
    top: 50px;
    background: #cddc39;
    border: 1px solid rgba(0,0,0,0.05);
    -webkit-transform: translate3d(-25px,-10px,0);
    transform: translate3d(-25px,-10px,0);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: -o-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    -o-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    color: #5b5b5b;
}
#promo-remove {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 3px;
    right: 3px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    line-height: 24px;
    color: #fff;
    font-weight: 700;
}
#promo-remove:before {
    content: '\00D7';
    display: inline-block;
    font-size: 20px;
}
#promo-side-content h1 {
    -text-transform: uppercase;
    font-size: 13px;
    color: #404443;
    -margin-bottom: 5px;
}
#promo-side-content h4 {
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 17px;
}
.promo-side-small {
    font-size: 13px;
    color: #404443;
}
#promo-side-div p {
    margin: 0px;
}
.promo-side-code {
    color: #673AB7;
    font-size: 18px;
	text-shadow: 1px 1px 5px #ffffff;
}

#promo-side-allert {
    background: rgba(208,223,89,1);
    position: absolute;
    padding: 5px 15px;
    width: 175px;
    top: 190px;
    left: 10px;
    color: #fff;
    display: none;
}

@media (max-width: 991.98px) {
@media (max-width: 767.98px) {
@media (max-width: 575.98px) {
	
		#promo-side-div {
		position: absolute;
		padding: 15px 30px 15px 30px;
		width: 200px;
		left: 0px;
		top: 57px;
		background: #CDDC39;
		border: 1px solid rgba(0,0,0,0.05);
		-webkit-transform: translate3d(-25px,-10px,0);
		transform: translate3d(-25px,-10px,0);
		-webkit-transition: -webkit-transform 0.5s;
		transition: -webkit-transform 0.5s;
		-o-transition: -o-transform 0.5s;
		-o-transition: transform 0.5s;
		transition: transform 0.5s;
		transition: transform 0.5s, -webkit-transform 0.5s;
		-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
		-o-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
		transition-timing-function: cubic-bezier(0.7,0,0.3,1);
		color: #fff;
	}
	.image-c {
	    padding-top:20px;
	}
	.t-c {
	    padding-top: 20px;
	}

}
}
}


 .support {
     color:#608af8;
     margin-bottom: 20px;
}
 .support-text {
     font-family: 'Righteous', cursive !important;
}
 .hostt {
     color:#f90052;
     margin-bottom: 20px;
}
 .hostingg-text {
     font-family: 'Righteous', cursive !important;
}
 .hostt img {
     max-width: 50px;
}
.l-server {
    padding: 140px 0 80px;
    min-height: calc(100vh);
    overflow: hidden;
    background-image: linear-gradient(to right top, #3F51B5, #3F51B5, #673AB7, #3F51B5, #3F51B5);
    background-position: bottom,50%;
    background-repeat: no-repeat;
    background-size: cover;
}
 .servert {
     color:#7d22a1;
     margin-bottom: 20px;
}
 .serverr-text {
     font-family: 'Righteous', cursive !important;
}
 .webs {
     color:#1cc360;
     margin-bottom: 20px;
}
 .webs-text {
     font-family: 'Righteous', cursive !important;
}
 .purple-bg {
     background-color: #bd79c6;
}
 .list-type li i {
     position: absolute;
     left: 0px;
     top: 5px;
     content: "";
     width: 20px;
     height: 20px;
     text-align: center;
     color: #fff;
     font-size: 10px;
     line-height: 20px;
     border-radius: 50%;
}
 .list-type {
     list-style: none;
     padding: 0;
     margin: 0;
}
 .list-type li {
     position: relative;
     font-weight: 400;
     padding: 3px 0 3px 30px;
}
 .btn-learn-more-purple {
     border-radius: 4px;
     margin-top: 20px;
     background: #059347;
     padding: 12px 35px;
     line-height: 16px;
     text-transform: uppercase;
     min-width: 225px;
     border: 0;
     font-size: 16px;
     font-weight: bold;
     cursor: pointer;
     color: #fff;
     letter-spacing: 1px;
     -webkit-box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
     box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08);
     transition: all .25s ease-in-out;
}
 .btn-learn-more-purple:hover {
     color: #fff !important;
     background-image: linear-gradient(to right, #059347, #f69321);
}
.partner-company {
    padding:20px 0px;
}
.partner-company img{
    vertical-align: middle;
}

.prices {margin-top: 20px;}
.card-name h3 {margin-bottom: 20px;}

.website-transfer{
    background: #8dc63f;
    color:#ffffff;
}
.website-transfer img{
    max-width:100%;
    height:auto;
}
.website-transfer-2{
    background: #3284c3;
    color:#ffffff;
}
.website-transfer-2 img{
    max-width:100%;
    height:auto;
}
.web-hosting {
    padding: 140px 0 80px;
    min-height: calc(100vh);
    overflow: hidden;
    background: url(../background-ch-1.png);
    background-position: bottom,50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.hosting-feature-1{
    background: #fafbfb;
    color:#ee5049;
}
.hosting-feature-1 img{
    max-width:100%;
    height:auto;
}
.hosting-feature-2{
    background: #9be9e9;
    color:#526876;
}
.hosting-feature-2 img{
    max-width:100%;
    height:auto;
}
.hosting-feature-3{
    background: #ffffff;
    color:#f46522;
}
.hosting-feature-3 img{
    max-width:100%;
    height:auto;
}
.l-img img{
    max-width:100%;
    height:auto;
}




