@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --accent: #ff8a2f;
    --text-color: #404c59;
    --border-color: #e5e8ed;
}
* {
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: var(--text-color);
    font-family: "Roboto", sans-serif;
    word-break: normal;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 70px;
    font-weight: 700;
    color: var(--secondary-color);
}
h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    color: var(--secondary-color);
}
h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: var(--secondary-color);
}
h4 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 700;
    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: 600;
    color: var(--secondary-color);
}
.padding-top {
    padding-top: 130px;
}
.padding-bottom {
    padding-bottom: 130px;
}
a:hover {
    text-decoration: none;
}
.primary-btn a,
.secondary-btn a{
    height: 48px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 20px;
    border-radius: 30px;
    padding: 10px 51px;
    text-transform: uppercase;
    transition: .3s ease-in-out;
    border: 1px solid transparent;
}
.primary-btn a {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: var(--primary-color);
    box-shadow: 8px 0 18px rgb(218 228 238 / 100%);
}
.primary-btn a:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}
.secondary-btn a{
    color: var(--primary-color);
    background: var(--accent);
    border-color: var(--accent);
}
.secondary-btn a:hover{
    color: var(--accent);
    box-shadow: 8px 0 18px rgb(255 134 46 / 26%);
    background: var(--primary-color);
}
.generic-title p{
    margin-bottom: 0;
}
.generic-title {
    padding: 0 170px;
    margin-bottom: 44px;
}
.generic-title h2{
    margin-bottom: 10px;
}
.light-bg{
    background: #ecf3fa;
}
/* header section styling start here */
.header-main-con {
    position: absolute;
    top: 35px;
    z-index: 999;
}
.header-main-con .collapse.navbar-collapse {
    justify-content: end;
    margin-right: 70px;
}
.header-main-con .navbar .navbar-nav .nav-link {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    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: 39px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    margin: 0;
    padding-top: 25px;
    background: transparent;
    border: 0;
    width: 240px;
    padding-bottom: 0;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul {
    padding: 10px;
    border-radius: 30px;
    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: 20px;
}
.header-main-con .navbar-expand-lg .navbar-nav li ul li.dropdown-item a.dropdown-toggle{
    width: 100%;
    display: block;
    color: var(--primary-color);
}
.sub-menu-dropdown{
    padding: 5px 15px;
}
.header-main-con .navbar .navbar-nav .sub-menu-dropdown .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu {
    position: absolute;
    margin: 0;
    padding: 10px;
    background: var(--secondary-color);
    border: 0;
    width: 230px;
    top: 0;
    left: -240px;
    border-radius: 30px;
}
.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.dropdown-item:active,
.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:hover{
    color: var(--primary-color);
    background: 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: 20px;
    background: transparent;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item:hover a.dropdown-toggle{
    color: var(--primary-color);
        background: var(--accent);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item a.dropdown-toggle{
    padding: 5px 16px;
    border-radius: 20px;
    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{
    color: var(--primary-color);
        background: var(--accent);
    margin-bottom: 1px;
}
.header-main-con .collapse.navbar-collapse > a{
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--primary-color);
}
.header-main-con .collapse.navbar-collapse > a:hover{
    color: var(--yellow-color);
}
.nav-btns .primary-btn a {
    min-width: 151px;
    padding: 10px 20px;
    font-size: 14px;
}
.nav-btns .primary-btn a:hover{
    border-color: var(--primary-color);
}
.header-main-con .navbar,
.banner-inner-con{
    max-width: 1292px;
    margin: 0 auto;
}
/* header section styling end here */
.banner-main-con {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 152px 0 120px;
    background-size: cover;
    overflow: hidden;
}
.banner-inner-con {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 44% 49%;
    align-items: center;
    position: relative;
    gap: 88px;
}
.banner-inner-con::before {
    content: "";
    background: url(../images/orange-triangle-shape.png) no-repeat center;
    width: 45px;
    height: 48px;
    position: absolute;
    left: -70px;
    top: 40px;
}
.banner-btns a{
    height: 58px;
}
.banner-text-con p {
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}
.banner-text-con h1{
    margin-bottom: 12px;
}
.banner-text-con ul li{
    padding-left: 29px;
    font-weight: 500;
    margin-bottom: 9px;
    color: var(--text-color);
}
.banner-text-con ul li i{
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent);
}
.banner-text-con ul {
    margin-bottom: 32px;
}
.banner-btns {
    display: flex;
    gap: 14px;
}
.banner-main-con::before,
.banner-main-con::after{
    content: "";
    position: absolute;
    width: 357px;
    height: 357px;
}
.banner-main-con::before {
    background: url(../images/dots-left-shape.png) no-repeat center;
    left: -106px;
    top: -78px;
}
.banner-main-con::after{
    background: url(../images/dots-right-shape.png) no-repeat center;
    right: -106px;
    bottom: -78px;
}
/*  */
.top-to-bottom-btn {
    position: absolute;
    bottom: -20px;
    left: 0;
    box-shadow: 12px 0 46px rgb(191 212 232 / 61%);
    border-radius: 100%;
}
.top-to-bottom-btn a {
    display: inline-block;
    background: var(--primary-color);
    width: 65px;
    height: 65px;
    position: relative;
    border-radius: 100%;
    text-align: center;
    transition: background-color .3s, opacity .5s, visibility .5s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: circle 2s infinite;
    animation: circle 2s infinite;
    cursor: pointer;
}
@-webkit-keyframes circle {
    from {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 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, 255, 255, .99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}
/*  */
/*  */
.domain-serach-con {
    display: flex;
    gap: 19px;
    border-radius: 35px;
    margin-bottom: 41px;
    padding: 10px 10px 10px 26px;
    background: var(--primary-color);
    align-items: center;
    box-shadow: 10px 0 70px rgb(34 136 218 / 13%);
}
.domain-serach-con input, .domain-search-btns button {
    height: 48px;
    padding: 10px 25px;
    border-radius: 30px;
}
.domain-search-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.domain-serach-con input {
    border: 0;
    outline: 0;
    width: 100%;
    padding: 10px 0;
}
.domain-search-btns button {
    min-width: 141px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    outline: 0;
    text-transform: uppercase;
    transition: .3s ease-in-out;
}
.search-btn {
    color: var(--primary-color);
    background: var(--accent);
    border: 1px solid var(--accent);
}
.search-btn:hover{
    color: var(--accent);
    background: var(--primary-color);
}
.transfer-btn {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background: var(--primary-color);
}
.transfer-btn:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
}
.domain-content-outer span{
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: var(--primary-color);
}
.domains-price-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.domains-price-con ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.domains-price-con ul li small{
    font-size: 16px;
    color: var(--primary-color);
}
.domains-price-con ul li span{
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
}
.domains-price-con ul li {
    padding: 0 19px 0 19px;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.domains-price-con ul li:first-child {
    padding-left: 0;
}
.domains-price-con ul li:last-child {
    padding-right: 0;
    border-right: 0;
}
.domains-price-con ul li span{
    color: var(--primary-color);
}
.domains-price-con a {
    color: var(--accent);
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
}
.domains-price-con a:hover{
    text-decoration: underline;
}
.domain-inner-con {
    max-width: 1025px;
    margin: 0 auto;
    position: relative;
}
.domain-inner-con::before,
.domain-inner-con::after{
    content: "";
    position: absolute;
    width: 117px;
    height: 122px;
}
.domain-inner-con::before {
    background: url(../images/domain-left-shape.png) no-repeat center;
    left: -160px;
    top: -28px;
}
.domain-inner-con::after {
    background: url(../images/domain-right-shape.png) no-repeat center;
    right: -206px;
    bottom: -22px;
}
.domain-main-con{
    padding: 100px 0;
    background: url(../images/domain-bg-img.jpg) no-repeat center;
    background-size: cover;
}
/*  */
.plan-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.plan-box {
    text-align: center;
    padding: 0 30px 34px;
    transition: .3s ease-in-out;
    border: 1px solid var(--border-color);
}
.plan-box figure {
    width: 137px;
    height: 137px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -68px auto 0px;
}
.plan-main-con .generic-title{
    margin-bottom: 92px;
}
.plan-box .primary-btn a {
    font-size: 14px;
    padding: 10px 42px;
}
.plan-box h4{
    color: var(--accent);
    margin-bottom: 0px;
}
.plan-box > span {
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 6px;
}
.plan-box p{
    line-height: 24px;
    margin-bottom: 13px;
}
.plan-box ul li {
    position: relative;
    padding-left: 26px;
    color: var(--text-color);
    margin-bottom: 9px;
    text-align: left;
}
.plan-box ul li:last-child{
    margin-bottom: 0;
}
.plan-box ul li span {
    font-weight: 500;
}
.plan-box ul li i{
    position: absolute;
    left: 0;
    top: 4px;
    transition: .3s ease-in-out;
    color: var(--secondary-color);
}
.plan-box ul{
    width: 174px;
    margin: 0 auto 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}
.hosting-price-box span{
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}
.month-title small,
.month-title {
    font-size: 14px;
    line-height: 16px;
}
.month-title{
    margin-top: 6px;
}
.hosting-price-box {
    margin-bottom: 22px;
}
.plan-box:hover ul li i{
    color: var(--accent);
}
.plan-box:hover{
    border-color: var(--accent);
    box-shadow: 6px 0 32px rgb(255 130 45 / 9%);
}
.plan-box:hover .primary-btn a{
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-color);
    box-shadow: 8px 0 18px rgb(255 130 45 / 15%);
}
.plan-box:hover .primary-btn a:hover{
    background: var(--primary-color);
    color: var(--accent);
}
/*  */
.home-feature-img-con {
    margin-left: -150px;
}
.home-features-inner-con {
    display: grid;
    gap: 80px;
    grid-template-columns: 40% 53%;
    align-items: center;
    position: relative;
}
.home-features-inner-con::before {
    content: "";
    background: url(../images/orange-triangle-shape.png) no-repeat center;
    width: 45px;
    height: 48px;
    position: absolute;
    right: -170px;
    top: 100px;
}
.home-features-boxes-outer {
    display: grid;
    gap: 21px 56px;
    grid-template-columns: 27% 28% 29%;
}
.home-feature-content-con h2{
    margin-bottom: 30px;
}
.home-feature-box figure{
    width: 95px;
    height: 95px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    background: var(--primary-color);
}
.home-feature-box:hover figure{
    transform: translateY(-6px);
}
.home-feature-btn a i{
    font-size: 22px;
    color: var(--accent);
}
.home-feature-btn a:hover i{
    color: var(--secondary-color);
}
.home-feature-box h6{
    margin-bottom: 3px;
}
.home-feature-box p{
    margin-bottom: 10px;
}
.home-features-main-con{
    position: relative;
    overflow: hidden;
}
.home-features-main-con::before,
.home-features-main-con::after{
    content: "";
    position: absolute;
    height: 357px;
    width: 357px;
}
.home-features-main-con::before{
    background: url(../images/dots-left-shape.png) no-repeat center;
    left: -106px;
    bottom: -138px;
}
.home-features-main-con::after {
    background: url(../images/dots-right-shape.png) no-repeat center;
    right: -106px;
    top: -138px;
}
/*  */
.why-choose-inner-con {
    display: grid;
    gap: 103px;
    grid-template-columns: 39% 52%;
}
.why-choose-content-con .secondary-btn a{
    height: 58px;
}
.why-choose-reason-con figure{
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: var(--primary-color);
    box-shadow: 8px 0 18px rgb(218 228 238 / 64%);
}
.why-choose-reason-con {
    display: grid;
    align-items: center;
    grid-template-columns: 21% 71%;
    gap: 30px;
    margin-bottom: 16px;
}
.why-choose-content-con h2{
    margin-bottom: 40px;
}
.why-choose-content-con p{
    line-height: 24px;
}
.why-choose-content-con .secondary-btn{
    margin-top: 18px;
}
/*  */
/* map tabs styling start here */
.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: 19px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--secondary-color);
    transition: .2s ease-in-out;
    box-shadow: 4px 0 38px rgb(235 240 252 / 55%);
}
.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;
    font-size: 14px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    transition: .2s ease-in-out;
    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(--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);
    border-color: var(--primary-color);
}
.country-details {
    margin-bottom: 24px;
}
.country-details ul li {
    position: relative;
    padding-left: 29px;
    margin-bottom: 6px;
}
.country-details ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--secondary-color);
}
.country-details ul li a{
    display: inline-block;
}
.country-details ul li a,
.country-details ul li{
    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: 4px 0 38px rgb(235 240 252 / 55%);
}
.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: #efeff8;
	border-radius: 3px;
}
.map-content-details-con::-webkit-scrollbar{
	width: 4px;
	background-color: #efeff8;
}
.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 */
/*  */
.client-review-slider{
    background: url(../images/slider-bg-img.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;
}
.client-review-slider-inner-con .owl-carousel .owl-item img {
    width: auto;
    margin: 0 auto;
}
.client-review-slider-inner-con {
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}
.client-review-box p,
.client-review-box span{
    color: var(--primary-color);
}
.client-review-box p {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 22px;
}
.client-review-box p.review-text {
    font-size: 28px;
    line-height: 42px;
    margin-bottom: 29px;
    font-weight: 500;
}
.client-review-box .client-detail-con p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 1px;
    font-weight: 500;
}
.client-detail-con figure img{
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: contain;
}
.client-review-slider-inner-con .owl-nav{
    display: none;
}
.client-review-slider-inner-con .owl-carousel button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: rgb(255 255 255 / 50%);
}
.client-review-slider-inner-con .owl-carousel button.owl-dot:focus{
    outline: none;
}
.owl-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.client-review-slider-inner-con .owl-carousel button.owl-dot.active{
    background: var(--primary-color);
}
.client-review-slider-inner-con::before,
.client-review-slider-inner-con::after{
    content: "";
    background-size: contain !important;
    width: 305px;
    height: 227px;
    position: absolute;
}
.client-review-slider-inner-con::before {
    background: url(../images/left-quote-img.png) no-repeat center;
    left: -381px;
    top: -22px;
}
.client-review-slider-inner-con::after {
    background: url(../images/right-quote-img.png) no-repeat center;
    right: -381px;
    bottom: -22px;
}
.client-review-box > figure{
    margin-bottom: 38px;
}
.client-detail-con figure{
    margin-bottom: 24px;
}
.client-detail-con {
    margin-bottom: 31px;
}
/*  */
.faq-main-con .card .btn-link::after,
.faq-main-con .card .btn-link::before{
    width: 38px;
    height: 38px;
    border-radius: 100%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid transparent;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-main-con .card .btn-link.collapsed::before{
    content: "\f067";
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.faq-main-con .card .btn-link::before{
    content: "\f068";
    background: var(--accent);
    color: var(--primary-color);
    border-color: var(--accent);
}
.faq-main-con .card .btn-link {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--accent);
    padding: 19px 60px 20px 26px;
    width: 100%;
    position: relative;
    text-align: left;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 0;
}
.faq-main-con .card .btn-link.collapsed {
    padding: 19px 60px 20px 26px;
    color: var(--secondary-color);
}
.faq-main-con .card .btn-link:hover {
    color: var(--accent);
}
.faq-main-con .card .card-body {
    padding: 0 60px 26px 26px;
}
.faq-main-con .card .card-header {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 10px;
}
.faq-main-con .card {
    border-radius: 0;
    border: 0;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}
.faq-main-con .card .card-header h3 {
    line-height: 18px;
}
.faq-main-con .card .btn-link:hover,
.faq-main-con .card .btn-link:focus {
    text-decoration: none;
}
.faq-inner-con {
    display: grid;
    gap: 90px;
    grid-template-columns: 49% 46%;
    align-items: center;
}
.faq-content-con h2{
    margin-bottom: 40px;
}
.faq-content-con{
    position: relative;
}
.faq-content-con::after {
    content: "";
    background: url(../images/orange-triangle-shape.png) no-repeat center;
    position: absolute;
    right: 108px;
    top: 12px;
    width: 43px;
    height: 46px;
}
/*  */
.sponsor-main-con{
    padding: 72px 0 80px;
}
.sponsor-inner-con ul {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    justify-content: space-between;
    align-items: center;
}
/*  */
.footer-main-con{
    background: var(--secondary-color);
}
.footer-logo-con figure {
    margin-bottom: 18px;
}
.footer-logo-con > a{
    display: inline-block;
}
.footer-logo-con p {
    margin-bottom: 18px;
}
.footer-logo-con p, .footer-box ul li a, .footer-copyright-con p {
    color: #aaaaaa;
}
.footer-logo-con ul {
    display: flex;
    gap: 11px;
    align-items: center;
}
.footer-box a:hover{
    color: var(--accent);
}
.footer-logo-con ul li a {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: rgb(255 255 255 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.footer-logo-con ul li a:hover{
    background: var(--accent);
}
.footer-box h6{
    margin-bottom: 18px;
    color: var(--primary-color);
}
.footer-contact-info h4 {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}
.footer-inner-con {
    display: grid;
    gap: 50px;
    align-items: center;
    grid-template-columns: 25.5% 16.2% 13.2% 31.5%;
}
.footer-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 19px;
    width: 350px;
    text-align: center;
    height: 370px;
    padding: 50px 25px;
    background: url(../images/footer-contact-bg-img.jpg) center;
}
.footer-contact-info input,
.footer-contact-info input::placeholder{
    color: var(--text-color);
}
.footer-contact-info input,
.footer-contact-info button{
    height: 58px;
    border-radius: 30px;
    width: 100%;
    outline: none;
    border: 0;
}
.footer-contact-info button{
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: .3s ease-in-out;
    background: var(--secondary-color);
}
.footer-contact-info button:hover{
    color: var(--secondary-color);
    background: var(--primary-color);
}
.footer-contact-info input {
    padding: 10px 66px 10px 26px;
    background: var(--primary-color) url(../images/footer-mail-envelop.png) no-repeat center;
    background-position-x: 92%;
}
.footer-box ul li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 4px;
}
.footer-box ul li::before{
    content: "";
    background: var(--secondary-color);
    border: 1px solid var(--accent);
    border-radius: 100%;
    width: 11px;
    height: 11px;
    position: absolute;
    left: 0;
    top: 6px;
}
.footer-copyright-con {
    padding: 25px 0;
    border-top: 1px solid rgb(255 255 255 / 25%);
}
.footer-box ul li:last-child{
    margin-bottom: 0;
}
/*  */
.breadcrumb li {
    font-size: 16px;
    text-transform: uppercase;
}
.breadcrumb li a{
    color: var(--secondary-color);
    transition: .3s ease-in-out;
}
.breadcrumb li a:hover{
    color: var(--accent);
}
.breadcrumb-item+.breadcrumb-item::before {
    content: ">>";
    color: var(--secondary-color);
}
.breadcrumb {
    display: inline-flex;
    background: var(--primary-color);
    box-shadow: 8px 0 18px #dae4ee;
    border-radius: 30px;
    padding: 4px 39px;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    min-width: 212px;
    height: 58px;
}
.breadcrumb-item.active {
    color: var(--secondary-color);
}
.sub-banner-main-con .banner-inner-con {
    grid-template-columns: 45% 42%;
    gap: 150px;
}
.sub-banner-main-con .banner-inner-con::before {
    left: -140px;
    top: 20px;
}
.sub-banner-main-con .banner-text-con h1 {
    margin-bottom: 17px;
}
.sub-banner-main-con .banner-text-con p {
    margin-bottom: 35px;
    color: var(--text-color);
}
.sub-banner-main-con .top-to-bottom-btn{
    display: none;
}
/*  */
/*  */
.shared-hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.shared-hosting-types-inner-con .hosting-type-box {
    padding: 33px 23px 38px;
    border-radius: 0;
    background: var(--primary-color);
    border: 1px solid var(--border-color);
}
.shared-hosting-types-inner-con .hosting-type-box ul li {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--text-color);
}
.shared-hosting-types-inner-con .hosting-type-box h6 {
    margin-bottom: 13px;
}
.shared-hosting-types-inner-con .hosting-type-box ul {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.shared-hosting-types-inner-con .plan-price-selection select {
    font-size: 14px;
    line-height: 18px;
    height: 43px;
    border-radius: 22px;
    padding: 5px 33px 5px 19px;
    border: 1px solid var(--border-color);
    outline: none;
    width: 100%;
    appearance: none;
    color: var(--text-color);
    background: var(--primary-color) url(../images/angle-down-img.png) no-repeat right;
    background-position-x: 93%;
}
.shared-hosting-types-inner-con .plan-price-selection {
    margin-bottom: 18px;
}
.shared-hosting-types-inner-con .primary-btn a{
    width: 100%;
    box-shadow: 8px 0 18px rgb(218 228 238 / 50%);
}
.shared-hosting-types-inner-con .hosting-type-box p{
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 26px;
}
.shared-hosting-types-inner-con .hosting-price-box {
    margin-bottom: 12px;
    text-align: center;
}
.shared-hosting-types-inner-con .hosting-type-box ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 9px;
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shared-hosting-types-inner-con .hosting-type-box h6 span{
    color: var(--accent);
}
.shared-hosting-types-inner-con .hosting-type-box:hover{
    border-color: var(--accent);
}
/*  */
.shared-features-main-con .home-features-inner-con {
    display: unset;
    position: relative;
}
.shared-features-main-con .home-features-boxes-outer {
    gap: 22px;
    grid-template-columns: 15% 15% 15% 15% 15% 15%;
}
.shared-feature-content-con h2{
    margin-bottom: 31px;
}
/*  */
.hostiko-guarantee-inner-con {
    display: grid;
    gap: 65px;
    grid-template-columns: 56% 38%;
    align-items: center;
}
.hostiko-guarantee-details-outer {
    display: grid;
    gap: 20px;
    grid-template-columns: 22% 72%;
    margin-bottom: 50px;
    position: relative;
}
.hostiko-guarantee-content-con h2{
    margin-bottom: 36px;
}
.hostiko-guarantee-details-outer figure {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    box-shadow: 8px 0 18px rgb(218 228 238 / 64%);
}
.hostiko-guarantee-detail-box p{
    margin-bottom: 0;
}
.hostiko-guarantee-details-outer::before {
    content: "";
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--accent);
    position: absolute;
    left: 45px;
    bottom: -60px;
}
.hostiko-guarantee-details-outer:last-child::before{
    display: none;
}
.hostiko-guarantee-details-outer:last-child{
    margin-bottom: 0;
}
/*  */
.dedicated-server-heading h6{
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    color: var(--primary-color);
}
.dedicated-server-heading h6 span{
    font-size: 16px;
}
.dedicated-server-heading{
    min-width: 270px;
    height: 47px;
    background: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}
