/*
Theme Name: AmarHoster Affiliate Template
version: 1.0
Author Name: Mehedi Hasan Nipo
Author Url: https://mehedihasannipo.com
Developed By: Mehedi Hasan Nipo
*/

/* Reset */
a {
    text-decoration: none;
    color: #333;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    font-size: 16px;
}

/* Padding */
.mhn-pt {
    padding-top: 80px;
}
.mhn-pb {
    padding-bottom: 80px;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    z-index: 99;
}
.scroll-top:hover {
    color: #fff;
}

/* Section Title */
.section-title h2 {
    font-size: 30px;
    font-weight: 600;
}

/* Currency Switcher */
.currency-switch {
    text-align: center;
}
.currency-switch label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}
#currency-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 2px solid var(--primary-color);
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
    outline: none;
}
#currency-select:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 5px var(--primary-color);
            box-shadow: 0 0 5px var(--primary-color)
}
#currency-select::before {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
    font-size: 18px;
}
#currency-select option {
    background-color: #fff;
    color: #333;
}
#currency-select option:checked {
    background-color: var(--primary-color);
    color: #fff;
}

/* Header Top */
.header-top-area {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}
.header-top-area ul li {
    padding: 7px 10px;
    margin-right: 0 !important;
}
.header-top-area ul li:not(:last-child) {
    border-right: 1px solid #dde3e9;
}
.header-top-area ul li a {
    font-weight: 500;
}
.header-top-area ul li a i {
    font-size: 12px;
    color: #788698;
    margin-right: 2px;
}

/* Header */
.header-area {
    padding: 20px 0;
}
.logo a img {
    max-width: 150px;
}
.header-support a {
    font-size: 24px;
    font-weight: 500;
    color: var(--red-color);
}
.header-support a i {
    color: #788698;
}

/* Header Menu Area */
.header-menu-area {
    background-color: var(--primary-color);
}
.header-menu-area .navbar-brand{
    display: none;
}
.header-menu-area img {
    max-width: 150px;
}
.header-menu-area .navbar-light .navbar-nav .nav-link {
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    padding: 12px 15px;
    display: block;
}
.header-menu-area .navbar-light .navbar-nav .nav-link.client {
    background-color: var(--red-color);
}
.header-menu-area .navbar-nav .login {
    display: none;
}
.header-menu-area .container-fluid {
    padding: 0;
}

/* Banner Area */
.banner-area {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    padding-top: 25px;
}
.banner-area:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--banner-color);
    opacity: .95;
    z-index: -1;
}
.banner-area h2 {
    font-size: 36px;
    color: #fff;
}
.banner-area h4 {
    font-size: 20px;
    color: #fff;
}
.banner-area img {
    margin-top: 40px;
    max-width: 450px;
    width: 100%;
}

/* Service Area */
.single-service {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 2px solid var(--primary-color);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.service-icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.single-service.mhn-service {
    background-color: var(--primary-color);
    color: #fff;
}
.single-service.mhn-service .service-icon i {
    background-color: #fff;
    color: var(--primary-color);
}
.single-service h4 {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding: 12px 15px;
    margin: 10px 0;
}
.single-service h4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--primary-color);
    border-left: 3px solid var(--primary-color);
}
.single-service h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
}
.single-service.mhn-service h4:before, .single-service.mhn-service h4:after{
    border-color: #fff;
}
.single-service a {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--primary-color);
}
.single-service a i {
    margin-right: 5px;
}
.single-service a:hover {
    color: #fff;
}
.single-service.mhn-service a {
    color: #fff;
}

/* Features */
.features-area {
    background-color: #f8f8f8;
}
.single-feature {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background-color: var(--green-color);
    padding: 52px;
}
.single-feature i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px
}
.single-feature h4 {
    font-size: 20px;
}

/* Price Area */
.single-offer {
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.single-offer i {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 22px;
    padding: 40px 15px;
    margin-right: 15px;
}
.single-offer h4 {
    font-size: 18px;
    font-weight: 600;
}
.single-price {
    background-color: var(--green-color);
    padding: 30px;
}
.single-price h4 {
    font-size: 22px;
    font-weight: 700;
}
.single-price h2 .currency-symbol, .single-price h2 .price {
    font-size: 28px;
    color: var(--primary-color);
}
.single-price h2 .time {
    text-transform: lowercase;
    font-size: 16px;
    color: #333;
}
.single-price a {
    background-color: var(--red-color);
    border-color: var(--red-color);
}
.single-price ul li {
    margin-bottom: 7px;
    padding-bottom: 7px;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 30px;
}
.single-price ul li:before {
    content: '\f00c';
    position: absolute;
    font-family: "FontAwesome";
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
}

/* Domain Page */
.banner-area.domain-page {
    padding: 40px 0;
}
.banner-area.domain-page form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
}
.banner-area.domain-page form input[type="text"] {
    width: 80%;
    padding: 12px;
    border-radius: 7px;
    border: 1px solid #ddd;
}
.banner-area.domain-page form input[type="text"]:focus, .banner-area.domain-page form input[type="text"]:focus-visible {
    outline-color: var(--primary-color);
}
.banner-area.domain-page form input[type="submit"] {
    background-color: var(--primary-color);
    color: #fff;
    padding: 13px 40px;
    border: 0;
    cursor: pointer;
    border-radius: 7px;
    font-weight: 500;
    text-align: center;
    -webkit-box-shadow: 0 6px 20px rgba(0,0,0,.1);
            box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.domain-area {
    overflow: auto;
}
table.domainpricing {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    -webkit-box-shadow: 0 6px 20px rgba(0,0,0,.1);
            box-shadow: 0 6px 20px rgba(0,0,0,.1);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}
table.domainpricing th {
    padding: 15px;
    background-color: #efefef;
    font-weight: bold;
    text-align: center;
}
table.domainpricing td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}