/*-------------------------
    Variables
-------------------------*/
:root {
  --color-primary: #004792;
  --color-secondary: #001933;
  --color-white: #ffffff;
  --color-black: #0a0102;
  --color-body: #626364;
  --color-link: #004792;
  --color-gray-1: #f8f9fa;
  --color-yellow-dark: #6b5b1a;
  --font-primary: "Outfit", sans-serif;
  --transition: all 0.4s ease-in-out;
  --font-body-1: 22px;
  --font-body-2: 20px;
  --font-body-3: 18px;
  --font-body-4: 16px;
  --line-height-b1: 1.5;
  --line-height-b2: 1.6;
  --line-height-b3: 1.1;
  --h1: 40px;
  --h2: 32px;
  --h3: 24px;
}

body {
  background-color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--font-body-3);
  color: var(--color-body);
  line-height: 1.3;
}

a,
a:focus,
a:hover,
a:active {
  text-decoration: none;
}

h1 {
  font-size: var(--h1);
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

h1,
h2,
h3 {
  font-weight: bold;
  color: var(--color-black);
}

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

/* ===== Scrollbar CSS ===== */

::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d4d7d9;
  border-radius: 10px;
}

/* Standard syntax */
::placeholder {
  font-size: var(--font-body-3);
  font-weight: 300;
  color: #8a8a8a !important;
  opacity: 1; /* Firefox */
}

/* Internet Explorer 10-11 */
input:-ms-input-placeholder {
  font-size: var(--font-body-3);
  font-weight: 300;
  color: #8a8a8a !important;
}

/* Microsoft Edge */
input::-ms-input-placeholder {
  font-size: var(--font-body-3);
  font-weight: 300;
  color: #8a8a8a !important;
}

/* Firefox 18- */
input::-moz-placeholder {
  font-size: var(--font-body-3);
  font-weight: 300;
  color: #8a8a8a !important;
  opacity: 1;
}

/* Safari, Chrome, Opera */
input::-webkit-input-placeholder {
  font-size: var(--font-body-3);
  font-weight: 300;
  color: #8a8a8a !important;
}

section {
  padding: 80px 0;
}

.bg-light-blue {
  background-color: #f6f9fc;
}

.text-primary {
  color: var(--color-primary) !important;
}

.btn {
  background-color: var(--color-primary);
  border-radius: 6px;
  padding: 10px 24px;
  border-color: var(--color-primary);
  font-size: var(--font-body-4);
  font-weight: 600;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #fff;
}

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

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-black);
}

/** Top Navigation Starts **/
nav {
  background-color: var(--color-white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}

.logo-main {
  width: 143px;
  max-width: 100%;
}

.navbar-nav .nav-link {
  color: var(--color-black);
  font-size: var(--font-body-4);
}

.navbar-nav {
  align-items: center;
}

nav .nav-item {
  padding: 0 15px;
}

nav .nav-item .nav-link.join-now {
  color: #ffffff !important;
  padding: 10px 24px;
}

nav .nav-link.active,
nav .show > .nav-link,
.navbar-nav .nav-link:hover {
  color: var(--color-primary) !important;
}

.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--color-primary);
  background-color: #f9f9f9;
}

.dropdown-item {
  font-size: 16px;
  padding: 0.5rem 0.8rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    padding: 0;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
    border: 0;
    box-shadow: 0px 19px 55px 4px rgb(50 50 93 / 15%);
    -webkit-box-shadow: 0px 19px 55px 4px rgb(50 50 93 / 15%);
    border-radius: 4px;
  }
}
/** Top Navigation Ends **/

/** Hero section Starts **/
.hero-section {
  padding: 140px 0 64px;
  background-color: #d9e3ef;
}

.hero-section h1 {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-section p {
  color: #010a09;
  font-weight: 300;
  font-size: var(--font-body-2);
  margin-bottom: 30px;
}

.hero-section .filter-by {
  max-width: 460px;
  margin: 0 auto;
  margin-bottom: 130px;
}

.hero-section .filter-by .input-group {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px;
}

.hero-section .filter-by .input-group input {
  padding: 6px 10px;
  border: 0;
  border-radius: 8px;
  font-size: var(--font-body-3);
}

.form-control:focus {
  box-shadow: none;
  outline: none;
}

.hero-section .filter-by .input-group .btn {
  border-radius: 5px !important;
  padding: 8px 24px;
  font-weight: 600;
}

/** Hero section Ends **/

.section-title {
  margin-bottom: 50px;
}

.section-title h1 {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}

.section-title p {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 5px;
  color: var(--color-black);
}

.get-started {
  padding: 20px 0;
}

.get-started-main {
  padding: 60px 0;
}

.get-started-main .providers {
  border: 1px solid #d9e3ef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.02);
  -webkit-box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.02);
  -moz-box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.02);
  -ms-box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.02);
}

