@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #15161b;
    --accent: #ffe31a;
    --text-color: #6e6e70;
    --border-color: #cfdee5;
    --blue-color: #2170fa;
}
* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    word-break: break-word;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 61px;
    font-weight: 700;
    color: var(--primary-color);
}
h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: var(--secondary-color);
}
h3 {
    font-size: 32px;
    line-height: 40px;
    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: 100px;
}
.padding-bottom {
    padding-bottom: 100px;
}
a:hover {
    text-decoration: none;
}
.primary-btn a,
.secondary-btn a{
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    border-radius: 25px;
    padding: 10px 40px;
    transition: .3s ease-in-out;
}
.primary-btn a{
    border: 1px solid var(--secondary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
}
.primary-btn a:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}
.secondary-btn a{
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
}
.secondary-btn a:hover{
    color: var(--secondary-color);
    background: var(--accent);
}
.generic-title p{
    font-size: 16px;
    margin-bottom: 0;
}
.generic-title h2{
    margin-bottom: 14px;
}
.generic-title {
    padding: 0 180px;
    margin-bottom: 72px;
}
/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 33px;
    z-index: 999;
}
.header-main-con .collapse.navbar-collapse {
    justify-content: end;
    margin-right: 70px;
}
.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(--accent);
}
.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: 190px;
    padding-bottom: 0;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul {
    padding: 10px;
    border-radius: 10px;
    background: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.dropdown-item{
    padding: 5px 16px;
    margin-bottom: 1px;
    color: var(--secondary-color);
    background: transparent;
    border-radius: 10px;
    font-size: 14px;
}
.header-main-con .navbar-expand-lg .navbar-nav li ul li.dropdown-item a.dropdown-toggle{
    width: 100%;
    display: block;
    color: var(--secondary-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(--primary-color);
    border: 0;
    width: 200px;
    top: 0;
    left: -210px;
    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: #3370f714;
}
.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(--accent);
}
.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 a.dropdown-toggle{
    padding: 5px 16px;
    border-radius: 10px;
    margin-bottom: 1px;
    font-size: 14px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item a.dropdown-toggle:hover{
    background: #3370f714;
}
.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(--accent);
    color: var(--secondary-color);
    margin-bottom: 1px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item .dropdown-toggle.active:hover{
    background: var(--accent);
    color: var(--secondary-color);
}
.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(--accent);
}
.nav-btns .secondary-btn a {
    min-width: 135px;
    padding: 10px 20px;
}
/* header section styling end here */
.banner-main-con {
    background: var(--blue-color);
    padding: 179px 0 255px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner-inner-con {
    display: grid;
    gap: 38px;
    align-items: center;
    grid-template-columns: 48% 48.4%;
}
.banner-content-con h1,
.banner-content-con p,
.banner-content-con ul li{
    color: var(--primary-color);
}
.banner-content-con h1 span{
    color: var(--accent);
}
.banner-content-con h1{
    margin-bottom: 17px;
}
.banner-img-con {
    position: relative;
}
.banner-img-con figure.banner-small-img {
    position: absolute;
    left: -41px;
    top: 76px;
}
.banner-price-con {
    position: absolute;
    right: 10px;
    top: -4px;
}
.banner-price-con span{
    font-size: 48px;
    line-height: 54px;
    color: var(--primary-color);
    font-weight: 300;
}
.banner-price-con .banner-price-digit{
    font-size: 100px;
    line-height: 54px;
    color: var(--accent);
}
.banner-price-con small{
    font-size: 18px;
    color: var(--primary-color);
}
.banner-price-con {
    display: flex;
    align-items: center;
}
.banner-price-con span.dollar-sign {
    position: relative;
    top: -10px;
}
.banner-content-con p{
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 27px;
}
.banner-content-con ul li{
    position: relative;
    padding-left: 25px;
    font-size: 16px;
}
.banner-content-con {
    margin-top: -20px;
}
.banner-content-con ul li i{
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.banner-content-con .secondary-btn a{
    min-width: 190px;
}
.banner-content-con .secondary-btn{
    margin-bottom: 24px;
}
.live-chat-inner-con span{
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}
.live-chat-inner-con p{
    font-size: 12px;
    line-height: 16px;
    color: var(--secondary-color);
}
.live-chat-btn a {
    width: 110px;
    height: 32px;
    border-radius: 16px;
    background: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: .3s ease-in-out;
    border: 1px solid var(--secondary-color);
}
.live-chat-btn a:hover{
    color: var(--accent);
    background: var(--secondary-color);
}
.live-chat-inner-con {
    text-align: center;
    padding: 16px 12px 19px;
    background: var(--accent);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--secondary-color);
    width: 140px;
    margin-top: -4px;
    box-shadow: 0 20px 40px rgb(0 0 0 / 20%);
}
.live-chat-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 52px;
    top: 31.5%;
    transform: translateY(-50%);
    -webkit-animation: bounce2 5s ease infinite;
    animation: bounce2 5s ease infinite;
}
.bounce2 {
    animation: bounce2 5s ease infinite;
}
@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-30px);}
    60% {transform: translateY(-15px);}
}
/*  */
.search-domain-inner-con {
    border-radius: 20px;
    background: var(--accent);
    padding: 25px 60px 59px;
    display: grid;
    grid-template-columns: 68% 31%;
    align-items: center;
    position: relative;
    margin-top: -156px;
    gap: 9px;
}
.search-domain-box h2 {
    font-weight: 500;
    line-height: 58px;
    margin-bottom: 27px;
}
.search-domain-box h2 span{
    position: relative;
}
.search-domain-box h2 span::before{
    content: "";
    background: var(--secondary-color);
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.domain-serach-con input,
.domain-serach-con button{
    height: 58px;
    border: 1px solid var(--secondary-color);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 30px;
    border-radius: 30px;
    outline: 0;
    font-size: 16px;
}
.domain-serach-con input::placeholder{
    color: var(--secondary-color);
}
.domain-serach-con button{
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 5px;
}
.domain-serach-con button i{
    font-size: 20px;
}
.domain-serach-con button:hover{
    color: var(--accent);
    background: var(--secondary-color);
}
.domain-serach-con {
    display: grid;
    gap: 10px;
    grid-template-columns: 77.3% 21%;
}
figure.big-sale-img {
    position: absolute;
    top: 0;
    left: 0;
}
.search-domain-box {
    padding-top: 23px;
}
/*  */
.hosting-type-box {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: var(--blue-color);
    display: flex;
    flex-direction: column;
}
.hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.hosting-type-top-con {
    padding: 50px 40px 35px;
}
.hosting-type-bottom-con {
    padding: 35px 40px 40px;
    background: var(--accent);
    margin-top: auto;
}
.hosting-type-top-con h5{
    font-weight: 400;
    margin-bottom: 18px;
}
.hosting-type-top-con h5,
.hosting-type-top-con p,
.hosting-type-top-con ul li{
    color: var(--primary-color);
}
.hosting-type-top-con ul li span{
    color: var(--accent);
}
.hosting-type-top-con ul li i{
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 14px;
}
.hosting-type-top-con p{
    line-height: 20px;
    margin-bottom: 29px;
}
.hosting-type-top-con ul li {
    padding: 8px 0 7px 30px;
    text-align: left;
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.hosting-type-top-con ul li:last-child{
    border: 0;
}
.hosting-type-top-con ul{
    max-width: 200px;
    margin: 0 auto;
}
.hosting-price-box span.dollar {
    font-size: 24px;
    line-height: 54px;
    color: var(--secondary-color);
    position: relative;
    top: -9px;
    left: -6px;
}
.hosting-price-box .numeric1{
    font-size: 56px;
    line-height: 54px;
    font-weight: 500;
    color: var(--secondary-color);
}
.hosting-price-box .month-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: -4px;
    padding-left: 2px;
}
.hosting-price-box .month-title span{
    font-size: 28px;
    line-height: 28px;
    color: var(--secondary-color);
}
.hosting-price-box .month-title small {
    font-size: 14px;
    line-height: 14px;
    color: var(--secondary-color);
    padding-left: 6px;
}
.hosting-price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 23px;
}
.hosting-type-box .primary-btn a{
    min-width: 150px;
}
.hosting-type-top-con figure{
    margin-bottom: 39px;
}
/*  */
.why-choose-hostiko-main-con{
    background: var(--blue-color);
}
.why-choose-hostiko-inner-con {
    display: grid;
    gap: 67px;
    grid-template-columns: 47% 48.2%;
    margin-left: -36px;
}
.why-choose-hostiko-content > span {
    padding: 4px 43px;
    border-radius: 30px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-bottom: 48px;
}
.why-choose-hostiko-content h2,
.why-choose-hostiko-content p{
    color: var(--primary-color);
}
.why-choose-hostiko-content h2{
    margin-bottom: 24px;
}
.why-choose-hostiko-content p:nth-child(3){
    color: var(--accent);
    margin-bottom: 18px;
}
.why-choose-hostiko-content p{
    font-size: 16px;
}
.why-choose-hostiko-content ul li span{
    font-size: 40px;
    line-height: 54px;
    color: var(--accent);
}
.why-choose-hostiko-content ul li small{
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-color);
}
.why-choose-hostiko-content ul li{
    display: grid;
    gap: 13px;
    align-items: center;
    grid-template-columns: auto auto;
}
.why-choose-hostiko-content ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 26% 31% 32%;
    margin-top: 44px;
}
.why-choose-hostiko-img {
    padding-top: 10px;
}
/*  */
.advance-features-inner-con {
    display: grid;
    gap: 60px;
    grid-template-columns: 41% 53%;
    align-items: center;
}
.advance-features-detail {
    padding-left: 42px;
    margin-bottom: 37px;
}
.advance-features-detail:last-child{
    margin-bottom: 0;
}
.advance-features-detail i{
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.advance-features-detail h6{
    margin-bottom: 14px;
}
.advance-features-detail p{
    margin-bottom: 0;
}
.advance-features-content-con {
    padding-top: 18px;
}
/* map tabs styling start here */
.map-location-main-con{
    background: url(../images/map-locations-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.map-img-con figure img{
    height: 250px;
    object-fit: contain;
    width: 100%;
}
.map-location-inner-con .nav-pills .nav-link {
    border-radius: 6px;
    text-align: left;
    border: 0;
    cursor: pointer;
    margin-bottom: 12px;
    padding: 20px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--secondary-color);
}
.map-location-inner-con .nav-pills .nav-link:last-child{
    margin-bottom: 0;
}
.map-location-inner-con .nav-pills .nav-link i{
    width: 23px;
    height: 23px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--secondary-color);
    position: relative;
    border: 1px solid var(--secondary-color);
}
.map-location-inner-con .nav-pills .nav-link i::before {
    left: 55%;
    top: 53%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.map-location-inner-con .nav-pills .nav-link:focus{
    outline: none;
}
.map-location-inner-con .nav-pills .nav-link.active,
.map-location-inner-con .nav-pills .nav-link:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}
.map-location-inner-con .nav-pills .nav-link:hover i,
.map-location-inner-con .nav-pills .nav-link.active i{
    background: var(--primary-color);
}
.country-details {
    margin-bottom: 24px;
}
.country-details ul li {
    position: relative;
    padding-left: 29px;
    margin-bottom: 6px;
    color: #555555;
}
.country-details ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--secondary-color);
}
.country-details ul li a{
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
}
.country-details ul li a:hover{
    color: var(--accent);
}
.map-and-content-con {
    width: 100%;
    height: 292px;
    overflow: hidden;
    position: relative;
    padding: 30px 16px;
    background: var(--primary-color);
    border-radius: 6px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.map-img-con {
    width: 58%;
    height: 100%;
    float: left;
    border-right: 1px solid var(--border-color);
}
.map-content-details-con {
    width: 42%;
    height: 100%;
    overflow-y: auto;
    padding: 0 49px;
}
.map-content-details-con::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
	background-color: #f5f6f9;
	border-radius: 3px;
}
.map-content-details-con::-webkit-scrollbar{
	width: 4px;
	background-color: #f5f6f9;
}
.map-content-details-con::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: var(--blue-color);
}
.country-details h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
.map-location-main-con .generic-title {
    margin-bottom: 50px;
}
/* map tabs styling end here */
.hostiko-guarantee-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.hostiko-guarantee-box {
    text-align: center;
    padding: 0 9px;
}
.hostiko-guarantee-box figure{
    margin-bottom: 32px;
}
.hostiko-guarantee-box h6{
    margin-bottom: 14px;
}
.hostiko-guarantee-box p:last-child{
    margin-bottom: 0;
}
/*  */
.client-review-slider .owl-nav,
.client-review-slider .owl-dots{
    display: none;
}
.client-review-outer-con .btn-wrap .prev-btn-client, .client-review-outer-con .btn-wrap .next-btn-client {
    position: absolute;
    cursor: pointer;
    width: 65px;
    height: 65px;
    background: var(--blue-color);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 100%;
    transition: .3s ease-in-out;
    outline: none;
}
.client-review-outer-con .btn-wrap .prev-btn-client:hover, .client-review-outer-con .btn-wrap .next-btn-client:hover{
    background: var(--accent);
    color: var(--secondary-color);
}
.client-review-outer-con .btn-wrap .prev-btn-client i, .client-review-outer-con .btn-wrap .next-btn-client i {
    font-size: 26px;
    line-height: 34px;
}
.client-review-outer-con .btn-wrap .prev-btn-client i{
    margin-left: -3px;
}
.client-review-outer-con .btn-wrap .next-btn-client i{
    margin-right: -3px;
}
.client-review-outer-con .btn-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    top: 41%;
    z-index: 1;
    transform: translateY(-50%);
}
.client-review-outer-con {
    position: relative;
}
.client-review-outer-con .btn-wrap .next-btn-client {
    right: -94px;
}
.client-review-outer-con .btn-wrap .prev-btn-client {
    left: -94px;
}
.client-review-box {
    padding: 43px 49px 52px;
    border-radius: 20px;
    background: #1f5ecd;
    box-shadow: 0 0 50px rgb(118 144 217 / 10%);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.client-review-box p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 39px;
    font-weight: 300;
    color: var(--primary-color);
}
.client-review-slider .owl-carousel.owl-drag .owl-item .item{
    height: 100%;
}
.client-review-slider .owl-carousel .owl-stage{
    display: flex;
}
.client-review-box > span{
    font-size: 16px;
    line-height: 30px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 19px;
}
.client-review-slider .owl-carousel.owl-drag .owl-item .item .client-review-box figure img{
    width: auto;
}
.reviewer-name {
    position: relative;
    padding-left: 44px;
    margin-top: auto;
}
.reviewer-name span{
    font-size: 16px;
    color: var(--accent);
}
.reviewer-name::before{
    content: "";
    width: 30px;
    height: 1px;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.client-review-slider .owl-carousel .owl-stage-outer{
    box-shadow: 0 0 50px rgb(118 144 217 / 10%);
}
.client-review-slider{
    background: url(../images/client-review-bg.jpg) no-repeat center;
    background-size: cover;
}
.client-review-slider .generic-title {
    margin-bottom: 66px;
}
.client-review-slider .generic-title h2{
    color: var(--primary-color);
}
.client-review-box > figure{
    margin-bottom: 23px;
}
/*  */
.global-partners-inner-con ul{
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.global-partners-inner-con ul li {
    height: 120px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    justify-content: center;
    border: 1px solid var(--secondary-color);
}
.global-partners-inner-con ul li figure img{
    transition: .3s ease-in-out;
}
.global-partners-inner-con ul li:hover figure img{
    transform: scale(1.1);
}
.global-partners-main-con {
    padding-bottom: 216px;
}
/* footer section styling start here */
.footer-main-con {
    background: var(--blue-color);
    position: relative;
    z-index: 3;
}
/* builder section styling start here */
.builder-main-con {
    padding: 30px 78px;
    border-radius: 20px;
    background: var(--accent) url(../images/builder-bg-img.png) no-repeat center;
    background-size: cover;
    min-height: 230px;
    display: grid;
    gap: 40px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 97px;
    margin-top: -115px;
}
.builder-main-con .primary-btn a{
    height: 58px;
    min-width: 170px;
    padding: 10px 20px;
    border-radius: 30px;
}
.builder-content h3,
.builder-content p{
    color: var(--secondary-color);
}
.builder-content h3{
    margin-bottom: 14px;
}
.builder-content p {
    margin-bottom: 0;
    font-size: 16px;
}
/* builder section styling end here */
.footer-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 19%;
    margin-bottom: 27px;
}
.footer-box h6{
    font-weight: 600;
    margin-bottom: 38px;
    color: var(--primary-color);
}
.footer-box ul li {
    padding-left: 2px;
    margin-bottom: 6px;
}
.footer-box ul li a{
    font-size: 14px;
    display: inline-block;
    color: var(--primary-color);
}
.footer-box ul li a:hover{
    color: var(--accent);
}
.footer-contact-info ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
}
.footer-contact-info ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--accent);
}
.footer-copyright-con {
    padding: 30px 0;
    display: grid;
    gap: 47px;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 74% 23%;
}
.copyright-logo-con {
    display: flex;
    align-items: center;
}
.copyright-logo-con p {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 14px;
}
.copyright-logo-con a{
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}
.social-links-con ul{
    display: flex;
    gap: 10px;
}
.social-links-con ul li a{
    width: 40px;
    height: 40px;
    background: rgb(0 0 0 / 20%);
    color: var(--accent);
    background: var(--blue-color);
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: .3s ease-in-out;
}
.social-links-con ul li a:hover{
    background: var(--accent);
    color: var(--secondary-color);
}
/*  */
/* about page styling start here */
.sub-banner-inner-con {
    display: grid;
    gap: 207px;
    align-items: center;
    grid-template-columns: 43% 39%;
}
.sub-banner-main-con {
    background: var(--blue-color);
    height: 733px;
    padding: 180px 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sub-banner-content-con h1 {
    margin-bottom: 18px;
    font-size: 40px;
}
.sub-banner-content-con {
    margin-top: -10px;
}
.sub-banner-content-con p {
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-color);
    margin-bottom: 34px;
}
.sub-banner-content-con .breadcrumb {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 20px;
    padding: 4px 23px;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    min-width: 141px;
}
.sub-banner-content-con .breadcrumb li {
    color: var(--accent);
    font-size: 12px;
}
.sub-banner-content-con .breadcrumb li a{
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.sub-banner-content-con .breadcrumb li a:hover{
    color: var(--accent);
}
.sub-banner-content-con .breadcrumb-item+.breadcrumb-item::before {
    content: "~";
    color: var(--primary-color);
}
.sub-banner-img-con{
    position: relative;
}
.about-small-img {
    position: absolute;
    left: -184px;
    top: 36px;
}
.about-mission-box .search-domain-box .primary-btn a{
    min-width: 135px;
    padding: 10px 20px;
}
.about-mission-box .search-domain-box p{
    font-size: 16px;
    margin-bottom: 23px;
    color: var(--secondary-color);
}
.about-mission-box .search-domain-box h2 {
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 8px;
}
.about-mission-box .search-domain-inner-con {
    padding: 25px 60px 51px;
    grid-template-columns: 68.2% 31.3%;
    margin-top: -159px;
    gap: 4px;
}
.about-mission-box .search-domain-box {
    padding-top: 37px;
}
.sub-banner-main-con .live-chat-main{
    top: 21%;
}
/*  */
/* milestone section styling start here */
.milestone-timeline-con {
    position: relative;
    overflow: hidden;
}
.milestone-timeline-con .timeline-block {
    width: 100%;
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
}
.milestone-timeline-con .timeline-block-right {
    float: right;
}
.milestone-timeline-con .marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    z-index: 9999;
}
.milestone-timeline-con .timeline-content {
    width: 95%;
    padding: 0px 0 0 39px;
    display: grid;
    gap: 50px;
    grid-template-columns: 23% 70%;
    justify-content: space-between;
}
.milestone-timeline-con .timeline-content h3 {
    color: var(--blue-color);
}
.milestone-timeline-con .timeline-content span {
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}
.milestone-timeline-con .timeline-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 0;
}
.timeline-discription {
    position: relative;
    padding: 23px 34px 23px 39px;
    border: 1px solid var(--secondary-color);
}
.timeline-heading {
    padding-top: 2px;
}
.timeline-heading h3{
    margin-bottom: 18px;
}
.timeline-discription::before {
    content: "";
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    border-left: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    position: absolute;
    left: -11px;
    top: 15px;
    transform: rotate(45deg);
}
.milestone-timeline-con .timeline-block:last-child{
    margin-bottom: 0;
}
.hostiko-milestone-main-con .generic-title{
    padding: 0 200px;
    margin-bottom: 74px;
}
@media screen and (max-width: 768px) {
    .timeline-block {
       margin-bottom: 30px;
    }
    .timeline-block-right {
       float: none;
    }
}
.hostiko-milestone-main-con .generic-title h2{
    margin-bottom: 50px;
}
.hostiko-milestone-main-con .generic-title {
    margin-bottom: 78px;
}
/* milestone section styling end here */
.team-main-con{
    background: var(--accent);
}
.team-member-box h5{
    font-weight: 500;
    color: var(--secondary-color);
}
.team-member-box span{
    font-size: 16px;
    color: var(--secondary-color);
}
.team-member-links-details {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgb(0 123 255 / 90%);
    opacity: 0;
    transition: .3s ease-in-out;
}
.team-member-links-details p{
    color: var(--primary-color);
    margin-bottom: 19px;
}
.team-member-links-details ul li a{
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    background: var(--blue-color);
    color: var(--accent);
    transition: .3s ease-in-out;
}
.team-member-links-details ul li a:hover{
    color: var(--secondary-color);
    background: var(--accent);
}
.team-member-links-details ul{
    display: flex;
    gap: 10px;
    justify-content: center;
}
.team-member-box{
    text-align: center;
}
.team-member-box:hover .team-member-links-details{
    opacity: 1;
}
.team-member-box figure{
    background: var(--blue-color);
    border-radius: 20px;
    overflow: hidden;
}
.team-member-box figure img{
    width: 255px;
    height: 255px;
    object-fit: contain;
}
.team-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.team-member-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}
.team-main-con .generic-title p{
    color: var(--secondary-color);
}
.about-service-main-con .advance-features-detail figure{
    width: 65px;
    height: 65px;
    background: var(--accent);
    border: 1px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
}
.about-service-main-con .advance-features-detail {
    padding-left: 92px;
    margin-bottom: 51px;
}
.about-service-main-con .advance-features-inner-con {
    gap: 50px;
    grid-template-columns: 47% 48%;
}
.about-service-main-con .advance-features-detail:last-child{
    margin-bottom: 0;
}
.about-service-main-con .advance-features-detail h6 {
    margin-bottom: 17px;
}
.about-service-main-con .advance-features-content-con {
    padding-top: 24px;
}
/* about page styling end here */
.contact-banner-main .sub-banner-inner-con {
    gap: 104px;
    grid-template-columns: 36% 55%;
}
.report-inquiry-con {
    padding: 40px 49px 54px;
    border-radius: 20px;
    background: var(--accent);
}
.inquiry-main-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.6% 48.6%;
    margin-top: -123px;
}
.report-inquiry-heading {
    display: flex;
    gap: 17px;
    align-items: center;
    margin-bottom: 19px;
}
.report-inquiry-con h3{
    margin-bottom: 0;
}
.report-inquiry-con p{
    font-size: 16px;
    color: var(--secondary-color);
}
.report-inquiry-con p:last-child {
    margin-bottom: 0;
}
/*  */
.contact-box {
    padding: 42px 24px 48px;
    border-radius: 20px;
    transition: .3s ease-in-out;
    background: var(--blue-color);
}
.contact-box h5,
.contact-box p,
.contact-box a{
    color: var(--primary-color);
}
.contact-boxes-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
    text-align: center;
}
.contact-box a:hover{
    color: var(--accent);
}
.contact-box figure{
    margin-bottom: 21px;
}
.contact-box h5{
    margin-bottom: 16px;
}
.contact-box p:last-child{
    margin-bottom: 0;
}
/*  */
.contact-form-main-con{
    background: var(--accent);
}
.contact-form-main-con .generic-title {
    padding: 0 290px;
    margin-bottom: 54px;
}
.contact-form-main-con .generic-title p{
    color: var(--secondary-color);
}
.form-box ul {
    display: grid;
    gap: 10px;
    grid-template-columns: 49.5% 49.5%;
    margin-bottom: 30px;
}
.form-box ul li textarea, .form-box ul li input {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--secondary-color);
    outline: 0;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 26px;
    color: var(--secondary-color);
    background: var(--primary-color);
}
.form-box ul li textarea::placeholder,
.form-box ul li input::placeholder{
    color: var(--secondary-color);
}
.form-box ul li input {
    height: 60px;
    border-radius: 30px;
}
.form-box ul li textarea {
    height: 120px;
    resize: none;
    padding: 16px 26px;
    display: block;
}
.form-box ul li input:focus,
.form-box ul li textarea:focus{
    border-color: var(--blue-color);
}
.form-box .submit-btn button {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 54px;
    font-weight: 500;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    line-height: 18px;
    background: var(--blue-color);
    outline: 0;
    border: 1px solid var(--secondary-color);
    transition: .3s ease-in-out;
    cursor: pointer;
}
.form-box .submit-btn button:hover{
    color: var(--accent);
    background: var(--secondary-color);
}
.form-box ul li:last-child {
    grid-column: 1 / -1;
}
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-form-inner-con {
    max-width: 920px;
    margin: 0 auto;
}
.contact-form-inner-con ul li span.error {
    font-size: 14px;
    line-height: 18px;
    color: var(--blue-color);
    padding-left: 27px;
}
/*  */
.dedicated-price-box p{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}
.dedicated-price-heading h5{
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.dedicated-price-heading h5 span{
    color: var(--accent);
}
.dedicated-price-heading .primary-btn a{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
}
.dedicated-price-outer-box {
    border-radius: 20px;
    background: var(--blue-color);
    display: grid;
    grid-template-columns: 46% 54%;
    transition: .3s ease-in-out;
}
.dedicated-price-details-con {
    border-radius: 20px;
    background: var(--primary-color);
    padding: 24px 20px 22px 32px;
    border: 1px solid var(--secondary-color);
    display: grid;
    gap: 28px;
    margin-right: -1px;
    grid-template-columns: 60% 34.5%;
    align-items: center;
    transition: .3s ease-in-out;
}
.dedicated-price-heading-con {
    padding: 32px 30px 32px 146px;
    position: relative;
}
.dedicated-headder-img {
    position: absolute;
    top: 0;
    left: 40px;
}
.dedicated-price-details-con ul li {
    color: var(--secondary-color);
    padding-left: 23px;
}
.dedicated-price-details-con ul li i {
    position: absolute;
    left: 0;
    top: 5px;
}
.dedicated-price-details-con ul {
    display: grid;
    gap: 6px 10px;
    grid-template-columns: 50% 47%;
}
.dedicated-price-box .hosting-price-box {
    margin-bottom: 0;
    justify-content: left;
    padding-left: 6px;
}
.dedicated-price-main-con .generic-title {
    margin-bottom: 67px;
}
.dedicated-price-outer-box:hover .dedicated-price-heading .primary-btn a{
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background: var(--accent);
}
.dedicated-price-outer-box:hover {
    box-shadow: 20px 20px 40px rgb(0 0 0 / 20%);
}
.dedicated-price-outer-box:hover .dedicated-price-details-con{
    background: var(--accent);
}
.dedicated-price-inner-con .dedicated-price-outer-box{
    margin-bottom: 10px;
}
.dedicated-price-inner-con .dedicated-price-outer-box:last-child{
    margin-bottom: 0;
}
/*  */
.dedicated-feature-box p{
    transition: .3s ease-in-out;
}
.dedicated-feature-box p:last-child{
    margin-bottom: 0;
}
.dedicated-features-main{
    background: var(--accent);
}
.dedicated-features-main .generic-title p{
    color: var(--secondary-color);
}
.dedicated-feature-box {
    padding: 34px 22px 32px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    transition: .3s ease-in-out;
    background: var(--primary-color);
    border: 1px solid var(--secondary-color);
}
.dedicated-fatures-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.dedicated-feature-box h5{
    font-weight: 500;
    transition: .3s ease-in-out;
    margin-bottom: 16px;
}
.dedicated-feature-box figure{
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    margin: 0 auto 34px;
    justify-content: center;
    background: var(--accent);
    z-index: 1;
    position: relative;
    border: 1px solid var(--secondary-color);
}
.dedicated-feature-box::before{
    content: "";
    background: var(--secondary-color);
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 71px;
}
.dedicated-feature-box:hover{
    background: var(--blue-color);
    box-shadow: 20px 20px 40px rgb(0 0 0 / 20%);
}
.dedicated-feature-box:hover p{
    color: var(--primary-color);
}
.dedicated-feature-box:hover h5{
    color: var(--accent);
}
/*  */
.faq-main-con{
    background: var(--blue-color);
}
.faq-main-con .generic-title h2{
    color: var(--primary-color);
}
.faq-main-con .generic-title p{
    color: var(--accent);
}
.faq-inner-con .card:first-child{
    border-top: 1px solid var(--primary-color);
}
.faq-inner-con .card {
    background: transparent;
    margin-bottom: 0;
    border: 0;
    border-bottom: 1px solid var(--primary-color);
    padding: 24px 0px 22px 64px;
    border-radius: 0;
    position: relative;
}
.faq-img {
    position: absolute;
    left: 0;
    top: 20px;
}
.faq-inner-con .card-header {
    padding: 0;
    border: 0;
    background: transparent;
}
.faq-inner-con .card-header button.btn.btn-link {
    color: var(--accent);
}
.faq-inner-con .card-header button.btn.btn-link.collapsed {
    color: var(--primary-color);
}
.faq-inner-con .card-header button {
    padding: 0;
    border: 0;
    outline: none;
    text-decoration: none;
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.faq-inner-con .card-header button.btn.btn-link.collapsed:hover{
    color: var(--accent);
}
.faq-inner-con{
    max-width: 920px;
    margin: 0 auto;
}
.faq-inner-con .card-body {
    padding: 15px 0 2px;
    color: var(--primary-color);
}
/*  */
/* domain page styling start here */
.domain-banner-main .sub-banner-inner-con {
    gap: 46px;
    grid-template-columns: 50% 46%;
}
.domain-hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.domain-hosting-type-box {
    text-align: center;
    padding: 54px 32px 52px;
    border-radius: 20px;
    transition: .3s ease-in-out;
    background: var(--blue-color);
    display: flex;
    flex-direction: column;
    position: relative;
}
.domain-hosting-type-box p {
    color: var(--primary-color);
    margin-bottom: 26px;
}
.domain-hosting-type-box .secondary-btn a{
    min-width: 175px;
    padding: 10px 20px;
}
.domain-hosting-type-box > span {
    font-size: 14px;
    color: var(--accent);
    margin-top: auto;
    margin-bottom: 11px;
}
.domain-hosting-type-box .price-box {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 21px;
    color: var(--accent);
}
.domain-hosting-type-box .price-box small {
    font-size: 16px;
}
.domain-hosting-type-box figure{
    margin-bottom: 24px;
}
.domain-hosting-type-box .price-box small {
    padding-left: 6px;
}
.hot-offer-img{
    position: absolute;
    right: 0;
    top: 0;
}
/*  */
.domain-services-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.domain-service-con {
    text-align: center;
    border-radius: 20px;
    background: var(--primary-color);
    padding: 59px 40px 61px;
    border: 1px solid var(--secondary-color);
}
.domain-service-main-con{
    background: var(--accent);
}
.domain-service-main-con .generic-title p{
    color: var(--secondary-color);
}
.domain-service-con h5{
    font-weight: 400;
    margin-bottom: 16px;
}
.domain-service-con p:last-child{
    margin-bottom: 0;
}
.domain-service-con p{
    color: var(--secondary-color);
}
.domain-service-con figure{
    margin-bottom: 34px;
}
/*  */
/* domain price section styling start here */
.domain-price-main-con .table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--blue-color);
    border-radius: 20px;
    margin-bottom: 0;
}
.domain-price-main-con .table thead th,
.domain-price-main-con .table tbody tr td {
    text-align: center;
    border-style: solid none;
    font-size: 16px;
}
.domain-price-main-con .table thead th, 
.domain-price-main-con .table tbody tr:not(:last-child) td{
    border-bottom: 0;
}
.domain-price-main-con .table tbody tr td {
    background: var(--primary-color);
    padding: 17px 12px 17px;
}
.domain-price-main-con .table thead th:first-child, .domain-price-main-con .table tbody tr td:first-child {
    width: 17%;
    text-align: left;
    padding-left: 58px;
}
.domain-price-main-con .table tbody tr td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
    border-left: 0;
}
.domain-price-main-con .table thead th {
    font-weight: 600;
    color: var(--primary-color);
    background: var(--blue-color);
    padding: 18px 12px 20px;
    border: 0;
}
.domain-price-main-con .table thead th:first-child {
    border-left: 0;
    border-top-left-radius: 18px;
}
.domain-price-main-con .table thead th:last-child {
    border-right: 0;
    border-top-right-radius: 18px;
}
.domain-price-main-con .table tbody tr td:last-child {
    border-right: 0;
}
.domain-price-main-con .table tbody tr td span {
    display: inline-block;
    font-size: 10px;
    line-height: 10px;
    padding: 4px 7px;
    position: relative;
    top: -2px;
    font-weight: 700;
    margin-left: 4px;
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}
.domain-price-main-con .table tbody tr:last-child td{
    border-bottom: 0;
}
.domain-price-main-con .table tbody tr:last-child td:first-child{
    border-bottom-left-radius: 20px;
}
.domain-price-main-con .table tbody tr:last-child td:last-child{
    border-bottom-right-radius: 20px;
}
/* domain price section styling end here */
.shared-banner-main .sub-banner-inner-con {
    gap: 104px;
    grid-template-columns: 40% 51%;
}
.advance-shared-feature-inner {
    display: grid;
    gap: 50px;
    grid-template-columns: 23% 48% 23%;
    align-items: center;
    margin-left: -40px;
}
.advance-shared-features-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 70px;
}
.advance-shared-features-box h5{
    font-weight: 400;
    margin-bottom: 16px;
}
.advance-shared-features-box p:last-child{
    margin-bottom: 0;
}
.advance-shared-features-detail:first-child .advance-shared-features-box{
    text-align: right;
}
/*  */
.shared-hosting-plans-main-con{
    background: var(--accent);
}
.shared-hosting-plans {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
    grid-template-columns: 23% 23% 23% 23%;
}
.shared-plan-con{
    padding: 38px 22px 41px;
    border-radius: 20px;
    transition: .3s ease-in-out;
    background: var(--primary-color);
    border: 1px solid var(--secondary-color);
}
.shared-plan-heading h6{
    margin-bottom: 13px;
}
.shared-plan-heading p{
    line-height: 18px;
    margin-bottom: 15px;
}
.shared-plan-con ul{
    margin-bottom: 20px;
}
.shared-plan-con ul li {
    padding: 9px 0 8px;
    padding-left: 26px;
    color: var(--secondary-color);
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.shared-plan-con ul li:last-child{
    border-bottom: 0;
}
.shared-plan-con ul li i {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 14px;
    color: var(--blue-color);
}
.shared-plan-con ul li span {
    font-weight: 600;
    color: var(--secondary-color);
}
.shared-plan-heading {
    text-align: center;
}
.shared-plan-con select {
    font-size: 14px;
    line-height: 18px;
    height: 41px;
    border-radius: 7px;
    padding: 5px 30px 5px 16px;
    border: 1px solid var(--border-color);
    outline: none;
    width: 100%;
    appearance: none;
    background: url(../images/angle-down-img.png) no-repeat right;
    background-position-x: 95%;
    margin-bottom: 22px;
}
.shared-plan-con .hostiko-plan-btn{
    text-align: center;
}
.shared-plan-con .hostiko-plan-btn a {
    height: 48px;
    min-width: 150px;
    padding: 10px 20px;
    color: var(--primary-color);
    background: var(--blue-color);
    border: 1px solid var(--blue-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    transition: .3s ease-in-out;
}
.shared-plan-con .hostiko-plan-btn a:hover{
    background: var(--primary-color);
    color: var(--blue-color);
}
.shared-plan-con .hosting-price-box{
    margin-bottom: 17px;
}
.shared-hosting-plan-icludes ul li{
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--secondary-color);
}
.shared-hosting-plan-icludes ul {
    display: grid;
    gap: 20px;
    grid-template-columns: 13% 17% 18.2% 18%;
    justify-content: center;
}
/*  */
/* vps page syling start here */
.vps-banner-main .sub-banner-inner-con {
    gap: 42px;
    grid-template-columns: 43% 53%;
}
.vps-con .price_rangetxt {
    width: 100%;
    display: grid;
    grid-template-columns: 16.9% 16.9% 16.9% 16.9% 16.9% 0.5%;
    justify-content: center;
}
.vps-con .price_rangetxt span {
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}
.vps-con .price_rangetxt small {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    display: block;
}
.vps-con .price_rangetxt div.icon {
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
    font-weight: 700;
}
.vps-con .price_rangetxt div.current span {
	color: var(--blue-color);
}
.vps-con .price_content .smallbox {
    display: flex;
    gap: 12px;
}
.vps-con .image_holder {
    display: flex;
    gap: 14px;
    align-items: center;
}
.vps-con .slider-outer {
    margin-bottom: 50px;
}
.vps-con .price_content .heading {
    font-size: 14px;
    line-height: 14px;
    color: var(--text-color);
	font-weight: 700;
    display: block;
    margin-bottom: 14px;
}
.vps-con .price_content .value {
    font-size: 28px;
    line-height: 36px;
    color: var(--secondary-color);
    font-weight: 500;
}
.vps-con .price_content .smallbox:last-child {
	margin:0;
	border-right:none;
}
.vps-con .vps-price-plan {
    width: 190px;
}
.vps-con .price_txt {
    display: flex;
    margin-bottom: 15px;
    justify-content: center;
}
.vps-con #backup_val {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: column;
    justify-content: center;
    padding: 60px 30px;
    border: 1px solid var(--secondary-color);
    background: var(--primary-color);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
.vps-con .price_txt .dollar {
    color: var(--secondary-color);
    line-height: 32px;
    font-size: 30px;
    position: relative;
    left: 0px;
    padding-right: 6px;
    top: 0;
}
.vps-con .month-title small {
    font-size: 16px;
    line-height: 18px;
    margin-top: 4px;
    display: block;
    font-weight: 300;
    margin-left: 1px;
}
.vps-con .month-title {
    padding-left: 8px;
}
.vps-con .vps-price-plan p {
    font-size: 16px;
    padding-left: 16px;
    color: var(--secondary-color);
}
.vps-con .price_txt .numeric1 {
    color: var(--secondary-color);
    line-height: 54px;
    font-size: 64px;
    font-weight: 700;
}
.vps-con .vps_btn.generic-btn a {
    border: 1px solid var(--blue-color);
    color: var(--primary-color);
    font-size: 14px;
    line-height: 18px;
    height: 48px;
    min-width: 180px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: var(--blue);
    transition: .3s ease-in-out;
}
.vps-con .vps_btn.generic-btn a:hover{
    background: transparent;
    color: var(--blue-color);
}
.vps-con .vps_btn.generic-btn a i{
    margin-left: 12px;
}
.vps-con .price_txt .numeric2 {
    color: var(--secondary-color);
    line-height: 30px;
    font-size: 30px;
    display: block;
}
.vps-con .product-con {
    width: 100%;
    float: left;
    display: grid;
    justify-content: space-between;
    gap: 14px;
    grid-template-columns: 25% 27% 21% 21%;
}
.vps-con .image_holder small{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: var(--secondary-color);
}
.vps-con .slider-container {
    width: 100%;
    float: left;
    background: var(--blue);
    border-radius: 20px;
}
.vps-con .vps-inner-con > p span{
    font-weight: 700;
}
.vps-con .vps-inner-con > p {
    width: 100%;
    float: left;
    text-align: center;
    padding: 10px 20px 11px;
    background: var(--accent);
    margin-bottom: 0;
    font-size: 14px;
}
.vps-con .vps-inner-con {
    background: var(--primary-color);
    border-radius: 20px;
    margin-top: -148px;
    position: relative;
    z-index: 1;
    margin-bottom: 120px;
}
.vps-con .slider-box-inner-con {
    width: 100%;
    float: left;
    padding: 52px 60px;
    background: var(--accent);
}
.vps-con .product-calculations {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
/*  */
.vps-benefits-inner-con ul{
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.vps-benefits-inner-con ul li{
    padding: 39px 30px 33px;
    text-align: center;
    border-radius: 20px;
    transition: .3s ease-in-out;
    border: 1px solid var(--secondary-color);
}
.vps-benefits-inner-con ul li span{
    font-size: 16px;
    transition: .3s ease-in-out;
    color: var(--secondary-color);
}
.vps-benefits-inner-con ul li:hover{
    border-color: var(--blue-color);
    background: var(--blue-color);   
}
.vps-benefits-inner-con ul li:hover span{
    color: var(--accent);
}
.vps-benefits-main-con .generic-title {
    margin-bottom: 50px;
}
.vps-benefits-inner-con ul li figure{
    margin-bottom: 20px;
}
/*  */
.management-level-inner-con {
    display: grid;
    grid-template-columns: 48.6% 48.6%;
    gap: 30px;
}
.management-level-box {
    position: relative;
    padding: 41px 39px 40px 38px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--primary-color);
    border: 1px solid var(--secondary-color);
    display: grid;
    gap: 25px;
    transition: .3s ease-in-out;
    grid-template-columns: 16.6% 78%;
}
.management-level-box ul li::before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 15px;
    color: var(--blue-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.management-level-box figure {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 100%;
    margin-top: -7px;
    position: relative;
    margin-bottom: 0;
    border: 1px solid var(--secondary-color);
}
.management-level-box figure::before {
    content: "";
    background: var(--secondary-color);
    width: 50px;
    height: 1px;
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.management-level-box ul li {
    padding: 2px 5px 3px 30px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
}
.management-level-box ul li:last-child{
    border-bottom: 0;
}
.management-level-box ul li span{
    color: var(--blue-color);
}
.management-heading p {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 0;
}
.management-heading{
    margin-bottom: 20px;
}
.management-level-box .primary-btn a{
    padding: 10px 29px;
}
.management-level-box .primary-btn a:hover{
    background: var(--accent);
    color: var(--secondary-color);
}
.vps-management-main-con{
    background: var(--accent);
}
.management-level-box:hover{
    background: var(--blue-color);
    box-shadow: 20px 20px 40px rgb(0 0 0 / 20%);
}
.management-level-box:hover h5,
.management-level-box:hover ul li span,
.management-level-box:hover ul li::before{
    color: var(--accent);
}
.management-level-box:hover ul li,
.management-level-box:hover p{
    color: var(--primary-color);
}
/*  */
.generic-banner-main.sub-banner-main-con {
    height: 650px;
    padding: 140px 0 100px;
}
.generic-sub-page-section {
    padding-bottom: 235px !important;
}
/*  */
.reseller-hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.reseller-hosting-type-box {
    padding: 40px 22px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    transition: .3s ease-in-out;
    flex-direction: column;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 1px 1px 56px 2px rgb(231 246 253 / 60%);
}
.reseller-recommended-plan {
    position: relative;
    border-top: 2px solid var(--blue-color);
}
.reseller-hosting-type-box h6 {
    margin-bottom: 8px;
    text-align: center;
    font-size: 22px;
    line-height: 24px;
    transition: .3s ease-in-out;
}
.reseller-hosting-type-box p {
    text-align: center;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 22px;
    padding: 0 20px;
}
.reseller-hosting-type-box .hosting-price-box {
    margin-bottom: 20px;
}
.reseller-hosting-type-box ul li {
    padding: 12px 0 11px 28px;
    border-bottom: 1px solid var(--border-color);
}
.reseller-hosting-type-box ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--blue-color);
}
.reseller-hosting-type-box ul li:last-child {
    border-bottom: 0;
}
.reseller-hosting-type-box ul {
    margin-bottom: 22px;
}
.reseller-hosting-type-box .primary-btn {
    margin-top: auto;
    text-align: center;
}
.reseller-recommended-plan .recommended-txt {
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    font-size: 14px;
    line-height: 18px;
    height: 29px;
    width: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    background: var(--blue-color);
    color: var(--primary-color);
}
.reseller-hosting-type-box:hover {
    border-color: var(--blue-color);
}
.reseller-hosting-type-box:hover h6 {
    color: var(--blue-color);
}
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--blue-color);
    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: 40px;
    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: 100%;
    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(--accent);
    border: 1px solid var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    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 rgba(255, 227, 26, 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, 227, 26, .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: 100%;
    -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 -------------------------------------------------------*/