/* --------------------
 CSS TABLE WizzarCo.
 ----------------------

/* Import Fonts */
@import url('https://web.archive.org/web/20210303001449cs_/https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Overpass:100,200,300,400,600,700,800,900');

/*  General Style */
body {
    font-family: 'Open Sans';
}

.custom-width {
    width: 1250px;
    margin: auto;
    display: block;
}

input::placeholder {
    color: #cbbddd !important;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.img-center {
    margin: 0 auto;
}

.text-overflow {
    overflow: hidden;
}

.bold-text {
    font-weight: 900;
}

/* COLORS */
.green-color {
    color: #14d468;
}

.blue-color {
    color: #4270e4;
}

.blue-bg {
	background: #4270e4;
}

.cyan-bg {
	background: #20C2FF;
}

.green-bg {
    background: #14d468;
}

.orange-bg {
    background: #ff7f00;
}

.purple-bg {
    background: #8A2BE2;
}

.gray-bg {
    background: #F7F9FF;
}

.white-bg {
    background: #fff !important;
}

/* FONTS */
h2,
h3 {
    color: #5e58aa;
    font-family: 'Overpass';
    font-weight: 600;
    margin-top: 0;
}

h4,
h5,
h6 {
    color: #5f5aac;
    font-family: 'Overpass';
    margin-top: 0;
    font-weight: 500;
}

p,
li,
a {
    color: #9aa6ca;
    transition: .2s linear;
    font-family: 'Open Sans';
    margin-bottom: 0;
}

i {
	color: #1E90FF;
	transition: .2s linear;
    font-family: 'Open Sans';
    margin-bottom: 0;
}