.get-started-main .providers .p-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.get-started-main .providers .p-logos img {
  max-height: 28px;
}

.get-started-main .providers h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--color-black);
}

.get-started-main .providers span {
  display: block;
  font-size: var(--font-body-4);
  font-weight: 300;
  color: var(--color-black);
}

.get-started .CTA {
  text-align: center;
  background-color: var(--color-secondary);
  padding: 25px;
  color: #ffffff;
  border-radius: 10px;
  margin-top: -130px;
}

.get-started .CTA h1 {
  font-size: 32px;
}

.services .service-box {
  border: 2px solid #ebeef1;
  border-radius: 16px;
  padding: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  text-align: center;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services .service-box a {
  padding: 8px 24px;
  border-radius: 8px;
  width: 100%;
  font-weight: 500;
  margin-top: auto;
}

.services .service-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.services .service-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-black);
}

.services .service-box p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0px;
}

.get-started-now h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}

.get-started-now h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-body);
}

.get-started-now p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
}

.get-started-now.api-details p {
  font-size: var(--font-body-3);
}

/* Login Page*/
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: calc(3rem + 60px) 0 3rem;
  background-color: #f5f6f8;
}

.login-box {
  width: 100%;
  max-width: 400px;
  padding: 2.188rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
}

.login-box h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
}

.login-box p {
  font-size: 16px;
  color: #626364;
  margin-bottom: 2.5rem;
}

.form-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 8px;
}

.form-control {
  border-radius: 8px;
  border-color: #e9ecef;
}

.toggle-password {
  cursor: pointer;
  top: 50%;
  right: 15px;
  transform: translateY(25%);
}

.eye-icon {
  width: 20px;
  height: 20px;
}

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

.form-text a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}

.form-text a:hover {
  text-decoration: underline;
}

.login-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 16px;
  font-weight: 300;
}

.login-footer a {
  color: var(--color-primary);
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.hero-section.results,
.hero-section.api,
.hero-section.pricing {
  background-color: #f6f9fc;
}

.hero-section.results h1 {
  font-size: 42px;
  margin-bottom: 30px;
}

.hero-section.api h1,
.hero-section.pricing h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-section.api p,
.hero-section.pricing p {
  font-size: var(--font-body-2);
  font-weight: 400;
}

.hero-section.results .filter-by {
  margin-bottom: 48px;
}

.hero-section.results p {
  font-size: 20px;
  margin-bottom: 0;
}

.result-area .card {
  border: 0;
  border-radius: 15px;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
}

.result-tbl-container table {
  overflow: auto;
  border-collapse: collapse;
}

.result-tbl-container table tr:nth-child(even) {
  background-color: #f5f6f8;
}

.result-tbl-container {
  overflow: auto;
  border-collapse: collapse;
}

.result-tbl-container th {
  white-space: nowrap;
  position: sticky;
  top: 0;
  font-weight: 500;
  font-size: var(--font-body-3);
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding-top: 8px;
  padding-bottom: 8px;
  z-index: 5;
}

.result-tbl-container td {
  background: transparent;
  border: 0;
}

.result-tbl-container td a {
  font-weight: 300;
  color: var(--color-primary);
  text-decoration: underline;
}

.result-tbl-container .ipv4-info:not(:last-child) {
  margin-bottom: 20px;
}

.result-tbl-container .ipv4-info h6 {
  color: var(--color-black);
  margin-bottom: 5px;
  font-weight: 300;
}

.result-tbl-container .ipv4-info span {
  display: block;
  color: #545454;
  font-size: 14px;
  font-weight: 300;
}

.result-tbl-container .mx-dns {
  font-weight: 300;
  color: #545454;
}

.result-tbl-container .mx-dns pre {
  white-space: normal;
}

.result-tbl-container .mx-dns span {
  font-weight: 400;
  color: var(--color-black);
}

.result-CTA {
  background-color: var(--color-primary);
  padding: 60px 0;
}

.result-CTA h1 {
  color: var(--color-white);
  font-size: 38px;
  font-weight: 700;
}

.api-access h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}

.api-access .api-example {
  background-color: #e6edf4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.api-access .api-example code {
  font-family: "Source Code Pro", monospace;
  font-size: 16px;
  color: #00356e;
  font-weight: 400;
}

/** Pricing Section Starts **/

.pricing-tables {
  padding: 60px 0;
}

.p-section .header-section .title {
  font-size: 40px;
  font-weight: 700;
  color: #092baa;
  padding: 70px 0px 50px;
}

.p-section .header-section .title .title-sub {
  font-size: 30px;
  font-weight: 500;
  margin-top: 12px;
  display: block;
  color: #535457;
}