.dedicated-server-box {
    text-align: center;
    margin-bottom: 40px;
}
.dedicated-server-box:last-child{
    margin-bottom: 0;
}
.dedicated-list-con ul li{
    font-size: 14px;
    color: var(--secondary-color);
}
.dedicated-list-con {
    display: grid;
    gap: 15px;
    grid-template-columns: 24% 23% 23% 23%;
    text-align: left;
}
.dedicated-list-con ul{
    margin-bottom: 0;
}
.dedicated-server-outer {
    display: grid;
    align-items: center;
    grid-template-columns: 68% 30%;
    gap: 20px;
    padding: 35px 24px 27px 30px;
    transition: .3s ease-in-out;
    border: 1px solid var(--border-color);
}
.dedicated-btn-box .primary-btn a{
    min-width: 151px;
    padding: 10px 20px;
    font-size: 14px;
}
.dedicated-btn-box .hosting-price-box{
    margin-bottom: 0;
}
.dedicated-btn-box {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}
.dedicated-list-con ul li {
    padding-left: 30px;
    margin-bottom: 8px;
}
.dedicated-list-con ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 16px;
}
.dedicated-server-outer:last-child{
    margin-bottom: 0;
}
.dedicated-server-box:hover .dedicated-server-outer{
    border-color: var(--accent);
}
.dedicated-server-box:hover .dedicated-server-heading{
    background: var(--accent);
}
/*  */
.s-hosting-tabs-inner-con {
    display: grid;
    gap: 98px;
    grid-template-columns: 36% 49%;
    align-items: center;
    position: relative;
}
.s-hosting-tabs-inner-con .tab-pane h2{
    margin-bottom: 21px;
}
.s-hosting-tabs-inner-con .tab-pane figure img{
    width: 144px;
    height: 144px;
    object-fit: cover;
    border-radius: 100%;
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-link img{
    width: 63px;
    height: 63px;
    object-fit: cover;
    border-radius: 100%;
}
.s-hosting-tabs-inner-con .tab-content ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: var(--accent);
}
.s-hosting-tabs-inner-con .tab-content ul li {
    position: relative;
    padding-left: 30px;
    font-weight: 500;
    color: var(--secondary-color);
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns ul li:not(:last-child){
    margin-bottom: 27px;
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .nav-link {
    height: 96px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    font-size: 24px;
    line-height: 32px;
    color: var(--secondary-color);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 0;
    background: var(--primary-color);
    transition: .3s ease-in-out;
    border: 1px solid transparent;
    box-shadow: 1px 0 59px rgb(211 221 253 / 30%);
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .nav-link i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .nav-link.active,.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .show>.nav-link{
    border-color: var(--accent);
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .nav-link.active i, 
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .show>.nav-link i{
    color: var(--accent);
}
.s-hosting-tabs-inner-con .s-hosting-tab-btns .nav-pills .nav-link:hover{
    border-color: var(--accent);
}
.s-hosting-tabs-inner-con .tab-content ul {
    display: grid;
    gap: 10px 40px;
    margin-bottom: 34px;
    grid-template-columns: 35% 33%;
}
.s-hosting-tabs-inner-con .tab-pane figure{
    margin-bottom: 27px;
}
.s-hosting-tabs-inner-con .tab-pane p{
    margin-bottom: 26px;
}
.s-hosting-tabs-inner-con .tab-pane .secondary-btn a{
    height: 58px;
}
.s-hosting-tabs-main-con::before, .s-hosting-tabs-main-con::after {
    content: "";
    position: absolute;
    width: 357px;
    height: 357px;
}
.s-hosting-tabs-main-con::before {
    background: url(../images/dots-left-shape.png) no-repeat center;
    left: -106px;
    top: -78px;
}
.s-hosting-tabs-main-con::after {
    background: url(../images/dots-right-shape.png) no-repeat center;
    right: -106px;
    bottom: -78px;
}
.s-hosting-tabs-main-con {
    overflow: hidden;
    position: relative;
}
.s-hosting-tabs-inner-con::before {
    content: "";
    background: url(../images/orange-triangle-shape.png) no-repeat center;
    width: 45px;
    height: 48px;
    position: absolute;
    left: -130px;
    top: -10px;
}
/*  */
/* DIRTY Responsive pricing table CSS */
.reseller-inner-con article {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.reseller-inner-con ul {
    display: flex;
    top: 0px;
    z-index: 10;
    padding-bottom: 14px;
}
.reseller-inner-con li {
    list-style: none;
    flex: 1;
}
.reseller-inner-con button {
    width: 100%;
    border: 1px solid #e3ecfd;
    border-right: 0;
    padding: 10px;
    background: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    height: 60px;
    color: var(--black-color)
}
.reseller-inner-con li.active button {
    background: var(--primary-color);
    color: #000;
}
.reseller-inner-con table {
    table-layout: fixed;
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
}
.reseller-inner-con td, 
.reseller-inner-con th {
    padding: 17px 30px 15px;
    empty-cells: show;
    border-bottom: 0;
}
.reseller-inner-con tbody td {
    border-right: 0;
    font-size: 16px;
    background: var(--primary-color);
    border: 1px solid #e3ecfd;
    border-bottom: 0;
    border-right: 0;
}
.reseller-inner-con thead th:not(:last-child) {
    border-right: 1px solid #e3ecfd;
}
.reseller-inner-con thead th:first-child h5 {
    margin-bottom: 0;
    color: var(--primary-color);
    line-height: 36px;
    padding-left: 4px;
    font-weight: 600;
}
.reseller-inner-con thead th:last-child {
    border-right: 0;
}
.reseller-inner-con thead th {
    padding: 26px 28px 24px;
    border-top: 0;
    background: var(--primary-color);
}
.reseller-inner-con thead th .primary-btn a{
    padding: 5px 10px;
    min-width: 142px;
    font-size: 14px;
}
.reseller-inner-con thead th .hosting-price-outer-box {
    margin-bottom: 14px;
}
.reseller-inner-con thead th .hosting-price-outer-box .hosting-price-text{
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}
.reseller-inner-con td+td,
.reseller-inner-con th+th {
    text-align: center;
    display: none;
}
.reseller-inner-con td.default {
    display: table-cell;
}
@media (min-width: 992px) {
    .reseller-inner-con ul {
        display: none;
    }
    .reseller-inner-con td,
    .reseller-inner-con th {
        display: table-cell !important;
    }
    .reseller-inner-con td,
    .reseller-inner-con th {
        width: 316px;
    }
    .reseller-inner-con td+td,
    .reseller-inner-con th+th {
        width: auto;
    }
}
.reseller-inner-con tbody th {
    background: rgba(255, 255, 255, 0.42);
    border-left: 1px solid var(--border-color);
    font-size: 16px;
    font-weight: 400;
}
.reseller-inner-con .fa-check-circle,
.reseller-inner-con .fa-times-circle {
    font-size: 16px;
}
.reseller-inner-con a:focus,
.reseller-inner-con a:hover {
    text-decoration: none;
}
.reseller-price-plan{
    width: 100%;
}
.reseller-price-plan p {
    margin-bottom: 10px;
    padding-left: 0;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 20px;
}
.reseller-price-plan .hosting-price-box span{
    color: var(--secondary-color);
}
.reseller-price-plan .hosting-price-box span.numeric2 {
    font-size: 20px;
    line-height: 20px;
}
.reseller-inner-con tbody td:first-child {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    color: var(--primary-color);
    border-left: 0;
    background: var(--accent);
    border-top: 1px solid rgb(255 255 255 / 40%);
}
.reseller-inner-con tbody td i.fa-check-circle{
    color: var(--secondary-color);
}
.reseller-inner-con tbody td i.fa-times-circle{
    color: #ff7676;
}
.reseller-inner-con tbody td:first-child i {
    font-size: 15px;
    margin-right: 8px;
    color: var(--accent);
}
.reseller-price-plan .hosting-price-box {
    padding: 0;
    border: 0;
    align-items: baseline;
    margin-bottom: 12px;
    justify-content: center;
}
.reseller-inner-con thead th:first-child {
    background: var(--accent);
    border-right: 0;
}
/* reseller table end */
/*  */
.hostiko-team-member-con {
    padding: 23px 20px 30px;
    background: var(--primary-color);
    text-align: center;
    box-shadow: 4px 0 55px rgb(235 240 252 / 55%);
}
.hostiko-team-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.hostiko-team-member-con ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.hostiko-team-member-con ul li a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--accent);
    color: var(--primary-color);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
}
.hostiko-team-member-con ul li a:hover{
    color: var(--accent);
    background: transparent;
}
.hostiko-team-member-con figure {
    display: inline-block;
    overflow: hidden;
    margin-bottom: 19px;
}
.hostiko-team-member-con figure img{
    width: 100%;
    transition: .3s ease-in-out;
}
.hostiko-team-member-con:hover figure img{
    transform: scale(1.1);
}
.hostiko-team-member-con h6{
    margin-bottom: 1px;
}
.hostiko-team-member-con span{
    margin-bottom: 14px;
}
/*  */
/*  */
.contact-links-inner-con {
    display: grid;
    gap: 30px;
    position: relative;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.contact-box {
    text-align: center;
    padding: 48px 50px 44px;
    border: 1px solid var(--border-color);
    background: var(--primary-color);
}
.contact-box ul li a{
    display: inline-block;
    color: var(--text-color);
}
.contact-box ul li a:hover{
    color: var(--accent);
}
.contact-box figure{
    margin-bottom: 28px;
    transition: .3s ease-in-out;
}
.contact-box:hover figure{
    transform: translateY(-6px);
}
.contact-box h6{
    transition: .3s ease-in-out;
}
.contact-box:hover h6{
    color: var(--accent);
}
.contact-box:hover{
    border-color: var(--accent);
}
/*  */
.contact-form-inner-con ul li input, .contact-form-inner-con ul li textarea {
    width: 100%;
    padding: 16px 26px;
    border-radius: 0;
    border: 0;
    font-size: 14px;
    outline: 1px solid transparent;
    box-shadow: 5px 0 87px rgb(208 235 251 / 35%);
    background: var(--primary-color);
}
.contact-form-inner-con ul li input {
    height: 60px;
}
.contact-form-inner-con ul li {
    text-align: left;
}
.contact-form-inner-con ul li span.error {
    color: var(--accent);
    font-size: 12px;
    line-height: 14px;
    margin-left: 25px;
}
.contact-form-inner-con ul li textarea {
    height: 190px;
    resize: none;
    padding: 22px 26px;
}
.contact-form-inner-con ul li input:focus,
.contact-form-inner-con ul li textarea:focus{
    outline-color: var(--accent);
}
.contact-form-inner-con .form-box ul {
    display: grid;
    gap: 20px 15px;
    grid-template-columns: 32.4% 32.4% 32.4%;
    margin-bottom: 42px;
}
.contact-form-inner-con .form-box ul li:last-child{
    grid-column: 1/-1;
}
.submit-btn button {
    min-width: 194px;
    border-radius: 30px;
    background: var(--accent);
    color: var(--primary-color);
    outline: 0;
    border: 0;
    cursor: pointer;
    transition: .3s ease-in-out;
    height: 58px;
    font-size: 16px;
    gap: 20px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
}
.submit-btn button:hover{
    background: var(--secondary-color);
}
.form-box ul li span.error {
    color: var(--accent);
    font-size: 14px;
    line-height: 16px;
    margin-left: 26px;
}
.contact-map-con iframe {
    width: 100%;
    height: 555px;
    filter: grayscale(100%);
    border: 0;
    outline: 0;
    display: block;
}
/*  */
/* domain price section styling start here */
.domain-price-main-con .table {
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 8px 0 80px rgb(0 0 0 / 5%);
}
.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(--accent);
    padding: 18px 12px 20px;
    border: 0;
}
.domain-price-main-con .table thead th:first-child {
    border-left: 0;
}
.domain-price-main-con .table thead th:last-child {
    border-right: 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 tbody tr:last-child td{
    border-bottom: 0;
}
/* domain price section styling end here */
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    position: relative;
}
.error-con {
    position: relative;
    z-index: 2;
    padding: 0 100px;
}
.error-con h2 {
    font-size: 130px;
    line-height: 125px;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.error-con p {
    font-size: 22px;
    line-height: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}
.error-con .generic-btn a {
    font-size: 16px;
    font-weight: 500;
    height: auto;
    padding: 20px 40px;
    border-radius: 35px;
    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: 30px;
    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: 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(--primary-color);
    font-weight: 600;
}
@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgba(255, 138, 47, 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, 138, 47, .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 -------------------------------------------------------*/