a:hover {
    text-decoration: none;
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

.down-arrow2 {
    width: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 0;
    border-style: solid;
    border-width: 20px 25px 0 25px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
}

.down-arrow2.gray-arrow {
    border-color: #F7F9FF transparent transparent transparent;
}

.down-arrow::before {
    content: '';
    width: 0;
    height: 0;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-style: solid;
    position: absolute;
    border-width: 15px 18px 0 18px;
    border-color: #3d69da transparent transparent transparent;
}
.border-top {
    border-top: 1px solid #f0f0f0;
}
.no-shadow {
    box-shadow: 0 0 0 !important;
    border: 0 !important;
}
/* Padding and spacing */

.padding-top70 {
    padding-top: 100px;
}

.padding-bottom70 {
    padding-bottom: 100px;
}

.padding-top60 {
    padding-top: 70px;
}

.padding-bottom60 {
    padding-bottom: 70px;
}

.padding-top50 {
    padding-top: 60px;
}

.padding-bottom50 {
    padding-bottom: 60px;
}

.padding-top40 {
    padding-top: 50px;
}

.padding-bottom40 {
    padding-bottom: 50px;
}

.padding-top30 {
    padding-top: 40px;
}

.padding-bottom30 {
    padding-bottom: 40px;
}

.margin-top50 {
    margin-top: 60px !important;
}

.margin-bottom50 {
    margin-bottom: 60px !important;
}

/* Main Title */
.main-title {
    width: 750px;
    margin: 0 auto;
    padding:0 0 60px;
}

.title-line {
    width: 150px;
    border-bottom: 2px dotted #14d468;
    opacity: .5;
    margin: 20px auto 5px;
}

.main-title p {
    font-size: 18px;
}

.main-title h2 {
    font-size: 36px;
    font-weight: 900;
    color: #5e58aa;
}

.main-title.title-white h2 {
    color: #ffffff;
}

.main-title.title-white p {
    color: #e0e2ff;
}

/* BUTTONS */
.buttons {
    display: block;
}
.btn-shadow {
    box-shadow: 0 8px 40px rgba(18, 9, 39, 0.13);
}
.btn {
    padding: 10px 35px;
    font-size: 14px;
    transition: .1s linear;
    border-radius: 3px;
    color: #838eb1;
}

.btn:hover {
    background: #4270e4;
    color: #ffffff;
}

.btn-large {
    font-size: 15px;
    padding: 14px 42px 14px;
}

.btn>i {
    padding-left: 7px;
    font-size: 14px;
}

.btn-medium {
    font-size: 14px;
    padding: 12px 35px 12px;
}

.btn-green {
    background: #14d468;
    color: #ffffff;
}

.btn-green:hover {
    background: #08bd56;
}

.btn-gray {
    background: #f5f8ff;
    color: #a086c0;
}

.btn-blue {
    background: #4270e4;
    color: #ffffff;
}
.btn-white {
    background: #ffffff;
}
.btn-blue:hover {
    background: #1b4cc9;
}

.btn-outline {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background: #4270E4;
    border: 1px solid #4270E4 !important;
}
.outline-dark {
    color: #9ea5bd;
    border: 1px solid #cfd2db;
    background: #ffffff;
}


.seperator {
    height: 15px;
}

/* customization animations */
.fadeIn {
    animation-duration: .2s;
    animation-delay: 80ms;
}

.fadeOut {
    animation-duration: .2s;
}

.fadeInLeft {
    animation-duration: .7s;
}

.fadeInRight {
    animation-duration: .7s;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-7%, 0, 0);
        transform: translate3d(-7%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-7%, 0, 0);
        transform: translate3d(-7%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(7%, 0, 0);
        transform: translate3d(7%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(7%, 0, 0);
        transform: translate3d(7%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

/* customization animations ends here*/

/* preloader configuration */

.spinner3 {
    width: 40px;
    height: 40px;
    position: relative;
    top: 50%;
    margin: 0 auto;
    -webkit-animation: rotate 2.0s infinite linear;
    animation: rotate 2.0s infinite linear;
}

.dot1,
.dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    background-color: #4270E4;
    border-radius: 100%;
    -webkit-animation: bounce 2.0s infinite ease-in-out;
    animation: bounce 2.0s infinite ease-in-out;
}

.dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

/* preloader configuration ends here */
/*  General Style ends here */

/* navbar customization */
.top-bar {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
    display: inline-block;
    width: 100%;
}
.top-bar.margin-for-home {
    margin-bottom: 10px;
}
.top-bar a {
    font-size: 12px;
    margin-right: 25px;
    border-right: 1px solid #f0f0f0;
    padding-right: 20px;
}

.top-bar a:hover {
    color: #14d468;
}

.top-bar a>i {
    font-size: 11px;
    padding: 1px 5px 0;
}

.top-bar .custom-width .right-topbar a:last-child {
    border-right: 0;
    padding-right: 0;
}

.top-bar .right-topbar {
    float: right;
}

.top-bar .left-topbar {
    float: left;
    position: relative;
}

nav.bootsnav .megamenu-content {
    width: 60% !important;
    margin: 0 auto;
}

nav.navbar.bootsnav ul.nav>li>a.active {
    color: #14d468;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a.active {
    color: #14d468;
}

.navbar-brand>img {
    width: 120px;
    margin: 13px 0 0;
}

.navbar-brand {
    padding: 0;
}

a.navbar-btn {
    color: #ffffff;
}

.navbar-btn {
    background: #4270E4;
    border-radius: 3px;
    color: inherit;
    padding: 10px 30px;
    display: inline-block;
}

.navbar .menu-price {
    font-weight: 500;
    margin: 15px 0 10px;
    text-align: left;
}
.wrap-sticky nav.navbar.bootsnav {
    background: transparent;
    border-bottom: 0;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    border: 0 solid #e0e0e0;
    box-shadow: 0 0 40px rgba(73, 61, 94, 0.15);
    border-radius: 10px;
    margin-top: -5px;
}
.wrap-sticky nav.navbar.bootsnav.sticked {
    z-index: 22;
}
nav.navbar.bootsnav ul.dropdown-menu.megamenu-content {
    padding: 15px !important;
}

.navbar-btn:hover {
    background: #14d468 !important;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a {
    color: #9b89b3;
}

nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li a:hover {
    color: #4270E4;
    padding-left: 1px;
}

nav.navbar.bootsnav .title {
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

nav.navbar.bootsnav .title i {
    color: #8adbab;
    padding-right: 4px;
}

nav.navbar.bootsnav ul.nav>li>a {
    padding: 25px 25px;
    color: #6f4d9b;
    font-weight: 600;
    text-transform: none;
    font-size: 15px;
}
nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a {
    color: #9b89b3;
}
nav.navbar.bootsnav ul.nav>li>a:hover {
    color: #14d468;
}

.attr-nav>ul>li>a:hover {
    color: #4270E4;
}

.wrap-sticky nav.navbar.bootsnav.sticked {
    background: #ffffff;
    box-shadow: 0 0 20px rgba(73, 61, 94, 0.09);
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a {
    border: 0;
}

nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li>a:hover {
    background: #4270E4;
    color: #ffffff;
}

.attr-nav>ul>li>a span.badge {
    background: #14d468;
    padding-top: 2px;
}

.attr-nav i.fa.fa-shopping-bag {
    color: #bdbfd6;
}

.attr-nav>ul>li>a {
    color: #b6a7c9;
}

.badge-link {
    position: relative;
    margin-left: 5px;
    bottom: 1px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 1px 7px;
    background: #14d468;
    border-radius: 20px;

}

/* Home header */
.home-header {
    padding: 180px 0;
    background: linear-gradient(to right, rgba(18, 9, 39, 0.9) 0%, transparent 92%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/dedicated.jpg) center;
    background-size: cover;
}

.home-header .text-container {
    width: 600px;
}

.home-header .home-title h2 a {
    color: #14d468;
    font-size: 28px;
    font-weight: 300;
}

.home-header .btn+.btn {
    margin-left: 20px;
}

.home-header .text-container h2 {
    color: #ffffff;
}

.home-header .text-container h3 {
    font-weight: 300;
    font-size: 33px;
    color: #ffffff;
    margin: 40px 0;
}

.home-header p {
    font-size: 17px;
    color: #c5cee6;
}

/* Home header ends here */

/* Home Page Slider */
.home-carousel {
    padding: 135px 0 135px;
}

.carousel-list i {
    padding-right: 5px;
}

.home-carousel img.img-responsive {
    margin-left: 30px;
    position: absolute;
    width: 590px;
    z-index: 2;
}
.home-carousel img.img-absolute {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -80px;
    opacity: .095;
    width: 700px;
}
.home-carousel p {
    font-size: 17px;
    line-height: 26px;
}

.home-carousel .buttons p {
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    margin-left: 25px;
}

.home-carousel .buttons {
    margin-top: 50px;
}

.home-carousel .animation-text {
    font-size: 30px;
    font-weight: 200;
    margin: 15px 0 15px;
}

.home-title h2 {
    font-size: 49px;
    margin-bottom: 5px;
    color: #5e58aa;
    font-weight: 600;
}

.home-carousel .btn>i {
    font-size: 11px;
}

/* home tabs switcher */
.tabs-switcher {
    position: relative;
    display: inline-block;
    border-radius: 10px;
    margin-top: 75px;
    background: #ffffff;
    box-shadow: 0 -3px 50px rgba(18, 9, 39, 0.07);
}
.tabs-switcher .nav-tabs li.active::after {
    content: '';
    width: 0;
    height: 0;
    top: -13px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-style: solid;
    position: absolute;
    border-width: 0 13px 13px 13px;
    border-color: transparent transparent #ffffff transparent;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    border: 0;
    border-radius: 10px;    
    color: #a086c0;
    background: #ffffff;
}

.nav-tabs>li>a {
    border: 0;
    padding: 20px 30px;
}

.nav-tabs>li>a:hover {
    background: transparent;
    color: #8568a8;
}

.nav-tabs {
    border-bottom: 0;
}

/* leftsidebar customization */
.left-sidebar {
    width: 45px;
    height: 820px;
    position: absolute;
    background: #F7F9FF;
    box-shadow: 0 0px 20px rgba(56, 27, 105, 0);
    top: 0;
    left: 0;
}

.left-sidebar .sidebar-socials {
    position: absolute;
    bottom: 17%;
    left: 0;
    right: 0;
}

.left-sidebar .contact-links {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
}

.left-sidebar .contact-links a:hover {
    cursor: pointer;
}

.left-sidebar .notification {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    font-size: 9px;
    color: #ffffff;
    position: absolute;
    right: 10px;
    top: 27%;
    text-align: center;
    background: #14d468;
}

.left-sidebar .link-style i {
    display: grid;
    text-align: center;
    color: #7f42c5;
    opacity: 0.3;
    margin-bottom: 25px;
    font-size: 14px;
    transition: .2s linear;
}

.fadeInOut {
    animation-duration: .1s !important;
}

.left-sidebar .link-style i:hover {
    opacity: 0.8;
}

/* home page modal */
.modal-contact {
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: inline-block;
    background: #F7F9FF;
    text-align: center;
    padding: 15px;
}

.modal-contact i {
    color: #8adbab;
    font-size: 30px;
    margin-bottom: 15px;
}

#myModal .modal-footer button {
    display: block;
    width: 100%;
}

/* Search domain section */
.search-domain {
    background: #4270e4;
    padding: 60px 0 50px;
    z-index: 2;
    position: relative;
}

.search-domain h4 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Overpass';
}

.search-domain p {
    color: #f4f5fc;
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}
.search-domain .green-color {
    color: #fff;
    font-weight: 600;
}
.search-domain .domain-input {
    padding-top: 5px;
    width: 600px;
}

.search-domain input {
    border-radius: 30px 0 0 30px;
    height: 55px;
    font-size: 13px;
    transition: .2s linear;
    border: 0;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.2);
}

.search-domain input::placeholder {
    padding-left: 15px;
}

.search-domain .form-group {
    display: flex;
    flex-direction: row;
}

.search-domain .btn-domain {
    border-radius: 0 30px 30px 0;
    background: #14d468;
    padding-top: 13px;
    color: #ffffff;
    font-size: 14px;
}

.search-domain .text {
    margin-right: 20px;
    margin-left:50px;
}

.search-domain .ltds {
    position: relative;
    margin-left: 10px;
}

.search-domain .ltds p {
    word-spacing: 40px;
    font-size: 13px;
    padding-left: 10px;
}

/* Search Domain ends here */

/* Pricing table switcher */
/* toggle pricing */

.toggle,
.toggler {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

.toggler {
    color: #ddd;
    transition: .2s;
    font-weight: bold;
}

.toggler--is-active {
    color: #14d468;
}

.pricing-section .b {
    display: block;
}

.toggle {
    position: relative;
    width: 90px;
    height: 30px;
    border-radius: 100px;
    background-color: #14d468;
    overflow: hidden;
    box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

.check:checked~.switch {
    right: 2px;
    left: 57.5%;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.3);
    transition-property: left, right;
    transition-delay: .08s, 0s;
}

.switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 57.5%;
    background-color: #000;
    border-radius: 36px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.3);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-section {
    width: 100%;
    text-align: center;
}
.pricing-section .main-title {
    padding-bottom: 30px;
}
.pricing-columns #pricing-chart,
.pricing-columns-both #pricing-chart {
    margin-top: 30px;
}

.pricing-columns #pricing-chart #smaller-plans,
.pricing-columns-both #pricing-chart #smaller-plans {
    display: block;
}

.pricing-columns #pricing-chart .plan,
.pricing-columns-both #pricing-chart .plan {
    background-color: #fff;
    position: relative;
    color: #4F2B44;
    padding: 14px;
    border-right: 1px solid #f0f0f0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    width: 100%;
    border-radius:10px;
}

.pricing-columns #pricing-chart .plan:first-child,
.pricing-columns-both #pricing-chart .plan:first-child {
    border-left: 1px solid #f0f0f0 !important;
}

.pricing-columns #pricing-chart .plan:before,
.pricing-columns-both #pricing-chart .plan:before {
    content: "";
    position: absolute;
    height: 3px;
    left: -0px;
    top: 0;
    background-color: #b8e9cd;
    width: 100%;
}
.pricing-columns #pricing-chart .plan .price,
.pricing-columns-both #pricing-chart .plan .price {
    font-size: 26px;
    text-align: left;
    width: 100%;
    margin-bottom: 25px;
    color: #5e58aa;
    margin-top: 17px;
}

.pricing-columns #pricing-chart .plan .price .dollar,
.pricing-columns-both #pricing-chart .plan .price .dollar {
    top: -10px;
    letter-spacing: -1px;
    left: 3px;
}

.pricing-columns #pricing-chart .plan .price .amount,
.pricing-columns-both #pricing-chart .plan .price .amount {
    font-size: 30px;
    font-weight: 200;
}

#yearly .amount,
#yearly .slash,
#yearly .dollar,
#yearly .month {
    color: #14d468;
}

