@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --primary-color: #fff;
    --secondary-color: #333333;
    --accent: #fdf133;
    --text-color: #7c7c7c;
    --border-color: #dbf1fe;
    --purple-color: #6823e5;
    --light-blue-color: #36aff9;
    --black-color: #000000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 58px;
    font-weight: 700;
    color: var(--secondary-color);
}
h2 {
    font-size: 42px;
    line-height: 54px;
    font-weight: 700;
    color: var(--secondary-color);
}
h3 {
    font-size: 32px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}
h4 {
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
    color: var(--primary-color);
}
h5 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: var(--secondary-color);
}
h6 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondary-color);
}
.padding-top {
    padding-top: 150px;
}
.padding-bottom {
    padding-bottom: 150px;
}
a:hover {
    text-decoration: none;
}
.light-bg{
    background: #f6fbfe;
}
.purple-bg{
    background: var(--purple-color);
}
.light-blue-bg{
    background: var(--light-blue-color);
}
.generic-btn a,
.generic-btn button,
.secondary-btn a {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    height: 55px;
    border-radius: 35px;
    background: var(--accent);
    color: var(--black-color);
    padding: 17px 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
}
.generic-btn button{
    outline: none;
}
.generic-btn button:hover,
.generic-btn a:hover{
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 10%);
}
.secondary-btn a{
    color: var(--primary-color);
    background: var(--light-blue-color);
}
.secondary-btn a:hover, .generic-btn button:hover, .generic-btn a:hover {
    transform: translateY(-4px);
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 16%);
}
/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 0;
    z-index: 2;
    padding: 20px 0;
    border-bottom: 1px solid #e9f3f9;
}
.header-main-con .collapse.navbar-collapse{
    justify-content: end;
    margin-right: 60px;
}
.header-main-con .navbar .navbar-nav .nav-link {
    font-weight: 500;
    color: #181818;
    font-size: 14px;
    line-height: 16px;
    transition: .2s ease-in-out;
}
.header-main-con .navbar .navbar-nav .nav-link.active,
.header-main-con .navbar .navbar-nav .nav-link:hover{
    color: var(--light-blue-color);
}
.header-main-con .navbar-light .navbar-brand {
    margin-right: 39px;
}
.header-main-con .navbar .navbar-nav {
    gap: 48px;
    margin-bottom: -2px;
}
.header-main-con ul li.nav-item.dropdown.show .dropdown-menu.sub-menu {
    display: none;
}
.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);
}
.login-btn a {
    color: var(--black-color);
    padding: 14px 28px 15px;
    font-size: 14px;
    line-height: 16px;
    height: 50px;
    border-radius: 25px;
    transition: .2s ease-in-out;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.login-btn {
    margin-top: -2px;
}
.login-btn a:hover{
    transform: translateY(-4px);
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 10%);
}
.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 section styling end here */
/*  */
.banner-main-con {
    padding: 160px 0;
}
.banner-main-con{
    position: relative;
    overflow: hidden;
}
.banner-main-con::after {
    content: "";
    background: url(../images/dots-right-shape.png) no-repeat center;
    width: 799px;
    height: 799px;
    background-size: contain;
    position: absolute;
    right: -290px;
    top: -290px;
}
.banner-computer-racks-img {
    background: url(../images/computer-server-racks.png) no-repeat center;
    width: 519px;
    height: 519px;
    border-radius: 100%;
    overflow: hidden;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner-img-con {
    display: flex;
}
.banner-inner-con {
    display: grid;
    gap: 92px;
    grid-template-columns: 44% 49%;
    justify-content: center;
    align-items: center;
    max-width: 1700px;
    margin: 0 auto;
    padding-top: 30px;
}
.banner-price-con span{
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: var(--secondary-color);
}
.banner-price-con {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    width: 115px;
    height: 115px;
    border-radius: 100%;
    background: var(--accent);
    text-align: center;
    position: absolute;
    right: 32px;
    top: 9px;
}
.banner-computer-racks-img span {
    font-size: 80px;
    line-height: 58px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-color);
}
.banner-computer-racks-img small {
    font-size: 14px;
    line-height: 21px;
    font-weight: 700;
    color: var(--primary-color);
    float: right;
    letter-spacing: 1.5px;
}
.banner-img-content {
    position: relative;
    right: -50px;
    bottom: -26px;
}
.banner-server-img {
    margin-right: -196px;
    position: relative;
    z-index: 2;
}
.banner-content-con {
    padding-right: 225px;
    margin-top: -22px;
}
.banner-main-con .owl-dots{
    display: none;
}
.banner-content-con h1{
    margin-bottom: 22px;
}
.banner-content-con p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}
.banner-main-con .owl-carousel .owl-nav span {
    font-size: 30px;
    line-height: 30px;
    color: var(--primary-color);
    margin-top: -3px;
}
.banner-main-con .owl-carousel .owl-nav button{
    width: 41px;
    height: 41px;
    border-radius: 100%;
    display: flex;
    outline: none;
    align-items: center;
    justify-content: center;
    background: rgb(51 51 51 / 60%);
}
.banner-main-con .owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 25px;
}
/* second slide */
.slide2-banner-content-con {
    padding-left: 100px;
    margin-top: -22px;
    padding-right: 0;
}
.slide2-banner-img-content {
    position: relative;
    right: -8px;
    bottom: -26px;
}
.slide2-banner-inner-con {
    gap: 40px;
    grid-template-columns: 40% 48%;
}
.slide2-banner-server-img {
    margin-right: -108px;
    position: relative;
    z-index: 2;
    bottom: -20px;
}
.slide2-banner-computer-racks-img{
    background: url(../images/slide2-server-racks-img.png) no-repeat center;
}
.slide2-banner-inner-con .banner-price-con {
    right: unset;
    z-index: 2;
    left: -70px;
    top: -7px;
}
.slide2-banner-content-con .secondary-btn a{
    background: var(--purple-color);
}
/*  */
.slide2-content-bg-img{
    background: url(../images/slide2-content-bg-img.png) no-repeat center;
}
/*  */
/*  */
.domain-text-con {
    width: 880px;
    margin: 0 auto;
}
.domain-serach-con button {
    height: 67px;
    width: 100%;
    max-width: 177px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: var(--black-color);
    padding: 10px 20px;
    border-radius: 35px;
    border: 1px solid var(--accent);
    background: var(--accent);
    outline: none;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.domain-serach-con input{
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    height: 67px;
    display: flex;
    align-items: center;
    padding: 10px 35px;
    outline: none;
    border-radius: 35px;
    color: var(--text-color);
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px 0 rgb(224 233 238 / 43%);
}
input:focus{
    border-color: var(--light-blue-color);
}
.domain-serach-con button:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.domain-serach-con {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}
.domain-text-con ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 11.4% 11.4% 11.4% 11.4% 11.4% 11.4% 11.4%;
}
.domain-text-con ul li figure{
    width: 100px;
    height: 100px;
    display: flex;
    margin-bottom: 13px;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px 0 rgb(224 233 238 / 43%);
}
.domain-text-con ul li{
    text-align: center;
}
.domain-text-con ul li span{
    font-size: 14px;
}
.generic-title p{
    margin-bottom: 0;
}
.generic-title h2{
    margin-bottom: 14px;
}
.domain-text-con .generic-title{
    padding: 0 64px;
}
.generic-title {
    margin-bottom: 42px;
    padding: 0 179px;
}
/*  */
.hosting-price-box {
    display: flex;
    margin-bottom: 27px;
}
.hosting-price-box span.dollar {
    position: relative;
    top: 3px;
    left: -1px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 5px;
    color: var(--secondary-color);
}
.hosting-price-box span.numeric1 {
    font-size: 48px;
    line-height: 42px;
    font-weight: 700;
    color: var(--secondary-color);
}
.hosting-price-box .month-title {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-left: 9px;
}
.hosting-price-box .numeric2 {
    font-weight: 600;
    font-size: 20px;
    color: #333333;
}
.month-title small {
    font-size: 14px;
    line-height: 16px;
    margin-top: 0;
    display: block;
}
.plan-box {
    padding: 51px 36px;
    background: var(--primary-color);
    border-radius: 15px;
    border-top: 2px solid var(--light-blue-color);
    display: flex;
    flex-direction: column;
    transition: .3s ease-in-out;
}
.plan-box:hover{
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 5%);
    transform: translateY(-8px);
}
.plan-box .secondary-btn{
    margin-top: auto;
}
.plan-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.plan-box ul{
    margin-bottom: 12px;
}
.plan-box ul li {
    font-size: 14px;
    line-height: 16px;
    position: relative;
    padding-left: 26px;
    color: var(--secondary-color);
    margin-bottom: 19px;
}
.plan-box ul li span{
    font-weight: 600;
}
.plan-box ul li::before{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--purple-color);
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
}
.plan-box figure{
    margin-bottom: 34px;
}
.plan-box h5{
    margin-bottom: 21px;
}
.plan-box .secondary-btn a{
    height: 50px;
    padding: 10px 20px;
    width: 100%;
}
/*  */
.gallery-con{
    overflow: hidden;       
}
.galler-inner-con {
    display: grid;
    gap: 1px;
    grid-template-columns: 24.90% 24.95% 24.95% 24.85%;
    justify-content: center;
}
.galler-box figure img{
    width: 100%;
}
.galler-box{
    position: relative;
}
.gallery-content-box {
    position: absolute;
    bottom: 30px;
    width: 59%;
    left: 30px;
}
.gallery-content-box a{
    font-size: 12px;
    color: var(--primary-color);
}
.gallery-content-box a i{
    margin-left: 5px;
}
/*  */
.hostiko-guarantee-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.guarantee-box {
    border-top: 2px solid var(--light-blue-color);
    border-radius: 10px;
    text-align: center;
    padding: 40px 44px;
    transition: .3s ease-in-out;
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 3%);
}
.guarantee-box:hover{
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 5%);
    transform: translateY(-8px);
}
.guarantee-box p:last-child{
    margin-bottom: 0;
}
/*  */
.feaature-inner-con {
    display: grid;
    gap: 50px;
    grid-template-columns: 42% 55%;
    position: relative;
    z-index: 1;
}
.feature-small-text-box p{
    margin-bottom: 0;
}
.feature-small-box figure {
    width: 97px;
    height: 97px;
    border-radius: 100%;
    background: var(--light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-small-box figure img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.feature-small-box {
    display: grid;
    align-items: center;
    gap: 24px;
    grid-template-columns: 21% 74%;
    margin-bottom: 30px;
}
.feature-small-box:last-child{
    margin-bottom: 0;
}
.feature-right-box {
    position: relative;
}
.feature-review-box ul {
    display: flex;
    align-items: center;
}
.feature-review-stars-con {
    display: flex;
    align-items: center;
    gap: 7px;
}
.feature-review-box {
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 3%);
    background: var(--primary-color);
    border-radius: 40px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 12px;
    width: 289px;
    position: absolute;
    bottom: 200px;
    right: -200px;
    z-index: 3;
}
.feature-review-box ul li:not(:first-child) {
    margin-left: -10px;
}
.feature-review-stars-con span{
    font-size: 22px;
    line-height: 22px;
    color: #fbab00;
    font-weight: 700;
}
.feature-review-text small{
    font-size: 13px;
    line-height: 13px;
    font-weight: 500;
    color: var(--secondary-color);
}
.feature-right-box > figure{
    position: relative;
}
.feature-right-box > figure img{
    position: relative;
    z-index: 2;
}
.feature-right-box > figure::after {
    content: "";
    width: 577px;
    height: 577px;
    background: #e8f1f6;
    border-radius: 100%;
    position: absolute;
    left: 33%;
    top: 9%;
}
.feature-right-box > figure::before {
    content: "";
    width: 57px;
    height: 57px;
    border-radius: 100%;
    background: var(--accent);
    position: absolute;
    left: 194px;
    top: 101px;
}
.feature-left-box {
    padding: 62px 0 120px;
}
.features-main-con {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.features-main-con::before {
    content: "";
    background: var(--primary-color);
    width: 467px;
    height: 467px;
    border-radius: 100%;
    position: absolute;
    left: -260px;
    top: 50%;
    transform: translateY(-50%);
}
.features-main-con::after{
    content: "";
    background: url(../images/feature-dot-shape.png) no-repeat center;
    background-size: contain;
    width: 509px;
    height: 543px;
    position: absolute;
    right: 0;
    top: 0;
}
.feature-left-box > p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 26px;
}
.feature-left-box h2{
    margin-bottom: 18px;
}
.feature-review-box ul li figure img{
    width: 49px;
    height: 49px;
    border-radius: 100%;
    overflow: hidden;
    object-fit: contain;
}
/*  */
.solution-inner-con {
    display: grid;
    gap: 28px;
    grid-template-columns: 48.65% 48.65%;
    justify-content: center;
}
.solution-box {
    text-align: center;
    padding: 89px 55px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}
.solution-box .generic-btn{
    margin-top: auto;
}
.solution-box h3,
.solution-box p{
    color: var(--primary-color);
}
.solution-box figure{
    margin-bottom: 35px;
    transition: .3s ease-in-out;
}
.solution-box:hover figure{
    transform: translateY(6px);
}
.solution-box p{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 34px;
}
.solution-box h3{
    margin-bottom: 18px;
}
.solution-box .generic-btn a{
    width: 241px;
}
/*  */
.customer-review-inner-con {
    display: grid;
    gap: 50px;
    grid-template-columns: 42% 53.5%;
    align-items: center;
}
.customer-review-img-con figure{
    position: relative;
}
.customer-review-img-con figure::before{
    content: "";
    background: #e8f2f8;
    width: 355px;
    height: 355px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
}
.customer-review-img-con figure img{
    position: relative;
    z-index: 1;
}
.customer-review-main-con{
    padding: 120px 0;
}
.customer-review-slide p{
    font-size: 18px;
    line-height: 30px;
}
.customer-review-text-con .owl-nav,
.customer-review-text-con .owl-dots{
    display: none;
}
.customer-review-text-con .customer-details-outer-con figure img{
    width: auto;
}
.customer-review-text-con .customer-details-outer-con figure {
    width: 62px;
    height: 62px;
    background: var(--light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.customer-details h5{
    margin-bottom: 0;
}
.customer-details-outer-con {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 38px;
}
.btn-wrap button{
    border: 0;
    cursor: pointer;
    background: transparent;
}
.btn-wrap button:focus{
    outline: 0;
    border: 0;
}
.btn-wrap button.next-btn figure img {
    transform: rotate(180deg);
}
.btn-wrap {
    display: flex;
    gap: 14px;
}
.btn-wrap button:hover figure img{
    filter: brightness(0) saturate(100%) invert(61%) sepia(20%) saturate(1484%) hue-rotate(162deg) brightness(95%) contrast(106%);
}
.customer-review-text-con h2{
    margin-bottom: 19px;
}
/*  */
.sponsors-inner-con ul {
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    grid-template-columns: 25% 25% 25% 25%;
}
.sponsors-inner-con ul li {
    text-align: center;
    padding: 48px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
}
.sponsors-inner-con ul:last-child{
    border-bottom: 0;
}
.sponsors-inner-con ul li:last-child{
    border-right: 0;
}
/*  */
.footer-main-con{
    background: #1a1c24;
    padding: 100px 0 0;
}
.footer-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 39% 16% 17% 19%;
    width: 960px;
    margin: 0 auto 73px;
    justify-content: center;
}
.footer-copyright-con p{
    margin-bottom: 0;
}
.footer-logo-con ul {
    display: flex;
    gap: 10px;
}
.footer-logo-con ul li a{
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.footer-logo-con ul li a:hover{
    background: #31333a;
}
.footer-logo-con p{
    font-size: 14px;
    line-height: 23px;
    color: #a9aec0;
}
.footer-logo-con{
    padding-right: 38px;
}
.footer-box h6{
    margin-bottom: 20px;
    color: var(--primary-color);
}
.footer-box ul li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}
.footer-box ul li:last-child{
    margin-bottom: 0;
}
.footer-box ul li a{
    color: #a9aec0;
    transition: .3s ease-in-out;
}
.footer-box ul li a:hover{
    color: var(--light-blue-color);
}
.footer-logo-con ul li a{
    color: var(--primary-color);
}
.footer-box ul li::before{
    content: "";
    background: #a9aec0;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 4px;
}
.footer-contact-box span{
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--primary-color);
}
.footer-contact-box li{
    padding-left: 0;
}
.footer-copyright-con p{
    font-size: 12px;
    line-height: 14px;
    color: #a9aec0;
}
.footer-copyright-con {
    padding: 34px 0;
    width: 960px;
    margin: 0 auto;
    border-top: 1px solid rgb(255 255 255 / 20%);
}
.footer-logo-con ul li{
    margin-bottom: 0;
    padding-left: 0;
}
.footer-logo-con figure{
    margin-bottom: 24px;
}
.footer-contact-info ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 27px;
    padding-left: 0;
}
.footer-contact-info ul li:last-child{
    margin-bottom: 0;
}
.footer-contact-info ul li::before,
.footer-logo-con ul li::before{
    display: none;
}
/*  */
.sub-banner-main-con {
    padding: 224px 0 160px;
    text-align: center;
}
.sub-banner-inner-con .breadcrumb {
    display: inline-flex;
    background: var(--primary-color);
    border-radius: 27px;
    padding: 15px 35px;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
}
.sub-banner-inner-con .breadcrumb li, .sub-banner-inner-con .breadcrumb li a {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}
.sub-banner-inner-con .breadcrumb li a{
    transition: .3s ease-in-out;
}
.sub-banner-inner-con .breadcrumb li a:hover{
    color: var(--light-blue-color);
}
.sub-banner-inner-con .breadcrumb-item.active{
    color: var(--light-blue-color);
}
.sub-banner-inner-con p{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 31px;
}
.sub-banner-inner-con {
    padding: 0 245px;
}
.sub-banner-inner-con h1{
    margin-bottom: 22px;
}
.shared-hosting-plan-inner-con .plan-box {
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 3%);
    padding: 43px 24px;
}
.shared-hostiko-guarantee-con .guarantee-box figure{
    width: 97px;
    height: 97px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-color);
    margin: 0 auto 20px;
}
.shared-hostiko-guarantee-con .guarantee-box{
    border-radius: 15px;
    border: 0;
    padding: 50px 24px 46px;
    background: var(--primary-color);
}
.shared-hostiko-guarantee-con .guarantee-box figure img{
    width: 55px;
    height: 55px;
    object-fit: contain;
}
.shared-hostiko-guarantee-con .guarantee-box h5{
    margin-bottom: 4px;
}
/*  */
.shared-features-main-con::before,
.shared-features-main-con::after{
    display: none;
}
.shared-features-main-con .feature-small-box figure {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding-top: 8px;
    display: unset;
}
.shared-features-main-con .feature-small-box {
    padding: 27px 25px;
    border-radius: 15px;
    border-left: 1px solid var(--light-blue-color);
    align-items: flex-start;
    grid-template-columns: 13% 81%;
    box-shadow: 1px 1px 61px 2px rgb(0 0 0 / 3%);
}
.shared-features-main-con .feaature-inner-con {
    grid-template-columns: 41% 55%;
}
.shared-features-main-con .feature-left-box > p{
    font-size: 16px;
    line-height: 25px;
}
.shared-features-main-con .feature-small-text-box p{
    font-size: 14px;
    line-height: 22px;
}
.shared-features-main-con .feature-small-text-box h5{
    font-size: 18px;
    line-height: 22px;
}
.shared-features-main-con .feature-review-box {
    bottom: 320px;
    right: -220px;
}
/*  */
.scripts-inner-con ul li figure {
    display: flex;
    width: 147px;
    height: 147px;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    background: var(--primary-color);
    margin: 0 auto 16px;
    transition: .3s ease-in-out;
}
.scripts-inner-con ul li:hover figure{
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 5%);
    transform: translateY(-8px);
}
.scripts-inner-con ul li{
    text-align: center;
}
.scripts-inner-con ul {
    display: grid;
    gap: 35px;
    grid-template-columns: 14% 14% 14% 14% 14% 14%;
}
.scripts-inner-con ul li h5{
    margin-bottom: 0;
}
/*  */
.about-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.about-box {
    border-radius: 15px;
    padding: 30px 37px;
    text-align: center;
    transition: .3s ease-in-out;
    background: var(--primary-color);
    box-shadow: 1px 1px 61px 10px rgb(0 0 0 / 3%);
}
.about-box:hover{
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 5%);
    transform: translateY(-8px);
}
.about-box p{
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 0;
}
.about-box figure{
    width: 97px;
    height: 97px;
    display: flex;
    margin: 0 auto 20px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--light-blue-color);
}
.about-welcome-main-img figure{
    width: 540px;
    height: 540px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 0;
}
.about-welcome-main-img figure img{
    width: 100%;
}
.about-welcome-inner-con {
    display: grid;
    gap: 72px;
    grid-template-columns: 49% 45%;
    align-items: center;
}
.about-welcome-text-con p{
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}
.about-welcome-text-con ul li{
    padding-left: 32px;
    position: relative;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 4px;
}
.about-welcome-text-con ul li:last-child{
    margin-bottom: 0;
}
.about-welcome-text-con ul li i {
    font-size: 10px;
    line-height: 10px;
    width: 18px;
    height: 18px;
    background: var(--light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--primary-color);
    position: absolute;
    top: 7px;
    left: 0;
}
.about-welcome-text-con h2{
    margin-bottom: 14px;
}
.about-welcome-text-con ul{
    margin-bottom: 32px;
}
/*  */
.mission-and-vision-con .solution-box p{
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 24px;
}
.mission-and-vision-con .solution-box span{
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--primary-color);
}
.mission-and-vision-con .solution-box figure {
    margin-bottom: 30px;
}
.mission-and-vision-con .solution-box {
    padding: 81px 55px 69px;
}
.mission-and-vision-con .solution-box .generic-btn a {
    width: 191px;
}
/*  */
.team-member-con figure img{
    width: 279px;
    height: 279px;
    border-radius: 100%;
    object-fit: contain;
}
.team-member-con ul li a{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    border: 1px solid var(--light-blue-color);
    background: var(--light-blue-color);
}
.team-member-con ul{
    display: flex;
    gap: 12px;
    justify-content: center;
}
.team-member-con ul li a i{
    color: var(--primary-color);
}
.team-member-con ul li a:hover{
    background: transparent;
}
.team-member-con ul li a:hover i{
    color: var(--light-blue-color);
}
.team-member-con{
    text-align: center;
    padding: 35px 30px;
    border-radius: 15px;
    transition: .3s ease-in-out;
    background: var(--primary-color);
}
.team-member-con:hover{
    box-shadow: 0px 5px 30px 2px rgb(0 0 0 / 5%);
    transform: translateY(-8px);
}
.hostiko-team-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.team-member-con figure{
    margin-bottom: 23px;
}
.team-member-con h5{
    margin-bottom: 4px;
}
.team-member-con span{
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 22px;
}
/*  */
.dedicated-inner-con table {
    margin: 0;
    border-spacing: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    box-shadow: 1px 1px 61px 10px rgb(0 0 0 / 3%);
    border-radius: 15px 15px 0 0;
    -moz-border-radius: 15px 15px 0 0;
    -webkit-border-radius: 15px 15px 0 0;
}
.dedicated-inner-con  table tr td,
.dedicated-inner-con  table tr th{
    background-color: var(--primary-color);
}
.dedicated-inner-con  table tr:nth-child(even) td{
    background: #f6fbfe;
}
.dedicated-inner-con  table td{
    font-size: 14px;
    line-height: 18px;
    padding: 12px 5px;
    color: var(--secondary-color);
}
.dedicated-inner-con  table td:nth-last-child(2){
    font-weight: 600;
}
.dedicated-inner-con  table th {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    padding: 25px 5px;
    border-bottom: 1px solid var(--border-color);
}
.dedicated-inner-con table td:first-child, .dedicated-inner-con table th:first-child {
    padding-left: 37px;
    width: 20%;
}
.dedicated-inner-con table td:first-child{
    font-weight: 600;
    color: var(--light-blue-color);
}
.dedicated-inner-con  table th:first-child{
    border-radius: 15px 0 0 0;
    -moz-border-radius: 15px 0 0 0;
    -webkit-border-radius: 15px 0 0 0;
}
.dedicated-inner-con  table th:last-child{
    border-radius: 0 15px 0 0;
    -moz-border-radius: 0 15px 0 0;
    -webkit-border-radius: 0 15px 0 0;
}
.dedicated-inner-con  table .generic-btn a{
    height: 35px;
    padding: 10px 24px;
    font-size: 12px;
}
.dedicated-inner-con {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 1px 1px 61px 10px rgb(0 0 0 / 3%);
    border-top: 2px solid var(--light-blue-color);
}
/*  */
.dedicated-features-con .about-box p {
    font-size: 14px;
    line-height: 22px;
}
.dedicated-features-con .about-box{
    padding: 30px 22px;
}
/*  */
.domain-main-plan-con .hosting-price-plan-price-box p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 6px;
}
.domain-main-plan-con .plan-box figure {
    height: 51px;
    margin-bottom: 14px;
}
.domain-main-plan-con .hosting-price-box .month-title {
    padding-left: 5px;
}
.domain-main-plan-con .plan-box > p {
    font-size: 14px;
    line-height: 22px;
    padding-right: 25px;
    color: var(--secondary-color);
    margin-bottom: 24px;
}
.domain-main-plan-con .plan-box{
    padding: 35px 30px;
}
/*  */ 
.domain-price-inner-con table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
  
