/* color variables */
:root {
  --color-brand-1: #024430!important;
  --color-brand-1-hover: #066a4c!important;
  --color-brand-2: #ffe7bb!important;
  --color-brand-3: #afeae4!important;
  --color-brand-4: #e8b0e8!important;
  --color-success: #06d6a0!important;
  --color-danger: #ef476f!important;
  --color-warning: #ffd166!important;
  --color-mutted: #cfdee3!important;
  --color-info: #28a7e6!important;
  --color-gray-50: #ecf1f2!important;
  --color-gray-60: #e0f1f4!important;
  --color-gray-80: #cde2e7!important;
  --color-gray-100: #b9cad0!important;
  --color-gray-200: #8ea4ac!important;
  --color-gray-300: #6a838c!important;
  --color-gray-400: #4e6770!important;
  --color-gray-500: #3d565f!important;
  --color-gray-600: #1f3c45!important;
  --color-gray-700: #0e2932!important;
  --color-gray-800: #122830!important;
  --color-gray-900: #071920!important;
  --color-blue: #006d77;
  --white: #fff;
  --black: #000;
  --color-black: #414357;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**************************** Begin: common classes *****************************/
.color-brand-1{
  color: var(--color-brand-1) !important;
}
.color-brand-1-hover{
  color: var(--color-brand-1-hover) !important;
}
.color-brand-2{
  color: var(--color-brand-2);
}
.color-brand-3{
  color: var(--color-brand-3);
}
.color-grey-500{
  color: var(--color-gray-500) !important;
}
.color-grey-80{
  color: var(--color-gray-80) !important;
}
.color-grey-800{
  color: var(--color-gray-800) !important;
}
.color-success{
  color: var(--color-success)
}

.brand-box-shadow{
  box-shadow: .25rem .25rem 0 0 var(--color-brand-1);
}
.brand-box-shadow-2{
  box-shadow: .375rem .375rem 0 -1px #fff, .375rem .375rem 0 0 var(--color-gray-500);
}
.bg-brand-lighter{
  background-color: rgb(224, 241, 244) !important;
}
.font-500{
  font-weight: 500 !important;
}
.font-600{
  font-weight: 600 !important;
}
.font-700{
  font-weight: 700 !important;
}

/****************************** End: common classes *****************************/
/* Basic style for the slider input */
.slider {
  -webkit-appearance: none;
  width: 300px;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3; /* Default grey background for unselected range */
  outline: none;
  transition: background 0.3s ease-in-out;
}

/* Custom thumb styling */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 8px solid var(--color-brand-1-hover);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--color-brand-1-hover);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.slider::-ms-thumb {
  width: 20px;
  height: 20px;
  /* border-radius: 50%; */
  background: #ffffff;
  border: 3px solid var(--color-brand-1-hover);
  cursor: pointer;
}

/* Slider track with the selected portion in orange */
.slider-track {
  position: absolute;
  top: 8px;
  left: 0;
  height: 6px;
  background: var(--color-brand-1-hover);
  border-radius: 5px;
  z-index: 1;
  pointer-events: none;
}


.sp-audit-button {
  background-color: var(--color-brand-1-hover) !important;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-brand-2);
  text-decoration: none;
  margin-left: 0px;
  border: 1px solid var(--color-brand-1) !important;
  text-wrap: nowrap;
  border-radius: 8px;
}
.sp-audit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.main-box-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  width: 100%;
  background-color: inherit;
  padding: 10px;
}

.main-box-holder > * {
  border: 1px solid var(--color-brand-1);
  height: 50px;
  border-radius: 10px;
  background-color: white;
}