.pricing-columns #pricing-chart .plan .price .slash,
.pricing-columns-both #pricing-chart .plan .price .slash {
    font-weight: 200;
    left: -2px;
}

.pricing-columns #pricing-chart .plan .price .month,
.pricing-columns-both #pricing-chart .plan .price .month {
    font-weight: 200;
    left: -7px;
}

.pricing-columns #pricing-chart .plan ul,
.pricing-columns-both #pricing-chart .plan ul {
    padding: 0 18px;
    margin-bottom: 40px;
}

.pricing-columns #pricing-chart .plan ul li,
.pricing-columns-both #pricing-chart .plan ul li {
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    margin-bottom: 15px;
}

.pricing-columns i {
    color: #14d468;
    padding-right: 1px;
    font-size: 12px;
    padding-top: 1px;
}

.pricing-columns #pricing-chart .plan ul li span,
.pricing-columns-both #pricing-chart .plan ul li span {
    color: #9e9e9e;
    display: inline-block;
    margin-left: 7px;
    font-weight: 400;
    font-size: 14px;
}
.pricing-columns .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}
/* default pricing tables */
.pricing-tables {
    background: #F7F9FF;
}
.pricing-tables.white-bg .table {
    background: #F7F9FF;
}
.pricing-tables.white-bg .table .btn {
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 0 10px rgba(54, 46, 97, 0.02);
}
.table {
    transition: .1s linear;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 0 0 rgba(53, 45, 97, 0.059);
    border: 1px solid #f5f1ff;
    padding: 20px;
    width: auto;
    text-align: center;
    margin: 0 5px;
}

.custom-pricing .table-list li {
    padding-left: 25px;
}

.custom-pricing .table {
    margin: 0 20px;
}

.table-responsive {
    overflow: hidden;
    padding: 10px;
}

.pricing-tables .table-content p {
    font-size: 16px;
}

.less-opacity {
    opacity: 0.9;
}

.table-list {
    margin: 35px 0;
    margin-left: 10px;
}

.table-list i {
    color: #14d468;
    width: 10px;
    margin-right: 8px;
    font-size: 13px;
    margin-top: 4px;
}

.table-list li {
    padding-bottom: 10px;
    font-size: 14px;
    text-align: left;
    display: flex;
}

.pricing-tables .price {
    background: #FFFFFF;
    color: #a495b8;
    box-shadow: 0 -5px 30px rgba(54, 46, 97, 0.08);
    max-width: 270px;
    width: 200px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 20px;
    padding: 9px 10px 22px;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto -18px;
}

.pricing-tables .price.green-bg {
    background: #14d468;
    color: #ffffff;
}

.pricing-tables .price.purple-bg {
    background: #8A2BE2;
    color: #ffffff;
}

.pricing-tables .price.cyan-bg {
	background: #20C2FF;
	color: #ffffff;
}

.pricing-tables .price.blue-bg {
    background: #4270e4;
    color: #ffffff;
}

.pricing-tables .price.orange-bg {
    background: #ff7f00;
    color: #ffffff;
}

.pricing-tables .price.red-bg {
    background: #e72f00;
    color: #ffffff;
}

.pricing-tables .price.nodejs-bg {
    background: #4CAF50;
    color: #ffffff;
}

.pricing-tables .price.python-bg {
	background: #0c79ba;
	color: #ffffff;
}

.pricing-tables .price.amongusvert-bg {
	background: #0b4c24;
	color: #ffffff;
}

.pricing-tables .price.amongusrouge-bg {
	background: #780336;
	color: #ffffff;
}

.pricing-tables .price.amongusbleu-bg {
	background: #010394;
	color: #ffffff;
}

.pricing-tables .buttons .btn {
    display: block;
    width: 90%;
    margin: 0 auto;
    border-radius: 4px;
    padding: 10px 40px;
    border: 1px solid #f5f1ff;
    box-shadow: 0 0 0 rgba(54, 46, 97, 0.03);
}

.pricing-tables h4 {
    font-size: 21px;
    font-weight: 600;
    font-family: 'Overpass';
    margin-top: 30px;
    color: #6d69aa;
}

/* WEB */

.our-client-img .row{
    margin-bottom: 60px;
}


.our-client-img{
    margin-bottom: 150px;
}

.our-client-img a{
    display: block;
    text-align: center;
}

.our-client-img a>img{
    opacity: 0.2;
}

.our-client-img a:hover>img{
    opacity: 0.4;
}

.our-client-img .mor-client-btn{
    margin: auto;
    margin-top: 90px;
    text-decoration: none;
    color: #9dadb7;
    font-weight: 100;
    text-transform: uppercase;
    border: 1px solid #e8ebec;
    padding: 15px 55px;
    border-radius: 50px;
    font-size: 13px;
}

.our-client-img .mor-client-btn:hover{
    color: #ffffff;
    background: #146fc1;
	text-decoration: none;
}

.ht-prf a>img {
    opacity: 0.4;
}

.ht-prf a:hover>img {
    opacity: 0.7;
}

.host-plan-serc-none{
    padding: 130px 0 100px;
}

.host-plan-serc-none a{
    display: block;
    margin-top: 85px;
    text-align: center;
}

.host-plan-serc-none a>img{
    width: 100px;
}

.host-plan-serc-none a>h5{
    display: block;
    color: #3f484e;
    font-size: 25px;
    font-weight: bold;
    margin-top: 28px;
}

.host-plan-serc-none a>p{
    text-align: center;
    display: block;
    width: 100%;
    color: #a5aeb3;
    font-size: 15px;
    margin-top: -5px;
}

.host-plans-title-non-index{
    text-align: center;
    display: block;
    width: 100%;
    color: #bfc7cc;
    font-size: 17px;
}

.host-plans-title-non-index span{
    display: block;
    margin-top: 16px;
    color: #525b61;
    font-size: 32px;
    font-weight: bold;
}

/* pricing tables style 2 */
.pricing-tables-light .main-title {
    margin-bottom: 40px;
}

.pricing-tables-light .table-content img {
    padding: 30px 0;
}

.pricing-tables-light .table-content {
    width: auto;
    text-align: center;
    height: auto;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    background: #ffffff;
    border-top: 7px solid #14d468;
    box-shadow: 0 0 20px rgba(54, 46, 97, 0.04);
    padding: 0 15px 35px 15px;
}

.table-circle {
    border-radius: 100%;
    width: 100px;
    height: 100px;
    font-size: 30px;
    text-transform: uppercase;
    color: #ffffff;
    background: #14d468;
    line-height: 100px;
    margin: 0 auto;
    margin-bottom: 0;
    position: relative;
    bottom: 50px;
}

.table-circle.blue-bg {
    background: #4270E4;
}

.pricing-tables-light .table-content.blue-border {
    border-color: #4270E4;
}

.pricing-tables-light ul {
    margin-top: -20px;
}

.pricing-tables-light .table-content li {
    font-size: 16px;
    text-align: left;
    display: block;
    padding-left: 50px;
    padding-bottom: 10px;
    display: flex;
}

.pricing-tables-light .table-content li:last-child {
    padding-bottom: 0;
}

.pricing-tables-light .table-content i {
    padding-right: 10px;
    padding-top: 4px;
    color: #92DF7F;
    font-size: 14px;
}

.pricing-tables-light .table-content h4 {
    font-weight: 500;
    font-size: 19px;
}

.pricing-tables-light .table-content h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 30px 0;
}

.pricing-tables-light .table-content .price p {
    color: #ffffff;
    font-weight: 300;
    font-family: 'Nunito';
    font-size: 14px;
}

.pricing-tables-light {
    background: #F7F9FF;
}

.pricing-tables-light small {
    color: #9BC5D2;
    opacity: .9;
}

.pricing-tables-light .table-content img {
    width: 320px;
    padding: 30px 0;
}

/* pricing tables ends here */

/* default pricing table ends here */

/* dedicated server pricing table */
.dedicated-pricing {
    background: #fff;
}

.dedicated-pricing .main-title {
    padding-bottom: 30px;
}

.dedicated-pricing table {
    width: 100%;
}

.custab {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
    border-radius: 5px;
    border-top: 7px solid #ebf2ff !important;
    border: 1px solid transparent;
}

.dedicated-pricing h3 {
    display: inline-block;
    box-shadow: 0 0 20px rgba(56, 27, 105, 0.09);
    padding: 15px 25px;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 15px;
}

.table>thead>tr>th {
    border-bottom: 0px;
    padding: 15px 13px 15px 30px;
    color: #6763a0;
    background: #ffffff;
}

