@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --primary-color: #fff;
    --secondary-color: #272a2f;
    --accent: #1a74fa;
    --text-color: #5c6067;
    --border-color: #e7f0fe;
    --solid-blue-color: #001b3b;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 66px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
h2 {
    font-size: 40px;
    line-height: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
h3 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
h6 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
.padding-top {
    padding-top: 150px;
}
.padding-bottom {
    padding-bottom: 150px;
}
a:hover {
    text-decoration: none;
}
.light-bg{
    background: #fafaff;
}
.generic-btn a,
.generic-btn button,
.primary-btn a,
.secondary-btn button,
.secondary-btn a{
    font-weight: 700;
    height: 60px;
    border-radius: 3px;
    background: transparent;
    color: var(--primary-color);
    padding: 17px 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    cursor: pointer;
    gap: 10px;
    min-width: 180px;
    border: 1px solid var(--primary-color);
}
.generic-btn button{
    outline: none;
}
.generic-btn button:hover,
.generic-btn a:hover,
.primary-btn a:hover{
    background: transparent;
    color: var(--accent);
}
.generic-btn.secondary-btn a,
.generic-btn.secondary-btn button{
    background: var(--accent);
}
.generic-btn.secondary-btn a:hover,
.generic-btn.secondary-btn button:hover{
    background: var(--solid-blue-color);
    color: var(--primary-color);
    border-color: var(--solid-blue-color);
}
.generic-title p{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
}
.generic-title h2{
    margin-bottom: 24px;
}
.generic-title{
    margin-bottom: 73px;
}
.generic-btn.primary-btn a{
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.primary-btn a:hover{
    color: var(--primary-color);
    background: var(--accent);
    border-color: var(--accent);
}
/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 20px;
    z-index: 3;
}
.navbar {
    max-width: 1230px;
    margin: 0 auto;
}
.header-main-con .collapse.navbar-collapse{
    justify-content: end;
    margin-right: 90px;
}
.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: uppercase;
}
.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: 48px;
    margin-bottom: -2px;
}
.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: 3px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul {
    padding: 10px;
    border-radius: 3px;
    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: 3px;
}
.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 {
    font-size: 18px;
    color: var(--button-color);
    font-weight: 500;
    transition: .2s ease-in-out;
}
.nav-btns.d-flex.align-items-center {
    gap: 10px;
}
.login-btn a {
    color: var(--primary-color);
    padding: 14px 38px 15px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    height: 56px;
    border-radius: 3px;
    transition: .2s ease-in-out;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}