.search-box-suggestion {
  display: flex;
  width: 700px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.search-box-suggestion .main-search-bar {
  display: flex;
  align-items: center;
  width: inherit;
}

.search-box-suggestion .search-input {
  width: calc(100% - 26px);
  margin-left: 1px;
}

.search-input {
  border-radius: 10px;
  padding-left: 35px;
  color: var(--color-black);
  font-size: 14px;
}

.hidden {
  display: none;
}

.main-box-holder .search-input {
  border: 0;
  outline: 0;
}

/* tools section styling */

.divided-sections {
  display: none;
}

.main-section-btn {
  display: flex;
  margin: 2rem auto;
  justify-content: space-evenly;
  width: 100%;
}

.cs-form-select-btn {
  padding: 10px;
  background-color: white;
  cursor: pointer;
  width: fit-content;
  min-width: 100px;
  border: 0px;
  color:#000;
  /* font-size: 1rem; */
  line-height: 1.5rem;
  border-radius: 12px;
}

.form-active {
  background-color: #eee;
  color: black;
  box-shadow: inset 0px -2px 1px var(--color-brand-1) !important;
}

.item-main-link {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: black;
}

.item-main-search-link {
  width: 100%;
  color: blue;
  padding: 0px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
}

.item-search-link {
  padding: 0px;
  color: var(--color-brand-1);
}

.seo-country-search-box{
  width: 100%;
  /* position: relative; */
}
.search-box {
  position: relative;
  display: flex;
  /* border: 1px solid gray; */
  border: 1px solid var(--color-brand-1);
  border-radius: 12px;
  z-index: 100;
  width: 100%;
  background-color: white;
}

.suggestion-input {
  border-radius: 12px 0 0 12px;
  margin: 13px 0px !important;
  padding: 2px !important;
  color: var(--color-black);
  font-weight: 600;
  width: 88%;
  padding-left: 30px !important;
  border: 0 !important;
  outline: 0;
}

.hidden {
  display: none !important;
}

.close-search-form:focus,
.search-box .suggestion-input:focus {
  border: 0;
}

.search-box .close-search-form {
  background: transparent;
  padding: 5px;
  cursor: pointer;
  border: 0;
  outline: 0;
}

.search-box svg {
  fill: black;
  vertical-align: middle;
}

.close-search-form svg {
  height: 16px;
}

img.country-flags {
  width: 20px;
  height: 16px;
  margin-right: 2px;
}

li img.country-flags {
  margin-right: 10px;
  width: 42px;
  height: 30px;
}

img.device-icon-logo {
  width: 25px;
  height: 25px;
}

.select-btn,
.seo-content-country li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.select-btn {
  padding: 0px;
  padding-right: 10px;
  width: 105px;
  justify-content: space-between;
  color: var(--color-brand-1);
  border-left: 1px solid black !important;
  height: 26px;
  margin: auto 0;
  padding-left: 5px;
}

.select-btn i {
  font-size: 25px;
  margin: 0 0 5px 5px;
  transition: transform 0.3s linear;
}

.select-btn.active i {
  transform: rotate(-180deg);
}

.seo-content-country {
  display: none;
  padding: 15px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin: 25px 0 0 0;
  position: absolute;
  z-index: 999;
  width: 220px;
}

.seo-content-country.active {
  display: block;
}

.seo-content-country .search {
  position: relative;
}

.search input {
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
  padding: 0 0 0 40px;
  border: 1px solid #b3b3b3;
}

.search input,
.search-input,
.suggestion-input {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 10px center;
}

.search input:focus {
  padding-left: 42px;
  border: 2px solid #4285f4;
}

.search input::placeholder {
  color: #bfbfbf;
}

.seo-content-country .options {
  margin-top: 10px;
  max-height: 250px;
  overflow-y: auto;
  padding: 0px 7px 0px 7px;
}

.options::-webkit-scrollbar {
  width: 7px;
}

.options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}

.options::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.options::-webkit-scrollbar-thumb:hover {
  background: #b3b3b3;
}

.options li {
  height: 50px;
  padding: 0 13px;
  font-size: 18px;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}

.options li:hover,
li.selected {
  border-radius: 5px;
  background: #f2f2f2;
}

.active-parent {
  display: block;
  position: relative;
  width: 100%;
}

.suggestions {
  display: none;
}

.format-suggestions {
  position: relative;
  border: 1px solid var(--color-brand-1-hover);
  border-radius: 12px;
  margin: 20px;
  /* background-color: var(--color-brand-1-hover); */
  display: block;
}

.app-icon-li-item {
  border-radius: 25%;
  width: 60px;
}

.suggestion-item {
  padding: 6px 10px;
  cursor: pointer;
  max-width: inherit;
  margin: 0px;
  text-align: left;
  line-break: anywhere;
}

.suggestion-item:hover {
  background-color: #dce3ed;
}

.suggestion-item-info {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  line-height: 1.5rem;
}