.table>tbody>tr>td {
    padding: 20px 15px 5px 30px;
    position: relative;
    border-top: 0;
    text-align: left;
    color: #98a0bb;
}

.table .btn {
    font-size: 13px;
    border-radius: 2px;
    padding: 5px 11px;
    position: relative;
    bottom: 8px;
}

.table .btn>i {
    font-size: 9px;
}

.price-in-table {
    font-weight: 600;
    color: #6e7cac !important;
}

.table>tbody>tr>td:first-child {
    color: #929fc5;
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background: #F7F9FF;
}


/* pricing table */

/* Seperated Section */
.dual-section {
    background: linear-gradient(45deg, #4270e4 0%, #2c59cc 100%);
}

.dual-section .text {
    overflow: hidden;
}

.dual-section .features {
    margin-bottom: 45px;
}
.dual-section .features:last-child {
    margin-bottom: 0;
}
.dual-section h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 19px;
}

.dual-section p {
    color: rgb(237, 240, 250);
}

.dual-section i {
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 55px;
    width: 60px;
    line-height: 55px;
    text-align: center;
    color: #ffffff;
    text-align: center;
    font-size: 23px;
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    margin: 3px 15px 0;
}

.dual-section .features:last-child {
    margin-bottom: 0;
}
.dual-section .left-content {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 40px;
}

.dual-section .right-content {
    padding-left: 20px;
}


/* Tab Switcher */
.tabs {
    background: #f7f5ff;
}
.tabs .nav-tabs>li.active>a, .tabs .nav-tabs>li.active>a:focus, .tabs .nav-tabs>li.active>a:hover {
    border-radius: 0;
}
.tabs .tab-content {
    margin-top: 35px;
}
.tabs .text {
    padding-right: 50px;
}

.tabs .tab-lists .host-feature {
    margin-bottom: 20px;
}
.tabs .tab-lists .host-feature:last-child {
    margin-bottom: 0;
}
.tabs img {
    border-radius: 10px;
    width: 600px;
}

.tabs .hosting-tabs ul {
    text-align: center;
}

.tabs .tab-title h3 {
    font-size: 30px;
    display: inline-block;
    padding-top: 10px;
    font-weight: 900;
    color: #5e58aa;
}

.tabs .tab-title p {
    font-size: 15px;
}

.tabs .tab-title {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaebfd;
}

.tabs h4 {
    font-size: 20px;
    font-weight: 400;
}

.tabs .hosting-tabs {
    background-color: #eaebfd;
}

.tabs ul.nav.nav-tabs {
    margin-top: 0 !important;
}

.tabs .nav-tabs>li {
    display: inline-block;
    float: none;
}

.tabs .nav-tabs>li>a {
    padding: 35px 50px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Open Sans';
}

.tabs .nav-tabs>li.active>a,
.tabs .nav-tabs>li.active>a:focus,
.tabs .nav-tabs>li.active>a:hover {
    background: #F7F9FF;
    line-height: 20px;
}

.tabs .nav-tabs li.active::after {
    content: '';
    width: 0;
    height: 0;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-style: solid;
    position: absolute;
    border-width: 15px 15px 0 15px;
    border-color: #F7F9FF transparent transparent transparent;
}

.tabs .text {
    overflow: hidden !important;
}

.tabs .tab-lists {
    display: grid;
}

.tabs .tab-lists i {
    width: 40px;
    height: 40px;
    background: #14d468;
    border-radius: 100%;
    border: 3px solid #ffffff;
    color: #ffffff;
    margin: 0 10px 0 0;
    text-align: center;
    line-height: 37px;
    font-size: 15px;
}

.tabs .boxes {
    text-align: center;
    border: 1px solid #f0f0f0;
    padding: 15px 10px 10px;
}

.tabs .boxes i {
    color: #14d468;
    margin: 10px 0 17px;
    font-size: 35px;
}

/* tabs section ends here */

/*----------  Entry Text  ----------*/
.entry-text h2 {
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 20px;
}
.entry-text p {
    font-size: 18px;
    line-height: 30px;
}
.line {
    width: 250px;
    background: #f4f2fc;
    height: 5px;
    margin: 0 auto 20px;
}
.entry-text .text-container {
    padding: 0 30px;
}
.entry-text .buttons {
    margin-top: 40px;
}
@media only screen and (max-width:1200px) {
    .entry-text .text-container {
        padding: 0;
    }
}
/*----------  Entry Text ends here  ----------*/

/*----------  SSL BOXES  ----------*/
.all-boxes {
    margin-top: -120px;
}
.all-boxes.no-margin {
    margin-top: 0 ;
}
.all-boxes .ssl-box {
    background: linear-gradient(to bottom, #fcfdff 0%,#fbf9ff 100%);
    box-shadow: 0 3px 5px rgba(73, 61, 94, 0.2);
    border-radius: 10px;
    padding: 45px 20px 40px;
    transition: .1s linear;
}
.all-boxes .box-header i {
    font-size: 70px;
    margin-bottom: 30px;
    color: rgba(80, 96, 168, 0.18);
}
.all-boxes h2 {
    margin-top: 25px;
    font-weight: 900;
    margin-bottom: 0;
    color: #3dd656;
    font-size: 35px;
}
.all-boxes p {
    font-size: 16px;
}
.all-boxes .box-description a {
    margin-top: 15px;
    display: block;
}
.all-boxes .dollar-sign {
    font-size: 24px;
    position: relative;
    bottom: 10px;
}
/*----------  SSL BOXES ends here  ----------*/

/* features style one */
.features-one i {
    font-size: 35px;
    margin: 5px 20px 0 0;
    color: #ffffff;
}

.features-one .features-content {
    box-shadow: 0 0 40px rgba(73, 61, 94, 0.09);
    border-radius: 20px;
    background: #14d468;
    display: inline-block;
    padding: 45px 25px 40px;
}

.features-content .parttwo {
    display: inline-block;
    margin-top: 50px;
}

.features-one h2,
.features-one p {
    color: #ffffff;
}

.features-one .main-title p {
    color: #ffffff;
}

.features-one .text-container h2 {
    font-weight: 700;
    font-size: 17px;
}

.features-one .main-title {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
}

.features-one .text-container {
    border-right: 1px solid #f0f0f088;
    padding-right: 25px;
}

.features-content .no-border-right {
    border-right: 0 solid #f0f0f0;
}

.features-content p {
    font-size: 14px;
}

/* features style one ends here */

/* features style two */
.features-two h4 {
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    text-align: left;
}

.features-two .main-title {
    padding-bottom: 40px;
    padding-left: 0;
    width: auto;
}
.features-two .main-title h2 {
    font-size: 34px;
}
.features-two li {
    padding-bottom: 13px;
    display: flex;
}

.features-two .box-shadow {
    display: grid;
    background: url(/web/20210303001449im_/https://myheberge.com/images/png-images/world.png) top;
    background-size: cover;
    box-shadow:  0 0 80px rgba(35, 29, 68, 0.085);
    padding: 30px 20px 10px 30px;
    border-radius: 10px;
    margin-right: 20px;
}

.features-two img {
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(24, 21, 39, 0.15);
}

.features-two i {
    font-size: 13px;
    color: #14d468;
    padding-right: 8px;
    padding-top: 5px;
}

.features-two .buttons {
    margin: 7px 0 20px;
}

.features-two .buttons i {
    color: inherit;
}

/* features style two ends here */

/* Features Seven */

.features-seven .img-content {
    text-align: center;
}

.features-seven .text-container {
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    padding: 30px 15px;
}

.features-seven {
    background: #ffffff;
}

.features-seven .text {
    text-align: center;
    padding: 0 20px;
}


.features-seven h4 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
}


.features-seven i {
    color: #ffffff;
    font-size: 25px;
    width: 65px;
    height: 60px;
    line-height: 60px;
    background: #14d468;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.features-seven .row+.row {
    margin-top: 30px;
}

/* Features style six */

.features-six h4 {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
}

.features-six .main-title {
    padding-bottom: 70px;
}

.features-six .img-content {
    text-align: center;
}

.features-six .text i {
    color: #ffffff;
    font-size: 25px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #4ce28d;
    text-align: center;
    margin-bottom: 25px;
    z-index: 2;
    border-radius: 100%;
    box-shadow: 0 4px 10px rgba(54, 46, 97, 0.07);
}

.features-six .text {
    margin-top: -55px;
}

.features-six .text-container {
    border-radius: 5px;
    padding: 30px 15px;
    text-align: center;
    margin: 0 10px;
    background: #F7F9FF;
    border: 1px solid #f5f1ff;
    border-top: 5px solid #dee9dc;
}

.features-six .row+.row {
    padding-top: 50px;
}

.features-six .buttons {
    margin: 0 auto;
    text-align: center;
    margin-top: 60px;
}

/* Features style six ends here */

/* Tripple cols */
.tripple-cols i {
    background: #14d468;
    font-size: 27px;
    margin: 5px 20px 0 0;
    color: #fff;
    border: 1px solid rgba(206, 146, 77, 0.1);
    width: 65px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 7px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.tripple-cols h4 {
    font-weight: 600;
    font-family: 'Overpass';
    font-size: 19px;
}
.tripple-cols .text {
    overflow: hidden;
}
/* Tripple cols ends here */

/* FAQ */

.accordion a {
    position: relative;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #e5e5e5;
}

.faq h3 {
    margin-bottom: 20px;
}

.accordion a:hover,
.accordion a:hover::after {
    cursor: pointer;
    color: #14d468;
}

.accordion a.active {
    color: #4270E4;
}

.accordion a::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f067';
    position: absolute;
    float: right;
    right: 0;
    font-size: 15px;
    color: #14d468;
    padding: 5px;
    width: 30px;
    height: 30px;
    font-weight: 900;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}

.accordion a.active::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f00d';
    font-weight: 900;
    font-size: 15px;
    color: #4270E4;
}

