/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Theme
 *
 * This file allows you to customize the theme colors and styles for the entire Nexus template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

:root {
    --white: #fff;
    --blue: #3667a6 !important;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--white);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}

/* GLOBAL STYLING UPDATES */
body, html, .primary-bg-color {
    background: white;
}
#main-body > div:not(.container) > div:not(.row) > .primary-content {
    padding: 0;
}
.primary-content > p[style="text-align:center;"]:last-of-type {
    display: none;
}
.carbonbadge {
    text-align: left !important;
}
.list-initial {
    list-style: initial;
}

/* Header */
#header {
    padding: 0 !important;
}
.topbar .dropdown-menu {
    font-size: 0.9rem;
}

/* Footer */
.apple-chat {
    padding: 50px 0;
}
#footer {
    padding: 0 !important;
}
.footer-top {
    padding: 50px 20px;
    background: #3667a6;
    border-bottom: 5px solid #bdd8f1;
    font-size: 15px;
}
.footer-top li {
    line-height: 18px;
    margin-bottom: 15px;
    color: #bdd8f1;
}
#footerChat, .footer-top a {
    color: #bdd8f1;
}
.footer-top a:hover {
    color: white;
}
.footer-top a[aria-expanded="false"]::after {
	content: "\f078";
	top: 0;
	right: 0;
	position: absolute;
	font-family: 'Font Awesome 5 Pro';
}
.footer-top a[aria-expanded="true"]::after {
	content: "\f054";
	top: 0;
	right: 0;
	position: absolute;
	font-family: 'Font Awesome 5 Pro';
}
.footer-top strong {
    color: white !important;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    display: block;
    line-height: 1.5;
}
.footer-top .collapse {
    margin-top: 5px;
}
.footer-bottom {
    background: #214177;
    padding: 30px 50px;
    color: white;
}
.footer-bottom a {
    color: #bdd8f1;
}
.footer-bottom .logo {
    font-size: 18px;
    padding-bottom: 20px;
}
.footer-bottom .logo img {
    height: 25px;
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 50px 15px;
    }
}

/* HOME PAGE */

.bg-primary, .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--blue) !important;
}

#home-banner {
    background-color: #214177 !important;
}
.center-pills {
    display: flex;
    justify-content: center;
}
.center-pills li {
    margin-left: 0 !important;
}
.center-pills a {
    border-radius: 0 !important;
    background: rgba(235,235,235,.6);
    color: black;
}
.center-pills a.active {
    border-radius: 0 !important;
    background: #3667a6;
}
.center-pills li:first-of-type a {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}
.center-pills li:last-of-type a {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
}
.tld-prices .img-container {
    color: black;
    font-size: 20px;
    padding: 20px 0;
    height: 115px;
    line-height: 75px;
    overflow: hidden;
    text-align: center;
}
.tld-prices .img-container img {
    max-width: 70%;
    max-height: 100%;
}
.tld-prices .price {
    border-radius: 0 0 0.25rem 0.25rem;
    padding: 5px;
    background-color: #f9f9f9;
    color: #555;
    font-weight: 400;
    line-height: 28px;
    font-size: 14px;
    text-align: center;
}
.price.org {
    background: rgb(23,59,79);
    color: #fff;
}
.price.co {
    background: rgb(243,111,33);
    color: #fff;
}
.price.io {
    background: rgb(106,175,7);
    color: #fff;
}
.price.me {
    background: rgb(239,59,57);
    color: #fff;
}
.featured-tld.text .img-container {
    height: auto !important;
    overflow: visible !important;
}
.action-icon-btns a {
    border-radius: 0.25rem 0.25rem 0 0;
}

/* LEGAL PAGE */
.legal-links h3 {
    font-weight: 800;
    margin: 0;
}

/* SHARED HOSTING PAGE */
.shared-hosting .pricing .nav-pills.flex-column .nav-item button {
    border-radius: 0.25rem;
    background: white;
}
.shared-hosting .pricing .nav-pills .nav-item button {
    background: rgba(235,235,235,.6);
    color: black;
}
.shared-hosting .pricing .nav-pills .nav-item button.active {
    color: #fff;
    background-color: #369;
}
.shared-hosting .pricing .nav-pills.center-pills .nav-item:first-of-type button {
    border-radius: 0.25rem 0 0 0.25rem;
}
.shared-hosting .pricing .nav-pills.center-pills .nav-item:last-of-type button {
    border-radius: 0 0.25rem 0.25rem 0;
}
.pricing-item li {
    border: 0 !important;
    padding: 0 20px;
    padding-bottom: 15px;
}
.pricing-item li .fal {
    margin-right: 10px;
}
.landing-page.sitelock p {
    font-size: 1.1rem;
}
.landing-page.sitelock p strong {
    font-size: 1.2rem;
}
#addons .addon-image {
    height: 100px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
@media (max-width: 576px) {
    #addons .addon-image {
        height: 50px;
    }
}

/* WEB DESIGN PAGE */
.testimonials blockquote {
    background: #f8f8f8 none repeat scroll 0 0;
    border: medium none;
    color: #666;
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 15px;
    position: relative;
}
.testimonials blockquote::before {
    width: 0; 
    height: 0;
    right: 0;
    bottom: 0;
    content: " "; 
    display: block; 
    position: absolute;
    border-bottom: 20px solid #fff;    
    border-right: 0 solid transparent;
    border-left: 20px solid transparent;
    border-left-style: inset; /*FF fixes*/
    border-bottom-style: inset; /*FF fixes*/
}
.testimonials blockquote::after {
    width: 0;
    height: 0;
    right: 0;
    bottom: 0;
    content: " ";
    display: block;
    position: absolute;
    border-style: solid;
    border-width: 20px 20px 0 0;
    border-color: #3667A6 transparent transparent transparent;
}
.testimonials .carousel-info img {
    border: 1px solid #f5f5f5;
    border-radius: 150px !important;
    height: 75px;
    padding: 3px;
    width: 75px;
}
.testimonials .carousel-info {
    overflow: hidden;
}
.testimonials .carousel-info img {
    margin-right: 15px;
}
.testimonials .carousel-info span {
    display: block;
}
.testimonials span.testimonials-name {
    color: #3667A6;
    font-size: 16px;
    font-weight: 300;
    margin: 23px 0 7px;
}
.testimonials span.testimonials-post {
    color: #656565;
    font-size: 12px;
}
.testimonials a {
    color: #656565
}