button.download-csv-button {
  padding: 15px;
  background: var(--color-brand-1);
  border: 0;
  color: var(--color-brand-2);
  font-weight: 600;
  border-radius: 12px;
  display: block;
  margin: 20px auto;
}

.sign-in-button {
  margin: 0 auto;
  width: 200px;
}
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.loading-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  animation: loading 2.5s infinite;
}

@keyframes loading {
  0% {
    opacity: 0.2;
  }

  25% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0.2;
  }
}

.wordSuggestion {
  columns: 2;
}

/* Reveal animation */
@keyframes revealAnimation1 {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes revealAnimation2 {
  0% {
    transform: rotateY(270deg);
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg);
    opacity: 1;
  }
}
@keyframes revealAnimation3 {
  from {
    opacity: 0;
    display: none;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    display: block;
    transform: translateY(0);
  }
}
@keyframes fadeIn1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn2 {
  from {
    transform: scale3d(0.9, 0.9, 1) translateY(180px);
    opacity: 0;
  }
  to {
    transform: scale3d(1, 1, 1) translateY(0);

    opacity: 1;
  }
}
@keyframes revealAnimation4 {
  from {
    opacity: 0;
    transform: translateY(-30px);
    height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    height: 100%;
  }
}
.reveal {
  animation: revealAnimation1 500ms ease-in forwards;
  animation-delay: 1s;
}
.reveal1 {
  animation: revealAnimation1 500ms ease-in forwards;
  animation-timeline: view();
  animation-range: 60px 320px;
}

.reveal2 {
  animation: revealAnimation2 1s ease forwards;
}
.reveal3 {
  animation: revealAnimation3 linear forwards;
  animation-timeline: view();
  animation-range: 60px 120px;
}
.reveal4 {
  animation: revealAnimation4 1s ease forwards;
}
.formReveal3 {
  animation: revealAnimation1 linear forwards;
}
.fadeIn1 {
  animation: fadeIn1 300ms ease-in forwards;
  /* animation-timeline: view();
  animation-range: 60px 120px; */
}
.fadeIn1Alter {
  animation: fadeIn1 300ms ease-in forwards;
  animation-timeline: view();
  animation-range: 60px 120px;
}
.fadeIn2 {
  animation: fadeIn2 ease-in forwards;
  animation-timeline: view();
  animation-range: 60px 240px;
}
.fadeIn3 {
  animation: fadeIn1 300ms 1 forwards ease-in;
  animation-timeline: view();
  animation-range: 60px 120px;
}
/* marquee animation */
.marquee {
  grid-column-gap: 1.5rem;
  display: flex;
  overflow: hidden;
}

.marquee-content {
  min-width: 100%;
  grid-column-gap: 1.5rem;
  flex: none;
  justify-content: space-around;
  display: flex;
}

/* marquee scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-508.5%));
  }
}
.scroll {
  animation: scroll 40s linear infinite;
}

/* custom css */

#search-bar-input5{
  background-color: #fff;
}
/* default msg container */
.seo-default-msg-container{
  text-align: center;
  padding: 2rem;
  font-size: 20px;
  color: var(--color-brand-2);
  background-color: var(--color-brand-1-hover);
  border-radius: 16px;
  line-height: 1.2;
}

/* Audit CTAs */
.fact-text {
  display: flex;
  align-items: center;
  justify-content: center;

  /* gap: 150px; */
  /* margin: 48px 0px; */
}

.fact-text-button-primary {
  padding: 16px 25px;
  min-width: 250px;
  width: 300px;
  text-decoration: none;
  color: var(--color-brand-2);
  text-align: center;
  transform-style: preserve-3d;
  background-color: var(--color-brand-1-hover);
  border-radius: 10px;
  font-weight: 500;
  line-height: 1em;
  transition: box-shadow 0.35s, transform 0.35s;
  box-shadow: .25rem .25rem 0 0 var(--color-brand-1);
  border: 1px solid var(--bgColor) !important;
  font-size: 18px;
}
a.fact-text-button-primary {
  color: var(--bgColor);
  font-weight: bold;
  background-color: #fff !important;
  border: 1px solid var(--bgColor) !important;
  text-decoration: none !important;
}
a.fact-text-button-primary:hover {
  color: var(--color-brand-1-hover);
  background-color: #fff;
  border: 1px solid var(--color-brand-1);
  box-shadow: 0 8px 20px var(--color-brand-1-hover);
}
.fact-text-button-primary:hover {
  color: var(--color-brand-1-hover);
  background-color: #fff;
  border: 1px solid var(--color-brand-1);
  box-shadow: 0 8px 20px var(--color-brand-1-hover);
}

