@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #041a56;
    --accent: #1e5cfa;
    --text-color: #465f88;
    --border-color: #d6e7f2;
    --green-color: #0dcb96;
    --bright-text-color: #b1b1c8;
}
* {
    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: "Work Sans", sans-serif;
    word-break: break-word;
}
/* generics start */
h1 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 700;
    color: var(--primary-color);
}
h2 {
    font-size: 40px;
    line-height: 44px;
    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: 150px;
}
.padding-bottom {
    padding-bottom: 150px;
}
a:hover {
    text-decoration: none;
}
.primary-btn a,
.secondary-btn a{
    height: 48px;
    background: linear-gradient(to right,  #0bc894 0%,#29f5b1 100%);
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 24px;
    border-radius: 10px;
    padding: 10px 32px;
    transition: .3s ease-in-out;
    border: 1px solid var(--green-color);
    box-shadow: 8px 6px 18px rgb(41 245 177 / 27%);
}
.primary-btn a:hover{
    color: var(--green-color);
    border-color: var(--green-color);
    background: var(--primary-color);
}
.generic-title p{
    margin-bottom: 0;
}
.generic-title {
    padding: 0 205px;
    margin-bottom: 42px;
}
.generic-title h2{
    margin-bottom: 11px;
}
.light-bg{
    background: #f9fbff;
}
.pb-130{
    padding-bottom: 130px;
}
.pt-130{
    padding-top: 130px;
}
/* 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(--primary-color);
    font-size: 16px;
    line-height: 16px;
    transition: .2s ease-in-out;
    text-transform: capitalize;
}
.header-main-con .navbar .navbar-nav .nav-link.active,
.header-main-con .navbar .navbar-nav .nav-link:hover{
    color: var(--green-color);
}
.header-main-con .navbar-light .navbar-brand {
    margin-right: 39px;
}
.header-main-con .navbar .navbar-nav {
    gap: 39px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    margin: 0;
    padding-top: 25px;
    background: transparent;
    border: 0;
    width: 240px;
    padding-bottom: 0;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul {
    padding: 10px;
    border-radius: 10px;
    background: var(--secondary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.dropdown-item{
    padding: 5px 16px;
    margin-bottom: 1px;
    color: var(--primary-color);
    background: transparent;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav li ul li.dropdown-item a.dropdown-toggle{
    width: 100%;
    display: block;
    color: var(--primary-color);
}
.sub-menu-dropdown{
    padding: 5px 15px;
}
.header-main-con .navbar .navbar-nav .sub-menu-dropdown .nav-link{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu {
    position: absolute;
    margin: 0;
    padding: 10px;
    background: var(--secondary-color);
    border: 0;
    width: 230px;
    top: 0;
    left: -240px;
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu.sub-menu ul {
    padding: 0 5px;
    border-top: 0;
}
.header-main-con ul li.nav-item.dropdown.show .dropdown-menu.sub-menu{
    display: none;
}
.header-main-con ul li.nav-item.dropdown.show .dropdown-item.dropdown.show .dropdown-menu.sub-menu{
    display: block;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li a.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: linear-gradient(to right,  #0bc894 0%,#29f5b1 100%);
}
.dropdown-item.active, 
.dropdown-item:active{
    color: var(--button-color);
    background-color: var(--primary-color);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item{
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    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: linear-gradient(to right,  #0bc894 0%,#29f5b1 100%);
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item a.dropdown-toggle{
    padding: 5px 16px;
    border-radius: 10px;
    margin-bottom: 1px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item.active {
    border-radius: 10px;
}
.header-main-con .navbar-expand-lg .navbar-nav .dropdown-menu ul li.dropdown-item .dropdown-toggle.active{
    color: var(--primary-color);
    background: linear-gradient(to right,  #0bc894 0%,#29f5b1 100%);
    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: 142px;
    padding: 10px 20px;
}
.header-main-con .navbar,
.banner-inner-con{
    max-width: 1262px;
    margin: 0 auto;
}
/* header section styling end here */
.banner-main-con {
    height: 1025px;
    background: url(../images/banner-bg-img.png) no-repeat center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0;
    background-size: cover;
}
.banner-inner-con {
    display: grid;
    gap: 133px;
    margin: 0 auto;
    grid-template-columns: 44% 52%;
    align-items: center;
}
.banner-btns a{
    height: 58px;
}
.banner-text-con p{
    margin-bottom: 27px;
    color: var(--primary-color);
}
.banner-text-con span {
    color: var(--primary-color);
    margin-bottom: 23px;
    background: rgb(0 0 0 / 10%);
    padding: 4px 16px 4px 8px;
    border-radius: 20px;
}
.banner-text-con h1{
    margin-bottom: 12px;
}
.banner-text-con span small {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    padding: 0 16px;
    border-radius: 20px;
    margin-right: 3px;
}
/*  */
.top-to-bottom-btn {
    position: absolute;
    bottom: 118px;
    left: 22%;
    box-shadow: 31px 0 80px rgb(34 136 218 / 21%);
    border-radius: 100%;
}
.top-to-bottom-btn a {
    display: inline-block;
    background: var(--primary-color);
    width: 65px;
    height: 65px;
    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)
    }
}
/*  */
/*  */
.hosting-types-inner-con {
    display: grid;
    gap: 29px;
    position: relative;
    grid-template-columns: 31.6% 31.6% 31.6%;
}
.hosting-types-inner-con::before,
.hosting-types-inner-con::after{
    content: "";
    background: url(../images/hosting-types-shape.png) no-repeat center;
    width: 175px;
    height: 175px;
    background-size: contain;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.hosting-types-inner-con::before{
    left: -87px;
}
.hosting-types-inner-con::after{
    right: -87px;
}
.hosting-type-box {
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
    overflow: hidden;
    border-radius: 15px;
    background: var(--primary-color);
    transition: .3s ease-in-out;
    border-bottom: 2px solid var(--secondary-color);
}
.hosting-type-box:hover{
    border-color: var(--accent);
}
.hosting-price-box {
    display: flex;
    margin-bottom: 26px;
    align-items: baseline;
}
.hosting-price-box span.dollar {
    position: relative;
}
.hosting-price-box span{
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: var(--accent);
}
.hosting-price-box small {
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
    color: var(--accent);
}
.hosting-type-box ul li span {
    display: inline-block;
}
.hosting-type-box ul {
    margin-bottom: 30px;
}
.hosting-type-box ul li{
    padding-left: 28px;
    margin-bottom: 7px;
}
.hosting-type-box ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 9px;
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hosting-top-img-con figure{
    margin-bottom: 0;
}
.hosting-type-content-con {
    position: relative;
    padding: 0 32px 50px;
}
.hosting-type-content-con h5{
    margin-bottom: 10px;
}
.hosting-type-content-con p{
    margin-bottom: 17px;
    line-height: 24px;
}
.hosting-type-content-con .primary-btn a {
    padding: 10px 35px;
}
/*  */
.domain-main-con{
    background: url(../images/style1-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.domain-serach-con {
    display: flex;
    gap: 19px;
    border-radius: 15px;
    margin-bottom: 41px;
    padding: 10px 10px 10px 20px;
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    align-items: center;
}
.domain-serach-con input, .domain-search-btns button {
    height: 48px;
    padding: 10px 25px;
    border-radius: 10px;
    min-width: 132px;
}
.domain-search-btns button {
    min-width: 134px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: 0;
}
.search-btn {
    border: 0;
    color: var(--primary-color);
    transition: .3s ease-in-out;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
}
.search-btn:hover,
.transfer-btn:hover{
    color: var(--primary-color);
    background: var(--accent);
}
.transfer-btn {
    color: var(--accent);
    transition: .3s ease-in-out;
    border: 1px solid var(--accent);
    background: var(--primary-color);
}
.domain-search-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.domain-serach-con input {
    border: 0;
    outline: 0;
    width: 100%;
    padding: 10px 0;
}
.domain-content-outer {
    background: var(--primary-color);
    padding: 52px 30px 50px;
    border-radius: 15px;
}
.domains-price-con ul li span{
    font-size: 28px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--primary-color);
}
.domains-price-con ul li small{
    font-size: 16px;
    color: var(--primary-color);
}
.domains-price-con ul li{
    width: 105px;
    height: 105px;
    border-radius: 100%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.domains-price-con ul{
    gap: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}
.domains-price-con {
    margin-top: -52px;
    text-align: center;
}
.domains-price-con a{
    gap: 7px;
    font-size: 14px;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    justify-content: center;
}
.domains-price-con a i{
    font-size: 12px;
}
.domains-price-con a:hover{
    color: var(--green-color);
}
.domain-content-outer span{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--secondary-color);
}
/*  */
.home-advance-feature-box {
    padding: 44px 35px 36px;
    border-radius: 15px;
    background: var(--primary-color);
    transition: .3s ease-in-out;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
}
.home-advance-feature-box:hover{
    border-color: var(--accent);
}
.home-advance-features-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.home-advance-feature-btn a{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    color: var(--primary-color);
    justify-content: center;
    font-size: 20px;
    border: 1px solid transparent;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
}
.home-advance-feature-btn a:hover{
    border-color: var(--green-color);
    color: var(--green-color);
    background: var(--primary-color);
}
.home-advance-feature-box figure{
    margin-bottom: 29px;
}
.home-advance-feature-box h6{
    margin-bottom: 11px;
}
.home-advance-feature-box p{
    margin-bottom: 13px;
    line-height: 24px;
}
/*  */
.secure-hosting-solutions{
    background: url(../images/secure-hosting-bg-img.png) no-repeat center;
    background-size: cover;
}
.secure-hosting-img {
    margin-left: -190px;
}
.secure-hosting-inner-con {
    display: grid;
    gap: 87px;
    grid-template-columns: 50% 44%;
    align-items: center;
}
.secure-hosting-content-con .primary-btn a{
    height: 58px;
}
.secure-hosting-content-con h2,
.secure-hosting-content-con p,
.secure-hosting-content-con ul li{
    color: var(--primary-color);
}
.secure-hosting-content-con ul li {
    padding-left: 28px;
    margin-bottom: 4px;
    font-weight: 500;
}
.secure-hosting-content-con ul li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 14px;
}
.secure-hosting-content-con h2{
    margin-bottom: 16px;
}
.secure-hosting-content-con p{
    line-height: 24px;
}
.secure-hosting-content-con p:nth-child(2){
    margin-bottom: 11px;
}
.secure-hosting-content-con ul{
    margin-bottom: 33px;
}
/*  */
.hostiko-guarantee-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 31.6% 31.6% 31.6%;
}
.guarantee-box {
    padding: 49px 39px 42px;
    display: flex;
    background: var(--primary-color);
    flex-direction: column;
    border-radius: 15px;
    transition: .3s ease-in-out;
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
    border-top: 2px solid var(--secondary-color);
}
.guarantee-box:hover{
    border-color: var(--accent);
}
.guarantee-box figure {
    width: 126px;
    height: 126px;
    border-radius: 100%;
    margin: 0 auto 27px;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    box-shadow: 9px 0 22px rgb(235 240 252 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.guarantee-box p{
    margin-bottom: 0;
}
/*  */
/*  */
.customer-review-inner-con {
    display: grid;
    gap: 110px;
    grid-template-columns: 40% 51%;
    align-items: center;
}
.customer-review-img-con figure img{
    position: relative;
    z-index: 1;
}
.customer-review-text-con .owl-nav,
.customer-review-text-con .owl-dots{
    display: none;
}
.customer-review-text-con .customer-details-outer-con figure img{
    width: auto;
}
.customer-review-text-con .customer-details-outer-con figure {
    width: 62px;
    height: 62px;
    background: var(--light-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.customer-details h5{
    margin-bottom: 0;
}
.customer-details-outer-con {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 34px;
}
.customer-review-inner-con .btn-wrap button{
    border: 0;
    cursor: pointer;
    background: transparent;
}
.customer-review-inner-con .btn-wrap button:focus{
    outline: 0;
    border: 0;
}
.customer-review-inner-con .btn-wrap button.next-btn figure img {
    transform: rotate(180deg);
}
.customer-review-inner-con .btn-wrap {
    display: flex;
    gap: 14px;
}
.customer-review-inner-con .btn-wrap button:hover figure img{
    filter: brightness(0) saturate(100%) invert(57%) sepia(70%) saturate(1114%) hue-rotate(117deg) brightness(95%) contrast(90%);
}
.customer-review-text-con h2{
    margin-bottom: 12px;
}
.customer-review-main-con{
    background: url(../images/style2-bg-img.jpg) no-repeat center;
    background-size: cover;
    padding: 120px 0;
}
.customer-review-slide p{
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 32px;
}
.customer-details h6{
    margin-bottom: 1px;
}
/*  */
/*  */
.faq-inner-con {
    max-width: 920px;
    margin: 0 auto;
}
.faq-main-con .card .btn-link {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: var(--accent);
    padding: 15px 130px 15px 24px;
    width: 100%;
    position: relative;
    text-align: left;
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 20px;
}
.faq-main-con .card .btn-link::after,
.faq-main-con .card .btn-link.collapsed::after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--secondary-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-main-con .card .btn-link::after{
    content: "\f062";
}
.faq-main-con .card .btn-link.collapsed::after{
    content: "\f061";
}
.faq-main-con .card .btn-link.collapsed {
    padding: 15px 130px 15px 24px;
    color: var(--secondary-color);
}
.faq-main-con .card .btn-link:hover {
    color: var(--accent);
}
.faq-main-con .card .card-body {
    padding: 0 96px 26px;
}
.faq-main-con .card .card-header {
    border: 0;
    background: transparent;
    padding: 0;
    border-radius: 10px;
}
.faq-main-con .card {
    border-radius: 15px;
    border: 0;
    margin-bottom: 24px;
    box-shadow: 5px 0 87px rgb(208 235 251 / 40%);
}
.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-main-con .generic-title p {
    font-size: 18px;
}
/*  */
.hostiko-builder-main-con{
    background: url(../images/hostiko-builder-bg-img.png) no-repeat center;
    background-size: cover;
    padding: 90px 0;
}
.hostiko-builder-content-con h2,
.hostiko-builder-content-con p{
    color: var(--primary-color);
}
.hostiko-builder-inner-con {
    display: grid;
    gap: 142px;
    grid-template-columns: 42% 44%;
    align-items: center;
}
.hostiko-builder-content-con .primary-btn a{
    height: 58px;
}
.hostiko-builder-content-con h2{
    font-size: 46px;
    line-height: 50px;
    margin-bottom: 26px;
}
.hostiko-builder-content-con p{
    line-height: 24px;
    margin-bottom: 34px;
}
/*  */
.global-partners-inner-con ul {
    display: grid;
    gap: 30px;
    grid-template-columns: 11% 11% 9% 12% 12%;
    align-items: center;
    justify-content: space-between;
}
.global-partners-main-con {
    padding: 60px 0;
    background: var(--secondary-color);
    border-bottom: 1px solid rgb(255 255 255 / 15%);
}
/*  */
.footer-main-con {
    background: var(--secondary-color);
}
.footer-inner-con {
    display: grid;
    gap: 82px;
    grid-template-columns: 40% 25% 14%;
    margin: 0 auto;
    justify-content: center;
    padding: 70px 0;
}
.footer-box p, .footer-box ul li a, .footer-copyright-con p {
    color: var(--bright-text-color);
    font-size: 16px;
}
.footer-logo-con ul{
    display: flex;
    gap: 8px;
    align-items: center;
}
.footer-social-info ul li a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.footer-box ul li a{
    transition: .3s ease-in-out;
}
.footer-box ul li a:hover{
    color: var(--green-color);
}
.footer-social-info ul li a:hover{
    color: var(--secondary-color);
    background: var(--primary-color);
}
.footer-box h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 19px;
    font-size: 22px;
}
.footer-copyright-con p{
    font-size: 14px;
    margin-bottom: 0;
}
.footer-links-list {
    display: grid;
    gap: 37px;
    grid-template-columns: 35% 50%;
}
.footer-logo-con {
    padding-top: 3px;
}
.footer-logo-con > a{
    display: inline-block;
}
.footer-copyright-con {
    padding: 11px 0;
    background: #031136;
}
.footer-contact-info ul li span{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 14px;
    color: var(--primary-color);
}
.footer-logo-con figure{
    margin-bottom: 25px;
}
.footer-logo-con p{
    margin-bottom: 30px;
}
.footer-contact-info ul li:first-child a:first-child{
    margin-bottom: 11px;
}
.footer-contact-info ul li:first-child{
    margin-bottom: 24px;
}
.footer-links-list ul li{
    padding-left: 19px;
    position: relative;
    margin-bottom: 3px;
}
.footer-links-list ul li::before{
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    line-height: 11px;
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--green-color);
    transform: translateY(-50%);
}
.footer-social-info ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-links-details span,
.footer-contact-links-details a{
    font-size: 16px;
    line-height: 20px;
}
.footer-contact-links-details span{
    color: var(--primary-color);
}
.footer-contact-links-details a{
    color: var(--bright-text-color);
}
.footer-contact-link-box {
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer-contact-links-outer {
    display: grid;
    gap: 50px;
    grid-template-columns: 41% 48%;
}
.footer-inner-con a:hover{
    color: var(--green-color);
}
/*  */
.sub-banner-main-con {
    background: url(../images/sub-banner-bg-img.png) no-repeat center;
    background-size: cover;
    padding: 200px 0 160px;
    height: 912px;
    position: relative;
}
.sub-banner-inner-con {
    display: grid;
    gap: 60px;
    grid-template-columns: 47% 48%;
    align-items: center;
    max-width: 1262px;
    margin: 0 auto;
}
.sub-banner-img-con {
    text-align: right;
}
.sub-banner-text-con .breadcrumb {
    display: inline-flex;
    background: rgb(0 0 0 / 10%);
    border-radius: 10px;
    padding: 11px 23px;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
    min-width: 214px;
}
.sub-banner-text-con .breadcrumb li {
    color: var(--green-color);
    font-size: 16px;
}
.sub-banner-text-con .breadcrumb li a{
    color: var(--primary-color);
    transition: .3s ease-in-out;
}
.sub-banner-text-con .breadcrumb li a:hover{
    color: var(--green-color);
}
.sub-banner-text-con .breadcrumb-item+.breadcrumb-item::before {
    content: ">>";
    color: var(--primary-color);
}
.sub-banner-text-con span{
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}
.sub-banner-text-con h1 {
    margin-bottom: 24px;
}
.sub-banner-text-con p {
    margin-bottom: 28px;
    color: var(--primary-color);
}
/*  */
.about-detail-box {
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
    border-radius: 15px;
    background: var(--primary-color);
    padding: 46px 30px;
    transition: .3s ease-in-out;
    border-top: 2px solid var(--secondary-color);
}
.about-detail-box:hover{
    border-color: var(--accent);
}
.about-detail-box p:last-child{
    margin-bottom: 0;
}
.about-details-inner-con {
    display: grid;
    gap: 29px;
    position: relative;
    grid-template-columns: 31.6% 31.6% 31.6%;
}
.about-details-inner-con::before, .about-details-inner-con::after {
    content: "";
    background: url(../images/hosting-types-shape.png) no-repeat center;
    width: 175px;
    height: 175px;
    background-size: contain;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.about-details-inner-con::before {
    left: -71px;
}
.about-details-inner-con::after {
    right: -71px;
}
/*  */
.about-hosting-site-main-con{
    background: url(../images/style1-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.about-hosting-site-inner-con {
    display: grid;
    grid-template-columns: 49% 51%;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}
.about-hosting-site-img-con {
    background: url(../images/about-hosting-site-bg-img.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.about-hosting-site-content-con {
    background: var(--primary-color);
    padding: 88px 52px 75px;
}
.about-hosting-site-content-con ul li{
    font-weight: 500;
    color: var(--secondary-color);
    padding-left: 32px;
    margin-bottom: 7px;
}
.about-hosting-site-content-con ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 9px;
    color: var(--primary-color);
    width: 16px;
    height: 16px;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-hosting-site-content-con .primary-btn a{
    height: 58px;
}
.about-hosting-site-content-con p{
    line-height: 28px;
}
.about-hosting-site-content-con h2{
    margin-bottom: 16px;
}
.about-hosting-site-content-con ul{
    margin-bottom: 26px;
}
/*  */
.about-counter-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.about-hosting-counter span{
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: var(--secondary-color);
}
.about-hosting-counter {
    display: flex;
    align-items: center;
}
.about-hosting-counter-con {
    border-top: 2px solid var(--secondary-color);
    background: var(--primary-color);
    padding: 40px 30px 34px;
    border-radius: 15px;
    transition: .3s ease-in-out;
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
}
.about-hosting-counter-con:hover{
    border-color: var(--accent);
}
.about-hosting-counter-con small{
    font-size: 16px;
}
.about-hosting-counter-con figure{
    margin-bottom: 26px;
}
/*  */
.contact-links-inner-con {
    display: grid;
    gap: 30px;
    position: relative;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.contact-box {
    padding: 50px 34px 43px;
    background: var(--primary-color);
    border-radius: 15px;
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
    border-top: 2px solid var(--secondary-color);
    display: flex;
    transition: .3s ease-in-out;
    flex-direction: column;
}
.contact-box:hover{
    border-color: var(--accent);
}
.contact-box ul li{
    position: relative;
    padding-left: 29px;
    margin-bottom: 2px;
}
.contact-box ul{
    margin-bottom: 24px;
}
.contact-box ul li a {
    font-size: 16px;
    display: inline-block;
    color: var(--text-color);
}
.contact-box ul li a:hover{
    color: var(--accent);
}
.contact-box ul li a i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent);
}
.contact-box h6{
    margin-bottom: 11px;
}
.contact-box .primary-btn{
    margin-top: auto;
}
.contact-box figure {
    margin-bottom: 34px;
}
.contact-links-inner-con::before, .contact-links-inner-con::after {
    content: "";
    background: url(../images/hosting-types-shape.png) no-repeat center;
    width: 175px;
    height: 175px;
    background-size: contain;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.contact-links-inner-con::before {
    left: -71px;
}
.contact-links-inner-con::after {
    right: -71px;
}
.contact-box .primary-btn a{
    min-width: 162px;
    padding: 10px 20px;
}
/*  */
/*  */
.contact-map-con iframe {
    width: 100%;
    height: 555px;
    filter: grayscale(100%);
    border: 0;
    outline: 0;
    display: block;
}
/*  */
.contact-form-inner-con ul li input, .contact-form-inner-con ul li textarea {
    width: 100%;
    padding: 16px 26px;
    border-radius: 10px;
    border: 0;
    font-size: 16px;
    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: 66px;
}
.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: 34px;
}
.contact-form-inner-con .form-box ul li:last-child{
    grid-column: 1/-1;
}
.submit-btn button {
    min-width: 186px;
    border-radius: 10px;
    background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    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;
}
.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;
}
/*  */
.shared-hosting-types-inner-con {
    display: grid;
    gap: 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.shared-hosting-types-inner-con .hosting-type-box {
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
    overflow: hidden;
    padding: 33px 20px 40px 29px;
    border-radius: 15px;
    background: var(--primary-color);
    border-top: 2px solid var(--secondary-color);
    border-bottom: 0;
}
.shared-hosting-types-inner-con .hosting-type-box ul li {
    font-size: 14px;
    padding-left: 25px;
    margin-bottom: 5px;
}
.shared-hosting-types-inner-con .plan-price-selection select {
    font-size: 14px;
    line-height: 18px;
    height: 41px;
    border-radius: 10px;
    padding: 5px 33px 5px 19px;
    border: 1px solid var(--border-color);
    outline: none;
    width: 100%;
    appearance: none;
    background: url(../images/angle-down-img.png) no-repeat right;
    background-position-x: 93%;
}
.shared-hosting-types-inner-con .plan-price-selection {
    margin-bottom: 18px;
}
.shared-hosting-types-inner-con .primary-btn a{
    width: 100%;
}
.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: 19px;
}
.shared-features-main-con{
    background: url(../images/style1-bg-img.jpg) no-repeat center;
    background-size: cover;
}
.shared-script-install-inner-con {
    display: grid;
    gap: 50px;
    grid-template-columns: 43% 53%;
    align-items: center;
}
.shared-script-install-main-con {
    padding: 50px 0;
}
.shared-script-install-content-con .primary-btn a{
    height: 58px;
}
.shared-script-install-content-con h2{
    margin-bottom: 23px;
}
.shared-script-install-content-con p:nth-child(3){
    margin-bottom: 26px;
}
/*  */
/*  */
.dedicated-banner-main-con .sub-banner-img-con figure{
    text-align: end;
    margin-top: -60px;
}
.dedicated-banner-main-con.sub-banner-main-con {
    padding: 137px 0 243px;
}
/*  */
.dedicated-price-inner-con table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.dedicated-price-inner-con table th, .dedicated-price-inner-con table td {
    padding: 15px 8px 14px;
    text-align: center;
}
.dedicated-price-inner-con table tr:last-child td{
    padding-bottom: 20px;
}
.dedicated-price-inner-con table th {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    padding: 22px 10px;
    background: var(--accent);
    border-right: 1px solid rgb(255 255 255 / 30%);
}
.dedicated-price-inner-con table th:last-child,
.dedicated-price-inner-con table th:nth-child(6){
    border-right: 0;
}
.dedicated-price-inner-con {
    overflow: hidden;
    border-radius: 15px;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
}
.dedicated-price-inner-con table td{
    font-size: 14px;
}
.dedicated-price-inner-con table td:first-child{
    font-weight: 500;
}
.dedicated-price-inner-con table td .primary-btn a {
    height: 40px;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 500;
    min-width: 124px;
}
.dedicated-price-inner-con .hosting-price-box {
    margin-bottom: 0;
    padding-top: 0;
    border-top: 0;
    justify-content: center;
}
.dedicated-price-inner-con .hosting-price-box span {
    font-size: 16px;
    line-height: 20px;
    color: var(--secondary-color);
}
.dedicated-price-inner-con .hosting-price-box small {
    font-size: 16px;
    line-height: 22px;
    color: var(--secondary-color);
}
.dedicated-price-inner-con table th:first-child,
.dedicated-price-inner-con table th:nth-child(2){
    width: 16%;
}
.dedicated-price-inner-con table tbody tr td{
    background: var(--primary-color);
}
.dedicated-price-inner-con table tbody tr:nth-child(even) td{
    background: #f5fbff;
}
/*  */
.vps-hosting-features-inner-con {
    display: grid;
    gap: 47px 30px;
    grid-template-columns: 23% 23% 23% 23%;
}
.vps-hosting-feature-box {
    border-radius: 15px;
    box-shadow: 5px 0px 87px rgb(208 235 251 / 36%);
    background: var(--primary-color);
    padding: 41px 33px 30px;
    position: relative;
    z-index: 1;
    border-top: 2px solid var(--secondary-color);
    display: flex;
    transition: .3s ease-in-out;
    flex-direction: column;
    transition: .3s ease-in-out;
}
.vps-hosting-feature-box:hover{
    border-color: var(--accent);
}
.vps-hosting-feature-box figure{
    margin-bottom: 23px;
}
/*  */
/* 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;
    border-radius: 25px;
    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-top-right-radius: 25px;
    border-right: 0;
}
.reseller-inner-con thead th {
    padding: 26px 28px 24px;
    border-top: 0;
}
.reseller-inner-con thead th .primary-btn a{
    padding: 5px 10px;
    min-width: 142px;
}
.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(--accent);
}
.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 / 15%);
}
.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 {
    border-top-left-radius: 25px;
    background: var(--accent);
    border-right: 0;
}
.reseller-inner-con tbody tr:last-child td:first-child {
    border-bottom-left-radius: 25px;
}
.reseller-inner-con tbody tr:last-child td:last-child {
    border-bottom-right-radius: 25px;
}
/* reseller table end */
.popular-domains-inner-con {
    display: grid;
    gap: 30px;
    position: relative;
    grid-template-columns: 31.5% 31.5% 31.5%;
}
.popular-domain-box {
    padding: 40px 34px 50px;
    background: var(--primary-color);
    border-radius: 15px;
    position: relative;
    transition: .3s ease-in-out;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 5px 0 87px rgb(208 235 251 / 65%);
}
.popular-domain-box:hover{
    border-color: var(--accent);
}
.popular-domain-box:hover .save-percentage-txt{
    background: var(--accent);
}
.save-percentage-txt {
    font-size: 14px;
    line-height: 23px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 5px 12px;
    position: absolute;
    left: 34px;
    top: -15px;
}
.popular-domain-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 22px;
}
.popular-domain-price .hosting-price-box{
    margin-bottom: 0;
}
.popular-domains-inner-con::before, .popular-domains-inner-con::after {
    content: "";
    background: url(../images/hosting-types-shape.png) no-repeat center;
    width: 175px;
    height: 175px;
    background-size: contain;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translateY(-50%);
}
.popular-domains-inner-con::before {
    left: -71px;
}
.popular-domains-inner-con::after {
    right: -71px;
}
.popular-domain-price small{
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    color: var(--accent);
}
.popular-domain-box p{
    padding-right: 30px;
    margin-bottom: 14px;
}
.popular-domain-box figure{
    margin-bottom: 20px;
}
/*  */
/*  */
.domain-price-inner-con table {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}
.domain-price-inner-con table th, .domain-price-inner-con table td {
    padding: 15px 10px 14px;
    text-align: center;
    background: var(--primary-color);
}
.domain-price-inner-con table tr:last-child td{
    padding-bottom: 20px;
}
.domain-price-inner-con table th {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
    padding: 20px 10px;
    background: var(--accent);
    border-right: 1px solid var(--primary-color);
}
.domain-price-inner-con table th:last-child,
.domain-price-inner-con table th:nth-child(5){
    border-right: 0;
}
.domain-price-inner-con {
    border-radius: 15px;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    overflow: hidden;
    box-shadow: 1px 0 59px rgb(211 221 253 / 30%);
    border-bottom: 2px solid var(--secondary-color);
}
.domain-price-inner-con table td{
    font-size: 16px;
}
.domain-price-inner-con table td .primary-btn a{
    height: 40px;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 500;
}
.domain-price-inner-con table tbody tr td{
    background: var(--primary-color);
}
.domain-price-inner-con table tbody tr:nth-child(even) td{
    background: #f5fbff;
}
.domain-price-inner-con table tbody tr td:not(:last-child) {
    border-right: 1px solid var(--border-color);
}
.domain-price-inner-con table tbody tr td:nth-last-child(2){
    border-right: 0;
}
/*  */
.pricing-shared-hosting{
    background: url(../images/style2-bg-img.jpg) no-repeat center;
    background-size: cover;
}
/*  */
/* 404 page styling start here */
.error-section {
    height: 100vh;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
        background: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    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: 15px;
    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: 15px;
    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: linear-gradient(to right, #0bc894 0%, #29f5b1 100%);
    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(11, 200, 148, 0.99)
    }

    to {
        box-shadow: 0 0 0 25px rgb(252, 143, 9, .01)
    }
}
@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(11, 200, 148, .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 -------------------------------------------------------*/