.accordion .content {
    opacity: 0;
    padding: 0;
    max-height: 0;
    border-bottom: 1px solid #e5e5e5;
    overflow: hidden;
    clear: both;
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.accordion .content p {
    font-size: 16px;
}

.accordion .content.active {
    opacity: 1;
    padding: 10px 0;
    max-height: 100%;
    -webkit-transition: .1s linear;
    -o-transition: .1s linear;
    transition: .1s linear;
}

.ftr {
    text-align: center;
    margin-top: 20px;
}

/* FAQ */

/* features style four */
.features-four {
    background: #F7F9FF;
}

.features-four .text-container {
    padding: 15px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(54, 46, 97, 0.04);
}

.features-four .content-top {
    margin-bottom: 30px;
}

.features-four p {
    font-size: 14px;
}

.features-four h4 {
    font-size: 18px;
    font-weight: 500;
}

.features-four i {
    color: #14d468;
    font-size: 30px;
    margin: 5px 0 15px;
}

.features-four img {
    border-radius: 7px;
    margin-left: 20px;
}

/* features style four ends here */

/* features style five*/
.features-five {
    background: url(/web/20210303001449im_/https://myheberge.com/images/other/geometry.png) center;
}

.features-five .text-content {
    padding: 25px;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: #ffffff;
    margin-right: 25px;
    border: 1px dashed rgba(75, 55, 189, 0.13);
    transition: .1s linear;
}

.features-five .text {
    overflow: hidden;
}

.features-five img {
    width: 45px;
    margin: 5px 15px 0 0;
}

.features-five h4 {
    font-weight: 600;
    font-size: 16px;
}

.features-five .column {
    display: inline-block;
    margin-bottom: 40px;
}

.features-five i {
    color: #14d468;
    background: #ffffff;
    border: 1px dashed rgba(147, 190, 122, 0.3);
    width: 55px;
    height: 50px;
    border-radius: 5px;
    font-size: 25px;
    text-align: center;
    line-height: 50px;
    margin: 5px 15px 0 0;
}

.features-five .no-margin {
    margin-bottom: 0;
}

.features-five .btn {
    margin: 0 auto;
}

.features-five .buttons {
    margin: 50px auto 0;
    text-align: center;
    width: 200px;
}

.ff-five2 {
    background: linear-gradient(135deg, rgba(56, 48, 109, 0.97
    ) 0%, rgba(56, 48, 109, 0.8
    )100%), url(/web/20210303001449im_/https://myheberge.com/images/other/datacenter.png) center;
    background-attachment: fixed;   
}
.ff-five2 .buttons .btn {
    border-color: rgba(255, 255, 255, 0.5);
}
.ff-five2 h4 {
    color: #ffffff;
    font-size: 18px;
}

.ff-five2 p {
    color: #c5bedb;
}

.ff-five2 i {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: #3dd656;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.ff-five2 .text-content {
    background: rgba(49, 28, 73, 0.4);
    border: 1px dashed rgba(255, 255, 255, 0.1);

}

/* features style four ends here*/

/* img right section */
.img-right {
    background: #F7F9FF;
}

.img-right .text {
    padding-right: 50px;
    padding-top: 20px;
}

.img-right .text i {
    font-size: 20px;
    color: #14d468;
}

.img-right h2 {
    font-size: 32px;
}

.img-right h3 {
    margin: 30px 0;
    font-size: 22px;
    color: #aeb8d8;
    font-weight: 300;
}

.img-right p {
    font-size: 16px;
}

/* img right section ends here */

/* PAGE HEADERS */
.default-header {
    padding: 100px 0;
    background-size: cover !important;
}

.default-header .btn-green:hover {
    background: #4270E4;
}

/* background pages */
.default-header.wordpress-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/wordpress.jpg) center;
}

.default-header.bot-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/bot.jpg) center;
}

.default-header.cloud-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/cloud.jpg) center;
}

.default-header.shared-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/mc.png) center;
}

.default-header.rush-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/rushfont.jpg) center;
}

.default-header.dedicated-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/vps.jpeg) center;
}

.default-header.about-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/gmod.jpg) center;
}

.default-header.contact-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/web.png) center;
}

.default-header.error-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/error.jpg) center;
    padding: 150px 0;
}
.default-header.domain-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/domain.jpg) center;
    padding: 150px 0;
}
.default-header.ssl-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/ssl.jpg) center;
    padding: 150px 0 250px;
}

.default-header.nodejs-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/nodejsfont2.png) center;
    padding: 150px 0 250px;
}

.default-header.python-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/python.jpg) center;
    padding: 150px 0 250px;
}

.default-header.sinusbot-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/sinusbot.jpg) center;
    padding: 150px 0 250px;
}

.default-header.ts-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/tsfont.png) center;
    padding: 150px 0 250px;
}

.default-header.amongus-page {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 80%, transparent 100%), url(/web/20210303001449im_/https://myheberge.com/images/headers/amongusentier.png) center;
    padding: 150px 0 250px;
}
/* background pages ends here*/
.default-header h2,
.default-header h3,
.default-header h4,
.default-header p,
.default-header li {
    font-family: 'Open Sans';
    color: #ffffff;
}

.default-header h2 {
    font-weight: 700;
    font-size: 42px;
    font-family: 'Overpass';
}

.default-header h4 {
    color: #14d468;
}

.default-header .buttons {
    margin-top: 30px;
}

.default-header .btn-green {
    background: #14d468;
}

.default-header h4 span {
    text-decoration: line-through;
    font-weight: 300;
}

.default-header h3 {
    font-size: 35px;
    font-weight: 300;
}

.default-header p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
}

/* PAGE HEADER STYLE ENDS HERE */

/* list features */
.list-features2 {
    background: linear-gradient(45deg, #4270e4 0%, #2c59cc 100%);
}

.list-features2 li {
    padding-bottom: 15px;
    color: #ffffff;
    display: flex;
    font-size: 15px;
}

.list-features2 li::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    font-size: 10px;
    padding-top: 4px;
    padding-right: 5px;
}
.list-features2 li:last-child {
    padding-bottom: 0;
}
.list-features2 .col-sm-4:last-child .left-lists {
    border-right: 0;
}
/* list features ends here */

/* call to action */
.call-to-action {
    background: #4270e4;
    padding: 60px 0;
}

.cta-green {
    background: #14d468;
}
.call-to-action p {
    color: #E8EBF7;
}

.cta-green p {
    color: #fff;
}

.call-to-action h3 {
    color: #ffffff;
    font-size: 27px;
    font-weight: 600;
}

.call-to-action .buttons {
    margin-left: 150px;
    margin-top: 15px;
}

.call-to-action p {
    font-size: 16px;
}

.call-to-action2 {
    background: #14d468;
    padding: 25px 0 15px;
    text-align: center;
}

.call-to-action2 h4 {
    font-size: 27px;
    color: #ffffff;
    font-weight: 600;
}

/* call to action section ends here */