/* suggested error page */
.error-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 2;
}
.error-description a{
  text-decoration: none;
}
.error-404-animation {
  width: 500px;
}
.container-404-error {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6rem;
  padding: 3rem 1rem 4rem 1rem;
}

.error-description h1 {
  font-size: 84px;
  color: var(--color-brand-1);
}
/* tab animation */

.gif-animation{
/* height: 351px !important; */
}
/* ******* email form ******* */
.link-btn{
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.link-btn:hover {
  color: var(--color-success) !important;
  transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
/* *************** email cta ******************* */
.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  gap: 12px; 
}

.linkButton {
  display: flex;
  align-items: center;
  text-decoration: none;
  border: 1px solid var(--color-brand-1);
  border-radius: 8px;
  padding: 4px 8px; 
  box-shadow: .25rem .25rem 0 0 var(--color-brand-1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 240px;
}

.mv-tool-link{
  background-color: var(--color-brand-1-hover);
  color: var(--color-brand-2);
}
.mv-tool-link:hover{
  background-color: white;
  color: var(--color-brand-1);
}
.ngl-cs-link{
  color: var(--color-brand-1-hover);
}
.ngl-cs-link:hover{
  background-color: var(--color-brand-1-hover);
  color: var(--color-brand-2);
}
.linkButton:hover {
  /* transform: scale(1.05); */
  box-shadow: 0 8px 20px var(--color-brand-1-hover);
}

.iconWrapper {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageWrapper {
  padding: 3px;
}

@media (max-width: 768px) {
  .cta-container {
    /* flex-direction: column; */
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .linkButton {
    justify-content: flex-start;
    gap: 24px;
    width: 200px;
    padding: 4px 8px ;
  }
  .sp-box-newsletter.sp-box-newsletter-2{
    padding: 0 !important;
  }
  .seo-default-msg-container{
    font-size: 16px;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .cta-container {
    flex-direction: column;
  }

}

@media (max-width: 1240px)and (min-width: 1000px) {
  .cta-container{
    flex-direction: column;
  }
}

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

.errorMsg{
  margin-top: 4rem;
  font-size: 24px;
  padding: 2rem;
}
.errorMsg span{
  color: var(--color-brand-1);
}

/* ********************* */
.home-country-selection {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: .25rem .25rem 0 0 var(--color-brand-1);
  cursor: pointer;
  
}
.home-country-select-button {
  display: flex;
  padding: 5px 10px;
  justify-content: space-between;
  transition: transform 0.3s ease;
  width: 210px;
}

.seo-country-select-button,.home-country-select-button,
.seo-content-country li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* ********************* */
.seo-country-select-button.active i {
  transform: rotate(-180deg) !important;
}
.home-country-select-button.active i {
  transform: rotate(-180deg) !important;
}
.mobile-sidebar {
  position: fixed;
  z-index: 1000000;
  margin: 3.29rem 0px;
  background-color: white;
  width: 100%;
  top: 21px;
}
.mobile-sidebar nav ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
}
.mobile-sidebar nav ul a {
  color: #778ba5;
  text-decoration: none;
  font-size: 16px;
}

.hamburger-icon {
  font-size: 24px;
  color: var(--bgColor);
}
.nav-mob-menu {
  min-height: 250px;
  padding-top: 10px;
}
/* ********************* */
#Loading {
  display: flex;
  justify-content: center;
  padding: 50px;
}

.ball {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px;
  background-color: #5c5cbf;
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.ball:nth-child(2) {
  animation-delay: -0.3s;
}

.ball:nth-child(3) {
  animation-delay: -0.6s;
}

.ball:nth-child(4) {
  animation-delay: -0.9s;
}

.tools-card {
  color: var(--color-brand-2);
  transform: translate3d(0, -2px, 0.01px);
  /* box-shadow: 0 8px 20px var(--color-brand-1-hover); */
  /* box-shadow: .375rem .375rem 0 -1px #fff, .375rem .375rem 0 0 var(--color-gray-500); */
}


/* *************************** */
.checkbox-container {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--color-brand-1);
  font-family: Plusjakartasans, sans-serif;
  font-weight: 600;
}

.hidden-checkbox {
  display: none;
}

.custom-checkbox {
  width: 25px;
  height: 25px;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  transition: border-color 0.3s ease;
}

.hidden-checkbox:checked + .custom-checkbox {
  border-color: #22A950;
  background-color: transparent;
}

.hidden-checkbox:checked + .custom-checkbox::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 9px;
  height: 15px;
  border-right: 2px solid #22A950;
  border-bottom: 2px solid #22A950;
  transform: translate(-50%, -50%) rotate(45deg);
}


/* Tab section */
.lead-form-email input{
  border: 1px solid #CDE2E7;
  border-radius: 8px;
  padding: 5px;
  background: #fff;
}
.lead-form-email .mt-30{
  margin-top: 30px;
}

.sp-box-newsletter .lead-form-email form {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.sp-box-newsletter.sp-box-newsletter-2 {
  background-color: #ffffff;
  /* border: 1px solid #AFEAE4; */
  padding-bottom: 50px;
  /* background-image: url(/_next/static/media/tree.b0b10e4f.png); */
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: bottom right;
}
.sp-box-newsletter {
  position: relative;
  border-radius: 8px;
  background-color: #CDE2E7;
  padding: 40px;
  display: inline-block;
  width: 100%;
}

.sp-box-newsletter.sp-box-newsletter-2 > .row {
  position: relative;
  z-index: 2;
}
.align-items-center {
  align-items: center !important;
}
.sp-row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y)* -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.text-center {
  text-align: center !important;
}
.m-auto {
  margin: auto !important;
}
.font-lg {
  font-weight: 500;
  font-family: Plusjakartasans, sans-serif;
  line-height: 23px;
  font-size: 18px;
}
.font-md {
  font-weight: 500 !important;
  font-family: Plusjakartasans, sans-serif;
  line-height: 24px !important;
  font-size: 16px !important;
}
.font{
  font-family: Plusjakartasans, sans-serif !important;
}
.sp-box-newsletter .lead-form-email form input {
  border: 0px;
  outline: 0;
  box-shadow: none;
  padding: 12px;
  color: var(--color-gray-500);
  border: 1px solid #CDE2E7;
  border-radius: 8px;
  background: #fff;
  flex: 0 0 70%;
}

.sp-btn.sp-btn-submit-newsletter {
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--color-brand-1-hover) !important;
  border: 1px solid var(--color-brand-1);
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.35s, transform 0.35s;
  flex: 0 0 20%;
}

.sp-btn.sp-btn-submit-newsletter:hover {
  color: var(--color-brand-2);
  transform: translate3d(0, -2px, 0.01px);
  box-shadow: 0 8px 20px var(--color-brand-1-hover);
}
.icon-16 {
  height: 15px;
  color: var(--color-brand-2);
}

.section-client{
  padding-top: 4rem;
}


/* custom media queries */

@media screen and (max-width: 1440px) {
  .format-suggestions#search-output-box-google,
  .format-suggestions#search-output-box-bing {
    display: block;
  }

  #search-output-box-google .suggestion-item,
  #search-output-box-bing .suggestion-item {
    width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .sp-btn.sp-btn-submit-newsletter {
    width: 20%;
  }
  .sp-box-newsletter .lead-form-email form input {
    width: 70%;
  }
}