/* Pricing Toggle Style */
.toggle,
.toggler {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}
.toggler {
  color: #ddd;
  transition: 0.2s;
  font-weight: 600;
  font-size: 20px;
}
.toggler--is-active {
  color: var(--color-primary);
}
.b {
  display: block;
}
.toggle {
  position: relative;
  width: 40px;
  height: 23px;
  border-radius: 60px;
  background-color: var(--color-primary);
  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: 50%;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0.08s, 0s;
}
.switch {
  width: 14px;
  height: 14px;
  position: absolute;
  left: 5px;
  top: 4.5px;
  right: 57.5%;
  background-color: var(--color-white);
  border-radius: 100%;
  z-index: 1;
  transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-property: left, right;
  transition-delay: 0s, 0.08s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-tables .plan {
  border: 1px solid #d4d7d9;
  min-height: 100px;
  background: #fff;
  border-radius: 5px;
  margin: 20px 0;
  padding-bottom: 25px;
  text-align: center;
}

.pricing-tables .plan.pro {
  padding-bottom: 35px;
}

.pricing-tables .plan.custom p {
  padding: 30% 30px;
}

.pricing-tables .plan .head {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px 0;
  background: #333333;
  color: #fff;
  position: relative;
}

.pricing-tables .plan .head::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-color: transparent;
  border-bottom-color: #333333;
  border-style: solid;
  border-width: 0 0 50px 50px;
  height: 0;
  width: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pricing-tables .plan.pro .head {
  background: var(--color-primary);
}

.pricing-tables .plan.pro .head::after {
  border-bottom-color: var(--color-primary);
}

.pricing-tables .plan.custom .head::after {
  border-bottom-color: #d9e3ef;
}

.pricing-tables .plan.custom .head {
  background: #d9e3ef;
  color: var(--color-primary);
}

.pricing-tables .plan.custom .head h2 {
  color: var(--color-primary);
}

.pricing-tables .plan .head h2 {
  font-size: var(--font-body-3);
  font-weight: 600;
  margin: 0;
  color: var(--color-white);
}

.pricing-tables .plan.pro .head h2 {
  font-size: 25px;
}

.pricing-tables .plan ul {
  list-style-type: none;
  padding: 0 20px 0;
}

.pricing-tables .plan ul li {
  line-height: 22px;
  padding: 15px 0;
  font-weight: 400;
  font-size: var(--font-body-4);
  color: var(--color-black);
}

.pricing-tables .plan .price {
  margin: 34px auto 15px auto;
  width: 80%;
  color: #535457;
}

.pricing-tables .plan.pro .price {
  color: #092baa;
  margin: 44px auto 25px;
}

.pricing-tables .plan .price h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-tables .plan.pro .price h3 {
  font-size: 40px;
  color: var(--color-primary);
}

.pricing-tables .plan .price span {
  font-size: var(--font-body-4);
  font-weight: 700;
  display: inline-block;
  margin-left: 5px;
}

.pricing-tables .plan.pro .price span {
  font-size: var(--font-body-4);
}

.pricing-tables .plan .price h4 {
  color: #aaa;
  font-size: 16px;
}

.pricing-tables .plan .btn {
  padding: 10px 24px;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid var(--color-black);
  font-weight: 500;
  font-size: var(--font-body-4);
  margin-top: 15px;
  word-break: break-all;
}

.pricing-tables .plan .btn:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}

.pricing-tables .plan.custom .btn:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.pricing-tables .plan.pro .btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.pricing-tables .plan.custom .btn {
  background-color: transparent;
  color: var(--color-primary);
  border-color: #b0c6dd;
}

.features .feature-block {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 0;
  margin-bottom: 32px;
}

.features .feature-block .content ul li {
  list-style-type: disc;
  margin-left: 1rem;
}

.features .feature-block .f-img {
  background-color: #f6f9fc;
  border-radius: 16px;
  padding: 45px;
}

.features .feature-block .f-img > img {
  width: 134px;
}

