@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

:root {
  --primary: rgb(1, 147, 252);
  --secondary: rgb(0, 209, 254);
  --white: rgb(255, 255, 255);
}

.btn {
  height: 40px;
  border: 1px solid transparent;
  outline: 0;
  font-weight: 500;
  padding: 0 18px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: ease 0.3s;
  font-size: 12px;
  min-width: 100px;
  position: relative;
}

.btn.primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn.primary:hover {
  background-color: var(--secondary);
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
}
@media (max-width: 1124px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
header .logo {
  width: 263px;
}
header h1 {
  color: rgb(132, 132, 132);
  font-weight: 500;
}
header h1 strong {
  color: rgb(0, 0, 0);
  font-weight: 700;
}
@media (max-width: 1124px) {
  header .socials-container {
    display: none;
  }
}
header .socials-container .label {
  color: rgb(132, 132, 132);
  font-weight: 500;
  font-size: 8.3px;
  letter-spacing: 11%;
  text-align: center;
  margin-bottom: 10px;
}
header .socials-container .socials-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .socials-container .socials-wrapper .social-icon {
  width: 30px;
  height: 30px;
}

.no-pricing main .main-content {
  min-height: calc(70vh - 130px) !important;
}

main {
  background: linear-gradient(333.89deg, #FFFFFF -1.31%, #0193FC 304.67%);
  padding: 0 50px;
  overflow: hidden;
}
@media (max-width: 1124px) {
  main {
    padding: 0 20px;
  }
}
main .main-content {
  min-height: calc(60vh - 130px);
  max-width: 1570px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1124px) {
  main .main-content {
    flex-direction: column;
    height: auto;
    padding: 40px 0;
    min-height: auto;
    text-align: center;
    gap: 30px;
  }
}
main .main-content .left-side {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1124px) {
  main .main-content .left-side {
    width: 100%;
  }
}
main .main-content .left-side h1 {
  font-weight: 400;
  font-size: 45.92px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  main .main-content .left-side h1 {
    font-size: 35px;
  }
}
main .main-content .left-side h1 strong {
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
}
main .main-content .left-side .domain-price {
  font-size: 2.1em;
  margin-bottom: 40px;
}
main .main-content .left-side h2 {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 26px;
}
main .main-content .left-side ul {
  list-style: none;
  margin-bottom: 20px;
}
@media (max-width: 1124px) {
  main .main-content .left-side ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
main .main-content .left-side ul li {
  background: url("https://cdn.gatehills.com/gateHills/parking/assets/images/checkmark.png") no-repeat left center;
  background-size: 16px 16px;
  padding-left: 24px;
  margin-bottom: 8px;
}
@media (max-width: 1124px) {
  main .main-content .left-side ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
main .main-content .left-side .btn-container {
  display: flex;
}
@media (max-width: 1124px) {
  main .main-content .left-side .btn-container {
    justify-content: center;
  }
}
main .main-content .left-side .btn-container .btn {
  width: 200px;
  height: 55px;
  font-size: 1.2em;
}
main .main-content .right-side {
  width: 50%;
  padding: 20px 0;
}
@media (max-width: 1124px) {
  main .main-content .right-side {
    width: 100%;
    padding: 0;
  }
}
main .main-content .right-side .right-content-wrapper {
  max-width: 620px;
  margin: 0 auto;
}
main .main-content .right-side .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1124px) {
  main .main-content .right-side .img-wrapper img {
    padding: 0;
  }
}
main .main-content .domain-search-form-container {
  margin-top: 10px;
}
main .main-content .domain-search-form-container form {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  main .main-content .domain-search-form-container form {
    flex-direction: column;
  }
}
main .main-content .domain-search-form-container form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.2em;
  width: 100%;
  padding: 0 20px;
  height: 55px;
}
main .main-content .domain-search-form-container form input:focus-visible, main .main-content .domain-search-form-container form input:focus {
  outline: none;
}
main .main-content .domain-search-form-container form .btn {
  border: none;
  background: linear-gradient(0deg, rgb(255, 191, 0) 0%, rgb(255, 230, 41) 58%, rgb(255, 229, 0) 100%);
  color: #000 !important;
  height: 55px;
  font-size: 1.2em;
  min-width: 150px;
}
main .main-content .domain-search-form-container form .btn:hover {
  background: linear-gradient(0deg, #d49f00 0%, #dac522 58%, #ffe716 100%);
}

section {
  padding: 0 40px;
}
@media (max-width: 1124px) {
  section {
    padding: 0 20px;
  }
}
section .section-content {
  min-height: 40vh;
  max-width: 1570px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
}
section .section-content .col-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1124px) {
  section .section-content .col-title {
    text-align: center;
  }
}
@media (max-width: 1124px) {
  section .section-content {
    flex-direction: column;
    min-height: auto;
    padding: 40px 0;
    gap: 20px;
  }
}
section .section-content .chart-col {
  flex: 1;
}
@media (max-width: 1124px) {
  section .section-content .chart-col {
    width: 100%;
  }
}
section .section-content .chart-col .ct-chart {
  max-width: 750px;
}
section .section-content .chart-col .ct-chart.loading {
  position: relative;
}
section .section-content .chart-col .ct-chart.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 10px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 2;
}
section .section-content .chart-col .ct-chart.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.5em;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.4);
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 1124px) {
  section .section-content .chart-col .ct-chart {
    max-width: 100%;
    margin-left: -20px;
  }
}
section .section-content .chart-col .ct-chart .ct-series .ct-bar {
  stroke: var(--primary);
  stroke-width: 35px;
}
@media (max-width: 1124px) {
  section .section-content .chart-col .ct-chart .ct-series .ct-bar {
    stroke-width: 25px;
  }
}
section .section-content .info-col {
  flex: 1;
  padding: 20px 0;
}
@media (max-width: 1124px) {
  section .section-content .info-col {
    width: 100%;
  }
}
section .section-content .info-col .form-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px 40px;
}
@media (max-width: 1124px) {
  section .section-content .info-col .form-container {
    padding: 20px;
  }
}
section .section-content .info-col .form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section .section-content .info-col .form-container form .col-title {
  margin-bottom: 0;
}
section .section-content .info-col .form-container form .col-title #domainNameForm {
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
}
section .section-content .info-col .form-container form input, section .section-content .info-col .form-container form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.2em;
  width: 100%;
  padding: 0 20px;
  height: 55px;
}
section .section-content .info-col .form-container form input:focus-visible, section .section-content .info-col .form-container form input:focus, section .section-content .info-col .form-container form select:focus-visible, section .section-content .info-col .form-container form select:focus {
  outline: none;
}
section .section-content .info-col .form-container form .btn {
  height: 55px;
  font-size: 1.2em;
  text-wrap: nowrap;
  min-width: 150px;
  padding: 0 40px;
}
section .section-content .info-col .form-container form .row-c {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  section .section-content .info-col .form-container form .row-c {
    flex-direction: column;
    gap: 20px;
  }
}
section .get-your-website-content {
  min-height: 30vh;
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
section .get-your-website-content .title {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1124px) {
  section .get-your-website-content .title {
    margin-bottom: 10px;
  }
}
@media (max-width: 1124px) {
  section .get-your-website-content {
    flex-direction: column;
    min-height: auto;
    padding: 40px 0;
    gap: 20px;
  }
}
section .get-your-website-content .btn-container {
  display: flex;
  justify-content: center;
}
section .get-your-website-content .btn-container .btn {
  font-size: 1.2em;
  height: 55px;
}

.section-socials {
  display: none;
  padding-bottom: 40px;
}
@media (max-width: 1124px) {
  .section-socials {
    display: block;
  }
}
.section-socials .socials-container .label {
  color: rgb(132, 132, 132);
  font-weight: 500;
  font-size: 8.3px;
  letter-spacing: 11%;
  text-align: center;
  margin-bottom: 10px;
}
.section-socials .socials-container .socials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.section-socials .socials-container .socials-wrapper .social-icon {
  width: 30px;
  height: 30px;
}/*# sourceMappingURL=style.css.map */