@media screen and (max-width: 1400px) {
  .seo-country-select-button {
      width: 210px;
  }
  .home-country-select-button {
      width: 210px;
  }
}

@media screen and (max-width: 1020px) {
  .search-box-suggestion {
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  div:has(> #App-Icon) {
    width: 100px;
  }
  .sp-box-newsletter .lead-form-email form {
    flex-direction: column;
    gap: 10px;
}
.container-404-error{
  justify-content: center;
}
.error-description{
  justify-content: center;
  align-items: center;
}
}

@media screen and (max-width: 687px) {
  .main-box-holder{
    flex-direction: column;
  }
  .checkbox-container{
    gap: 20px !important;
    padding: 10px;
    font-size: 16px;
  }

  .main-box-holder > *,
  .seo-country-select-button, .home-country-select-button {
    min-width: 300px;
    width: 60px !important;
    margin: 0 25px;
  }
}

@media screen and (max-width: 450px) {
  .main-box-holder > *,
  .seo-country-select-button, .home-country-select-button {
    /* min-width: 250px; */
    width: 50px;
    margin: 0px;
  }
}

@media screen and (max-width: 720px) {
  .search-box {
    min-width: 380px;
    width: 100%;
    margin: 0 auto;
  }

  .search-box > * {
    font-size: 1rem;
  }

  .suggestion-item {
    padding: 6px;
  }

  .format-suggestions {
    margin: 2px;
  }

  .item-search-link,
  .item-main-search-link {
    padding: 0px !important;
  }

  .suggestion-item {
    text-align: left;
    line-break: anywhere;
  }

  .main-section-btn {
    flex-wrap: wrap;
    gap: 5px;
    margin: 1rem auto;
  }
  .format-suggestions {
    /* margin: 80px 0px; */
    padding-left: 30px;
  }
}

@media screen and (max-width: 532px) {
  .search-box {
    min-width: 290px;
    width: 80%;
  }

  .suggestion-input {
    padding: 5px 5px 5px 27px !important;
    margin: 10px 10px 10px 0 !important;
  }

  .seo-content-country {
    float: left !important;
    left: 10px !important;
    padding: 10px !important;
    margin: 15px auto !important;
  }
}

@media screen and (max-width: 791px) {
  .sp-audit-button {
    padding: 11px 35px;
  }
}

@media screen and (max-width: 767px) {
  .sp-audit-button {
    text-align: center;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .submitBtn {
    width: 210%;
  }
}

  @media screen and (max-width: 550px) {
    .sp-audit-button {
      width: 400px;
    }
  }

  @media screen and (max-width: 479px) {
    .sp-audit-button {
      width: 288px;
    }
    .fact-text-button-primary {
      min-width: 100px !important;
      font-size: 14px !important;
      padding: 13px 10px !important;
    }
  }
  @media screen and (max-width: 375px) {
    .request-a-quote-contact-wrapper > .button-primary {
      /* font-size: 14px; */
      padding: 22px 8px;
    }
    .fact-text {
      gap: 80px !important;
    }
  }
  @media screen and (max-width: 321px) {
    .fact-text {
      gap: 20px !important;
    }
    .custom-checkbox{
      margin-right: 50px !important;
    }
    #hero_ServiceCheckbox{
      flex-direction: column !important;
    }
    .checkbox-lable-icon{
      min-width: 120px;
    }
  }

  @media screen and (max-width: 991px) and (min-width: 767px) {
    .custom-checkbox{
      margin-right: 0 !important;
    }
    #hero_ServiceCheckbox{
      font-size: 14px !important;
      flex-wrap: nowrap !important;
      justify-content: center;

    }
    
  }