/* Text layouts */
.gray-layout {
    background: #F7F9FF;
}

.right-layout .text-container {
    margin-left: 30px;
}
.layout-text .text-container h3 {
    font-weight: 900;
    font-size: 31px;
}
.layout-text h4 {
    font-weight: 200;
    margin: 35px 0 0;
    font-size: 29px;
}
.layout-text h4 i {
font-size: 23px;
margin-right: 10px;
}
.layout-text .buttons {
    margin-top: 35px;
}

.layout-text .text-container {
    width: 500px;
}
.layout-text .img-absolute{
    position: absolute;
    top: -30PX;
    left: -50px;
    width: 110%;
   opacity: .13 !important;
    border: 0;
    z-index: -12;
}
.layout-text img.white-bg {
    padding: 10px;
}
.layout-text img {
    border-radius: 10px;
}
.layout-text .img-shadow {
    box-shadow: 0 0 50px rgba(53, 45, 97, 0.09);
    padding: 0;
}

.layout-text .buttons i {
    color: #ffffff;
}
.layout-text .buttons .btn {
    box-shadow: 0 8px 40px rgba(18, 9, 39, 0.13);
}
.layout-text .text-content {
    margin-top: 20px;
}

.layout-text p {
    font-size: 16px;
    line-height: 25px;
}

.layout-text .text {
    overflow: hidden;
}

.layout-text .text-content i {
    color: #14d468;
    margin: 5px 8px 0 0;
    font-size: 18px;
}

/* Texting Layouts ends here */

/* Colorful boxes */
.colorful-boxes {
    background: url(/web/20210303001449im_/https://myheberge.com/images/other/geometry.png) center;
    background-size: contain;
}

.colorful-boxes i {
    font-size: 65px;
    margin: 50px 0 30px;
    color: #fff;
}
.colorful-boxes .buttons {
    margin-top: 30px;
}
.colorful-boxes .btn {
    border-radius: 30px;
    font-size: 13px;
}
.colorful-boxes .box-container {
    text-align: center;
    padding: 0 40px 50px;
    border-radius: 15px;
    box-shadow: 0 5px 40px rgba(18, 9, 39, 0.15);
    margin: 0 15px;
}
.colorful-boxes .box-container h4 {
    color: #fff;
    font-family: 'Overpass';
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}
.colorful-boxes .box-container p {
    color: #fff;
    font-size: 16px;
    line-height: 25px;
}
.colorful-boxes .box1 {
    background: #31d377;
}
.colorful-boxes .box2 {
    background: #3dd656;
}
.colorful-boxes .box3 {
    background: #4270E4;
}
/* Colorful boxes ends here */

/* testimonials */
.testimonials {
    padding-top: 60px;
    padding-bottom: 40px;
    background: #F7F9FF;
}

.testimonials.white-bg {
    background: #ffffff;
}

.testimonials.white-bg .main-title {
    padding-bottom: 30px;
}

.testimonials .text-left {
    padding-right: 30px;
}

.testimonials .text-left h2 {
    font-size: 26px;
    margin-top: 60px;
    font-weight: 700;
}

.testimonials .text-left .buttons {
    margin-top: 30px;
}

.quote {
    color: #14d468;
    text-align: center;
    opacity: 0.5;
    padding-left: 5px;
}

#fade-quote-carousel.carousel {
    padding-bottom: 60px;
}

#fade-quote-carousel.carousel .carousel-inner .item {
    opacity: 0;
    transition: .5s linear;
}

#fade-quote-carousel.carousel .carousel-inner .active {
    opacity: 1;
}

#fade-quote-carousel.carousel .carousel-indicators {
    bottom: 0;
}

#fade-quote-carousel.carousel .carousel-indicators>li {
    background-color: #14d468;
    border: none;
    opacity: 0.8;
}

#fade-quote-carousel blockquote {
    text-align: left;
    border: none;
    font-size: 14px;
    line-height: 23px;
    background: #ffffff;
    padding: 20px;
    width: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.testimonials.white-bg blockquote {
    background: #F7F9FF !important;
}

#fade-quote-carousel blockquote small {
    color: #d4c6e7;
    font-size: 13px;
    padding-top: 15px;
}

.carousel-indicators .active {
    width: 30px;
    height: 10px;
}

#fade-quote-carousel .profile-circle img {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px auto;
    margin-bottom: -25px;
    box-shadow: 0 10px 20px rgba(73, 61, 94, 0.3);
    border-radius: 100%;
}

/* testimonials ends here */

/* Boxes style one */
.boxes-one {
    background: #F7F9FF;
}
.boxes-one .box {
    background: #fff;
    box-shadow: 0 10px 25px rgba(54, 46, 97, 0.06);
    border-radius:2px 2px 8px 8px;
    text-align: center;
    margin: 0;
    border-top: 5px solid #14d468;
    padding: 40px 30px;
}
.boxes-one h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.boxes-one .box img {
    width: 90px;
    margin: 0 auto 30px auto;
}

.boxes-one .btn {
    margin-top: 30px;
}

/* Box one ends here */
/* contact form */
.contact-form {
    background: #F7F9FF;
}

.contact-form i {
    color: #14d468;
}

.contact-form iframe {
    border-radius: 15px;
}

.contact-form .fa {
    padding-right: 5px;
}

.contact-form form {
    display: block;
}

.contact-form .form-control {
    width: 100%;
    font-size: 13px;
    background: #ffffff;
    border: 0;
    border-radius: 5px;
    box-shadow: inset 0 0 0;
    height: 47px;
    transition: .3s linear;
    margin: 10px 0;
}

.has-error .form-control {
    box-shadow: inset 0 0 0 #fff !important;
    border: 0 !important;
    border-color: #fff !important;
}

.contact-form .form-control::placeholder {
    color: #9BC5D2;
}

.form-control:focus {
    border: 1px solid #f0f0f0;
}

.textarea-contact {
    resize: none
}

/* Conatct end */
/* Partners */
.partners2 {
    padding: 10px;
    border-top: 1px solid #f0f0f0;
}

.partners2 .all-partners {
    border-radius: 10px;
    background: #ffffff;
    padding: 30px 20px 25px;
    margin: 0 auto;
    display: table;
}

.partners2 img {
    width: 150px;
    margin: 0 15px;
    transition: .15s linear;
}

.partners2 img:hover {
    filter: grayscale(100%);
}

.partners2 .col-sm-2 {
    border-right: 1px solid #f0f0f0;
}

.partners2 .col-sm-2:last-child {
    border-right: 0 solid #ebebeb;
}

/* Partners */
.partners3 {
    padding: 10px;
    border-top: 1px solid #f0f0f0;
}

.partners3 .all-partners {
    border-radius: 10px;
    background: #ffffff;
    padding: 30px 20px 25px;
    margin: 0 auto;
    display: table;
}

.partners3 img {
    width: 150px;
    margin: 0 15px;
    transition: .15s linear;
    opacity: .9;
}

.partners3 img:hover {
    filter: grayscale(100%);
    opacity: 1;
}

.partners3 .col-sm-2 {
    border-right: 1px solid #f0f0f0;
}

.partners3 .col-sm-2:last-child {
    border-right: 0 solid #ebebeb;
}

/* Partners Section */

/*Boxes style two*/
.boxes-two {
    background: #ffffff;
}

.boxes-two .box-container {
    padding: 25px 20px;
    background: #ffffff;
    border: 1px dashed rgba(75, 55, 189, 0.1);
    margin: 0 8px;
    box-shadow: 0  5px 30px rgba(73, 61, 94, 0.07);
    border-radius: 15px;
    transition: .2s linear;
}

.boxes-two .box-container:hover {
    border: 1px solid rgba(75, 55, 189, 0.05);
}

.boxes-two .box-title {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.boxes-two .box-title h4 {
    font-weight: 700;
    font-family: 'Open Sans';
    font-size: 14px;
    text-transform: uppercase;
}

.boxes-two .box-title i {
    font-size: 17px;
    padding-right: 5px;
    color: #1E90FF;
}

.boxes-two .buttons i {
    font-size: 12px;
}

.boxes-two li {
    line-height: 30px;
    display: flex;
    font-size: 15px;
}

.boxes-two li::before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: inherit;
    font-size: 10px;
    padding-right: 5px;
}

.boxes-two .buttons {
    margin-top: 20px;
}

.boxes-two .box-container .btn {
    font-size: 13px;
    padding: 7px 20px;
    border-radius: 3px;
    margin-right: 10px;
}