.login-btn a:hover{
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.sub-menu-dropdown{
    padding: 5px 15px;
}
.header-main-con .navbar .navbar-nav .sub-menu-dropdown .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu {
    position: absolute;
    margin: 0;
    padding: 10px;
    background: var(--secondary-color);
    border: 0;
    width: 230px;
    top: 0;
    left: 230px;
    border-radius: 3px;
}
.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: 3px;
}
.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: 3px;
    margin-bottom: 1px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item.active {
    border-radius: 3px;
}
.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;
}
.cart-btn a {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 3px;
}
.cart-btn a:hover{
    color: var(--primary-color);
    background: var(--accent);
    border-color: var(--accent);
}
/* header section styling end here */
/* banner section styling start here */
.banner-main-con {
    padding: 136px 0 150px;
    text-align: center;
    position: relative;
    background: var(--primary-color) url(../images/banner-bg-shape.png) no-repeat center;
    background-size: cover;
    height: 950px;
}
.banner-btns.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}
.banner-btns.primary-btn a.get-started-btn{
    background: var(--accent);
    border-color: var(--accent);
}
.banner-btns.primary-btn a.get-started-btn:hover{
    color: var(--accent);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.banner-btns{
    margin-bottom: 66px;
}
.banner-text-con span {
    font-size: 14px;
    line-height: 20px;
    background: rgb(255 255 255 / 10%);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 3px;
    color: var(--primary-color);
    align-items: center;
    gap: 8px;
    margin-bottom: 27px;
}
.banner-text-con h1{
    margin-bottom: 19px;
    color: var(--primary-color);
}
.banner-text-con p{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 32px;
    color: var(--primary-color);
}
.banner-social-con {
    position: absolute;
    right: 30px;
    top: 51%;
    transform: translateY(-50%);
}
.banner-social-con ul li a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--primary-color);
    background: var(--accent);
}
.banner-social-con ul li{
    margin-bottom: 20px;
}
.banner-social-con ul li a:hover{
    background: var(--secondary-color);
}
.banner-main-con .container{
    position: unset;
}
/* banner section styling end here */
/* plan section styling start here */
.hosting-type-box {
    text-align: center;
    padding: 40px 50px;
    border-radius: 3px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    display: flex;
    flex-direction: column;
}
.hosting-type-box figure img{
    height: 154px;
    object-fit: contain;
}
.hosting-type-box .generic-btn a img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.hosting-type-box .generic-btn{
    margin-top: auto;
}
.hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.hosting-type-box figure{
    margin-bottom: 24px;
}
.hosting-type-box h6{
    margin-bottom: 18px;
}
.hosting-type-box p{
    margin-bottom: 14px;
}
.hosting-type-box ul li span{
    font-weight: 600;
}
.hosting-type-box ul li{
    margin-bottom: 11px;
}
.hosting-type-box ul li:last-child{
    margin-bottom: 0;
}
.hosting-type-box ul{
    margin-bottom: 22px;
}
.price-box {
    margin-bottom: 16px;
}
.price-box span{
    font-size: 32px;
    line-height: 40px;
    color: var(--accent);
    font-weight: 600;
}
.price-box small{
    font-size: 20px;
    line-height: 26px;
    color: var(--accent);
    margin-left: 5px;
}
/* plan section styling end here */
/* domain section styling start here */
.domain-text-con {
    max-width: 920px;
    margin: 0 auto;
}
.side-shapes{
    position: relative;
}
.side-shapes::before, .side-shapes::after {
    content: "";
    height: 700px;
    position: absolute;
    top: 0;
    width: 326px;
}
.side-shapes::before{
    left: 0;
    background: url(../images/section-left-shape.png) no-repeat center;
}
.side-shapes::after{
    right: 0;
    background: url(../images/section-right-shape.png) no-repeat center;
}
.domain-serach-con input{
    border: 0;
    width: 100%;
    height: 69px;
    outline: none;
    border-radius: 3px;
    padding: 10px 290px 10px 24px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    border: 1px solid transparent;
}
.domain-serach-con input:focus{
    border-color: var(--accent);
}
.domain-btns button{
    height: 60px;
    min-width: 125px;
    cursor: pointer;
    font-weight: 700;
    border-radius: 3px;
    outline: none;
    border: 1px solid transparent;
}
.domain-btns .transfer-btn{
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transition: .3s ease-in-out;
}
.domain-btns .transfer-btn:hover{
    background: var(--accent);
    color: var(--primary-color);
}
.domain-btns .search-btn{
    background: var(--accent);
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.domain-btns .search-btn:hover{
    color: var(--accent);
    background: var(--primary-color);
    border-color: var(--accent);
}
.domain-serach-con {
    position: relative;
    margin-bottom: 50px;
}
.domain-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
}
.domain-text-con ul {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.domain-text-con ul li {
    padding: 0 49px;
    position: relative;
}
.domain-text-con ul li::after{
    content: "";
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background: var(--border-color);
}
.domain-text-con ul li:last-child:after{
    display: none;
}
.domain-text-con ul li h4{
    font-size: 32px;
    line-height: 40px;
}
.domain-text-con ul li p{
    margin-bottom: 0;
    color: var(--secondary-color);
}
.domain-text-con ul li:first-child h4{
    color: var(--accent);
}
.domain-text-con ul li:nth-child(2) h4{
    color: var(--solid-blue-color);
}
.domain-text-con ul li:nth-child(3) h4{
    color: #8e1afa;
}
.domain-text-con ul li:nth-child(4) h4{
    color: #ed1afa;
}
.domain-text-con ul li:nth-child(5) h4{
    color: #fa891a;
}
/* domain section styling end here */
/* feature section styling start here */
.feature-main-box {
    text-align: center;
    padding: 50px 15px;
    border-radius: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    display: flex;
    flex-direction: column;
}
.feature-main-box figure img{
    height: 80px;
    object-fit: contain;
}
.feature-main-box figure{
    transition: .3s ease-in-out;
}
.feature-main-box:hover figure{
    transform: translateY(-8px);
}
.feature-main-box a {
    font-weight: 700;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}
.feature-main-box .feature-read-more-btn a:hover{
    text-decoration: underline;
}
.feature-main-box .feature-read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}
.feature-main-box p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 17px;
}
.feature-main-box h6{
    margin-bottom: 17px;
}
.hosting-features-inner-con{
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.feature-main-box figure{
    margin-bottom: 24px;
}
/* feature section styling end here */
/* map tabs styling start here */
.map-location-inner-con .nav-pills .nav-link {
    border-radius: 3px;
    text-align: left;
    border: 0;
    cursor: pointer;
    background: transparent;
    margin-bottom: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--border-color);
    font-family: "Poppins", sans-serif;
}
.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: var(--accent);
    color: var(--primary-color);
    position: relative;
}
.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(--accent);
    border-color: var(--accent);
}
.map-location-inner-con .nav-pills .nav-link:hover i,
.map-location-inner-con .nav-pills .nav-link.active i{
    background: var(--primary-color);
    color: var(--accent);
}
.country-details {
    margin-bottom: 24px;
}
.country-details ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
}
.country-details ul li i {
    position: absolute;
    left: 0;
    top: 6px;
}
.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: 348px;
    overflow: hidden;
    position: relative;
    padding: 30px 20px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.map-img-con {
    width: 65%;
    height: 100%;
    float: left;
    border-right: 1px solid var(--border-color);
}
.map-content-details-con {
    width: 35%;
    height: 100%;
    overflow-y: auto;
    padding: 0 30px;
}
.map-content-details-con::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 3px;
}
.map-content-details-con::-webkit-scrollbar{
	width: 3px;
	background-color: #F5F5F5;
}
.map-content-details-con::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: var(--accent);
}
.country-details h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}
/* map tabs styling end here */
/* solution section styling start here */
.hosting-solution-inner-con {
    display: grid;
    gap: 65px;
    grid-template-columns: 45% 49%;
    align-items: center;
}
.hosting-solution-content-con h2{
    margin-bottom: 13px;
}
.hosting-solution-content-con ul li {
    margin-bottom: 12px;
    padding-left: 38px;
}
.hosting-solution-content-con ul li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 1px;
    width: 23px;
    height: 23px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.hosting-solution-content-con ul{
    margin-bottom: 32px;
}
.hosting-solution-content-con p{
    margin-bottom: 31px;
}
/* solution section styling end here */
.client-review-box {
    padding: 40px 27px;
    text-align: center;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.client-review-main-slider{
    padding-bottom: 100px;
    position: relative;
    border-top: 1px solid var(--border-color);
}
.client-review-main-slider::before{
    content: "\f10d";
    font-family: "font awesome 5 free";
    font-weight: 900;
    background: var(--accent);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}
.reviewer-info-box figure{
    width: 60px;
    height: 60px;
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto 13px;
}
.reviewer-info-box figure img{
    width: 100%;
}
.reviewer-details span{
    font-weight: 600;
    color: var(--secondary-color);
    font-family: "Poppins", sans-serif;
}
.reviewer-details small{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 9px;
}
.client-review-box i{
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 11px;
}
.client-review-box p{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.client-review-outer-con .owl-carousel{
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.client-review-outer-con .generic-title{
    padding: 0 230px;
}
.client-review-outer-con .owl-nav,
.client-review-outer-con .owl-dots{
    display: none;
}
/*  */
.sponsors-inner-con ul{
    display: grid;
    gap: 29px;
    grid-template-columns: 18% 18% 18% 18% 18%;
}
.sponsors-inner-con ul li {
    height: 80px;
    background: var(--primary-color);
    padding: 10px 30px;
    border-radius: 3px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}
.sponsors-inner-con ul li:hover{
    transform: translateY(-8px);
}
.sponsors-main-con{
    margin-bottom: 100px;
}
/*  */
/* footer section styling start here */
/* builder section styling start here */
.builder-main-con {
    padding: 32px 40px 33px;
    border-radius: 3px;
    background: #03244e;
    display: grid;
    gap: 40px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 95px;
}
.builder-main-con .generic-btn a {
    border-color: var(--accent);
}
.builder-main-con .generic-btn a:hover{
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.builder-content h3,
.builder-content p{
    color: var(--primary-color);
}
.builder-content h3 {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 40px;
}
.builder-content p{
    margin-bottom: 0;
}
/* builder section styling end here */
.footer-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 25% 24% 24% 19%;
    justify-content: center;
    padding-bottom: 58px;
}
.footer-box h6 {
    font-weight: 600;
    margin-bottom: 27px;
    color: var(--accent);
}
.footer-box ul li {
    margin-bottom: 7px;
}
.footer-box ul li a {
    font-size: 14px;
    line-height: 24px;
    color: #9caabb;
    display: inline-block;
}
.footer-box ul li a:hover{
    color: var(--accent);
}
.footer-contact-info ul li{
    position: relative;
    padding-left: 30px;
}
.footer-contact-info ul li i {
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--accent);
}
.footer-main-con{
    position: relative;
}
.footer-main-con::before{
    content: "";
    background: url(../images/footer-bg-shape.png) no-repeat center;
    background-size: cover;
    height: 853px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.container{
    z-index: 2;
    position: relative;
}
/*  */
.footer-copyright-con {
    display: grid;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    grid-template-columns: auto auto;
}
.copyright-logo-con {
    display: flex;
    align-items: center;
}
.copyright-logo-con p {
    margin-bottom: 0;
    color: #9caabb;
    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: #042551;
    color: 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(--primary-color);
}
.footer-copyright-main-con {
    padding: 30px 0;
    background: #001733;
}
/* footer styling end here */
/* about page start here */
.sub-banner-main-con.banner-main-con{
    background: var(--primary-color) url(../images/sub-banner-img.png) no-repeat center;
    height: 650px;
    background-size: cover;
}
.sub-pages-banner{
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcrumb-item+.breadcrumb-item::before {
    padding: 0 4px 0 0;
    color: var(--primary-color);
    content: "~";
}
.breadcrumb-item,
.breadcrumb{
    display: inline-block;
}
.breadcrumb-item,
.breadcrumb-item.active,
.breadcrumb-item a{
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}
.breadcrumb-item a:hover{
    color: var(--accent);
}
.breadcrumb {
    margin-bottom: 26px;
    background: #264c88;
    padding: 8px 21px 7px;
}
.breadcrumb ol{
    margin-bottom: 0;
}
/*  */
.mission-vision-box {
    padding: 50px 55px;
    border-radius: 3px;
    background: var(--primary-color);
    text-align: center;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.banner-sub-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 48.5% 48.5%;
}
.banner-sub-outer-con{
    margin-top: -316px;
}
.mission-vision-box figure{
    margin-bottom: 30px;
}
.mission-vision-box h2{
    margin-bottom: 25px;
}
.mission-vision-box p{
    margin-bottom: 9px;
}
.mission-vision-box p:last-child{
    margin-bottom: 0;
}
/*  */
.hosting-empowered-inner-con {
    display: grid;
    gap: 126px;
    align-items: center;
    grid-template-columns: 31.532% 57%;
}
.trusted-customers-con {
    padding: 52px 68px 60px;
    background: var(--accent);
    text-align: center;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.trusted-customers-con span,
.trusted-customers-con small{
    font-size: 56px;
    line-height: 56px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: "Poppins", sans-serif;
}
.trusted-customers-con p{
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 23px;
    color: var(--primary-color);
}
.trusted-customers-con figure {
    width: 210px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 3px;
}
.empowered-txt-con p:last-child{
    margin-bottom: 0;
}
.trusted-customers-con span{
    margin-bottom: 15px;
}
.empowered-txt-con p{
    line-height: 24px;
    margin-bottom: 13px;
}
/*  */
.team-box figure {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 100%;
    margin: 0 auto;
}
.team-box figure img{
    width: 100%;
    transition: .3s ease-in-out;
}
.team-box {
    text-align: center;
    border-radius: 3px;
    padding: 40px 35px 48px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.team-box:hover figure img{
    transform: scale(1.1);
}
.team-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.team-social-links ul li a i{
    font-size: 14px;
}
.team-social-links ul li a {
    width: 36px;
    height: 36px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    color: var(--accent);
    justify-content: center;
    transition: .3s ease-in-out;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 20%);
}
.team-social-links ul li a:hover{
    color: var(--primary-color);
    background: var(--accent);
}
.team-social-links ul{
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-social-links {
    margin-top: -30px;
    margin-bottom: 28px;
    position: relative;
}
.team-social-links ul li:nth-child(2){
    margin-bottom: -20px;
}
.team-box span{
    font-size: 14px;
    line-height: 14px;
}
.team-box h6{
    margin-bottom: 12px;
}
.team-box:hover h6{
    color: var(--accent);
}
/* about page start here */
.contact-detail-box {
    padding: 50px;
    border-radius: 3px;
    text-align: center;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-details-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.contact-detail-box figure{
    margin-bottom: 25px;
}
.contact-detail-box p,
.contact-detail-box a{
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color);
}
.contact-detail-box a:hover{
    color: var(--accent);
}
.contact-detail-box > a{
    gap: 10px;
    display: flex;
    font-weight: 700;
    margin-top: auto;
    align-items: center;
    color: var(--accent);
}
.contact-detail-box > a:hover{
    color: var(--solid-blue-color);
}
.map-inner-con iframe {
    width: 100%;
    height: 536px;
    filter: grayscale(100%);
    border: 0;
    outline: 0;
    display: block;
}
.map-inner-con{
    border: 10px solid var(--accent);
}
.form-box{
    display: grid;
    gap: 30px;
    grid-template-columns: 48.5% 48.5%;
}
.form-box ul li input {
    height: 60px;
}
.form-box ul li textarea,
.form-box ul li input{
    width: 100%;
    border-radius: 3px;
    border: 0;
    outline: 0;
    padding: 10px 20px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
    border: 1px solid transparent;
}
.form-box ul li textarea:focus,
.form-box ul li input:focus{
    border-color: var(--accent);
}
.contact-inner-con{
    max-width: 920px;
    margin: 0 auto;
}
.form-box ul li textarea {
    height: 213px;
    resize: none;
    padding: 20px;
}
.contact-inner-con ul li span.error {
    font-size: 14px;
    line-height: 18px;
    color: red;
    padding-left: 19px;
}
.contact-inner-con .generic-title{
    padding: 0 80px;
}
.form-box ul li button {
    width: 100%;
    height: 60px;
    outline: none;
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    background: var(--accent);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s ease-in-out;
}
.form-box ul li button:hover{
    background: var(--secondary-color);
}
.form-box ul{
    gap: 20px;
    display: flex;
    flex-direction: column;
}
/*  */
.domain-box {
    text-align: center;
    background: var(--primary-color);
    border-radius: 3px;
    padding: 41px 30px 40px;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.domain-box .price-box{
    text-align: center;
    margin-bottom: 21px;
}
.domains-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.domain-box .generic-btn a{
    width: 100%;
}
.domain-box figure{
    margin-bottom: 20px;
}
.price-box p{
    margin-bottom: 6px;
}
/*  */
/* domain price section styling start here */
.domain-price-main-con .table thead th,
.domain-price-main-con .table tbody tr td {
    text-align: center;
    border-style: solid none;
}
.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: 22px 12px 22px;
    border-right: 1px solid var(--border-color);
}
.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(--accent);
    padding: 18px 12px 18px;
    border-right: 1px solid var(--border-color);
}
.domain-price-main-con .table thead th:first-child {
    border-left: 0;
    border-top-left-radius: 3px;
}
.domain-price-main-con .table thead th:last-child {
    border-right: 0;
    border-top-right-radius: 3px;
}
.domain-price-main-con table {
    border-collapse: separate;
    border-spacing: 0;
}
.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 {
    margin-bottom: 0;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.domain-price-main-con .table tbody tr:last-child td{
    padding-bottom: 30px;
    border-bottom: 0;
}
.domain-price-main-con .table tbody tr:last-child td:first-child{
    border-bottom-left-radius: 3px;
}
.domain-price-main-con .table tbody tr:last-child td:last-child{
    border-bottom-right-radius: 3px;
}
/* domain price section styling end here */
/* dedicated page styling start here */
/*  */
.dedicated-server-box {
    padding: 23px 45px 29px 48px;
    border-radius: 3px;
    background: var(--primary-color);
    display: grid;
    gap: 50px;
    margin-bottom: 10px;
    grid-template-columns: 30% 42% 18%;
    align-items: center;
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.dedicated-server-box:last-child{
    margin-bottom: 0;
}
.dedicated-list-con ul {
    margin-bottom: 0;
    display: grid;
    gap: 18px 32px;
    grid-template-columns: 54% 39%;
}
.dedicated-list-con ul li{
    padding-left: 34px;
}
.dedicated-list-con ul li i{
    font-size: 24px;
    position: absolute;
    color: var(--accent);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.dedicated-server-heading{
    position: relative;
}
.dedicated-server-heading:after {
    content: "";
    background: var(--border-color);
    width: 1px;
    height: 94px;
    position: absolute;
    right: 0;
    top: -28px;
}
.dedicated-server-heading h5{
    font-weight: 600;
    margin-bottom: 0;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
.dedicated-server-heading h5 span{
    font-weight: 300;
    font-size: 20px;
}
.dedicated-server-box .price-box small {
    margin-left: 11px;
}
.dedicated-server-box .price-box {
    margin-bottom: 11px;
}
/*  */
/* dedicated page styling end here */
/* reseller page styling start here */
.reseller-plan-box {
    text-align: center;
    padding: 40px;
    border-radius: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.reseller-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.reseller-plan-box h6{
    margin-bottom: 24px;
}
.reseller-plan-box select{
    height: 46px;
    width: 100%;
    padding: 6px 36px 6px 16px;
    appearance: none;
    border: 1px solid var(--border-color);
    background: url(../images/angle-down.png) no-repeat center;
    background-position-x: 95%;
    outline: none;
    margin-bottom: 22px;
}
.reseller-plan-box ul li span{
    font-weight: 600;
}
.reseller-plan-box ul li{
    margin-bottom: 11px;
}
.reseller-plan-box ul li:last-child{
    margin-bottom: 0;
}
.reseller-plan-box figure{
    margin-bottom: 23px;
}
.reseller-plan-box ul{
    margin-bottom: 23px;
}
.reseller-plan-box figure img{
    width: 160px;
    height: 154px;
    object-fit: contain;
}
.reseller-hosting-features-main-con{
    padding-bottom: 70px;
}
/*  */
.reseller-guarantee-box i{
    left: 0;
    top: 2px;
    width: 23px;
    height: 23px;
    display: flex;
    position: absolute;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    background: var(--accent);
    color: var(--primary-color);
}
.reseller-guarantee-box {
    position: relative;
    padding-left: 40px;
    margin-bottom: 26px;
}
.reseller-guarantee-box:last-child{
    margin-bottom: 32px;
}
.reseller-guarantee-box p:last-child{
    margin-bottom: 0;
}
.reseller-guarantee-inner-con {
    display: grid;
    gap: 144px;
    grid-template-columns: 47% 40%;
    align-items: center;
}
.reseller-guarantee-txt-con h2{
    margin-bottom: 55px;
}
/*  */
.scripts-inner-con ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 14.5% 14.5% 14.5% 14.5% 14.5% 14.5%;
}
.scripts-inner-con ul li{
    text-align: center;
    padding: 40px 20px 32px;
    border-radius: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 50px rgb(17 78 167 / 7%);
}
.scripts-inner-con ul li figure{
    margin-bottom: 25px;
}
.scripts-inner-con ul li h6{
    margin-bottom: 0;
}
/* reseller page styling end here */
.vps-bottom-inner-txt{
    padding: 8px 110px;
    border-radius: 0 0 3px 3px;
    background: var(--accent);
}
.vps-bottom-inner-txt p{
    text-align: center;
    color: var(--primary-color);
}
.vps-bottom-inner-txt p:last-child{
    margin-bottom: 0;
}
.vps-bottom-txt{
    padding: 0 20px;
}
.vps-hostiko-benefits-main-con{
    padding-top: 95px;
}
/*  */
.vps-hostiko-benefits ul li{
    font-size: 20px;
    line-height: 26px;
    position: relative;
    padding-left: 33px;
}
.vps-hostiko-benefits ul li i{
    left: 0;
    top: 2px;
    font-size: 22px;
    position: absolute;
    color: var(--accent);
}
.vps-hostiko-benefits ul {
    display: grid;
    gap: 10px 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.vps-hostiko-benefits-main-con .generic-title{
    margin-bottom: 48px;
}
















/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    position: relative;
}

.error-con {
    position: relative;
    z-index: 2;
    padding: 0 100px;
}

.error-con h2 {
    font-size: 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: 3px;
    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: 3px;
    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(--primary-color);
    font-weight: 600;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(26, 116, 250, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(26, 116, 250, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}

/* bottom to top button */
/* Preloader -------------------------------------------------------*/
/* Loader Styles start here */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

.loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    font-size: 0;
    color: var(--accent);
    display: inline-block;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

.lead {
    font-size: 13px;
}

.loader div {
    background-color: var(--accent);
    display: inline-block;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    opacity: .5;
    border-radius: 50%;
    -webkit-animation: ballPulseDouble 2s ease-in-out infinite;
    animation: ballPulseDouble 2s ease-in-out infinite;
}

.loader div:last-child {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ballPulseDouble {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Preloader -------------------------------------------------------*/