/* pricing section top part height fix */
@media screen and (max-width: 1033px) and (min-width: 993px) {
  .top-part {
    min-height: 330px;
  }
}

@media screen and (max-width: 1148px) and (min-width: 1034px) {
  .top-part {
    min-height: 309px;
  }
}

@media screen and (max-width: 1223px) and (min-width: 1149px) {
  .top-part {
    min-height: 279px;
  }
}

@media screen and (min-width: 1224px) {
  .top-part {
    min-height: 234px;
  }
}

/* pricing section bottom paragraph part height fix */
@media screen and (max-width: 1001px) and (min-width: 993px) {
  .grid-8 {
    min-height: 326px;
  }
}
@media screen and (max-width: 1008px) and (min-width: 1002px) {
  .grid-8 {
    min-height: 305px;
  }
}
@media screen and (max-width: 1074px) and (min-width: 1009px) {
  .grid-8 {
    min-height: 284px;
  }
}
@media screen and (max-width: 1156px) and (min-width: 1075px) {
  .grid-8 {
    min-height: 263px;
  }
}
@media screen and (max-width: 1186px) and (min-width: 1157px) {
  .grid-8 {
    min-height: 242px;
  }
}
@media screen and (max-width: 1276px) and (min-width: 1187px) {
  .grid-8 {
    min-height: 221px;
  }
}
@media screen and (min-width: 1277px) {
  .grid-8 {
    min-height: 203px;
  }
}