/*Boxes style two ends here */

/* Section with image bg */
.img-section {
    background: url(/web/20210303001449im_/https://myheberge.com/images/other/2.jpg) center left;
    margin-right: auto;
    margin-left: auto;
}

.img-section.for-about {
    margin-right: auto;
    margin-left: auto;
    background: url(/web/20210303001449im_/https://myheberge.com/images/other/3.jpg) center left;
}

.img-section .text {
    width: 550px;
    background: #F7F9FF;
    padding: 40px 30px;
    height: auto;
}

.img-section .text::after {
    width: 0;
    height: 0;
    position: absolute;
    right: 270px;
    top: 40%;
    content: '';
    border-style: solid;
    border-width: 25px 0 25px 25px;
    border-color: transparent transparent transparent #F7F9FF;

}

.img-section h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.img-section h3 {
    font-weight: 300;
    font-size: 30px;
    margin: 30px 0 0;
}

.img-section i {
    color: #1E90FF;
}

.img-section p {
    font-size: 16px;
}

.img-section .btn {
    margin-top: 30px;
}

.imgs2 {
    margin-right: auto;
    margin-left: auto;
    background: url(/web/20210303001449im_/https://myheberge.com/images/other/3.jpg) center left;
}

.imgs2 .text {
    background: #14d468;
}

.imgs2 .text::after {
    width: 0;
    height: 0;
    position: absolute;
    right: 270px;
    top: 40%;
    content: '';
    border-style: solid;
    border-width: 25px 0 25px 25px;
    border-color: transparent transparent transparent #14d468;

}

.imgs2 h2,
.imgs2 p {
    color: #ffffff;
}

/* img section ends here */

/* Domain boxes */
.domain-box  {
    background: linear-gradient(to bottom, #f8fcff 0%,#ebf8ff 100%);
    box-shadow: 0 3px 5px rgba(73, 61, 94, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: .1s linear;
}
.domain-boxes .row + .row {
    margin-top: 30px;
}
.domain-box h2 {
    font-weight: 900;
}
.domain-box h3 {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 20px;
}
.layout-domain h4 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 7px;
}
.domain-box p {
    font-size: 15px;
}
.ltd-price h4 {
    color: #9aa6ca;
    margin-top: 22px;
    margin-bottom: 3px;
}
.com h2 {
    color: #2c59cc;
}
.net h2 {
    color: #3dd656;
}
.org h2 {
    color: #eb9a9a;
}
.online h2{
    color: #a45eff;
}

.layout-domain .text-container img {
    width: 60px;
    margin: 30px 15px 0;
}
.domain-boxes .domain-box:hover {
    box-shadow: 0 5px 8px rgba(73, 61, 94, 0.25);
}
.layout-domain .domain-img img {
    box-shadow: 0 2px 5px rgba(73, 61, 94, 0.2);
}
.search-domain.domain-page .text {
    margin-left: 0;
}
.imgs2-domain .text {
    padding: 70px 30px;
}
/* Domain Boxes style ends here */

/* team members */
.team .member-text {
    padding: 20px 15px 30px;
    background: #ffffff;
    box-shadow: 0 0 40px rgba(73, 61, 94, 0.1);
    border-radius: 0 0 10px 10px;
}

.team .members h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team .members h5 {
    font-size: 13px;
    color: #aeb8d8;
    margin-bottom: 15px;    
}

.team .social-links {
    margin: 25px 0 0 0;
}

.team .social-links i {
    background: #ffffff;
    color: #14d468;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    line-height: 45px;
    text-align: center;
    font-size: 13px;
    width: 45px;
    margin-right: 10px;
    height: 45px;
    transition: .1s linear;
}

.team .social-links i:hover {
    background: #4270E4;
    color: #ffffff;
}

/* Colorful section */
.colorful-section {
    background: linear-gradient(45deg, #4270e4 0%, #2c59cc 100%);
}

.colorful-section .row+.row {
    margin-top: 50px;
}

.colorful-section .text {
    overflow: hidden;
    padding-right: 10px;
}

.colorful-section h4 {
    color: #ffffff;
    font-weight:600;
    margin-bottom: 10px;
}

.colorful-section p {
    color: #f3edfd;
}

.colorful-section i {
    color: #ffffff;
    font-size: 22px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 55px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    margin: 5px 20px 0 0;
}

/* Colorful section ends here */

/* ==== FOOTER STYLE ==== */
.footer-contact {
    background: #4270e4;
}
footer h5 {
    font-family: 'Open Sans';
}
footer .social-media i {
    margin: 0 2px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 33px;
    height: 30px;
    border-radius: 3px;
    line-height: 30px;
    text-align: center;
}

footer .location-info h5 {
    color: #aeb8d8;
    font-size: 13px;
}

footer .location-info i {
    color: #1E90FF;
    padding-right: 3px;
}

.contact-container {
    border-radius: 5px;
    padding: 30px 20px;
    display: inline-block;
}

.contact-container h3 {
    color: #ffffff;
}

.contact-container p {
    color: #ffffff;
}

.contact-container .call-section {
    padding-right: 70px;
}

/* Light Footer */
.light-footer {
    padding: 40px 0 40px;
    background: #F7F9FF;
}

.light-footer h4 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 20px;
}

.light-footer a {
    line-height: 30px;
    font-size: 13px;
}

footer.dark-footer li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    color: #14d468;
    padding-right: 5px;
}

footer .partners {
    padding-bottom: 10px;
    width: 100%;
    margin-bottom: 35px;
    border-bottom: 1px solid #e0e2ff;
}

footer .partners img {
    width: 100px;
    transition: .1s linear;
}
footer .partners img:hover {
    filter: grayscale(0);
}
footer .partners-light img {
    opacity: 1;
}

footer.light-footer li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    padding-right: 5px;
}

.quick-links {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}

.quick-links h4 {
    margin-bottom: 10px;
}

.quick-links li {
    display: inline-block;
    line-height: normal;
    margin-right: 30px;
}

.quick-links li::before {
    content: none;
}

/* dark footer */
.dark-footer {
    background: #322a57;
}

.dark-footer h4 {
    color: #F7F9FF;
}

.dark-footer a:hover {
    color: #ffffff;
    transition: .1s linear;
}

.dark-footer .partners {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

footer .partners {
    padding-bottom: 10px;
    display: inline-block;
}

.dark-footer .partners img {
    opacity: 0.7;
    width: 150px;
}

/*HK_SECTION */

.hk_apps_area_wrapper{
	background: #0096ff;
	text-align: center;
	padding: 85px 0;
	position: relative;
}

.host_home1 .title_highlight,
.host_home1 .hk_footer_links ul li a:hover,
.host_home1 .hk_footer_links.hk_social ul li a:hover p{
	color: #1e88e5;
}

.hk_apps_section{
	padding-bottom: 0;
}

.hk_subtext{
	font-family: 'lato',sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 35px;
}
.hk_subtext{
	color: #eee;
}

.hk_main_text{
	color: #fff;
}
.hk_main_text{
	font-weight: 700;
	font-size: 30px;
	line-height: 44px;
}

.hk_small_title,.hk_slider_title,.hk_domain_info h2,.hk_read_more,
.hk_main_text,.hk_subtext,.hk_promot_text h2,.hk_widget_title h4,
.navbar-default .navbar-nav > li > a,.hk_lang_dropdown li a,.hk_sercvice_title,
.hk_header_single_service >p,.hk_package_title h1,.hk_blog_title h4,.hk_blog_btns a,
.hk_comment_title h4,.hk_contact_area_title h4,.hk_table_heading  tr th{
	text-transform: uppercase;
}

.host_home1 .hk_menu_btn_wrapper .hk_btn,
.host_home1 .hk_apps_area_wrapper,
.host_home1 .hk_promot_section,
.host_home1 .hk_subs_form .hk_btn{
	background: #1e88e5;
}

.hk_section_padding{
	padding-top: 121px;
	padding-bottom: 130px;
}

.hk_section_title {
	text-align: center;
	padding-bottom: 73px;
}
.hk_section_title h1{
	font-weight: 700;
	font-size: 36px;
	color: #222;
	padding-bottom: 33px;
	position: relative;
}
.hk_section_title h1::before {
	bottom: 13px;
	content: url("/web/20210303001449im_/https://myheberge.com/style/images/title_line.svg");
	left: 50%;
	position: absolute;
	text-align: center;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
	width: 118px;
}
.hk_section_title .title_highlight{
	color: #0096ff;
}

.hk_promot_section2 .hk_section_title {
 	text-align: left;
 	padding-bottom: 32px;
}
.hk_promot_section2 .hk_section_title h1{
	line-height: 55px;
	padding-bottom: 19px;
}
.hk_promot_section2 .hk_section_title h1::before{
	display: none;
}
.hk_promot_section2 .hk_title_subtext{
	width: 100%;
}

.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr{
	text-align: left;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl{
	text-align: right;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr h1::before{
	left: 0;
	-webkit-transform: translate(0);
	transform: translate(0);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl h1::before{
	left:100%;
	-webkit-transform: translate(-100%);
	transform: translate(-100%);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title h1{
	font-size: 30px;
}

.rtl.hk_section_title{
	text-align: right;
}
.ltr.hk_section_title{
	text-align: left;
}
.ltr.hk_section_title h1::before{
	left: 0;
	-webkit-transform: translate(0);
	transform: translate(0);
}
.rtl.hk_section_title h1::before{
	left: 100%;
	-webkit-transform: translate(-100%);
	transform: translate(-100%);
}

.hk_team_area{
	background: #0096ff;
}
.hk_team_area .hk_section_title h1{
	color: #fff;
}
.hk_team_area .hk_section_title h1::before{
	content: url("/web/20210303001449im_/https://myheberge.com/style/images/title_line2.svg");
}
.hk_team_area .hk_section_title .hk_title_subtext{
	color: #eee;
}

.hk_section_title .title_highlight{
	color: #0096ff;
}
.host_home1 .title_highlight,
.host_home1 .hk_footer_links ul li a:hover,
.host_home1 .hk_footer_links.hk_social ul li a:hover p{
	color: #1e88e5;
}

.panel-group .panel + .panel{
	margin: 0;
	border-radius: 0;
}
.panel-default > .panel-heading{
	background: #fff;
	border-bottom: 1px solid #e0f5ff;
}
.panel-default,.panel-body{
	border: none;
}
.panel-default:first-child .panel-heading{
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
.panel-default:last-child .panel-heading{
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}
.panel-heading{
	background: #fff;
	padding: 19px 20px 19px 20px;
}
.panel-heading.active,
.faq .panel-default > .panel-heading.active{
	background: #1e88e5;
	color: #fff;
	border-radius: 0;
}
.panel-heading.active a{
	color: #fff;
}
.panel-title a{
	font-family: 'ubuntu';
	font-weight: 400;
	font-size: 16px;
	color: #222222;

}
.panel-title a.collapsed{
	background: none;
}
.panel-title a span.fa{
	font-size: 12px;
	margin-right: 16px;
	line-height: 20px;
}
.panel-body{
	font-family: 'lato',sans-serif;
	font-size: 14px;
	line-height: 26px;
	color: #999999;
	padding: 15px 30px;
	border-bottom: 1px solid #e0f5ff;
}
.faq .panel-default > .panel-heading{
	background: #f6fcff;
}
.faq #accordion{
	border: none;
}
.faq .panel-group .panel + .panel,
.faq .panel.panel-default{
	margin-bottom: 10px;
	border: 1px solid #e0f5ff;
	box-shadow: none!important;
}
.faq .panel-default > .panel-heading{
	border-bottom: 0;
}

.host_home1 .testimonial{
	background: #f6fcff;
}
.hk_testimonial_slider_wrapper_right .testimonial{
	background: #f6fcff;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper {
	border: 0;
	background: none;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_contents{
	border: none;
	padding: 0;
	border: 1px solid #e0f5ff;
	background: #fff;
	margin: 0 15px;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr{
	text-align: left;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl{
	text-align: right;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr h1::before{
	left: 0;
	-webkit-transform: translate(0);
	transform: translate(0);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl h1::before{
	left:100%;
	-webkit-transform: translate(-100%);
	transform: translate(-100%);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title h1{
	font-size: 30px;
}
.hk_testimonial_slider_wrapper_right .testimonial_slider_wrapper{
	width: 100%;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .media-left.media-middle{
	display: block;
	text-align: center;
	padding-bottom: 15px;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .hk_client_img{
	display: inline-block;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .media-body{
	width: 100%;
	padding: 0;
	text-align: center;
}
.hk_testimonial_slider2{
	position:relative;
}
.hk_testimonial_slider2 .slick-arrow{
	position: absolute;
	height: 25px;
	width: 25px;
	background: #319dfc;
	border-radius: 50%;
	line-height: 25px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
    z-index: 9;
}
.hk_testimonial_slider2 .fa.fa-angle-left.slick-arrow{
	top: 50%;
	left: 0;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.hk_testimonial_slider2 .fa.fa-angle-right.slick-arrow{
	bottom: 50%;
	right: 0;
	-webkit-transform: translate(50%,50%);
	transform: translate(50%,50%);
}
.hk_testimonial_slider2 .hk_testimonial_slider_wrapper{
	padding: 0 75px 17px;
}
.hk_testimonial_slider_wrapper_right .testimonial_slider_wrapper{
	padding-top: 35px;
}

/* Testimonal */

.testimonial{
	overflow: hidden;
}
.host_home2 .hk_testimonial_wrapper{
 	background: #f6fcff none repeat scroll 0 0;
 	border-top: 1px solid #e0f5ff;
 	border-bottom: 1px solid #e0f5ff;
 	position: relative;
}
.hk_testimonial_wrapper .hk_section_title h1{
	font-size: 30px;
}
.hk_testimonial_contents{
	border-left: 1px solid #e0f5ff;
	padding-left: 30px;
	padding-top: 112px;
	padding-bottom: 88px;
}
.testimonial_slider_wrapper {
 	width: calc(100% - 90px);
 	float: left;
 	padding-top: 65px;
}
.hk_testimonial_slider .media-left.media-middle {
 	padding-right: 40px;
}

.host_home1 .testimonial{
	background: #f6fcff;
}
.hk_testimonial_slider_wrapper_right .testimonial{
	background: #f6fcff;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper {
	border: 0;
	background: none;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_contents{
	border: none;
	padding: 0;
	border: 1px solid #e0f5ff;
	background: #fff;
	margin: 0 15px;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr{
	text-align: left;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl{
	text-align: right;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.ltr h1::before{
	left: 0;
	-webkit-transform: translate(0);
	transform: translate(0);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title.rtl h1::before{
	left:100%;
	-webkit-transform: translate(-100%);
	transform: translate(-100%);
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_wrapper .hk_section_title h1{
	font-size: 30px;
}
.hk_testimonial_slider_wrapper_right .testimonial_slider_wrapper{
	width: 100%;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .media-left.media-middle{
	display: block;
	text-align: center;
	padding-bottom: 15px;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .hk_client_img{
	display: inline-block;
}
.hk_testimonial_slider_wrapper_right .hk_testimonial_slider_wrapper .media-body{
	width: 100%;
	padding: 0;
	text-align: center;
}

.webhosting .testimonial{
	background: #f6fcff;
}
.webhosting .hk_testimonial_wrapper{
	border-top: 0;
}

.about_us .hk_testimonial_wrapper{
	background: #fff;
	border: none;
}

.dedicatedhosting .testimonial{
	background: #f6fcff;
	border-bottom: 1px solid #e0f5ff;
}
.dedicatedhosting .hk_testimonial_wrapper{
	border:none;
}

/* under footer */
.under-footer {
    padding: 25px 0 20px;
    background: #ffffff;
}

.under-footer a {
    display: inline-block;
    margin-right: 25px;
    font-size: 13px;
}

.under-footer .un_img a {
    margin-right: 0;
    padding: 0 10px;
    position: absolute;
    margin-top: -5px;
    width: 100px;
}

.under-footer .right-section {
    float: right;
}

.under-footer2 {
    border-top: 1px solid #f0f0f0;
}

.under-footer2 p {
    font-size: 13px;
    padding: 15px 15px;
    text-align: left;
}
/*
     FILE ARCHIVED ON 00:14:49 Mar 03, 2021 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 05:36:08 Aug 30, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.656
  exclusion.robots: 0.023
  exclusion.robots.policy: 0.01
  esindex: 0.013
  cdx.remote: 6.788
  LoadShardBlock: 52.56 (3)
  PetaboxLoader3.datanode: 64.748 (4)
  load_resource: 1019.199
  PetaboxLoader3.resolve: 910.444
*/