/*
  Paksoft WHMCS Maxhost CSS Replacement v4
  Replace this file with:
  /templates/paksoft_maxhost/assets/css/paksoft-maxhost.css

  Purpose:
  Maxhost-inspired typography, font sizes, green accent, white header, hero layout,
  domain strip, cards, WHMCS buttons, order form, and footer.
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --mh-green: #49a32b;
  --mh-green-dark: #3f9024;
  --mh-dark: #2a363f;
  --mh-black: #000000;
  --mh-text: #777575;
  --mh-heading: #2a363f;
  --mh-soft: #f5f6f8;
  --mh-border: #e4e4e4;
  --mh-footer: #1d1d1d;
  --mh-footer-bottom: #000000;
  --mh-white: #ffffff;
  --mh-shadow: 0 3px 4.7px .3px rgba(0,0,0,.24);
  --mh-shadow-hover: 0 20px 30.4px 2.6px rgba(0,0,0,.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
body.mh-body {
  margin: 0;
  background: #ffffff;
  color: var(--mh-text);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  font-weight: 400;
  overflow-x: hidden;
}

body.mh-body p,
p {
  color: var(--mh-text);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 10px;
}

a {
  color: var(--mh-text);
  text-decoration: none;
  outline: none !important;
  transition: all .3s ease-out 0s;
}

a:hover,
a:focus,
a:active {
  color: var(--mh-green);
  text-decoration: none;
  outline: none !important;
}

img {
  max-width: 120% !important;
  vertical-align: middle;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: var(--mh-heading);
}

h2 { font-size: 20px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mh-container,
.ps-wrap {
  width: 1170px;
  max-width: calc(100% - 30px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.mh-main {
  min-height: 420px;
  background: #fff;
}

/* Header */
.mh-site-header {
  position: relative;
  z-index: 9000;
  width: 100%;
  height: 62px;
  background: #ffffff;
  border-top: 3px solid #000;
  border-bottom: 0 solid rgba(255,255,255,.18);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.mh-header-inner {
  width: 1170px;
  max-width: calc(100% - 30px);
  height: 59px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mh-logo {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
  height: 59px;
  color: var(--mh-heading) !important;
  text-decoration: none !important;
}

.mh-logo-img {
  display: block;
  width: auto;
  height: 43px;
  max-width: 190px;
  max-height: 43px;
  object-fit: contain;
  object-position: left center;
}

.mh-logo-fallback {
  display: none;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -1px;
}

.mh-logo-fallback span {
  color: var(--mh-heading);
  font-size: 34px;
  font-weight: 900;
}

.mh-logo-fallback em {
  color: #4d555b;
  font-size: 29px;
  font-weight: 300;
  font-style: normal;
}

.mh-nav {
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.mh-nav > a {
  display: inline-flex;
  align-items: center;
  height: 59px;
  padding: 0 13px;
  color: #0e2008 !important;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 59px;
  font-weight: 400;
  text-transform: none;
  text-decoration: none !important;
  position: relative;
  text-transform: uppercase;
}

.mh-nav > a:hover,
.mh-nav > a.active {
  color: var(--mh-green) !important;
}

.mh-nav > a:after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 2px;
  background: var(--mh-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.mh-nav > a:hover:after,
.mh-nav > a.active:after {
  transform: scaleX(1);
}

.mh-menu-toggle {
  display: none;
  width: 38px;
  height: 34px;
  border: 1px solid #333;
  background: #333;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mh-menu-toggle:hover,
.mh-menu-toggle:focus {
  background: var(--mh-green);
  border-color: var(--mh-green);
}

.mh-menu-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
}

/* Inner page heading */
.mh-page-heading {
  background: #f5f6f8;
  border-bottom: 1px solid var(--mh-border);
  padding: 36px 0;
}

.mh-page-heading h1 {
  color: var(--mh-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.2;
}

.mh-breadcrumb {
  margin-top: 10px;
  color: var(--mh-text);
  font-size: 14px;
}

/* Home hero */
.mh-hero-maxhost {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #f5f6f8;
  border-bottom: 0;
}

.mh-hero-maxhost:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 60% 26%, rgba(245,238,124,.34) 0 18px, transparent 19px),
    radial-gradient(circle at 69% 18%, rgba(245,238,124,.22) 0 20px, transparent 21px),
    linear-gradient(90deg, rgba(245,246,248,.98) 0%, rgba(245,246,248,.95) 48%, rgba(245,246,248,.72) 100%);
  z-index: 0;
}

.mh-hero-bg-squares {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mh-hero-bg-squares:before,
.mh-hero-bg-squares:after {
  content: "";
  position: absolute;
  background: rgba(245,238,124,.28);
}

.mh-hero-bg-squares:before {
  width: 46px;
  height: 46px;
  top: 74px;
  right: 328px;
}

.mh-hero-bg-squares:after {
  width: 30px;
  height: 30px;
  top: 120px;
  right: 244px;
}

.mh-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
  gap: 0;
}

.mh-hero-copy {
  position: relative;
  z-index: 5;
  max-width: 690px;
  padding-top: 6px;
}

.mh-hero-copy h1 {
  margin: 0 0 14px;
  color: var(--mh-heading);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 2px;
}

.mh-headline-small {
  display: block;
  color: var(--mh-green);
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  white-space: nowrap;
}

.mh-headline-large {
  
 display: block;
  margin-top: 8px;
  color: var(--mh-heading);
 font-family: Times;
  font-size: 92px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0px;
  text-transform: none;
  
}

.mh-lead,
.mh-sublead {
  color: #2a363f;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: .8px;
  margin: 0 0 4px;
}

.mh-sublead {
  margin-bottom: 22px;
}

.mh-sublead strong {
  color: var(--mh-green);
  font-weight: 400;
  letter-spacing: 2px;
}

.mh-dark-btn,
.tp-caption .sbut1,
.sbut1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 16px 34px;
  color: #fff !important;
  background: var(--mh-dark);
  border: 0;
  border-radius: 3px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2px;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: none;
}

.mh-dark-btn:hover,
.tp-caption .sbut1:hover,
.sbut1:hover {
  background: var(--mh-green);
  color: #fff !important;
}

.mh-hero-visual {
  position: relative;
  min-height: 520px;
  align-self: stretch;
  overflow: visible;
}

.mh-model-photo {
  position: absolute;
  z-index: 2;
  right: -72px;
  bottom: 0;
  width: 650px;
  height: 520px;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.2; /* 50% transparent */

}

.mh-sale-card,
.sbox1 {
  position: absolute;
  z-index: 4;
  top: 82px;
  left: 36px;
  width: 150px;
  min-height: 176px;
  padding: 20px 16px 57px 20px;
  color: #fff;
  background: var(--mh-green);
  border: 0;
  box-shadow: none;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.mh-sale-card strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 30px;
  font-weight: 600;
  margin: 0 0 12px;
}

.mh-sale-card span {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
}

.mh-sale-circle,
.cirbox1 {
  position: absolute;
  z-index: 5;
  top: 218px;
  left: 48px;
  width: 125px;
  height: 125px;
  padding-top: 27px;
  border-radius: 100%;
  background: var(--mh-dark);
  color: #fff;
  display: block;
  text-align: center;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 600;
}

.mh-sale-circle b {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.mh-sale-circle small {
  display: block;
  color: var(--mh-green);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

/* Domain search strip */
.mh-domain-strip {
  width: 100%;
  float: left;
  background: var(--mh-dark);
  padding: 60px 0 36px;
  border-top: 3px solid #e8e8e8;
  border-bottom: 3px solid #e8e8e8;
  text-align: center;
}

.mh-domain-strip h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 18px;
text-transform: uppercase;

}

.mh-domain-form {
  width: 760px;
  max-width: 100%;
  margin: 0 auto 14px;
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
}

.mh-domain-form input {
  height: 44px;
  flex: 1;
  min-width: 0;
  padding: 0 15px;
  border: 1px solid #bebebe;
  border-top-width: 3px;
  background: #fff;
  color: #929292;
  font-size: 14px;
  line-height: 44px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  outline: none;
}

.mh-domain-form button,
.mh-domain-form a {
  min-width: 96px;
  height: 44px;
  margin-left: 5px;
  padding: 0 20px;
  border: 0;
  border-radius: 0;
  background: var(--mh-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}

.mh-domain-form button:hover,
.mh-domain-form a:hover {
  background: #25272b;
  color: #fff !important;
}

.mh-domain-prices {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  color: #777575;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
}

.mh-domain-prices strong {
  color: var(--mh-green);
  font-weight: 600;
}

.mh-domain-prices a {
  margin-left: auto;
  color: #2a363f;
  font-size: 13px;
}

.mh-domain-prices a:hover {
  color: var(--mh-green);
}

/* WHMCS global controls */
.btn,
button,
input,
select,
textarea,
.form-control {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.btn,
.btn-primary,
.btn-success,
.btn-default,
.btn-outline-primary,
.btn.btn-primary {
  border-radius: 0 !important;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 35px;
  transition: all .3s ease-out 0s;
}

.btn-primary,
.btn-success,
.btn-outline-primary:hover,
.btn.btn-primary {
  background: var(--mh-green) !important;
  border-color: var(--mh-green) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn.btn-primary:hover {
  background: #494949 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.form-control,
.input-group-text,
.card,
.panel,
.alert,
.dropdown-menu {
  border-radius: 0 !important;
}

.card,
.panel {
  border-color: #ddd;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

/* Section typography */
.ps-section {
  width: 100%;
  float: left;
  padding: 80px 0;
  background: #fff;
}

.ps-section-soft {
  background: #f5f6f8;
}

.ps-section-title {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.ps-kicker {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 30px;
  background: var(--mh-green);
  color: #fff;
  font-size: 13px;
  line-height: 21px;
  font-weight: 500;
}

.ps-kicker.light {
  background: #fff;
  color: var(--mh-green);
  border: 1px solid #d9ead2;
}

.ps-section-title h2 {
  color: #222;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 14px;
}

.ps-section-title p {
  color: #777575;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.ps-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.ps-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ps-service-card,
.ps-plan-card,
.ps-feature-card,
.ps-faq-card,
.ps-stat-card,
.ps-testimonial,
.ps-dashboard-card {
  background: #fff;
  border: 0 solid #e3e2e2;
  border-radius: 0;
  box-shadow: var(--mh-shadow);
  transition: all .3s ease-out 0s;
}

.ps-service-card,
.ps-feature-card,
.ps-faq-card,
.ps-testimonial {
  padding: 30px 24px;
}

.ps-service-card:hover,
.ps-plan-card:hover,
.ps-feature-card:hover,
.ps-dashboard-card:hover {
  box-shadow: var(--mh-shadow-hover);
  transform: translateY(-4px);
}

.ps-service-icon,
.ps-feature-icon {
  width: 58px;
  height: 58px;
  line-height: 58px;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 8%;
  font-size: 24px;
  transition: all .3s ease-out 0s;
}

.ps-service-card:hover .ps-service-icon,
.ps-feature-card:hover .ps-feature-icon {
  background: var(--mh-green);
}

.ps-service-card h3,
.ps-feature-card h3,
.ps-faq-card h3 {
  color: #222;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  margin: 0 0 12px;
}

.ps-service-card p,
.ps-feature-card p,
.ps-faq-card p,
.ps-testimonial p {
  color: #777575;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 20px;
}

.ps-btn,
.ps-domain-search button,
.ps-plan-card .btn,
.ps-service-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 15px 30px;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--mh-green);
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-decoration: none !important;
  transition: all .3s ease-out 0s;
}

.ps-btn:hover,
.ps-domain-search button:hover,
.ps-plan-card .btn:hover,
.ps-service-card .btn:hover {
  background: #25272b;
  color: #fff !important;
}

.ps-btn-outline {
  background: transparent !important;
  border: 1px solid #fff !important;
  border-radius: 30px !important;
  color: #fff !important;
  padding: 12px 45px;
}

.ps-btn-outline:hover {
  background: #fff !important;
  color: #000 !important;
}

/* Hosting plan cards */
.ps-plan-card {
  position: relative;
  padding: 25px 0 30px;
  text-align: left;
  overflow: hidden;
}

.ps-plan-card:hover,
.ps-plan-card.featured {
  background: #fff;
  transform: scale(1.04, 1.04);
  z-index: 99;
}

.ps-plan-card h3,
.ps-plan-card p,
.ps-plan-card ul,
.ps-plan-card .ps-btn,
.ps-plan-card .btn,
.ps-badge {
  margin-left: 20px;
  margin-right: 20px;
}

.ps-plan-card h3 {
  color: #222;
  font-size: 25px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.ps-plan-card p {
  color: #777575;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 14px;
}

.ps-price {
  display: block;
  background: var(--mh-green);
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  padding: 10px 0 10px 20px;
  margin: 15px 0;
  transition: all .3s ease-out 0s;
}

.ps-plan-card:hover .ps-price,
.ps-plan-card.featured .ps-price {
  background: #000;
}

.ps-price small {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
}

.ps-badge {
  display: inline-block;
  background: #313131;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  margin-bottom: 16px;
}

.ps-plan-card ul,
.ps-clean-list {
  padding: 0 20px 20px !important;
  margin: 0;
}

.ps-plan-card li,
.ps-clean-list li {
  color: #777575;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.ps-plan-card li:before,
.ps-clean-list li:before {
  content: "\2713";
  color: var(--mh-green);
  font-weight: 700;
}

/* Stats and CTA */
.ps-stats,
.ps-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ps-stat-card,
.ps-dashboard-card {
  padding: 28px 20px;
  text-align: center;
}

.ps-stat-card strong,
.ps-dashboard-card strong {
  display: block;
  color: #222;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
}

.ps-stat-card span,
.ps-dashboard-card span {
  color: #777575;
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
}

.ps-cta {
  padding: 48px;
  background: var(--mh-dark);
  color: #fff;
  border-radius: 0;
  box-shadow: var(--mh-shadow);
}

.ps-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.ps-cta h2 {
  color: #fff;
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 10px;
}

.ps-cta p {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

/* Client area */
.ps-client-hero,
.ps-order-hero {
  padding: 40px 34px;
  margin-bottom: 28px;
  background: var(--mh-dark);
  color: #fff;
  border-radius: 0;
  box-shadow: var(--mh-shadow);
}

.ps-client-hero h1,
.ps-order-hero h1,
.ps-order-hero h2 {
  color: #fff;
  font-size: 35px;
  line-height: 42px;
  font-weight: 700;
  margin: 0 0 10px;
}

.ps-client-hero p,
.ps-order-hero p {
  color: rgba(255,255,255,.78);
  margin: 0;
}

/* Order form */
.ps-order-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

#order-standard_cart .products .product,
#order-standard_cart .domain-selection-options .option,
#order-standard_cart .view-cart-items .item,
#order-standard_cart .sidebar-collapsed,
#order-standard_cart .summary-container {
  border-radius: 0 !important;
  border-color: #ddd !important;
  box-shadow: var(--mh-shadow) !important;
}

#order-standard_cart .field,
#order-standard_cart .form-control,
#order-standard_cart .btn {
  border-radius: 0 !important;
}

#order-standard_cart .summary-container,
#order-standard_cart .order-summary {
  background: #fff !important;
}

#order-standard_cart .btn-checkout,
#order-standard_cart .btn-primary {
  background: var(--mh-green) !important;
  border-color: var(--mh-green) !important;
}

/* Footer */
.mh-footer {
  width: 100%;
  float: left;
  margin: 0;
  color: #727272;
  background: var(--mh-footer);
  padding: 60px 0 0;
}

.mh-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 32px;
}

.mh-footer h4 {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  position: relative;
}

.mh-footer h4:after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--mh-green);
  margin-top: 10px;
}

.mh-footer p {
  color: #727272;
  line-height: 24px;
  max-width: 340px;
  margin: 18px 0 0;
}

.mh-footer a {
  display: block;
  color: #727272;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 10px;
}

.mh-footer a:hover {
  color: #fff;
}

.mh-footer .mh-logo-img {
  filter: brightness(0) invert(1);
}

.mh-logo-footer .mh-logo-fallback span,
.mh-logo-footer .mh-logo-fallback em {
  color: #fff;
}

.mh-footer-bottom {
  width: 100%;
  margin-top: 42px;
  padding: 30px 0 20px;
  background: var(--mh-footer-bottom);
  color: #727272;
  font-size: 14px;
}

/* Small utilities taken from the visual language */
.font-thin-xs { font-weight: 200 !important; }
.font-thin { font-weight: 300 !important; }
.font-bold { font-weight: 600 !important; }
.uppercase { text-transform: uppercase !important; }
.font-white { color: #fff !important; }
.font-color { color: var(--mh-green) !important; }
.font-black { color: #3c3c3c !important; }
.font-black-dark { color: #000 !important; }
.font-grey { color: #888989 !important; }
.font14 { font-size: 14px !important; }
.font15 { font-size: 15px !important; }
.font16 { font-size: 16px !important; }
.font18 { font-size: 18px !important; }
.font20 { font-size: 20px !important; }
.font25 { font-size: 25px !important; }
.font30 { font-size: 30px !important; }
.font35 { font-size: 35px !important; }
.font45 { font-size: 45px !important; }
.font55 { font-size: 55px !important; }
.font60 { font-size: 60px !important; }
.nomargin { margin: 0 !important; }
.nopadding { padding: 0 !important; }

/* Responsive */
@media only screen and (min-width: 992px) and (max-width: 1169px) {
  .mh-container,
  .ps-wrap,
  .mh-header-inner {
    width: 94%;
    max-width: 94%;
  }

  .mh-nav > a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
  }

  .mh-headline-small {
    font-size: 35px;
  }

  .mh-headline-large {
    font-size: 62px;
  }

  .mh-model-photo {
    right: -115px;
  }
}

@media only screen and (max-width: 999px) {
  .mh-site-header {
    height: auto;
    min-height: 67px;
    padding: 5px 0 10px;
  }

  .mh-header-inner {
    width: 94%;
    max-width: 94%;
    height: auto;
    min-height: 52px;
    position: relative;
  }

  .mh-logo,
  .mh-logo-img {
    height: 52px;
  }

  .mh-logo-img {
    max-height: 39px;
  }

  .mh-menu-toggle {
    display: inline-flex;
  }

  .mh-nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 322px;
    overflow-y: auto;
    z-index: 99999;
    background: #2c3036;
    padding: 0 15px 14px;
    box-shadow: 0 1px 0 rgba(255,255,255,.1) inset;
    
  }

  .mh-nav.is-open {
    display: block;
  }

  .mh-nav > a {
    display: block;
    width: 100%;
    height: auto;
    line-height: 20px;
    padding: 12px 15px;
    color: #fafafa !important;
    border-bottom: 1px solid #3b3e44;
    font-size: 15px;
    font-weight: 400;

    
  }

  .mh-nav > a:hover,
  .mh-nav > a.active {
    color: var(--mh-green) !important;
  }

  .mh-nav > a:after {
    display: none;
  }

  .mh-hero-grid {
    width: 94%;
    max-width: 94%;
    min-height: 470px;
    grid-template-columns: 57% 43%;
  }

  .mh-headline-small {
    font-size: 30px;
    white-space: normal;
  }

  .mh-headline-large {
    font-size: 54px;
    letter-spacing: 3px;
  }

  .mh-lead,
  .mh-sublead {
    font-size: 17px;
    line-height: 25px;
  }

  .mh-model-photo {
    right: -100px;
    width: 560px;
    height: 470px;
  }

  .mh-sale-card {
    top: 60px;
    left: 0;
    transform: scale(.9);
    transform-origin: top left;
  }

  .mh-sale-circle {
    top: 184px;
    left: 35px;
    transform: scale(.9);
    transform-origin: top left;
  }

  .ps-grid-3,
  .ps-order-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-grid-4,
  .ps-stats,
  .ps-dashboard-grid,
  .mh-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ps-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .mh-hero-maxhost {
    min-height: auto;
  }

  .mh-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 0;
  }

  .mh-hero-copy {
    max-width: 100%;
    padding-bottom: 24px;
  }

  .mh-headline-small {
    font-size: 29px;
  }

  .mh-headline-large {
    font-size: 52px;
    letter-spacing: 2px;
  }

  .mh-hero-visual {
    min-height: 330px;
  }

  .mh-model-photo {
    right: -40px;
    width: 100%;
    height: 330px;
  }

  .mh-sale-card {
    top: 10px;
    left: 0;
    transform: scale(.78);
  }

  .mh-sale-circle {
    top: 108px;
    left: 42px;
    transform: scale(.78);
  }

  .mh-domain-form {
    display: block;
  }

  .mh-domain-form input,
  .mh-domain-form button,
  .mh-domain-form a {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .mh-domain-prices {
    display: block;
    text-align: center;
  }

  .mh-domain-prices span,
  .mh-domain-prices a {
    display: inline-block;
    margin: 5px 8px;
  }

  .ps-section {
    padding: 60px 0;
  }

  .ps-section-title h2,
  .ps-cta h2,
  .ps-client-hero h1,
  .ps-order-hero h1,
  .ps-order-hero h2 {
    font-size: 30px;
    line-height: 38px;
  }

  .ps-grid-3,
  .ps-grid-4,
  .ps-order-products,
  .ps-stats,
  .ps-dashboard-grid,
  .mh-footer-grid {
    grid-template-columns: 1fr;
  }

  .ps-plan-card:hover,
  .ps-plan-card.featured {
    transform: none;
  }

  .ps-cta {
    padding: 34px 24px;
  }
}

@media only screen and (max-width: 479px) {
  .mh-header-inner,
  .mh-container,
  .ps-wrap {
    width: 94%;
    max-width: 94%;
  }

  .mh-logo {
    min-width: 135px;
  }

  .mh-logo-img {
    max-width: 150px;
    max-height: 36px;
  }

  .mh-headline-small {
    font-size: 24px;
  }

  .mh-headline-large {
    font-size: 42px;
    letter-spacing: 1px;
  }

  .mh-lead,
  .mh-sublead {
    font-size: 15px;
    line-height: 23px;
  }

  .mh-dark-btn {
    min-width: 160px;
    min-height: 46px;
    padding: 13px 24px;
    font-size: 12px;
  }

  .mh-sale-card {
    display: none;
  }

  .mh-sale-circle {
    width: 70px;
    height: 70px;
    padding-top: 18px;
    font-size: 12px;
    top: 70px;
    left: auto;
    right: 10px;
    transform: none;
  }

  .mh-sale-circle b {
    font-size: 15px;
  }

  .mh-sale-circle small {
    font-size: 10px;
  }

  .mh-hero-visual {
    min-height: 260px;
  }

  .mh-model-photo {
    right: -65px;
    height: 260px;
  }
  
  
}


/* Simple search box */
.domain-checker-container,
.domain-search-container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.domain-checker-container h2,
.domain-search-container h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
}

.domain-checker-container .input-group {
    display: flex !important;
    width: 100% !important;
}

.domain-checker-container input[type=text] {
    height: 56px !important;
    font-size: 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}

.domain-checker-container .btn {
    height: 56px !important;
    min-width: 110px !important;
    border-radius: 0 !important;
    background: #49a32b !important;
    border: 1px solid #49a32b !important;
    font-weight: 600 !important;
}

 