@media (max-width: 991.98px) {
  .features .feature-block {
    flex-direction: column;
    gap: 0;
    border: 1px solid #e9ecef;
    border-radius: 16px;
  }
  .features .feature-block .content {
    padding: 24px;
  }
  .features .feature-block .f-img {
    text-align: center;
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

@media only screen and (max-width: 992px) {
  .pricing-tables .plan.pro .price h3 {
    font-size: 32px;
  }
  .pricing-tables .plan .price h3 {
    font-size: 22px;
  }
  .pricing-tables .plan .btn {
    font-size: 14px;
  }
}

/** Pricing Section Ends **/

.feature-box {
  border-radius: 8px;
  border: 1px solid #d9e3ef;
  padding: 20px;
  margin-bottom: 30px;
}

.feature-box img {
  margin-bottom: 20px;
  width: 36px;
  height: 36px;
}

.feature-box h3 {
  font-size: var(--font-body-1);
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: var(--font-body-3);
  font-weight: 400;
  margin-bottom: 0;
}

.faq .faq-box {
  margin-bottom: 30px;
}

.faq .faq-box h3 {
  font-weight: 600;
  font-size: var(--font-body-1);
  margin-bottom: 10px;
}

.faq .faq-box p {
  font-weight: 400;
  font-size: var(--font-body-3);
  margin-bottom: 0;
}

.pricing-cta {
  background-color: var(--color-primary);
}

.hero-section.pri-terms {
  background-color: #f6f9fc;
  padding: 80px 0 5px;
}

.privacy .main-title {
  font-size: 20px;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy .sub-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.privacy ol li {
  margin-bottom: 8px;
  list-style-type: inherit;
}

.privacy ol li strong {
  font-weight: 600;
}

.about-first .sub-title {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.about-first .about-block {
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 25px;
  height: 100%;
}

.about-block h2 {
  font-size: 30px;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 600;
}

footer {
  padding: 80px 0 0;
  background-color: var(--color-secondary);
  position: relative;
}

footer .basic-info p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}

footer .basic-info p a {
  color: #b0c6dd;
  text-decoration: underline;
}

footer .basic-info .logo {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 25px;
  display: block;
}

footer .active-products-links p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

footer .active-products-links a {
  font-size: 14px;
  font-weight: 400;
  color: #b0c6dd;
  display: block;
  margin-bottom: 5px;
}

footer .main-links h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

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

footer .main-links ul li {
  margin-bottom: 10px;
  color: #b0c6dd;
  font-size: 16px;
}

footer .main-links ul li a {
  color: #b0c6dd;
  font-size: 16px;
}

footer .main-links ul li a.s-link {
  color: #ffffff;
  font-weight: 500;
}

footer .main-links ul li a:hover {
  color: #ffffff;
}

footer .copyright {
  font-size: 16px;
  border-top: 1px solid rgba(230, 237, 244, 0.3);
  color: #ffffff;
  text-align: center;
  padding: 15px 0;
}

footer .copyright a {
  color: #b0c6dd;
}

footer .copyright span {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
  .get-started-main .providers .p-logos {
    gap: 15px;
  }
  .get-started-main .providers .p-logos img {
    max-height: 23px;
  }
  .get-started-main .providers {
    padding: 15px;
  }
}
/*@media (max-width: 991.98px) {
  .hero-section h1 {
    margin-bottom: 30px;
  }
  nav .nav-item .nav-link.join-now {
    padding: 8px 15px;
  }
  nav .nav-item {
    padding: 0 8px;
  }
}
@media (max-width: 767.98px) {
  .navbar-nav {
    align-items: flex-start;
  }
}*/
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    font-size: var(--font-body-3);
  }
  .hero-section {
    padding: 100px 0 32px;
  }
  .hero-section .filter-by {
    gap: 15px;
  }
  .hero-section .filter-by .check-with {
    padding: 15px 10px;
    font-size: var(--font-body-4);
    min-width: 185px;
  }
  .info-big {
    font-size: var(--font-body-3);
  }
  .section-title {
    margin-bottom: 20px;
  }
  h1 {
    font-size: 32px;
  }
  section,
  .result-CTA {
    padding: 40px 0;
  }
  .result-CTA h1 {
    font-size: 30px;
  }
  .hero-section.results h1 {
    font-size: 32px;
  }
  table thead {
    display: none;
  }

  table tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    padding: 1px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  table td[data-label] {
    display: flex;
    font-weight: bold;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  table td[data-label]::before {
    content: attr(data-label);
    color: var(--color-black);
    font-weight: 400;
    width: 100%;
  }
  .result-tbl-container td a {
    font-size: 16px;
    word-break: break-all;
  }
  .result-tbl-container .ipv4-info h6 {
    margin-bottom: 0;
  }
  .result-tbl-container {
    max-height: 100% !important;
  }
  .hero-section h1,
  .hero-section.api h1 {
    font-size: 34px;
  }
  .get-started .CTA h1,
  .get-started-now h2 {
    font-size: 28px;
  }
  .hero-section .filter-by .input-group input,
  .hero-section .filter-by .input-group .btn {
    width: 100%;
  }
  .hero-section .filter-by .input-group input {
    margin-bottom: 10px;
    text-align: center;
  }
  .login-box {
    padding: 1rem;
    max-width: 350px;
  }
  .navbar-toggler {
    border: 0;
  }
  nav .nav-item {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  .login-container {
    padding: calc(3rem + 30px) 1rem 2rem;
  }
  .login-box h1 {
    font-size: 26px;
  }
}
