@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&amp;display=swap');

:root {
    --primary-color: #fff;
    --secondary-color: #131329;
    --accent: #0000ff;
    --text-color: #4d5b6c;
    --border-color: #e4e4e4;
    --yellow-color: #ffd200;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
    color: var(--secondary-color);
}
h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: var(--secondary-color);
}
h3 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    color: var(--secondary-color);
}
h4 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    color: var(--secondary-color);
}
h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}
h6 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}
.padding-top {
    padding-top: 150px;
}
.padding-bottom {
    padding-bottom: 150px;
}
.p-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
a:hover {
    text-decoration: none;
}
.light-bg{
    background: #f9f9f9;
}
.primary-btn a ,
.secondary-btn a,
.generic-btn a{
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    border-radius: 14px;
    background: var(--primary-color);
    color: var(--accent);
    padding: 8px 30px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid var(--accent);
}
.secondary-btn a{
    color: var(--secondary-color);
    background: var(--yellow-color);
    border: 1px solid var(--yellow-color);
}
.generic-btn a{
    background: var(--accent);
    color: var(--yellow-color);
}
.generic-title {
    padding: 0 198px;
    margin-bottom: 72px;
}
.generic-title h2{
    margin-bottom: 13px;
}
.generic-title p{
    line-height: 28px;
    margin-bottom: 0;
}
.primary-btn a:hover{
    color: var(--primary-color);
    background: var(--accent);
}
a:hover{
    color: var(--yellow-color);
}
.secondary-btn a:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 33px;
    z-index: 999;
}
.header-main-con .collapse.navbar-collapse {
    margin-left: 60px;
    justify-content: space-between;
    margin-right: 35px;
}
.header-main-con .navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 14px;
    line-height: 16px;
    transition: .2s ease-in-out;
    text-transform: capitalize;
}
.header-main-con .navbar .navbar-nav .nav-link.active,
.header-main-con .navbar .navbar-nav .nav-link:hover{
    color: var(--yellow-color);
}
.header-main-con .navbar-light .navbar-brand {
    margin-right: 39px;
}
.header-main-con .navbar .navbar-nav {
    gap: 39px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    margin: 0;
    padding-top: 25px;
    background: transparent;
    border: 0;
    width: 240px;
    padding-bottom: 0;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul {
    padding: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.dropdown-item{
    padding: 5px 16px;
    margin-bottom: 1px;
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav li ul li.dropdown-item a.dropdown-toggle{
    width: 100%;
    display: block;
    color: var(--primary-color);
}
.sub-menu-dropdown{
    padding: 5px 15px;
}
.header-main-con .navbar .navbar-nav .sub-menu-dropdown .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu {
    position: absolute;
    margin: 0;
    padding: 10px;
    background: var(--secondary-color);
    border: 0;
    width: 230px;
    top: 0;
    left: 230px;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu ul {
    padding: 0 5px;
    border-top: 0;
}
.header-main-con ul li.nav-item.dropdown.show .dropdown-menu.sub-menu{
    display: none;
}
.header-main-con ul li.nav-item.dropdown.show .dropdown-item.dropdown.show .dropdown-menu.sub-menu{
    display: block;
} 
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a:hover{
    color: var(--secondary-color) !important;
    background: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.dropdown-item:active,
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.dropdown-item.active{
    color: var(--secondary-color);
    background-color: var(--primary-color);
}
.dropdown-item.active, 
.dropdown-item:active{
    color: var(--button-color);
    background-color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item{
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item:hover,
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item:focus
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item:active{
    background: transparent;
    color: var(--secondary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item:hover a.dropdown-toggle{
    color: var(--secondary-color);
    background: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item a.dropdown-toggle{
    padding: 5px 16px;
    border-radius: 10px;
    margin-bottom: 1px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item.active {
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item .dropdown-toggle.active{
    background: var(--primary-color);
    color: var(--secondary-color);
    margin-bottom: 1px;
}
.header-main-con .navbar {
    max-width: 1850px;
    margin: 0 auto;
}
.header-main-con .collapse.navbar-collapse > a{
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--primary-color);
}
.header-main-con .collapse.navbar-collapse > a:hover{
    color: var(--yellow-color);
}
.login-btn a {
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    height: 48px;
    transition: .3s ease-in-out;
    color: var(--secondary-color);
    padding: 10px 26px;
    border-radius: 14px;
    background: var(--yellow-color);
}
.login-btn a:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}
.chat-btn a {
    height: 48px;
    padding: 6px 16px;
    display: flex;
    border-radius: 14px;
    align-items: center;
    transition: .3s ease-in-out;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
}
.chat-btn a:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}
.nav-btns {
    gap: 10px;
}
/* header section styling end here */
.banner-main-con {
    background: var(--accent);
    padding: 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 800px;
    position: relative;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}
.banner-main-con::after{
    content: "";
    background: url(../images/banner-flowers-img.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 553px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.banner-inner-con {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 170px;
    position: relative;
    z-index: 2;
}
.banner-inner-con span,
.banner-inner-con p,
.banner-inner-con h1{
    color: var(--primary-color);
}
.banner-inner-con h1 span{
    color: var(--yellow-color);
}
.banner-inner-con h1{
    margin-bottom: 19px;
}
.banner-inner-con p{
    margin-bottom: 36px;
}
.banner-inner-con > span {
    padding-bottom: 17px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 17px;
}
.banner-inner-con > span::after{
    content: "";
    background: url(../images/line-shape.png) no-repeat center;
    background-size: contain;
    width: 62px;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.generic-btn a {
    height: 58px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    padding: 10px 35px;
    transition: .3s ease-in-out;
    box-shadow: 20px 20px 10px 0 rgb(0 0 79 / 5%);
}
.generic-btn a:hover{
    color: var(--secondary-color);
    background: var(--yellow-color);
}
/*  */
.generic-title p span{
    font-weight: 600;
}
.hosting-types-inner-con {
    display: grid;
    gap: 29px;
    grid-template-columns: 31.6% 31.6% 31.6%;
}
.hosting-type-box {
    text-align: center;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
    border-radius: 24px;
    overflow: hidden;
    background: var(--primary-color);
}
.hosting-price-box {
    display: flex;
    margin-bottom: 28px;
    justify-content: center;
}
.hosting-price-box span.dollar {
    position: relative;
    top: 3px;
    left: -1px;
    font-size: 24px;
    line-height: 24px;
    padding-right: 5px;
    color: var(--secondary-color);
}
.hosting-price-box span.numeric1 {
    font-size: 56px;
    line-height: 48px;
    font-weight: 700;
    color: var(--accent);
}
.hosting-price-box .month-title {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 8px;
    gap: 5px;
}
.hosting-price-box .numeric2 {
    font-size: 24px;
    color: var(--secondary-color);
}
.month-title small {
    font-size: 14px;
    line-height: 16px;
    margin-top: 0;
    display: block;
}
.hosting-type-box ul li span {
    display: inline-block;
    font-weight: 600;
}
.hosting-type-box ul {
    width: 186px;
    text-align: left;
    margin: 0 auto 45px;
}
.hosting-type-box ul li {
    color: #333333;
    padding-left: 26px;
    margin-bottom: 10px;
}
.hosting-type-box ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 14px;
    color: var(--accent);
}
.hosting-top-img-con figure{
    margin-bottom: 0;
}
.hosting-type-content-con {
    position: relative;
    padding: 34px 40px 40px;
}
.hosting-type-content-con h5{
    margin-bottom: 11px;
}
.hosting-type-content-con p{
    margin-bottom: 24px;
}
.hosting-type-content-con .primary-btn a{
    width: 100%;
}
.plan1-flower,
.plan2-flower,
.plan3-flower{
    position: relative;
    z-index: 1;
}
.plan1-flower::before,
.plan2-flower::before,
.plan3-flower::before{
    content: "";
    background-size: contain;
    position: absolute;
    z-index: -1;
}
.plan1-flower::before {
    background: url(../images/plan1-flower.png) no-repeat center;
    width: 200px;
    height: 200px;
    left: -71px;
    bottom: -88px;
}
.plan2-flower::before {
    background: url(../images/plan2-flower.png) no-repeat center;
    width: 167px;
    height: 173px;
    left: 50%;
    bottom: -62px;
    transform: translateX(-50%);
}
.plan3-flower::before {
    background: url(../images/plan3-flower.png) no-repeat center;
    width: 120px;
    height: 200px;
    right: 15px;
    bottom: -78px;
}
/*  */
.domain-serach-con button {
    height: 58px;
    width: 100%;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px 20px;
    border-radius: 14px;
    border: 1px solid var(--yellow-color);
    background: var(--yellow-color);
    outline: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.domain-serach-con button:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.domain-serach-con input {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 10px 27px;
    outline: none;
    border-radius: 14px;
    color: var(--secondary-color);
    background: var(--primary-color);
    border: 1px solid var(--border-color);
}
.domain-serach-con input:focus{
    border-color: var(--secondary-color);
}
.domain-serach-con {
    display: flex;
    gap: 15px;
}
.search-domain-inner-con {
    padding: 60px 144px 72px;
    text-align: center;
    border-radius: 24px;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}
.search-domain-inner-con::before {
    content: "";
    background: url(../images/domain-inner-shape.png) no-repeat center;
    background-size: contain;
    width: 467px;
    height: 305px;
    position: absolute;
    left: -123px;
    bottom: -90px;
}
.search-domain-box{
    position: relative;
}
.search-domain-inner-con h2 {
    margin-bottom: 40px;
    color: var(--primary-color);
    padding: 0 20px;
}
.search-domain-inner-con h2 span{
    color: var(--yellow-color);
}
.search-domain-con .search-domain-outer-con{
    position: relative;
}
.domain-top-shape {
    position: absolute;
    top: -91px;
    left: 65px;
    z-index: -1;
}
.domain-bottom-shape {
    position: absolute;
    bottom: -31px;
    right: -15px;
}
.search-domain-con {
    padding: 40px 0 100px;
}
/*  */
.arrow-btn {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.dedicated-features-con .feature-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.6% 48.6%;
}
.dedicated-features-con .feature-box {
    display: flex;
    gap: 30px;
    padding: 45px 40px 43px;
    border-radius: 24px;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.dedicated-features-con .feature-box .arrow-btn{
    justify-content: left;
}
.dedicated-features-con .generic-title {
    padding: 0 130px;
}
.dedicated-features-con .generic-title p{
    margin-bottom: 35px;
}
.feature-side-txt-con h5{
    margin-bottom: 11px;
}
.hosting-solution-inner-con {
    display: grid;
    gap: 80px;
    grid-template-columns: 53% 40%;
    align-items: center;
}
.hosting-solution-content-con span{
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 19px;
}
.hosting-solution-content-con h2{
    margin-bottom: 28px;
}
.hosting-solution-content-con p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 21px;
}
.hosting-solution-content-con ul li{
    padding-left: 33px;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 17px;
}
.hosting-solution-content-con ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 20px;
    color: var(--accent);
}
.hosting-solution-main-con{
    background: url(../images/hosting-solution-bg.png) no-repeat center;
    background-size: cover;
}
/* video style */
#fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: 1001;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}
#light {
    display: none;
    position: absolute;
    top: 230px;
    left: 50%;
    max-width: 400px;
    max-height: 360px;
    z-index: 1002;
    overflow: visible;
    transform: translate(-50%, -50%);
}
#boxclose {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 23px;
    border-radius: 100%;
    color: var(--accent);
    background: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    right: -15px;
    top: -15px;
    z-index: 1002;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    padding-bottom: 3px;
    padding-left: 2px;
}
#boxclose:hover {
    background: var(--accent);
    color: var(--primary-color);
}
#VisaChipCardVideo iframe{
    width: 400px;
    height: 230px;
}
.boxclose:before {
    content: "×";
}
#fade:hover~#boxclose {
    display: none;
}
.video-play-icon a figure {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/video-play-img.png) no-repeat center;
}
.video-play-icon a i {
    font-size: 20px;
    color: var(--accent);
}
/* video style */
.video-inner-con span {
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow-color);
}
.video-main-con iframe {
    width: 600px;
    height: 340px;
}
.security-feature-inner-con {
    display: grid;
    gap: 181px;
    grid-template-columns: 35% 48.65%;
    align-items: center;
    word-break: break-word;
}
.video-inner-con .video-play-icon a {
    display: flex;
    align-items: center;
    gap: 13px;
}
.security-feature-video-con {
    background: var(--accent);
    padding: 35px 51px 32px;
    border-radius: 24px 24px 0 0;
}
.security-feature-video-con h5{
    margin-bottom: 15px;
    color: var(--primary-color);
}
.security-feature-content-con {
    padding: 20px 48px;
}
.security-feature-video-outer-con{
    border-radius: 24px;
    position: relative;
    background: var(--primary-color);
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.security-feature-content-con ul li{
    line-height: 28px;
    padding: 22px 0 23px 61px;
    border-bottom: 1px dashed var(--text-color);
}
.security-feature-content-con ul li:last-child{
    border-bottom: 0;
}
.security-feature-content-con ul li i{
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 36px;
    color: var(--accent);
    transform: translateY(-50%);
}
.security-feature-left-con span{
    color: var(--accent);
    margin-bottom: 26px;
}
.security-feature-left-con h2{
    margin-bottom: 21px;
}
.security-feature-left-con p{
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 30px;
}
.security-shape1 {
    position: absolute;
    top: -90px;
    right: 30px;
    z-index: -1;
}
.security-shape3 {
    position: absolute;
    left: -71px;
    bottom: 60px;
    z-index: -1;
}
.security-shape2 {
    position: absolute;
    right: -65px;
    bottom: -40px;
}
/*  */
.support-boxes-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
    text-align: center;
}
.support-box {
    padding: 50px 40px 40px;
    border-radius: 24px;
    transition: .3s ease-in-out;
    background: var(--primary-color);
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.support-box figure {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 17px;
    transition: .3s ease-in-out;
}
.support-box span{
    font-weight: 600;
    transition: .3s ease-in-out;
    color: var(--secondary-color);
}
.support-box:hover{
    background: var(--accent);
}
.support-box:hover figure{
    background: var(--yellow-color);
}
.support-box figure img{
    transition: .3s ease-in-out;
}
.support-box:hover figure img{
    filter: brightness(0) saturate(100%) invert(10%) sepia(100%) saturate(7446%) hue-rotate(248deg) brightness(85%) contrast(143%);
}
.support-box:hover span{
    color: var(--primary-color);
}
/*  */
.client-review-inner-con .owl-carousel .owl-item img{
    width: auto;
}
.client-review-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 40px 30px;
}
.reviewer-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.client-review-main-con{
    background: url(../images/client-review-bg.png) no-repeat center;
    background-size: cover;
}
.client-review-inner-con .owl-carousel .owl-item,
.client-review-inner-con .owl-carousel .owl-item .item{
    display: flex;
    flex-direction: column;
}
.client-review-inner-con .owl-carousel .owl-stage{
    display: flex;
}
.client-review-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.client-review-inner-con .owl-carousel .owl-item .item{
    height: 100%;
}
.client-review-inner-con .owl-carousel .owl-nav{
    display: none;
}
.client-review-inner-con .owl-carousel .owl-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.client-review-inner-con .owl-carousel .owl-dots button{
    outline: none;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid var(--accent);
    background: var(--primary-color);
    transition: .3s ease-in-out;
}
.client-review-inner-con .owl-carousel .owl-dots button.active{
    width: 30px;
    background: var(--accent);
    border-radius: 5px;
}
.client-review-inner-con {
    max-width: 1872px;
    margin: 0 auto;
}
.reviewer-info-box figure {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}
.reviewer-info-box figure img{
    width: 100%;
}
.client-review-inner-con .generic-title{
    margin-bottom: 52px;
}
.client-review-box p{
    margin-bottom: 30px;
}
.reviewer-details span{
    font-weight: 600;
    color: var(--secondary-color);
}
.reviewer-details small{
    font-size: 14px;
}
/*  */
.global-partners-inner-con ul{
    display: grid;
    gap: 10px;
    grid-template-columns: 24.325% 24.325% 24.325% 24.325%;
}
.global-partners-inner-con ul li{
    background: #eefcff;
    padding: 27px 30px;
    border-radius: 20px;
    transition: .3s ease-in-out;
}
.global-partners-inner-con ul li:hover{
    background: var(--accent);
}
.global-partners-inner-con ul li figure img{
    transition: .3s ease-in-out;
}
.global-partners-inner-con ul li:hover figure img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(59deg) brightness(109%) contrast(101%);
}
/* footer section styling start here */
/* builder section styling start here */
.builder-main-con {
    padding: 48px 56px;
    border-radius: 20px;
    background: #0000d2;
    display: grid;
    gap: 40px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
}
.builder-main-con .generic-btn a{
    background: var(--primary-color);
    color: var(--secondary-color);
}
.builder-main-con .generic-btn a:hover{
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.builder-content h2,
.builder-content p{
    color: var(--primary-color);
}
.builder-content h2{
    margin-bottom: 7px;
}
.builder-content p{
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
}
/* builder section styling end here */
.footer-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 19%;
    margin-bottom: 76px;
}
.footer-main-con {
    position: relative;
    padding: 100px 0 60px;
    background: #0000ff;
    border-radius: 100px 100px 0 0;
}
.footer-main-con::after{
    content: "";
    background: url(../images/footer-bg-img.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 400px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer-main-con .container{
    position: relative;
    z-index: 1;
}
.footer-box h6{
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 37px;
    color: var(--yellow-color);
}
.footer-box ul li{
    padding-left: 2px;
    margin-bottom: 6px;
}
.footer-box ul li a {
    font-size: 14px;
    line-height: 24px;
    color: var(--primary-color);
    display: inline-block;
}
.footer-box ul li a:hover{
    color: var(--yellow-color);
}
.footer-contact-info ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
}
.footer-contact-info ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--yellow-color);
}
.footer-copyright-con {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}
.copyright-logo-con p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 12px;
}
.social-links-con ul{
    display: flex;
    gap: 10px;
}
.social-links-con ul li a {
    width: 40px;
    height: 40px;
    background: transparent;
    color: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: .3s ease-in-out;
    border: 1px solid var(--yellow-color);
}
.social-links-con ul li a:hover{
    background: var(--yellow-color);
    color: var(--secondary-color);
}
.footer-leaf-img {
    position: absolute;
    top: -200px;
    left: -110px;
}
/* footer styling end here */
/*  */
.sub-banner-inner-con {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.sub-banner-main-con {
    padding: 130px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 530px;
    position: relative;
    background: var(--accent);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}
.sub-banner-main-con::before{
    content: "";
    background: url(../images/sub-banner-bg-img.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 453px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.sub-banner-inner-con > span {
    padding-bottom: 17px;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 17px;
}
.sub-banner-inner-con span, .sub-banner-inner-con h1 {
    color: var(--primary-color);
}
.sub-banner-inner-con > span::after {
    content: "";
    background: url(../images/line-shape.png) no-repeat center;
    background-size: contain;
    width: 62px;
    height: 7px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/*  */
.p-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
/*  */
.timeline-heading {
    text-align: right;
    position: relative;
}
.timeline-box {
    display: grid;
    gap: 220px;
    grid-template-columns: 40% 40%;
    margin-bottom: 103px;
}
.timeline-box:last-child{
    margin-bottom: 0;
}
.timeline-heading span{
    border-radius: 14px;
    padding: 22px 63px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 25px;
    position: relative;
    background: var(--yellow-color);
    color: var(--secondary-color);
}
.timeline-inner-con{
    position: relative;
}
.timeline-inner-con::before {
    content: "";
    background: var(--border-color);
    width: 1px;
    height: 85%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 46%;
}
.timeline-heading span::before {
    content: "";
    width: 80px;
    height: 1px;
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border-color);
}
.timeline-heading span::after{
    content: "";
    width: 25px;
    height: 25px;
    border: 6px solid var(--accent);
    border-radius: 100%;
    background: var(--primary-color);
    position: absolute;
    right: -123px;
    top: 50%;
    transform: translateY(-50%);
}
.timeline-inner-con .timeline-box:nth-child(even) .timeline-heading{
    order: 2;
    text-align: left;
}
.timeline-inner-con .timeline-box:nth-child(even) .timeline-content{
    text-align: right;
}
.timeline-inner-con .timeline-box:nth-child(even) .timeline-heading span::before{
    right: unset;
    left: -110px;
}
.timeline-inner-con .timeline-box:nth-child(even) .timeline-heading span::after{
    right: unset;
    left: -122px;
}
.timeline-content p:last-child{
    margin-bottom: 0;
}
.timeline-heading h5{
    margin-bottom: 0;
}
/*  */
.team-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
    text-align: center;
}
.team-top-con {
    padding: 14px 20px 0;
    background: var(--accent);
}
.team-member-con {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.team-content-con {
    background: var(--primary-color);
}
.team-content-inner-con {
    padding: 34px 40px 41px;
    z-index: 1;
}
.team-social-links-con ul{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.team-social-links-con ul li a {
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 14px;
    color: var(--accent);
    border: 1px solid var(--accent);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
}
.team-social-links-con ul li a:hover{
    background: var(--yellow-color);
    border-color: var(--yellow-color);
    color: var(--secondary-color);
}
.team-content-inner-con span{
    margin-bottom: 34px;
}
.team-content-inner-con h5{
    margin-bottom: 11px;
}
.team-main-con .generic-title {
    margin-bottom: 91px;
}
.team-main-con .generic-title h2{
    margin-bottom: 0;
}
/*  */
.contact-box {
    padding: 50px 22px 40px;
}
.contact-box span{
    margin-bottom: 19px;
}
.contact-box a,
.contact-box p{
    transition: .3s ease-in-out;
    font-weight: 300;
    margin-bottom: 0;
}
.contact-box a{
    color: var(--text-color);
}
.contact-box:hover a,
.contact-box:hover p{
    color: var(--primary-color);
}
.contact-box a:hover{
    color: var(--yellow-color);
}
.contact-box figure{
    margin: 0 auto 14px;
}
/*  */
.contact-form-main-con{
    background: url(../images/hosting-solution-bg.png) no-repeat center;
    background-size: cover;
}
.form-box {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.6% 48.6%;
}
.form-box ul li input {
    height: 60px;
}
.form-box ul li textarea, .form-box ul li input {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    outline: 0;
    padding: 10px 21px;
    color: var(--secondary-color);
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.form-box ul li textarea:focus,
.form-box ul li input:focus{
    border-color: var(--accent);
}
.form-box ul li textarea::placeholder,
.form-box ul li input::placeholder{
    color: var(--secondary-color);
}
.form-box ul li textarea {
    height: 210px;
    resize: none;
    padding: 20px;
    padding: 17px 22px;
}
.form-box ul {
    gap: 15px;
    display: flex;
    flex-direction: column;
}
.form-box ul li button {
    width: 100%;
    height: 60px;
    outline: none;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    color: var(--secondary-color);
    background: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}
.form-box ul li button:hover{
    background: var(--accent);
    color: var(--primary-color);
}
.contact-form-main-con .generic-title p {
    font-size: 18px;
}
.form-box ul:last-child li:first-child{
    display: contents;
}
.contact-inner-con ul li span.error {
    font-size: 14px;
    line-height: 18px;
    color: red;
    padding-left: 19px;
}
/*  */
.inquiry-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.6% 48.6%;
}
.inquiry-heading figure{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.inquiry-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 13px;
}
.inquiry-heading h5{
    margin-bottom: 0;
}
.inqury-box p:last-child{
    margin-bottom: 0;
}
.inqury-box {
    padding: 51px 40px;
    border-radius: 24px;
    background: var(--primary-color);
    transition: .3s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.inqury-box:hover{
    border-color: var(--accent);
}
/*  */
.banner-sub-outer-con {
    margin-top: -316px;
}
.domains-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.domain-box {
    text-align: center;
    background: var(--primary-color);
    border-radius: 24px;
    padding: 41px 30px 40px;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.domain-box figure {
    margin-bottom: 13px;
}
.domain-box .hosting-price-box{
    text-align: center;
    margin-bottom: 29px;
}
.hosting-pages-sub-banner {
    height: 670px;
    padding: 225px 0 322px;
}
.banner-sub-outer-con {
    margin-top: -189px;
    z-index: 9;
    position: relative;
}
.blue-btn a{
    padding: 10px 23px;
    height: 50px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 14px;
    color: var(--yellow-color);
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    text-transform: uppercase;
    border: 1px solid var(--accent);
}
.blue-btn a:hover{
    color: var(--accent);
    border-color: var(--yellow-color);
    background: var(--yellow-color);
}
.domain-box p{
    margin-bottom: 25px;
}
.domain-box .month-title small {
    font-size: 16px;
    line-height: 16px;
}
.domain-box .hosting-price-box span.dollar {
    font-size: 30px;
    line-height: 26px;
    top: 0px;
}
.domain-box .hosting-price-box .numeric2 {
    font-size: 30px;
    line-height: 26px;
}
.domain-box .hosting-price-box span.numeric1 {
    font-size: 64px;
    line-height: 48px;
}
/*  */
.reason-box {
    padding: 36px 38px 45px;
    border-radius: 24px;
    transition: .2s ease-in-out;
    background: var(--primary-color);
    border: 1px solid transparent;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.reason-box:hover{
    border-color: var(--accent);
}
.reason-heading {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 16px;
}
.reason-heading h5{
    margin-bottom: 0;
}
.reasons-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.reasons-main-con .generic-title p{
    font-size: 18px;
}
.reason-box p{
    margin-bottom: 0;
}
/*  */
.domain-price-inner-con table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 63px;
}
.domain-price-inner-con table th, .domain-price-inner-con table td {
    padding: 10px 10px 9px;
    text-align: center;
}
.domain-price-inner-con table th {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
    padding-bottom: 20px;
}
.domain-price-inner-con table tr td:first-child{
    font-weight: 300;
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--text-color);
}
.domain-price-inner-con table th:first-child, .domain-price-inner-con table tr td:first-child {
    text-align: left;
    padding-left: 0;
    width: 31%;
}
.domain-price-inner-con table tr td:first-child i{
    font-size: 20px;
    color: var(--accent);
}
.domain-price-inner-con table tr{
    border-bottom: 1px dashed #788693;
}
.domain-price-inner-con {
    overflow: hidden;
}
.domain-price-inner-con table td{
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
}
.domain-price-inner-con .domain-btn-con a {
    gap: 8px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--accent);
    align-items: center;
    justify-content: center;
    display: inline-flex;
}
.domain-price-inner-con .domain-btn-con a:hover{
    color: var(--yellow-color);
}
.domain-price-inner-con table tbody tr td span {
    display: inline-block;
    font-size: 10px;
    top: -1px;
    line-height: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    position: relative;
    font-weight: 700;
    margin-left: -7px;
    color: var(--primary-color);
}
.domain-price-inner-con table tbody tr td span.new {
    background: #e20000;
}
.domain-price-inner-con table tbody tr td span.sale {
    background: #2bb020;
}
.domain-main-con .generic-title{
    margin-bottom: 60px;
}
/*  */
.domain-main-con {
    background: url(../images/hosting-solution-bg.png) no-repeat center;
    background-size: cover;
}
/*  */
.faq-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.6% 48.6%;
}
.faq-inner-con .card-header button.btn-link {
    padding: 23px 39px 21px;
    border-radius: 0;
    width: 100%;
    text-align: left;
    border: 0;
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    white-space: normal;
    text-decoration: none;
    color: var(--accent);
}
.faq-inner-con .card-header button.btn-link.collapsed{
    color: var(--secondary-color);
}
.faq-inner-con .card-header {
    padding: 0;
    border: 0;
    background: transparent;
}
.faq-inner-con .card .collapse{
    background: var(--primary-color);
}
.faq-inner-con .card {
    background: var(--primary-color);
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
    margin-bottom: 10px;
    border-radius: 24px;
    border: 0;
    overflow: hidden;
}
.faq-inner-con .card:last-child{
    margin-bottom: 0;
}
.faq-inner-con .card-body {
    padding: 0 39px 20px;
    font-size: 16px;
    line-height: 24px;
    word-break: break-word;
}
.faq-inner-con .card-header button.btn-link:hover{
    color: var(--accent);
}
/*  */
.dedicated-pricing-inner-con {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.dedicated-plan-title h5 {
    margin-bottom: 0;
    font-weight: 600;
    background: var(--yellow-color);
    border-radius: 14px;
    padding: 12px 20px;
    text-align: center;
}
.dedicated-category small{
    font-size: 16px;
    line-height: 24px;
}
.dedicated-category span{
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}
.dedicated-price-box {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 16% 61.5% 14.6%;
    padding: 21px 0px 18px;
    border-bottom: 1px dashed var(--secondary-color);
}
.dedicated-price-box:first-child{
    padding-top: 0;
}
.dedicated-price-box:last-child{
    padding-bottom: 0;
    border: 0;
}
.dedicated-price-con {
    display: grid;
    gap: 47px;
    grid-template-columns: 20% 18% 16% 22%;
    align-items: center;
}
.dedicated-price-box .hosting-price-box {
    margin-bottom: 0;
    align-items: center;
    padding-left: 12px;
}
.dedicated-price-box .primary-btn {
    padding-left: 4px;
    margin-top: -2px;
}
.dedicated-price-box .primary-btn a{
    height: 53px;
    padding: 8px 23px;
}
.dedicated-price-box .primary-btn a:hover{
    background: var(--accent);
    color: var(--yellow-color);
}
.dedicated-price-box .hosting-price-box span.numeric1 {
    font-size: 48px;
    line-height: 54px;
}
.dedicated-price-box .hosting-price-box span.dollar {
    top: -6px;
}
.dedicated-price-box .hosting-price-box .month-title small {
    font-size: 16px;
    margin-top: -4px;
}
/*  */
.dedicated-features-con .generic-title p{
    font-size: 18px;
}
.dedicated-features-inner-con {
    display: grid;
    gap: 29px;
    grid-template-columns: 23% 23% 23% 23%;
}
.dedicated-features-box {
    text-align: center;
    padding: 50px 30px 45px;
    border-radius: 24px;
    word-break: break-word;
    transition: .2s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.dedicated-features-box:hover{
    border-color: var(--accent);
}
.dedicated-features-box p:last-child{
    margin-bottom: 0;
}
.dedicated-features-box figure{
    margin-bottom: 25px;
}
.dedicated-features-box h5{
    font-weight: 600;
    margin-bottom: 11px;
}
.dedicated-security-features-list {
    padding: 48px;
    text-align: center;
    word-break: break-word;
}
.dedicated-security-features-list ul li{
    padding: 9px 0 8px;
    font-size: 18px;
    line-height: 28px;
    border-bottom: 1px dashed var(--text-color);
}
.dedicated-security-features-list ul li:first-child{
    padding-top: 0;
}
.dedicated-security-features-list ul li:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}
.dedicated-security-feature-main-con .security-feature-left-con p{
    font-size: 18px;
    line-height: 28px;
}
.dedicated-security-feature-main-con .security-feature-inner-con {
    gap: 188px;
    grid-template-columns: 43% 40%;
}
.dedicated-security-feature-main-con .security-feature-video-con h5{
    margin-bottom: 0;
}
.security-feature-video-con {
    padding: 26px 51px 23px;
    text-align: center;
}
/*  */
.bg-shape{
    background: url(../images/bg-shape.png) no-repeat center;
    background-size: cover;
}
.container {
    z-index: 1;
    position: relative;
}
/*  */
.hostiko-benefits-plans {
    background: url(../images/vps-benefits-bg-img.jpg) no-repeat center;
    background-size: cover;
    padding: 36px 42px;
    border-radius: 24px;
    position: relative;
}
.vps-slider-main-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 65.77% 31.55%;
}
.hostiko-benefits-plans ul li {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--secondary-color);
    padding: 8px 10px 7px 35px;
    border-bottom: 1px dashed var(--secondary-color);
    position: relative;
}
.hostiko-benefits-plans ul li:last-child{
    border-bottom: 0;
}
.hostiko-benefits-plans h4{
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 11px;
}
.hostiko-benefits-plans ul li i {
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--yellow-color);
    font-size: 22px;
    line-height: 22px;
}
.hostiko-benefits-plans::after {
    content: "";
    background: url(../images/green-leave.png) no-repeat center;
    width: 139px;
    height: 214px;
    background-size: contain;
    position: absolute;
    right: -50px;
    bottom: -50px;
}
/*  */
.vps-management-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 40% 40%;
    justify-content: center;
}
.vps-management-inner-con .security-feature-video-con p{
    font-size: 18px;
    line-height: 36px;
    color: var(--yellow-color);
}
.vps-management-inner-con .security-feature-video-con h5{
    margin-bottom: 4px;
}
.vps-management-inner-con .dedicated-security-features-list ul li:last-child{
    padding-bottom: 8px;
}
.vps-management-inner-con .generic-btn a {
    height: 52px;
    font-size: 14px;
    line-height: 24px;
    background: var(--accent);
    color: var(--primary-color);
    border: 1px solid transparent;
}
.vps-management-inner-con .generic-btn a:hover{
    color: var(--accent);
    background: var(--primary-color);
    border-color: var(--accent);
}
.vps-management-inner-con .dedicated-security-features-list ul{
    margin-bottom: 24px;
}
.vps-management-main-con .generic-title {
    padding: 0 40px;
}
.vps-management-main-con .security-feature-video-con {
    padding: 26px 51px 17px;
}
.vps-management-main-con .dedicated-security-features-list {
    padding: 33px 48px;
}
/*  */
.web-hosting-inner-con .hosting-type-content-con figure {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    margin: 0 auto 19px;
}
.web-hosting-inner-con .hosting-type-box ul {
    width: 100%;
    margin: 0;
}
.web-hosting-inner-con .primary-btn a{
    height: 50px;
}
.web-hosting-inner-con .primary-btn{
    margin-bottom: 34px;
}
.web-hosting-inner-con .hosting-type-box ul li {
    padding-left: 29px;
    margin-bottom: 6px;
}
span.free-item{
    color: var(--accent);
}
.web-hosting-inner-con .plan2-flower::before{
    left: unset;
    bottom: -82px;
    transform: unset;
    right: -60px;
}
.web-hosting-inner-con .plan1-flower::before{
    left: unset;
    bottom: -94px;
    right: -70px;
}
.web-hosting-inner-con .hosting-type-content-con {
    padding: 40px 40px 40px;
}
.advance-web-features-con .generic-title{
    padding: 0 80px;
}
.shared-hosting-content-inner-con {
    display: grid;
    gap: 93px;
    grid-template-columns: 43% 48.8%;
}
.shared-hosting-content-right-con h5{
    margin-bottom: 17px;
}
.shared-hosting-content-right-con ul li {
    position: relative;
    font-size: 18px;
    line-height: 30px;
    padding: 8px 30px 7px 37px;
    border-bottom: 1px dashed var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shared-hosting-content-right-con ul li:last-child{
    border-bottom: 0;
}
.shared-hosting-content-right-con ul li i.circle-chk{
    position: absolute;
    left: 0;
    top: 13px;
    font-size: 20px;
    line-height: 20px;
    color: var(--accent);
}
.shared-hosting-content-right-con ul li i{
    color: var(--accent);
}
.shared-hosting-content-right-con ul li small.free-item{
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    color: var(--accent);
}
/*  */
.reseller-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.reseller-box {
    background: var(--primary-color);
    padding: 46px 34px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 2px 2px 20px rgb(111 111 134 / 15%);
}
.reseller-box .primary-btn{
    margin-top: auto;
}
.reseller-box .primary-btn a{
    width: 100%;
}
.reseller-box ul li span {
    display: inline-block;
    font-weight: 600;
}
.reseller-box ul {
    width: 190px;
    margin: 0 auto 31px;
    text-align: left;
}
.reseller-box ul li {
    color: #333333;
    padding-left: 26px;
    margin-bottom: 11px;
}
.reseller-box ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 14px;
    color: var(--accent);
}
.reseller-box ul li:last-child{
    margin-bottom: 0;
}
.reseller-box h6{
    margin-bottom: 29px;
}
.reseller-box .hosting-price-box {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    position: relative;
}
.error-con {
    position: relative;
    z-index: 2;
    padding: 0 100px;
}
.error-con h2 {
    font-size: 130px;
    line-height: 125px;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.error-con p {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}
.error-con .generic-btn a {
    font-size: 16px;
    font-weight: 500;
    height: auto;
    padding: 20px 40px;
    border-radius: 14px;
    display: inline-block;
    color: var(--secondary-color);
    background: var(--primary-color);
    transition: .3s ease-in-out;
    border: 1px solid var(--primary-color);
}
.error-con .generic-btn a:hover{
    color: var(--primary-color);
    background: transparent;
}
/* 404 page styling end here */
/* coming soon page styling start here */
.coming-soon-con {
    position: relative;
    z-index: 2;
}
.coming-soon-con h2 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 40px;
    color: var(--primary-color);
}
.coming-soon-social-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.coming-soon-social-links ul li a {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s ease-in-out;
    border-radius: 14px;
    border: 1px solid var(--primary-color);
}
.coming-soon-social-links ul li a i {
    font-size: 18px;
    color: var(--secondary-color);
}
.coming-soon-social-links ul li a:hover {
    transform: translateY(-6px);
    background: transparent;
}
.coming-soon-social-links ul li a:hover i {
    color: var(--primary-color);
}
.error-section .generic-btn i{
    margin-right: 10px;
}
/* coming soon page styling end here */
/* bottom to top button */
#button.show {
    opacity: 1;
    visibility: visible;
}
#button:hover {
    cursor: pointer;
}
#button {
    display: inline-block;
    background-color: var(--yellow-color);
    border: 1px solid var(--yellow-color);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    text-align: center;
    position: fixed;
    bottom: 72px;
    right: 113px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}
#button::after {
    content: "\f062";
    font-family: "Font Awesome 5 free";
    font-size: 20px;
    line-height: 26px;
    color: var(--secondary-color);
    font-weight: 600;
}
@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255, 210, 0, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}
@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(255, 210, 0, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}
/* bottom to top button */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}
.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.lead {
    font-size: 13px;
}
.loader div {
    background-color: var(--accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}
.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/* Preloader -------------------------------------------------------*/