.domain-price-inner-con table tbody tr:nth-child(odd) {
    background-color: #f6fbfe;
}
  
.domain-price-inner-con table th, .domain-price-inner-con table td {
    padding: 15px 10px;
    text-align: center;
}
  
.domain-price-inner-con table th {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}
.domain-price-inner-con table tr td:first-child{
    font-weight: 600;
    color: var(--secondary-color);
}
.domain-price-inner-con {
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    overflow: hidden;
    border-top: 2px solid var(--light-blue-color);
    margin: 0 5px;
}
/*  */
.contact-details-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.contact-detail-box {
    display: grid;
    gap: 14px;
    grid-template-columns: 27% 68%;
    padding: 33px 25px;
    box-shadow: 1px 1px 61px 10px rgb(0 0 0 / 3%);
    background: var(--primary-color);
    border-radius: 15px;
}
.contact-detail-box figure {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: var(--light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-txt-box p{
    margin-bottom: 0;
}
.contact-txt-box ul li a{
    color: var(--text-color);
}
.contact-txt-box ul li a:hover{
    color: var(--light-blue-color);
}
.contact-map-con iframe {
    height: 646px;
    border: 0;
    width: 100%;
    outline: none;
}
.contact-inner-con {
    display: grid;
    grid-template-columns: 40% 56%;
    gap: 40px;
}
.contact-left-con {
    padding: 100px 60px;
    border-radius: 15px;
    background: var(--purple-color);
}
.contact-left-con > span{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 7px;
}
.contact-left-con span,
.contact-mail-info-box a,
.contact-left-con h2{
    color: var(--primary-color);
}
.contact-left-con h2{
    margin-bottom: 17px;
}
.contact-mail-info {
    display: flex;
    gap: 16px;
    padding-left: 10px;
}
.contact-inner-con .generic-btn a,
.contact-inner-con .generic-btn button{
    padding: 17px 47px;
}
.contact-left-con .generic-btn{
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.contact-mail-info-box {
    margin-top: -5px;
}
.contact-right-con {
    padding: 52px 20px;
    background: var(--primary-color);
    border-radius: 15px;
    text-align: center;
}
.contact-right-con ul li input, 
.contact-right-con ul li textarea {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 28px;
}
.contact-right-con ul li input{
    height: 61px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
}
.contact-right-con ul li textarea{
    height: 146px;
    border-radius: 25px;
    resize: none;
}
.contact-right-con ul li input:focus, 
.contact-right-con ul li textarea:focus{
    outline: none;
    border-color: var(--light-blue-color);
}
.contact-right-con ul{
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
    grid-template-columns: 49% 49%;
}
.contact-right-con ul li:last-child{
    grid-column: 1/-1;
}
.contact-right-con h5 {
    font-weight: 400;
    margin-bottom: 23px;
    letter-spacing: 2.5px;
}
.contact-right-con ul li span.error {
    color: var(--light-blue-color);
    font-size: 12px;
    line-height: 14px;
    margin-left: 25px;
}
.contact-right-con ul li{
    text-align: left;
}
.contact-mail-info-box a{
    font-size: 22px;
    font-weight: 500;
}
.contact-mail-info-box a:hover{
    color: var(--accent);
}
.contact-mail-info-box span{
    margin-bottom: 4px;
}
/*  */
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-color);
    position: relative;
}

.error-con {
    position: relative;
    z-index: 2;
    padding: 0 100px;
}

.error-con h2 {
    font-size: 170px;
    line-height: 165px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.error-con p {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.error-con .generic-btn a {
    font-size: 18px;
    font-weight: 500;
    padding: 29px 32px;
    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: 100px;
    line-height: 100px;
    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: 10px;
    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(--light-blue-color);
    border: 1px solid var(--light-blue-color);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    text-align: center;
    position: fixed;
    bottom: 57px;
    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(--primary-color);
    font-weight: 600;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(54, 175, 249, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(54, 175, 249, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(54, 175, 249, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(54, 175, 249, .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(--light-blue-color);
    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(--light-blue-color);
    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 -------------------------------------------------------*/