/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #536080;
  font-family: 'Mulish', sans-serif;
  font-size:15px;
}

a{
  text-decoration: none;
  color:#000
}

a:hover,
a:active,
a:focus {
  color: #063b5b;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #112240;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.btn:focus, button:focus, .form-control:focus{
  outline: none;
  box-shadow: none;
}

ul{
  list-style: none;
  padding:0px;
  margin:0px;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#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 #f2f2f2;
  border-top: 6px solid #0e1f50;
  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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 997;
  padding: 10px 0px;
}

.header-padding{
  padding-top: 80px;
}


.mobile-nav-active #header{
  background-color: #fff;
}
.mobile-nav-active .header-top{
  border-color: rgba(83,96,128,.3);
}

#header.header-scrolled,
#header.header-pages {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  padding:0px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}

#header .logo img {
  padding: 0;
  height: 46px;
  margin: 7px 0px;
  transition: all 0.3s;
}

.menubar{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  position: relative;
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav > ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-nav > ul > li {
  display: inline-block;
  padding: 0px 15px;
  position: relative;
}

.main-nav a {
  display: inline-block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}

.header-scrolled .main-nav a{
  color: #000;
}

.main-nav a img{
  width: 35px;
  height: 35px;
  object-fit: cover;
  object-position: 50% top;
  border-radius: 100%;
}

.main-nav a.btn{
  padding: 5px 15px;
  border-radius: 25px;
  color: #fff;
}

.main-nav a.sign-in{
  background-color: #063B5B;
  border: 1px solid #063B5B;
}

.main-nav a.language{
  position: relative;
  background-color: #E6990D;
  border: 1px solid #E6990D;
  padding-right: 30px;
}

.main-nav a.language::before{
  position: absolute;
  top: 50%;
  right: 10px;
  content: '\f0d7';
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
}

.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color: #E6990D;
  text-decoration: none;
}
.main-nav a.sign-in:hover{
  background-color: #fff;
  color: #063B5B;
}
.main-nav a.language:hover, .main-nav .active > a.language, .main-nav li:hover > a.language{
  background-color: #fff;
  color: #E6990D;
}
.main-nav .drop-down .dropdownmenu{
  position: absolute;
  top:100%;
  right: 0;
  width: 200px;
  padding:20px;
  background-color:#fff;
  box-shadow: 0px 3px 10px #00000030;
  border-radius: 10px;
  transform: translateY(40px);
  opacity: 0;
  visibility: hidden;
  transition:all 0.2s ease-in-out;
}

.main-nav .drop-down:hover > .dropdownmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition:all 0.3s ease-in-out;
}


.main-nav a.account-btn:hover{
  background-color: #ff7800;
  color: #fff;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 115px;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: 0;
  width: 100%;
  padding-top: 18px;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav li{
  padding: 10px 20px;
}
.mobile-nav a {
  display: inline-block;
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #e99706;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down .dropdownmenu {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  border: 0;
  background: none;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  color: #fff;
  font-size: 25px;
}

.header-scrolled .mobile-nav-toggle{
  color: #0c3598;
}
.mobile-nav-bx ul li{
  display: inline-block;
  padding-right:20px;
  font-size: 18px;
}
.mobile-nav-bx ul li a{
  color: #000000;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle{
  background-color: #fff;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #000;
}

.mobile-nav ul{
  margin: 0px auto;
}

.main-nav a.account-btn, .mobile-nav a.account-btn{
  padding: 5px 10px;
  border: 1px solid #ff7800;
  border-radius: 5px;
  font-size: 16px;
}

@media (min-width: 576px){
  .mobile-nav ul{
    max-width: 540px;
  }
}

@media(min-width:767px){
  .mobile-nav ul{
    max-width: 720px;
    
  }
}




/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
.home-banner{
  position: relative;
}
.home-banner video{
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: 50% top;
}
.home-banner .banner-content-area{
  position: absolute;
  top: 50%;
  left: 0;
  transform:translateY(-50%);
  padding:130px 0px 172px 0px;
  width: 100%;
}

.banner-content{
  position: relative;
  color:#fff;
  
}

.banner-content h4{
  text-shadow: 0 0 25px #b764d8;
  font-weight: 700;
  margin: 0 0 15px;
  font-size: 30px;
  position: relative;
  color: #fff;
}

.banner-content h4::after{
  top: 0;
  left: 0;
  position: absolute;
  content: "CYBER WEEK • 40% Off on All Plans!";
  margin: auto;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #b764d8;
  opacity: 0;
  -webkit-animation: play infinite 2s linear both;
  animation: play infinite 2s linear both;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  text-shadow: none;
}

.banner-content h4::before{
  top: 0;
  left: 0;
  position: absolute;
  content: "CYBER WEEK • 40% Off on All Plans!";
  margin: auto;
  z-index: -1;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #b764d8;
  opacity: 0;
  -webkit-animation: play infinite 2s linear both;
  animation: play infinite 2s linear both;
  text-shadow: none;
}

@-webkit-keyframes play {
  0% {
    opacity: 0.6;
    top: 0;
  }
  100% {
    opacity: 0;
    top: -10px;
  }
}
@keyframes play {
  0% {
    opacity: 0.6;
    top: 0;
  }
  100% {
    opacity: 0;
    top: -10px;
  }
}

.banner-content h1{
  font-size: 50px;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 800;
}



.banner-content p{
  font-size: 20px;
  color: #fff;
  margin: 0 0 30px;
  font-weight: 400;
  margin: 0 auto 50px;
  line-height: 28px;
}

.banner-content span{
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

.banner-btns{
  margin-bottom: 20px;
}

.banner-btns a{
  display: inline-block;
  font-size: 16px;
  padding: 10px 24px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.banner-btns .btn-primary{
  border: 1px solid #ffe100;
  background-color: #ffe100;
  color: #000;
}

.banner-btns .btn-outline{
  border: 1px solid #fff;
  color: #fff;
  margin-left: 10px;
}

.banner-btns .btn-outline:hover{
  background-color: #fff;
  color: #000;
}

.banner-bottom-text{
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  color: #fff;
}

.banner-bottom-boxes{
  padding: 30px 20px;
  position: relative;
  background: linear-gradient(90.96deg,rgba(0,0,0,.2) .22%,rgba(183,100,216,.12) 99.15%);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(245,245,245,.1607843137);
  border-radius: 15px 15px 0 0;
}

.banner-bottom-boxes::before{
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(47,57,191,.92);
  opacity: .65;
  filter: blur(12px);
  height: 10px;
}

.hm-feat-bx{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.hm-feat-ttl{
  margin-right: 15px;
}

.hm-feat-ttl h3{
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: normal;
  margin: 0;
}

.hm-feat-bx p{
  color: rgba(255,255,255,.8);
  font-size: 16px;
  margin: 0;
}

.border-none{
  border: none;
}

.section-pad{
  padding: 40px 0px;
}

.content-slider{
  margin-bottom: 100px;
}

.clients-carousel img{
  filter: grayscale(100%);
  opacity: .3;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.clients-carousel img:hover{
  filter: grayscale(0);
  opacity: 1;
}

.section-header{
  text-align: center;
  margin-bottom: 60px;
}

.section-header h3{
  font-size: 40px;
  font-weight: 900;
  line-height: 52px;
}

.section-header p{
  font-size: 18px;
}

.icon-website{
  background-image: url(../images/price-feature/1.svg);
}
.icon-ram{
  background-image: url(../images/price-feature/2.svg);
}
.icon-ssd{
  background-image: url(../images/price-feature/3.svg);
}
.icon-cpanel{
  background-image: url(../images/price-feature/4.svg);
}
.icon-ssl{
  background-image: url(../images/price-feature/5.svg);
}
.icon-migrations{
  background-image: url(../images/price-feature/6.svg);
}
.icon-litespeed{
  background-image: url(../images/price-feature/7.svg);
}
.icon-storage{
  background-image: url(../images/price-feature/8.svg);
}
.icon-domain{
  background-image: url(../images/price-feature/9.svg);
}
.icon-wordpress{
  background-image: url(../images/price-feature/10.svg);
}
.icon-setting{
  background-image: url(../images/price-feature/11.svg);
}
.icon-premium{
  background-image: url(../images/price-feature/12.svg);
}

.package-feature ul li{
  color: #536080;
  font-size: 16px;
  padding-left: 26px;
  position: relative;
  margin-bottom: 6px;
  display: inline-block;
  float: left;
  clear: both;
}

.package-feature ul li span.label{
  padding: 0 4px;
  line-height: 21px;
  position: absolute;
  top: 2px;
  right: -38px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 10px;
  color: #ff7800;
  border:1px solid #ff7800;
}

.package-feature ul li.has-tooltip{
  cursor: pointer;
}

.package-feature ul li.has-tooltip::before{
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 0;
  width: auto;
  border-bottom: 1px dashed #b5b9c9;
}

.package-feature ul li i{
  font-size: 16px;
  color: #99a5c2;
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: 50%;
  display: inline-block;
}

.package-feature ul li b{
  color: #112240;
}

.price-box{
  background: #fff;
  border: 0;
  padding: 40px 20px 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 8px 32px 0 rgb(0 0 0 / 8%);
  border-radius: 6px;
  position: relative;
  height: 100%;
  transition: transform .3s,box-shadow .3s;
}

.price-box .package-promotion{
  position: absolute;
  background-color: #ff7800;
  color: #fff;
  font-weight: 700;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  border-radius: 4px;
  min-width: 158px;
  text-align: center;
  line-height: 33px;
  display: inline-block;
}

.price-box:hover{
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.price-icon{
  max-width: 100px;
  width: 100%;
  max-height: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.price-icon .svg-icon__animated-element-1, .price-icon .svg-icon__animated-element-2, .price-icon .svg-icon__animated-element-3, .price-icon .svg-icon__animated-element-4, .price-icon .svg-icon__animated-element-5{
  transition: .5s cubic-bezier(.16,0,0,1);
  transition-property: transform;
  transform: translateY(0);
}

.price-box:hover .svg-icon__animated-element-1, .price-box:hover .svg-icon__animated-element-2, .price-box:hover .svg-icon__animated-element-3, .price-box:hover .svg-icon__animated-element-4, .price-box:hover .svg-icon__animated-element-5{
  transition: .5s cubic-bezier(.16,0,0,1);
  transition-property: transform;
  transform: translateY(-16px);
}

.price-box h4{
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.price-box p{
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  line-height: 22px;
  color: #536080;
  margin-bottom: 16px;
}

.price-bx-footer{
  margin-top: auto;
  padding: 24px 0 0;
}

.price-discount{
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}

.price-discount .price-before{
  color: #b5b9c9;
  text-decoration: line-through;
}

.price-discount .price-now{
  font-weight: 700;
  color: #ff7800;
}

.package-price h3{
  font-size: 35px;
  position: relative;
  font-weight:800 ;
  text-align: center;
  padding-bottom: 20px;
}

.package-price h3::before{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 38px;
  background-color: #144fc4;
  margin: auto;
  border-radius: 4px;
}

.package-price h3 sup{
  top: auto;
}

.price-bx-footer a{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  transition: .3s;
  height: 42px;
  font-weight: 700;
}

.price-bx-footer a span{
  display: inline-block;
  position: relative;
  transition: .3s;
}

.price-bx-footer a span::before{
  position: absolute;
  opacity: 0;
  top: 4px;
  right: 0;
  transition: .3s;
  width: 18px;
  height: 18px;
  content: '';
}

.btn--primary, .btn--primary:hover{
  color: #fff;
  background: #144fc4;
}

.price-bx-footer .btn--primary span::before{
  background-image: url(../images/arrow-right-white.svg);
}

.price-bx-footer .btn--link span::before{
  background-image: url(../images/arrow-right-dark.svg);
}

.price-bx-footer a:hover span::before{
  opacity: 1;
  right: -24px;
}
.price-bx-footer a:hover{
  padding-right: 40px;
  transition: .3s;
}
.home-price-sec .tabs{
  display: flex;
  justify-content: center;
}
.home-price-sec .nav-pills{
  border: 1px solid #e1e2e6;
  border-radius: 30px;
  padding: 4px;
  margin: 0 auto 80px;
}

.home-price-sec .nav-pills .nav-link{
  color: #112240;
  padding: 6px 28px;
  font-weight: 700;
  font-size: 18px;
  background-color: transparent;
  border-radius: 30px;
  transition: none;
}

.home-price-sec .nav-pills .nav-link.active{
  color: #fff;
    background-color: #144fc4;
}

.home-price-sec {
  margin-bottom: 80px;
}

.other-feature-bx{
  text-align: center;
}

.other-feature-bx .other-feature-icon{
  margin: 0 auto 24px;
  width: 60px;
  height: 60px;
}

.other-feature-bx h4{
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 16px;
}

.other-feature-bx p{
  color: #536080;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.svg-icon.affordable-power .st3 {
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.affordable-power .st1 {
  fill: none;
  stroke: #144fc4;
}

.svg-icon.affordable-power .st0 {
  fill: #144fc4;
}

.svg-icon.affordable-power .st2, .svg-icon.affordable-power .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.complete-control .st0 {
  fill: #144fc4;
}

.svg-icon.complete-control .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.complete-control .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.unmatched-security .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}

.svg-icon.unmatched-security .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.unmatched-security .st2{
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.affordable-power .st3 {
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.supreme-reliability .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}

.svg-icon.supreme-reliability .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-icon.supreme-reliability .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}

.svg-icon.supreme-reliability .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}

.svg-icon.supreme-reliability .st4 {
  fill: #ff7800;
}

.svg-icon.click .st3,
.svg-icon.ssd .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.svg-icon.click .st2{
  fill: none;
  stroke: #fff;
}

.svg-icon.click .st1{
  fill: #082386;
}

.svg-icon.click .st0{
  fill: #ff7800 !important;
}

.svg-icon.wp-litespeed .st0,
.svg-icon.wp-made-safe .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}
.svg-icon.wp-litespeed .st0 {
  fill: #ff7800;
}
.svg-icon.wp-litespeed .st1 {
  fill: none;
  stroke: #ff7800;
}
.svg-icon.click .st0,
.svg-icon.wp-litespeed .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}

.svg-icon.wp-made-safe .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.wp-made-safe .st1 {
  fill: none;
  stroke: #ff7800;
  stroke-linejoin: round;
}

.website-builder{
  padding: 100px 0px;
}

.website-builder-content h4{
  font-size: 50px;
  font-weight: 800;
}

.website-builderimg img{
  width: 100%;
}

.list-group-bx{
  display: flex;
  align-items: center;
  margin: 0px 0px 30px 0px;
  padding: 30px 30px 25px 30px;
  background-color: #FFFFFF;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
}

.list-group-content{
  padding-left: 20px;
}

.list-group-content h5{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.list-group-content p{
  font-size: 16px;
  margin: 0;
}

.view-more-btn{
  color: #fff;
  background: #144fc4;
  font-weight: 700;
  font-size: 16px;
  margin-left: 20px;
}

.migration-img img{
  width: 100%;
}

.migration-section{
  position: relative;
  background-image: linear-gradient(278deg, #001DAC 16%, #000F57 98%);
}

.migration-sec-content{
  padding: 60px 40px 60px 0px;
  position: relative;
  color: #fff;
}

.migration-sec-content h4{
  color: #FFFFFF;
  font-size: 2.625em;
  font-weight: 700;
  line-height: 1.2em;
}

.migration-sec-content p{
  font-size: 16px;
  margin-bottom: 40px;
}

.migration-line-img{
  margin-top: 80px;
}

.migration-line-img img{
  width: 100%;
  opacity: 0.2;
}

.migration-sec-footer a{
  padding: 10px 25px;
}

.migration-sec-footer .btn--link{
  color: #fff;
  border: 1px solid #fff;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}

.migration-sec-footer a:hover{
  background-color: #1C40F2;
  border-color: #1C40F2;
}

.migration-bg-overlay{
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-image: url(../images/migrate-frame.svg);
  background-position: 95.5% 50%;
  background-repeat: no-repeat;
  background-size: auto;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.quick-easy .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #b9c2d5;
}
.quick-easy .st1,
.quick-easy .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #e2e7f1;
}
.quick-easy .st2 {
  fill: #144fc4;
}
.quick-easy .st3 {
  fill: none;
  stroke: #144fc4;
}
.quick-easy .st4 {
  fill: #bec6d8;
}
.quick-easy .st4,
.quick-easy .st5,
.quick-easy .st6 {
  fill-rule: evenodd;
  clip-rule: evenodd;
}
.quick-easy .st5 {
  fill: #e2e7f1;
  stroke: #b9c2d5;
}
.quick-easy .st6 {
  fill: #fff;
}
.quick-easy .st7 {
  fill: none;
  stroke: #ff7800;
}
.quick-easy .st8,
.quick-easy .st9,
.quick-easy .st10 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #113a8f;
}
.quick-easy .st9,
.quick-easy .st10 {
  fill: url(#front-2_1_);
}
.quick-easy .st10 {
  fill: url(#front-3_1_);
}

.zigzag-section{
  padding: 100px 0px;
}

.zigzag-bx-img svg{
  max-width: 492px;
}

.zigzag-bx-img.right{
  text-align: right;
}

.zigzag-bx-img.left{
  text-align: left;
}

.zigzag-bx{
  padding: 40px 0px;
}

.zigzag-bx-content.left{
  padding-right: 40px;
}

.zigzag-bx-content.right{
  padding-left: 40px;
}

.zigzag-bx-content h4{
  font-size: 35px;
  font-weight: 900;
  line-height: 52px;
}

.zigzag-bx-content p{
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}

.zigzag-bx-content .learn-btn , .accordion-body .btn-link, .support-bx .ticket-btn{
  display: flex;
  padding: 0;
  justify-content: start;
  align-items: center;
  transition: .3s;
  height: 42px;
  font-weight: 700;
  text-decoration: none;
}

.zigzag-bx-content .learn-btn span, .accordion-body .btn-link span, .support-bx .ticket-btn span{
  display: inline-block;
  position: relative;
  color: #144fc4;
  font-weight: 800;
  transition: .3s;
}

.accordion-body .btn-link span{
  color: #fff;
  font-weight: 600;
}

.zigzag-bx-content .learn-btn span::before, .accordion-body .btn-link span::before, .support-bx .ticket-btn span::before{
  position: absolute;
  opacity: 0;
  top: 4px;
  right: 0;
  transition: .3s;
  width: 18px;
  height: 18px;
  content: '';
  background-image: url(../images/arrow-right-blue.svg);
}

.accordion-body .btn-link span::before{
  background-image: url(../images/arrow-right-white.svg);
}

.zigzag-bx-content .learn-btn:hover span::before, .accordion-body .btn-link:hover span::before, .support-bx .ticket-btn:hover span::before{
  opacity: 1;
  right: -24px;
}

.search-box{
  position: relative;
  margin-bottom: 60px;
}

.search-box i{
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 28px;
  color: #ff7800;
}

.search-box .search-btn{
  background-color: #ff7800;
  color: #fff;
  max-width: 182px;
  width: 100%;
  border-radius: 6px;
  font-size: 18px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  padding: 13px 0px;
}

.search-box .form-control{
  height: 72px;
  font-size: 20px;
  padding: 10px 200px 10px 60px;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 6px 24px 0 rgb(7 20 31 / 12%);
}

.search-box-content ul{
  display: flex;
  align-items: center;
  justify-content: space-around;
}



.search-box-content ul li{
  display: inline-block;
  font-size: 22px;
  padding-right: 30px;
}

.search-box-content ul li b{
  color: #112240;
  margin-right: 12px;
  font-weight: 900;
}

.domain-box , .support-section{
  padding: 100px 0px;
}


.affordable-section{
  padding: 100px 0px;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
}

.affordable-section .section-header h3{
  color: #fff;
}

.affordable-section .section-header p{
  color: hsla(0,0%,100%,.7);
  font-weight: 300;
}

.affordable-sec-content .accordion-item{
  background-color: transparent;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    margin-bottom: 20px;
}

.affordable-sec-content .accordion-button:not(.collapsed), .affordable-sec-content .accordion-button{
  background-color: transparent;
  box-shadow: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.affordable-sec-content .accordion-button::after{
  width: 8px;
    height: 8px;
    margin-left: auto;
    content: "";
    background-color: #ff7800;
    border-radius: 100%;
    position: absolute;
    top: 23px;
    left: -4px;
    opacity: 0;
}

.affordable-sec-content .accordion-button:not(.collapsed)::after{
  opacity: 1;
  background-image: none;
  transform: rotate(0deg);
}

.affordable-sec-content .accordion-body p{
  color: #fff;
  font-size: 14px;
}

.testimonial-bx img{
  width:auto !important
}

.testimonial-bx{
  padding: 30px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
.testimonial-carousel .owl-stage-outer{
  padding: 20px;
}

.testimonial-bx-header{
  display: flex;
  margin-bottom: 20px;
}
.client-profile {
  margin-right: 20px;
}
.client-profile img{
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
  object-position: 50% top;
}
.client-name h4{
  font-size: 20px;
  font-weight:600 ;
  margin-bottom: 10px;
}

.rating{
  display: flex;
}

.rating img{
  background-color: #06cb27;
  width: 18px !important;
  margin: 1px;
}

.testimonial-section{
  padding: 100px 0px;
}

.support-bx{
  padding: 40px 32px;
  border: 1px solid #e6e6eb;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}

.support-bx:hover{
  border-color: transparent;
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.svg-icon.cog .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.cog .st1 {
  fill: none;
  stroke: #144fc4;
}
.svg-icon.cog .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}
.svg-icon.cog .st3,
.svg-icon.coin .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.coin .st0 {
  fill: #144fc4;
}
.svg-icon.coin .st1 {
  fill: none;
  stroke: #144fc4;
}
.svg-icon.coin .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
}
.svg-icon.coin .st3,
.svg-icon.control .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.control .st0 {
  fill: #144fc4;
}
.svg-icon.control .st1,
.svg-icon.control .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.control .st2 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
  stroke: #ff7800;
  stroke-dasharray: 4, 2;
}
.svg-icon.control .st3 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #ff7800;
}
.svg-icon.control .st4 {
  display: none;
}
.svg-icon.control .st5 {
  display: inline;
  opacity: 0.5;
}
.svg-icon.control .st6 {
  fill: none;
  stroke: red;
  stroke-width: 0.5;
}

.support-bx-icon{
  width: 56px;
  height: 56px;
  margin: 0px auto 30px;
}

.support-bx h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.support-bx p{
  font-size: 16px;
  margin: 0;
}
.bx-btn{
  margin-top: auto;
  padding: 16px 0 0;
}


.svg-icon.call .st0,
.svg-icon.cart .st0,
.svg-icon.chat .st0,
.svg-icon.help .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #99a5c2;
}
.svg-icon.call .st0 {
  fill: #144fc4;
}
.svg-icon.call .st1,
.svg-icon.call .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.call .st2 {
  stroke: #ff7800;
  stroke-width: 2;
}
.svg-icon.call-chat .st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.call-chat .st1 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.call-chat .st2 {
  fill: #ff7800;
  stroke: #ff7800;
}
.svg-icon.email .st0 {
  fill: none;
  stroke: #ff7800;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon.email .st1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #144fc4;
}
.svg-icon.email .st2 {
  fill: none;
  stroke: #144fc4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.support-bx .ticket-btn{
 
  border: 1px solid #0d3c9f;
  justify-content: center;
}

.support-bx .ticket-btn:hover{
  padding-right: 24px;
}

.support-section .section-header{
  text-align: left;
}

.footer{
  background: linear-gradient(90deg,#0d3c9f,#040d70);
  padding: 96px 0 40px;
  color: #fff;
}

.footer-top{
  padding-bottom:80px;
}

.footer a{
  font-size: 14px;
  color: hsla(0,0%,100%,.7);
  padding: 2px 0;
  white-space: normal;
  line-height: 35px;
}

.social-icon{
  margin-bottom: 20px;
}

.social-icon ul li{
  display: inline-block;
  margin-right: 20px;
}

.footer-bx h4{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.social-icon ul li a{
  background-color: hsla(0,0%,100%,.7);
    height: 22px;
    min-width: 22px;
    color: #0c3aa3;
    border-radius: 4px;
    padding: 5px;
    display: flex;
    text-align: center;
    justify-content: center;
    transition: color .3s,background-color .3s;
}
.payment-img ul li{
  margin-right: 10px;
}
.footer-bottom ul li, .payment-img ul li{
  display: inline-block;
}
.footer-bottom ul li{
  margin-left: 15px;
}
.payment-img ul li img{
  width: 50px;
}

.footer-bottom p{
  margin: 0;
  font-size: 14px;
}

.footer-logo{
  height: 60px;
  margin-bottom:20px;
}

.inner-banner{
  position: relative;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
  padding: 220px 0 140px;
}

.banner-bg-img{
  position: absolute;
  left: 0;
  bottom: 0;
}

.banner-bg-img img{
  max-width: 100%;
}

.inner-banner-img img{
  width: 100%;
}

.inner-banner-content{
  position: relative;
  z-index: 1;
}

.inner-banner-content h3{
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
}

.inner-banner-content p{
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2em;
  color: #fff;
}

.inner-banner-content span{
  font-size: 16px;
  color: #fff;
}

.inner-banner-content p span{
  color: #ffe100;
}

.inner-banner-content ul{
  margin-bottom: 30px;
}

.inner-banner-content ul li i{
  margin-right: 10px;
}

.inner-banner-content ul li{
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
}

.wordpress-feature{
  margin-top: -330px;
  position: relative;
}

.wordpress-feature .section-header h3{
  color: #fff;
}

.wordpress-feat-img{
  margin-bottom: 20px;
}

.wordpress-feat-img img{
  width: 56px;
  height: 56px;
  border-radius: 100%;
}

.wordpress-feature-bx h4{
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
}

.wordpress-feature-bx p{
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5em;
}

.wordpress-feature-bx{
  background-color: #FFFFFF;
  background-position: 93% 25px;
  background-repeat: no-repeat;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
  padding: 40px 30px 40px 30px;
  border-radius: 5px 5px 5px 5px;
  margin-bottom: 30px;
}

.manage-wordpress{
  padding-bottom: 100px;
}

.manage-wordpress .section-header h3{
  margin: 0;
  text-align: left;
}

.manage-wordpress .section-header p{
  margin: 0;
  text-align: left;
}

.wordpress-plan{
  padding: 100px 0px;
}

.customer-review{
  background: linear-gradient(278deg, #001DAC 16%, #000F57 98%);
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  margin: 0px 12px 0px 12px;
  --e-column-margin-right: 12px;
  --e-column-margin-left: 12px;
  padding: 80px 30px 80px 30px;
  border-radius: 5px;
  position: relative;
}

.customer-review .tire-img{
  position: absolute;
  top: 0;
  left: 0;
}

.customer-review .back-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/wordpress/wp_hosting_.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.customer-review .dot-img{
  position: absolute;
  width: 100px;
  top: 15%;
  left: 86%;
}

.customer-review h3{
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.2em;
  color: #fff;
  text-align: center;
  position: relative;
}

.customer-rev-header{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.customer-rev-header h4{
  font-size: 2.625em;
  font-weight: 500;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
}

.customer-rev-icon{
  width: 56px;
  height: 56px;
  background: #3146AC;
  border-radius: 50%;
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
}

.customer-rev-icon::before{
  position: absolute;
  content: '';
  border-radius: 50%;
  opacity: 0.1;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
}

.customer-rev-bx p{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
}

.plan-includes-bx{
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  box-shadow: 0px 12px 50px 0px rgb(125 125 125 / 10%);
  padding: 20px 20px 14px 20px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.plan-includ-img{
  width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #0066FF0D;
  margin-right: 10px;
  color: #1C40F2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-includes-bx h4{
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}

.wordpress-signup{
  padding: 10px 0px;
}

.wordpress-signup .migration-bg-overlay{
  background-image: url(../images/wordpress/sh-hero-bg.png);
  background-position: bottom left;
}

.reseller-banner{
  position: relative;
  padding: 190px 0px 430px;
  background: linear-gradient(90deg, #0d3c9f 0, #040d70 100%);
  overflow: hidden;
}


/* .reseller-banner::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background-color: #001042;
  opacity: 0.9;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
} */

.reseller-banner .inner-banner-content h3{
  font-size: 54px;
}

.reseller-banner .inner-banner-content ul{
  margin-bottom: 40px;
}

.reseller-banner .inner-banner-content ul li{
  display: inline-block;
  padding: 0px 20px;
}

.banner-img{
  position: absolute;
}

/* .banner-img-01{
  top: 25%;
  left: 5%;
  z-index: 1;
}

.banner-img-01 img{
  height: 120px;
}

.banner-img-02{
  bottom: 20%;
  left: 10%;
  z-index: 1;
}

.banner-img-02 img{
  width: 100px;
}

.banner-img-03{
  top: 22%;
  right: 5%;
  z-index: 1;
}

.banner-img-03 img{
  width: 170px;
} */

.why-choose-us{
  padding: 100px 0px;
  position: relative;  
}

.why-choose-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.why-choose-bx{
  box-shadow: 2px 15px 20px 0px rgb(175 175 175 / 20%);
  padding: 40px 30px 40px 30px;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: relative;
  margin-bottom: 30px;
}

.why-choose-bx p{
  font-size: 16px;
  margin: 0;
}

.why-choose-bx-header{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.why-choose-bx-header h4{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0;
}

.why-choose-bx-icon{
  margin-right: 20px;
}

.reseller-hosting-bx{
  box-shadow: 16px 33.8064px 67.6129px 0px rgb(91 94 247 / 6%);
  padding: 30px 15px 30px 15px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
}

.reseller-hosting-bx img{
  height: 50px;
  margin-bottom: 20px;
}

.reseller-hosting-bx h4{
  font-weight: 700;
  font-size: 18px;
}

.reseller-hosting-bx p{
  margin: 0;
  font-size: 16px;
}

.what-reseller-img img{
  width: 100%;
}

.what-reseller-content h4{
  font-size: 2.625rem;
  font-weight: 800;
}

.what-reseller-content p{
  font-size: 16px;
}

.what-reseller-content a{
  padding: 10px 20px;
  background: linear-gradient(95.45deg, #0082F8 0.64%, #1C40F2 98.23%);
}

.compare-table .table th{
  border: 1px solid rgba(244, 244, 244, 0.3);
  background: #000F57;
  color: #ffffff;
  padding: 24px 40px;
  vertical-align: middle;
}

.compare-table .table th h4{
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.5rem;
}

.compare-table .table{
  margin: 0;
}

.compare-table .table th h5{
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.compare-table .table th h3{
  color: #FFC700;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.compare-table .table th h3 sup{
  top: auto;
  bottom: 0;
  color: #fff;
}
.order-btn{
  padding: 7px 20px;
  background-color: #FF0766;
  color: #fff;
  font-size: 16px;
}
.order-btn:hover{
  color: #fff;
}

.compare-plan-table .accordion-button:not(.collapsed){
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #000;
}

.compare-plan-table .accordion-flush .accordion-item .accordion-button{
  box-shadow:none;
  border:none;
  font-weight: 700;
  color: #001042;
}

.compare-plan-table .accordion-item{
  border: none;
}
.compare-plan-table .accordion-body{
  padding: 10px 0px;
}
.compare-plan-table .table td{
  border: 1px solid #C0D5FF;
  padding: 12px 24px;
  background: #F6F9FF;
}

.compare-plan-table .table td .color-red{
  color: #FF0766;
  font-weight: 700;
}

.compare-reseller{
  padding: 100px 0px;
}
.faq-section{
  padding: 100px 0px;
  position: relative;
  background: linear-gradient(90deg, #0d3c9f 0, #040d70 100%);
  overflow: hidden;
}

.faq-section .section-header h3{
  color:#fff;
}

.faq-bg-illustration{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}



.banner__illustration-left, .banner__illustration-right{
  position: absolute;
  left: -66px;
  width: 820px;
  height: 684px;
  bottom: -92px;
}

.banner__illustration-right{
  right: -66px;
  left: unset;
}

.faq-bg-illustration .banner__illustration-left, .faq-bg-illustration .banner__illustration-right{
  bottom: -222px;
}

.faq-accordian{
  position: relative;
  z-index: 1;
}

.accordion-button:focus{
  box-shadow: none;
}

.faq-accordian .accordion-item{
  background-color: transparent;
  border: none;
}

.faq-accordian .accordion-button:not(.collapsed), .faq-accordian .accordion-button{
  color: #fff;
  background-color: transparent;
  border-bottom: 1px solid rgb(255 255 255 / 52%);
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.faq-accordian  .accordion-button::after{
  background-image: none;
  content: '\f067';
  font-family: "Font Awesome 5 Pro";
  color: #ff7800;
}

.faq-accordian  .accordion-button:not(.collapsed)::after{
  content: '\f068';
  transform: rotate(0deg);
}

.faq-accordian .accordion-body {
  padding: 1rem 1.25rem;
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
}


.inner-banner .faq-bg-illustration .banner__illustration-left, .inner-banner .faq-bg-illustration .banner__illustration-right{
  bottom: -130px;
}

.header-top{
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(230, 232, 236, .25);
}

.header-scrolled .header-top{
  display: none;
}

.header-top-content ul li{
  display: inline-block;
  margin-right: 20px;
}

.header-top-content ul li a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgb(153 165 194 / 92%);
}

.header-top-content ul li a .count{
  position: absolute;
  background-color: #ff7800;
  color: #fff;
  height: 14px;
  padding: 2px 3px;
  border-radius: 100%;
  bottom: 4px;
  left: -7px;
  line-height: 11px;
  font-size: 11px;
}

.header-top-content ul li a svg{
  width: 20px;
  margin-right: 10px;
}

.reseller-hosting-feature{
  padding: 100px 0px 0px;
}

.wordpress-compare{
  padding-top: 100px;
}
.wordpress-compare-content .table th{
  font-weight: 700;
}
.wordpress-compare-content .table th, .wordpress-compare-content .table td{
  padding:10px 20px;
  font-size: 16px;
}

.wordpress-compare-content .table tr:last-child th, .wordpress-compare-content .table tr:last-child td{
  border: none;
}

.wordpress-compare-content .table td .fa-check{
  color: #ff7800;
}

.table-price-bx h3{
  font-weight: 800;
  margin: 0px;
  font-size: 42px;
  white-space: nowrap;
}

.table-price-bx h3 sup{
  top: auto;
  bottom: 0;
}

.wordpress-steroids{
  padding: 100px 0px;
  margin-top: 100px;
  background: linear-gradient(90deg,#0d3c9f,#040d70);
}

.wordpress-steroids-img img{
  width: 100%;
}

.wordpress-steroids-content h3{
  font-size: 40px;
  font-weight: 900;
  line-height: 52px;
  color: #fff;
}

.wordpress-steroids-content p{
  font-size: 18px;
  font-weight: 300;
  color: hsla(0,0%,100%,.7);
}

.wordpress-ster-list{
  display: flex;
}
.ster-list-icon{
  margin-right: 20px;
}
.ster-list-icon svg{
  width: 50px;
}

.ster-list-cont h4{
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}


.wordpress-feature .other-features{
  padding-top: 80px;
}

.domain-banner{
  padding: 200px 0px;
}

.domain-feature{
  margin-top: -130px;
}

.domain-feature .price-bx-footer a, .domain-benefit-bx .price-bx-footer a{
  color: #144fc4;
  background-color: transparent;
  border: 1px solid #144fc4;
  width: 200px;
  margin: 0px auto;
}

.domain-feature .price-bx-footer a span::before, .domain-benefit-bx .price-bx-footer a span:before{
  background-image: url(../images/arrow-right-blue.svg);
}

.domain-benefit-bx{
  padding: 32px;
  margin-bottom: 30px;
  text-align: center;
  border: 1px solid #e6e6eb;
  transition: all 0.3s ease-in-out;
}

.domain-benefit-bx:hover{
  box-shadow: 0 16px 24px rgb(0 0 0 / 6%), 0 16px 24px rgb(0 0 0 / 6%), 0 16px 48px rgb(0 0 0 / 8%);
  transform: translate3d(0,-8px,0);
}

.domain-benefit-bx img{
  width: 140px;
  margin-bottom: 20px;
}

.domain-benefit-bx h4{
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0;
}

.data-center-bx{
  background-color: #fff;
  padding: 24px 32px;
  border: 1px solid #e6e6eb;
  height: 100%;
}

.data-center-bx h3{
  font-weight: 700;
  color: #ff7800;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-info{
  padding-top: 100px;
}

.data-center-bx h3 i{
  margin-right: 10px;
}

.data-center-bx ul li{
  line-height: 30px;
  font-size: 16px;
  color: #112240;
}

.data-center-bx ul li span{
  font-weight: 700;
}

.contact-info-bx{
  padding: 24px 32px;
  border: 1px solid #e6e6eb;
  background-color: #fff;
  height: 100%;
}

.contact-info-bx svg{
  width: 50px;
  margin-bottom: 20px;
}

.contact-info-bx h4{
  font-size: 18px;
  font-weight: 800;
}

.contact-info-bx ul li{
  line-height: 30px;
  font-size: 16px;
  color: #112240;
}

.contact-info-bx ul li span{
  font-weight: 700;
  color: #144fc4;
}

.get-in-touch{
  margin-top: -110px;
  position: relative;
}

.contact-form{
  padding: 30px 40px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-color: #fff;
}

.domain-benefit{
  padding-top: 100px;
}

.contact-form label{
  font-weight: 700;
  color: #444;
}
.support-section .section-header{
  margin: 0;
}
.support-section .section-header h3{
  margin: 0;
}