/* Futura Font */
/*@import url("webFonts/style.css");*/
/* DM Sans */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Primary Colors */
  --color-primary: #0a2463;
  /* Deep Navy Blue (Headers, Accents) */
  --color-secondary: #cc4a32;
  /* Gold/Yellow (Buttons, Highlights) */
  --color-white: #ffffff;
  /* Pure White (Background) */

  /* Subtle Variations */
  --color-primary-light: #3a4b8c;
  /* Lighter Blue (Hover Effects) */
  --color-secondary-dark: #cc4a32;
  --bg-off-yellow: #fffbe7;
  /* Darker Gold (Active States) */
  --color-off-white: #f9fafc;
  /* Soft White (Cards, Sections) */

  /* Text Colors */
  --color-text-dark: #0a2463;
  /* Navy for Headings */
  --color-text-medium: #555555;
  /* Gray for Body Text */
  --color-text-light: #ffffff;
  --color-black: #000000;
  /* White for Dark BG */

  /* Utility Colors */
  --color-border: rgba(10, 36, 99, 0.1);
  /* Subtle Blue Border */
  --color-shadow: rgba(10, 36, 99, 0.05);
  /* Soft Blue Shadow */
  --color-overlay: rgba(10, 36, 99, 0.7);
  /* Dark Blue Overlay */
  /* Shadow */
  --shadow-1: 0px 2px 8px rgba(0, 0, 0, 0.05), 0px 1px 1px rgba(0, 0, 0, 0.04);
  /* Gradients */
  --gradient-hero: linear-gradient(to bottom,
      var(--color-primary),
      var(--color-white));
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fcfcfc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  color: var(--color-text-dark);
  font-weight: 500;
  /* margin: 0; */
}

p,
li,
span {
  font-family: "DM Sans", sans-serif;
  color: #656565;
  line-height: 1.6;
  margin: 0;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

ul,
li {
  padding: 0;
  list-style: none;
}

input,
.nice-select {
  font-family: "DM Sans", sans-serif;
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  border-radius: 8px;
  padding: 9px 16px !important;
  position: relative;
  height: 42px;
}

.nice-select {
  background: #ffffff !important;
  /* appearance: none; */
}

.form-check-input:checked {
  background-color: #0a2463;
  border-color: #0a2463;
}

input:active,
input:focus,
.nice-select:active,
.nice-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary) !important;
}

.nice-select span {
  font-size: 16px;
  font-weight: normal;
}

.form-control {
  line-height: normal;
}

.nice-select:after {
  width: 8px;
  height: 8px;
}

.nice-select.w-joined {
  width: 75px !important;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-right: 0;
}

.fc-joined {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  border-left: 0 !important;
}

.nice-select .list {
  width: 100%;
}

.filters .nice-select .list {
  width: max-content;
}


textarea {
  background: #fcfcfc !important;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  appearance: none;
  background-color: var(--color-white);
  position: relative;
  accent-color: var(--color-secondary-dark) !important;
  padding: 0 !important;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none !important;
}

.theme-btn-dark {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 10px 24px;
  display: inline-flex;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-1);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--color-black);
}

.theme-btn-dark:hover {
  color: var(--color-white);
  background-color: var(--color-black);
}

.theme-btn-dark-2 {
  border: 1px solid white;
  margin-top: unset;
  font-size: 15px;
  align-items: center;
  display: flex;
}

/* Form Popup */
/* Overlay background */
#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1050;
  overflow-y: auto;
}

#popupOverlay .nice-select span {
    font-size: 14px;
    overflow: hidden;
    width: 100%;
    display: block;
}

#popupOverlay .nice-select .option {
  font-size: 14px;
}

#popupOverlay .row>* {
  padding: 0 5px;
}

/* Popup container */
#popupContainer {
  background: white;
  max-width: 850px;
  margin: 70px auto;
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  overflow: auto;
  position: relative;
}

/* Left side image */
#popupLeft {
  flex: 1 1 50%;
  position: relative;
  min-width: 386px;
  max-width: 386px;
  max-height: 630px;
  overflow: hidden;
}

#popupLeft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Logo container bottom left */
#logoContainer {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

#logoCircle {
  background: #facc15;
  /* Tailwind yellow-400 */
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 20px;
  line-height: 1;
}

#logoText {
  font-weight: 400;
  font-size: 16px;
  color: black;
}

/* Right side content */
#popupRight {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  min-width: 320px;
  max-height: 630px;
  overflow: auto;
}

#popupRight::-webkit-scrollbar {
  display: none;
}

/* Black top section */
#popupHeader {
  background: black;
  color: white;
  padding: 20px 24px;
  position: relative;
  flex-shrink: 0;
}

#popupHeader h1 {
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  line-height: 31px;
  text-align: center;
  padding-bottom: 20px;
}

#popupHeader p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  padding-bottom: 20px;
}

#popupHeader p span {
  color: #dc2626;
  /* Tailwind red-600 */
  font-weight: 600;
}

/* Close button top right */
#closeBtn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-secondary-dark);
  border: none;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  user-select: none;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  z-index: 1;
  display: grid;
  place-items: center;
}

#openPopupBtn {
  cursor: pointer;
}

#closeBtn i {
  font-size: 16px;
}

#closeBtn:focus {
  outline: 2px solid #facc15;
  outline-offset: 2px;
}

/* Form container */
.popupFormContainer {
  background: white;
  padding: 24px;
  /* overflow-y: auto; */
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.4;
}

.popupFormContainer p.intro {
  margin-bottom: 16px;
  font-weight: 400;
  color: #111;
}

/* Form inputs */
.popupFormContainer input,
.popupFormContainer select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  /* Tailwind gray-300 */
  border-radius: 6px;
  font-size: 14px;
  color: #6b7280;
  /* Tailwind gray-500 */
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.popupFormContainer input::placeholder {
  color: #9ca3af;
  /* Tailwind gray-400 */
}

.popupFormContainer input:focus,
.popupFormContainer select:focus {
  outline: none;
  border-color: #facc15;
  /* Tailwind yellow-400 */
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.4);
  color: #111;
}

/* Submit button */
.popupFormContainer button[type="submit"] {
  background-color: #facc15;
  border: none;
  color: black;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.popupFormContainer button[type="submit"]:hover,
.popupFormContainer button[type="submit"]:focus {
  background-color: #eab308;
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  #popupContainer {
    flex-direction: row;
    max-width: 85vw;
    margin: 0 auto;
    height: 90vh;
    max-height: none;
    border-radius: 0;
    top: 7%;
  }

  #popupLeft,
  #popupRight {
    flex: none;
    width: 100%;
    max-height: 50vh;
    max-width: 100%;
    overflow: unset;
  }

  .popupFormContainer {
    /* max-height: 50vh; */
    padding: 16px 20px;
  }
}

/* Header CSS Starts */
.main_header {
  background-color: #f5ebe2;
  color: var(--color-primary);
  /* padding: 20px; */
  text-align: center;
}

.top_header {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 7px;
  text-align: center;
  position: relative;
  width: 100%;
}

.top_header h1 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.1px;
  color:var(--color-white);
}

.remove-topbar {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-white);
}

/* Bottom Header */
.bottom_header {
  padding: 12px 0;
  overflow: visible;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04), 0 2px 8px 0 rgba(0, 0, 0, 0.05);
}

a.logo {
  display: block;
  width: 100%;
  max-width: 80px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

a.logo img {
  width: 100%;
  object-fit: contain;
}

.inner_bottom_header {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.bottom_header .nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  height: 75px;
}

.nav-inner .nav-left {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: start;
  width: 69%;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 55% !important;
}

/* .nav-inner .nav-left {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
} */

.nav-inner .productSearchHolder {
  cursor: pointer;
}

.nav-inner .nav-right {
  width: calc(100% - 234px);
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: end;
}

.customDropdown {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.headerDropdown ul li a {
  color: #000 !important;
  width: 100% !important;
  display: block !important;
  padding: 10px 2rem !important;
  border-bottom: 1px solid #e8e8e8 !important;
}

.headerDropdown .dropdown-menu {
  max-height: 235px;
  overflow: auto;
}

.headerDropdown ul li a:hover {
  background: #ffd9003d;
}

.headerDropdown ul {
  padding: 0;
}

.customDropdown:hover {
  border-color: var(--color-primary);
}

.hamburagare-svg-wrapper {
  cursor: pointer;
}

.hamburagare-svg-wrapper:hover,
.productSearchHolder:hover {
  opacity: 0.6;
}

/* Fixed  Header */
.fixed-header {
  background: rgb(244 234 225 / 72%);
  top: 0;
  box-shadow: var(--shadow-1);
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 0 !important;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.fixed-header {
  z-index: 999;
  animation-name: slidedown;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.fixed-header .productSearchHolder {
  visibility: hidden !important;
}

@keyframes slidedown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Sidemenu ALL CSS */
.side-menu {
  padding-bottom: 20px;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
  -webkit-transition: transform 0.25s ease-in-out;
  transform: translateX(-1000vh);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.side-menu .side-menu-holder {
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.side-menu .side-menu-holder::-webkit-scrollbar {
  display: none;
}

.side-menu .sideMenuHeader {
  border-bottom: 1px solid #f3f3f3;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
}

.side-menu .hamburger-menu-wrapper {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.side-menu .hamburger-menu-wrapper .hamburger-menu .fa {
  border-radius: 50%;
  padding: 14px;
  margin-right: 10px;
  font-size: 16px;
  color: var(--color-primary);
}

.side-menu .hamburger-menu-wrapper .hamburger-menu .fa:hover {
  cursor: pointer;
  background-color: #fff1a0;
}

.side-menu .SideMenuLogo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 25px;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: var(--color-primary);
}

.OriglinalTextSideMenuLogo {
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Jost", sans-serif, sans-serif;
  color: var(--color-primary);
}

.side-menu .side-menu-inner {
  position: relative;
  flex: 1 0 auto;
}

.side-menu .side-menu-inner nav {
  padding: 0;
}

.side-menu .side-menu-inner nav .TheSideMenu {
  display: block;
}

.side-menu .side-menu-inner nav ul {
  margin-bottom: 0;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu {
  padding: 0;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item img {
    width: 100%;
    object-fit: contain;
    max-width: 22px;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item {
  margin-top: 0 !important;
  width: 100%;
  list-style: none;
  position: relative;
  padding: 0 25px;
  border-bottom: 1px solid #e8e8e8;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item:before {
  font-size: 16px;
  color: var(--color-primary);
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item>a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  letter-spacing: -0.01em;
  color: #000;
  width: 100%;
  height: 100%;
  padding: 16px 0;
  font-family: DM Sans, sans-serif;
  text-transform: capitalize;
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item.menu-item-has-children>a::after {
  font-family: "FontAwesome";
  float: right;
  font-weight: 400;
  font-size: 16px;
  content: "\f178";
}

.side-menu .MenuSectionTitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-align: left;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f8f8f;
  padding: 20px 25px 12px;
}

.goBack {
  font-size: 19px;
  border-radius: 50%;
  padding: 14px;
}

.goBack:hover {
  cursor: pointer;
  background-color: #fff1a0;
}

.SecondaryMenuLayer {
  position: relative;
  flex: 1 0 auto;
  height: 100%;
}

.SecondaryMenuLayer ul {
  padding-left: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.SecondaryMenuLayer li.menu-item {
  margin-top: 0 !important;
  width: 100%;
  list-style: none;
  position: relative;
  border-radius: 6px;
}

.SecondaryMenuLayer li.menu-item a {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  width: 100%;
  display: flex;
  padding: 16px 2rem;
}

.hide {
  display: none;
}

.SecondaryTextSideMenuLogo.hide,
.OriglinalTextSideMenuLogo.hide {
  display: none;
}

.SecondaryTextSideMenuLogo.show,
.OriglinalTextSideMenuLogo.show {
  display: block;
}

.side-menu .cta-area {
  border: 1px solid #ededed;
  border-radius: 8px;
  margin: 40px 25px;
}

.mgr-25 {
  margin-right: 25px !important;
}

.mgl-25 {
  margin-left: 25px !important;
}

.side-menu .cta-area .ctaPhone {
  padding: 22px;
  overflow: hidden;
  background: hsla(0, 0%, 85%, 0.15);
  border-bottom: 1px solid #ededed;
  flex-wrap: wrap;
  gap: 12px;
}

.side-menu .cta-area .ctaPhone .ctaPhone_left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.font-size-14 {
  font-size: 14px;
}

.btn.btn_round_primary_bordered {
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  padding: 18px 24px;
  gap: 10px;
  background: var(--color-white);
  border-radius: 4rem;
  border: 2px solid var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--color-primary);
}

.side-menu .cta-area .ctaPhone .ctaPhone_right .btn_round_primary_bordered {
  background-color: transparent;
  padding: 10px 12px;
  gap: 6px;
}

.btn.btn_round_primary_bordered i {
  font-weight: 500;
  color: var(--color-primary);
}

.btn.btn_round_primary_bordered.btn.btn_round_primary_bordered:hover {
  border: 2px solid var(--color-secondary-dark);
  color: var(--color-white);
  background: var(--color-secondary);
}

.side-menu .side-menu-inner nav .TheSideMenu .menu li.menu-item:hover {
  background: #fff1a0;
}

.SecondaryMenuLayer li.menu-item:hover {
  cursor: pointer;
  background: #fff1a0;
}

li.menu-item-has-children ul.sub-menu {
  list-style: none;
  display: none;
  position: absolute;
  z-index: 99;
  background-color: #fff;
  padding: 0;
  transition: all 0.2s ease-in-out;
  right: auto !important;
  border-radius: 3px;
  background: var(--gray-white, #fff);
  box-shadow: 0 8px 15px 1px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#main-header .TheSideMenu ul.sub-menu {
  display: none !important;
}

.fa-classic,
.fa-regular,
.fa-solid,
.far,
.fas {
  font-family: "FontAwesome";
}

.side-menu .side-menu-inner nav .TheSideMenu .menu .sub-menu {
  display: none;
}

.side-menu .side-menu-footer {
  border-top: 1px solid #f3f3f3;
  padding: 30px;
  flex-shrink: 0;
  width: 100%;
  z-index: 9;
  bottom: 0;
  background-color: var(--color-white);
}

.side-menu .side-menu-footer a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000;
}

.font-size-24 {
  font-size: 24px;
}

.font-size-18 {
  font-size: 18px !important;
}

@media (min-width: 768px) {
  .side-menu {
    width: 467px;
  }
}

.side-menu.active {
  transform: translateX(0) !important;
}

/* Search input */
.search-input {
  width: 100%;
  display: none;
  background: var(--gray-02, #f8f8f8);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.04), 0 2px 8px 0 rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
}

.search-input .searchForm {
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: -3px;
  padding: 6px 12px;
  transition: width 0.5s ease;
}

.search-input .searchForm i {
  font-size: 19px;
  color: var(--color-primary);
  /* vertical-align: middle; */
}

.search-input .searchForm input {
  width: 100%;
  background-color: transparent;
  border: 0 !important;
  border-color: transparent;
  outline-color: transparent;
  outline: 0;
  padding: 5px;
  color: var(--things, #000);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.search-input .searchForm input:active,
.search-input .searchForm input:focus,
.search-input .searchForm input:hover {
  border: 0;
  box-shadow: unset !important;
}

.search-input .search-suggest {
  position: absolute;
  background: var(--color-white);
  box-shadow: var(--shadow-1);
  top: 70px;
  left: 0;
  right: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 100%;
  padding: 12px 0;
  visibility: hidden;
  opacity: 0;
  z-index: 99999;
  min-width: 320px;
  transition: all 0.2s ease-in-out;
}

.search-input.active .search-suggest {
  visibility: visible;
  opacity: 1;
}

.search-input .search-suggest h4:last-of-type {
  padding-top: 10px;
}

.search-input .search-suggest .h4,
.search-input .search-suggest h4 {
  font-size: 12px !important;
  font-weight: 400;
  color: #858585;
  margin: 0;
  padding: 12px 8px;
  line-height: 130%;
}

.search-input .search-suggest a {
  display: block;
  transition: 0.2s;
  padding: 8.2px 8px;
}

.suggestion-header .h4,
.suggestion-header a,
.suggestion-header h4 {
  letter-spacing: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 10px;
}

.text-primary {
  --bs-text-opacity: 1;
  color: var(--color-secondary) !important;
}

.main_banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.main_banner .swiper-slide {
  position: relative;
  width: 100%;
  background-size: cover !important;
  /* background-position: center !important;
  background-repeat: no-repeat; */
  min-height: 700px;
}

.mainBannerSlider {
  padding: 0 !important;
}

section.main_banner .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-black);
  opacity: 0.3;
  z-index: 0;
  top: 0;
  left: 0;
}

.search-input .search-suggest .h4,
.search-input .search-suggest h4 {
  font-size: 12px !important;
  font-weight: 400;
  color: #858585;
  margin: 0;
  padding: 12px 8px;
  line-height: 130%;
}

.search-input .search-suggest a {
  display: block;
  transition: 0.2s;
  padding: 8.2px 8px;
}

.search-input .search-suggest-main {
  justify-content: space-between;
}

.search-input .search-suggest-left,
.search-input .search-suggest-main {
  display: flex;
  align-items: center;
}

.search-input img {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
}

.search-input .search-suggest-text {
  padding-left: 8px;
}

.search-input .search-suggest-text .h3,
.search-input .search-suggest-text h3 {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #000;
  margin: 0 0 5px;
}

.search-input .search-suggest-text p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.search-input .search-suggest a:hover:not(.NotHouse) {
  background-color: #fff1a0;
}

.search-input a:hover .search-suggest-right {
  display: block !important;
}

/* Main Banner */
.banner_content {
  position: relative;
  width: 100%;
  max-width: 740px;
  padding: 20px;
  color: var(--color-text-light);
  z-index: 1;
}

.banner_content h1 {
  font-size: 60px;
  line-height: 118%;
  color: var(--color-text-light);
  font-weight: 500;
}

.banner_content p {
  color: var(--color-text-light);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 167.188%;
  letter-spacing: -0.015em;
}

/* About Section Start */
.section_about {
  padding-top: 85px;
  padding-bottom: 85px;
  background-color: var(--bg-off-yellow);
  position: relative;
  width: 100%;
}

.section_about .row.flex-row>div:nth-child(2) {
  padding-left: 65px;
}

.section_about .row .NormalSectionCallToAction {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small_h1 {
  font-weight: 500;
  font-size: 38px;
  line-height: 145.5%;
}

.spantext {
  margin-bottom: 30px;
  display: block;
}

.NormalSectionImg img {
  border-radius: 12px;
  display: block;
}

.NormalSection .BadgeHolder .contentHolder {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.NormalSection .BadgeHolder .contentHolder .subTitle {
  font-weight: 400;
  font-size: 11px;
  line-height: 145.5%;
  text-transform: uppercase;
  color: #6f6f6f;
  display: flex;
  align-items: baseline;
  gap: 3px;
  letter-spacing: -.2px;
}

.NormalSection .BadgeHolder .contentHolder .title {
  margin: 0;
}

/* Our Collection Section */

.section_ourCollection {
  padding-top: 65px;
  padding-bottom: 85px;
  position: relative;
  width: 100%;
}

.section_ourCollection h2 {
  font-size: 40px;
  line-height: 145.5%;
  color: var(--color-text-dark);
}

.house-categories-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(104, 113, 130, 0.16),
    0 1px 1px rgba(82, 86, 95, 0.08);
  border-radius: 4px;
}

.house-categories-card-2 {
  box-shadow: unset !important;
  border-radius: unset;
}

.house-categories-card:hover {
  cursor: pointer;
  box-shadow: -1px 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.11),
    0 5px 12px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: scale(1.015) rotate(-0.75deg);
}

.house-categories-card .card-body {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 100%;
  padding: 14px 16px;
}

.house-categories-card:hover img {
  opacity: 0.9;
}

.section_ourCollection .contentCatHolder {
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.section_ourCollection .contentCatHolder .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.section_ourCollection .contentCatHolder .description {
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: #6f6f6f;
}

/* House Solutions Section */
.houseSolutions {
  min-height: 600px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section.houseSolutions::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  opacity: 0.3;
}

.inner_houseSolutions {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
}

.inner_houseSolutions h2 {
  font-size: 51px;
  line-height: 118%;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-white);
}

.inner_houseSolutions p {
  color: var(--color-white);
}

.houseSolutionsList {
  list-style: none;
  padding: 70px 0 30px;
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.houseSolutionsList li {
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  color: var(--color-white);
}

.houseSolutionsList li:hover {
  background-color: rgba(255, 255, 255, 13%);
}

/* Readymade house */
.readyhome_house {
  width: 100%;
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
}

.readyhome_house h2 {
  max-width: 400px;
  font-size: 40px;
  line-height: 145.5%;
}

.readyhome_house .theme-btn-dark {
  margin-top: 40px;
}

.btn-outline-dark {
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.375rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s, color 0.3s;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
}

.video-logo {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.NormalSectionImg {
  /* padding-left: 65px; */
  position: relative;
}

.video-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  background: transparent;
}

.NormalSectionImg:hover .video-logo::before {
  background-color: rgba(0, 0, 0, 0.35);
}

.play-button {
  background-color: #6b6b6b;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  width: 50px;
  height: 50px;
  padding-left: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  color: var(--color-white);
}

/* News section */
.section_news {
  padding-top: 69px;
  padding-bottom: 95px;
  text-align: left;
  position: relative;
  width: 100%;
  background-color: var(--bg-off-yellow);
}

.innerNews {
  position: relative;
  padding-top: 40px;
}

.single_news {
  position: relative;
  /* padding-right: 30px; */
}

.single_news img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 17px;
}

.single_news h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 35px;
  margin-top: 5px;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.single_news a {
  display: block;
  width: 100%;
  height: 100%;
}

.single_news:hover img {
  opacity: 0.8;
}

.single_news:hover h3 {
  color: var(--color-secondary-dark);
}

/* Testimonial Section */
.section_testimonial {
  padding-top: 69px;
  padding-bottom: 95px;
  position: relative;
  width: 100%;
}

.sliderHolder .card {
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  font-size: 12px;
  background: #fffdfd;
}

.sliderHolder .card .card-header {
  padding-left: 0;
  padding-right: 0;
  background: #fffdfd;
  border-bottom: 0;
}

.sliderHolder .card .card-body {
  padding: 1rem 1rem 1rem 1rem;
}

.sliderHolder .card-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  color: var(--color-primary);
}

.sliderHolder .star-rating {
  color: var(--color-primary);
  /* Tailwind yellow-400 */
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.sliderHolder .card i {
  font-size: 12px;
  color: var(--color-secondary-dark);
}

.sliderHolder .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.sliderHolder .testimonial-text {
  border-top: 1px solid #f3f3f3;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  font-weight: 400;
  font-size: 18px;
  flex: 1;
  background: #fffdfd;
}

.RecenationSliderNav {
  display: flex;
  align-items: center;
  float: none;
  justify-content: center;
  margin-top: 70px;
  gap: 30px;
}

.RecenationSliderNav>div {
  position: relative !important;
  color: var(--color-text-light);
  background-color: var(--color-black);
  padding: 10px;
  border-radius: 50px;
  width: 32px;
  height: 32px;
}

.RecenationSliderNav>div:hover {
  opacity: 0.6;
}

.RecenationSliderNav .swiper-button-prev:after {
  content: "\f060";
  font-family: "FontAwesome";
  font-size: 12px;
}

.RecenationSliderNav .swiper-button-next:after {
  content: "\f061";
  font-family: "FontAwesome";
  font-size: 12px;
}

/* FAQ Section */
.section_faq {
  width: 100%;
  position: relative;
  padding-top: 80px;
  background-color: var(--bg-off-yellow);
  padding-bottom: 40px;
}

.section_faq .faq-btn {
  font-size: 14px;
  line-height: 13px;
  font-weight: 500;
  color: var(--color-secondary-dark);
  border: 1px solid var(--color-secondary-dark);
  border-radius: 9999px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.section_faq .faq-btn:hover {
  background-color: #1d2b44;
  color: #fff;
}

.section_faq .faq-btn i {
  font-size: 11px;
}

.section_faq h1 {
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
  line-height: 145.5%;
}

.section_faq p.description {
  font-size: 16px;
  line-height: 14px;
  margin-bottom: 32px;
  text-align: center;
  color: var(--color-black);
}

.section_faq .accordion-item {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.section_faq .accordion-header {
  font-size: 11px;
  line-height: 14px;
  font-weight: 600;
  font-feature-settings: "ss01" on, "ss02" on;
  color: #000;
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background-color: unset;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  color: var(--color-text-dark);
  box-shadow: unset !important;
  font-family: DM Sans, sans-serif !important;
}

.section_faq .accordion-header .icon {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  color: var(--color-text-dark);
  transition: transform 0.2s ease-in-out;
}

.section_faq .accordion-header.active .icon {
  transform: rotate(180deg);
}

.section_faq .accordion-body {
  font-weight: 400;
  font-feature-settings: "ss01" on, "ss02" on;
  padding: 12px 16px;
  display: none;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-medium);
}


.section_faq .show-more-btn {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  color: #1d2b44;
  border: 1px solid #1d2b44;
  border-radius: 9999px;
  padding: 6px 24px;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
  margin-top: 40px;
}

.section_faq .show-more-btn:hover {
  background-color: #1d2b44;
  color: #fff;
}

.section_faq .accordion-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section Contact Form */
.section_contact {
  width: 100%;
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
}

.heading_holder {
  width: 100%;
  position: relative;
  text-align: center;
}

.heading_holder h1 {
  font-size: 40px;
  line-height: 145.5%;
}

.heading_holder p {
  font-size: 16px;
  color: var(--color-black);
}

.theme-btn-dark.br-5 {
  border-radius: 5px;
}

.theme-btn-dark.reverse {
  background: var(--color-black);
  color: var(--color-white);
}

.theme-btn-dark.reverse:hover {
  color: var(--color-black);
  background: var(--color-white);
}

.innerFormContact {
  margin-top: 30px;
}

/* Client Section */
.section_client {
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 35px;
  border: 1px solid #e8e8e8;
}

.section_client img {
  filter: grayscale(1);
}

.section_client img:hover {
  filter: grayscale(0);
}

/* Main footer */
.main_footer {
  background-color: #f4eae1;
  padding-top: 92px;
  padding-bottom: 40px;
  font-family: DM Sans, sans-serif;
}

footer a,
footer p,
footer span {
  color: #333;
}

footer .newsLettersSubscriptions {
  margin-bottom: 100px;
}

footer .NewsSubscriptionsTitle {
  display: flex;
  gap: 12px;
  align-items: center;
}

footer .newsLettersSubscriptions p {
  padding-top: 5px !important;
  font-size: 15px !important;
}

footer .subscriptions {
  margin-top: 23px;
  margin-bottom: 23px;
  flex-grow: 1;
}

footer .subscriptions form p {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}

footer .h5_span {
  color: #004568;
  font-weight: 600;
  line-height: 20px;
  font-size: 20px;
  display: block;
  font-family: futura-pt, sans-serif;
}

.wpcf7-form-control-wrap {
  position: relative;
}

footer .subscriptions input {
  height: 57px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 16px 22px;
}

.btn.btn_round_primary_black_bg {
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  padding: 17.5px 24px;
  gap: 10px;
  background: var(--color-black);
  border: 2px solid var(--color-black);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--color-white);
}

.btn.btn_round_primary_black_bg:hover {
  border: 2px solid var(--color-black);
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #fff;
}

footer .subscriptions form p .wpcf7-form-control-wrap {
  flex-grow: 1;
}

footer .subscriptions form p .btn {
  border-radius: 8px !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 700 !important;
  padding: 18.5px 20px !important;
}

footer .footer_logo_widget {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-top: 27px;
}

footer ul.menu li a {
  padding-left: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 32px;
  letter-spacing: -0.01em;
  color: #333;
  transition: all 0.3s ease-in-out;
}

footer ul.menu li:hover a {
  color: var(--color-secondary);
}

.mgt-60 {
  margin-top: 60px;
}

footer .footer-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #333;
  align-items: center;
}

.seflag img {
  width: 20px;
  object-fit: cover;
  color: hsla(0, 0%, 100%, 0.52);
}

.footer-text a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

footer .footerAccordion .footerAccordion-button {
  background: 0 0;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 38px;
  border: none;
  padding: 5px 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.15);
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}

footer .footerAccordion .footerAccordion-button.collapsed:after {
  content: url(https://husverket.se/nitropack_static/CvxhrYHhXZaFCZBaqUlEZsxwNMdVnAJu/assets/images/optimized/rev-c3899f6/husverket.se/wp-content/themes/husverket/assets/build/css/fonts/minus.svg) !important;
}

footer .footerAccordion .footerAccordion-button:after {
  content: url(https://husverket.se/nitropack_static/CvxhrYHhXZaFCZBaqUlEZsxwNMdVnAJu/assets/images/optimized/rev-c3899f6/husverket.se/wp-content/themes/husverket/assets/build/css/fonts/plus.svg);
  width: 21px;
  height: 21px;
  float: right;
}

/* ----inner-product--- */
.image-product-main {
  border-radius: 8px;
  border: 8px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 5px 12px 0 rgba(0, 0, 0, 0.05),
    0 2px 6px 0 rgba(0, 0, 0, 0.11), -1px 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  width: auto;
  height: 274px;
  padding: 5px;
  max-width: 443px;
  min-width: 443px;
}

.termCollection-1 img {

  object-fit: cover;
}

.nice-select-p {
  padding: 8px 30px !important;
}

.svg-icon {
  left: 15px;
  top: 19px;
}

.product-image {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.size-label {
  font-size: 1.5rem;
  font-weight: bold;
}

.icon-cube {
  font-size: 1.2rem;
  margin-left: 5px;
}

.filters .form-select, .filters .btn {
    min-width: 100%;
    width: max-content;
}

.product-card {
  padding: 20px 0;
}

.termCollection-1 .contentCatHolder {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.termCollection-1 p {
    font-weight: 500;
    color: black;
    font-size: 14px;
    max-height: 25px;
    min-height: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.termCollection-2 {
  padding: 80px 0;
  align-items: center;
  text-align: center;
}

.termCollection-2 .contentCatHolder {
  justify-content: center;
}

.termCollection-2 .title {
  font-size: 22px !important;
}

.HousesCheckListGroupHolder {
  row-gap: 60px !important;
}

.HousesCheckList {
  margin: 100px 0;
}

.section_swiper {
  background-color: #f8f8f8;
  padding: 50px 0;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 40%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  width: 42px;
  height: 42px;
  color: #294f8a;
  background-color: #fff;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 10px;
  border-radius: 50px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 22px;
}

.timer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #000;
}

.product-swiper {
  padding: 50px 0;
}

/*--- Responsive ----*/
@media (max-width: 1439px) {
  .container-section {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1024px) {
  .banner_content {
    text-align: center;
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .section_about .row.flex-row>div:nth-child(2) {
    padding-left: 10px;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .bottom_footer {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
  }

  .innerNews {
    overflow-x: scroll;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .readyhome_house .row {
    flex-direction: column-reverse;
  }

  .inner_houseSolutions h2 {
    font-size: 30px;
  }

  .mb-swipper {
    overflow-x: scroll;
    flex-wrap: nowrap;
    flex-direction: row;
  }

  .heading_holder h1 {
    font-size: 30px;
  }

  .theme-btn-dark.reverse {
    width: 100%;
  }

  .flex-dic-home {
    flex-direction: column;
  }

  .section_about .row.flex-row>div:nth-child(2) {
    text-align: center;
  }

  .small_h1 {
    font-size: 30px;
  }

  .banner_content h1 {
    font-size: 39px;
  }

  .nav-left .headerDropdown {
    display: none;
  }

  .nav-inner .nav-left {
    /*width: auto !important;*/
  }
}

@media (max-width: 575px) {
  .gap-form {
    gap: 8px !important;
  }
}




/* ===========================
  Inner Products Section CSS
  ===========================
  Styles related to inner product pages, product details, and product-specific layouts.
  Search for "Inner Products" to quickly locate this section.
*/

.container {
  /* max-width: 1200px; */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.top-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .top-section {
    flex-direction: row;
  }
}

.left-side {
  flex: 2 1 0%;
  max-width: 480px;
}

@media (min-width: 640px) {
  .left-side {
    max-width: 661px;
    width: 100%;
  }
}

.house-image-wrapper {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  max-width: 480px;
  max-height: 666px;
}

.hidden-images {
  display: none;
}

@media (min-width: 640px) {
  .house-image-wrapper {
    max-width: 100%;
  }
}

.house-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

.view-more-btn {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background-color: #fff;
  color: #000;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.view-more-btn:hover {
  background-color: #f3f4f6;
}

.title {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #fbbf24;
}

.rating span {
  color: #000;
  font-weight: 400;
}

.info-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #4b5563;
}

.info-icons>div {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 14px;
}

.description {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.25rem;
  color: #374151;
  max-width: 480px;
}

@media (min-width: 640px) {
  .description {
    max-width: 100%;
  }
}

.accordion-container {
  margin-top: 1.5rem;
  max-width: 480px;
}

@media (min-width: 640px) {
  .accordion-container {
    max-width: 100%;
  }
}

.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  padding: 24px 10px;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.popup-btn {
  padding: 24px 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ededed;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.popup-btn:hover {
  background: #f8f8f8;
}

span.document-name {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  color: #212529;
}

.accordion-btn:hover {
  background-color: #f9fafb;
}

.accordion-btn i {
  font-size: 0.75rem;
}

.right-side {
  flex: 1 1 0%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
}

.inner-right-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 90px;
}

@media (min-width: 640px) {
  .right-side {
    max-width: 100%;
  }
}

.form-section {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 0.75rem;
  color: #4b5563;
  background-color: #fff;
}

.form-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000;
}

.form-section select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.2s ease;
}

.form-section select:focus {
  box-shadow: 0 0 0 2px #2563eb;
  border-color: #2563eb;
}

fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  /* padding: 1rem; */
  font-size: 0.75rem;
  color: #4b5563;
  background-color: #fff;
}

legend {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 22px 20px;
  border-bottom: 1px solid #ededed;
}

.radio-option label {
  flex: 1 1 0%;
  cursor: pointer;
  font-size: 0.875rem;
}

.radio-option span {
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  font-size: 0.875rem;
}

.radio-option input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: #1e40af;
  cursor: pointer;
}

.price-summary {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 0.75rem;
  color: #4b5563;
  background-color: #fff;
}

.price-summary-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #000;
  font-weight: 600;
}

.price-summary-top .price {
  color: #212529;
  font-size: 16px;
}

.price-summary-top .price span {
  color: #212529;
  font-weight: 400;
  font-size: 12px;
}

.mini-text {
  font-size: 12px;
  color: #212529;
  font-weight: 400;
  font-size: "DM Sans", sans-serif;
}

.mini-text i {
  margin-right: 10px;
}

.cstm-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
  font-weight: 600;
}

.cstm-btn:hover {
  opacity: .9;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.price-summary-top button {
  background-color: #1e40af;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.price-summary-top button:hover {
  background-color: #1e3a8a;
}

.price-summary-bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  color: #6b7280;
}

.price-summary-bottom img {
  border-radius: 9999px;
  width: 2rem;
  height: 2rem;
  object-fit: cover;
}

.price-summary-bottom button {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.price-summary-bottom button:hover {
  background-color: #f3f4f6;
}

/* Floorplan Section */
.floorplan-section {
  margin-top: 3rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
}

.floorplan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.floorplan-header button {
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.5rem;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.floorplan-header button:hover {
  background-color: #f3f4f6;
}

.floorplan-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .floorplan-images {
    flex-direction: row;
    justify-content: center;
  }
}

.floorplan-img {
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.floorplan-summary {
  margin-top: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 0.75rem;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.05);
}

@media (min-width: 640px) {
  .floorplan-summary {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.floorplan-summary>div {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1 1 0%;
}

.floorplan-summary>div>div {
  text-align: center;
  min-width: 80px;
}

.floorplan-summary>div>div span:first-child {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}

.floorplan-summary .note {
  font-size: 0.625rem;
  color: #6b7280;
  font-style: italic;
  flex-shrink: 0;
  text-align: center;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .floorplan-summary .note {
    margin-top: 0;
    text-align: right;
  }
}

/* Contact Section */
.contact-section {
  margin-top: 3rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .contact-section {
    flex-direction: row;
  }
}

.contact-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  /* max-width: 480px; */
  color: #000;
  font-size: 0.75rem;
}

.contact-left img {
  border-radius: 9999px;
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.contact-right {
  display: flex;
  align-items: center;
  /* gap: 1.5rem; */
  font-size: 0.75rem;
  font-weight: 600;
  color: #000;
  flex-direction: column;
}

.contact-right span {
  font-size: 18px;
  color: #000;
}

.contact-text {
  z-index: 1;
  font-size: 24px !important;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
  line-height: 35px;
  max-width: 700px;
  font-family: "Jost", sans-serif;
}

.contact-right .contact-btn {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  background: var(--color-primary);
  border-radius: 32px;
  color: var(--color-white);
  display: inline-block;
  margin-top: 10px;
  transition: .2s;
  transition: all .2s ease-in-out;
  padding: 16px 42px;
  transform: scale(1);
}

.contact-right .contact-btn:hover {
  background-color: #1e3a8a;
}

/* Large image with button */
.large-image-section {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 30px 0;
}

.large-image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  height: 581px !important;
  max-height: 581px !important;
  object-fit: cover;
  object-position: bottom;
}

.large-image-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.large-image-btn:hover {
  background-color: #f3f4f6;
}

/* FAQ Section */
.faq-section {
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-section h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  color: #4b5563;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s ease;
  margin-bottom: 1.5rem;
}

.faq-btn:hover {
  background-color: #f3f4f6;
}

details {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #4b5563;
  text-align: left;
  margin-bottom: 0.75rem;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

details[open]>p {
  display: block;
  margin-top: 0.5rem;
}

details>p {
  display: none;
}

.faq-show-more {
  margin-top: 1.5rem;
  border: 1px solid #4b5563;
  border-radius: 9999px;
  padding: 0.25rem 1.5rem;
  font-size: 0.75rem;
  color: #4b5563;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.faq-show-more:hover {
  background-color: #f3f4f6;
}

/* Reviews Section */
.reviews-section {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reviews-section h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.reviews-summary>div {
  text-align: center;
}

.reviews-summary .rating {
  color: #fbbf24;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.reviews-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .reviews-cards {
    flex-direction: row;
    justify-content: center;
  }
}

.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: left;
  font-size: 0.75rem;
  max-width: 280px;
  color: #374151;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.review-header img {
  border-radius: 9999px;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}

.review-name-location {
  flex: 1 1 0%;
}

.review-name {
  font-weight: 600;
  color: #000;
  margin-bottom: 0.125rem;
}

.review-location {
  color: #6b7280;
  font-size: 0.625rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 0.75rem;
  white-space: nowrap;
}

.review-text {
  font-size: 0.75rem;
  color: #374151;
}

.reviews-show-more {
  margin-top: 1.5rem;
  border: 1px solid #4b5563;
  border-radius: 9999px;
  padding: 0.25rem 1.5rem;
  font-size: 0.75rem;
  color: #4b5563;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.reviews-show-more:hover {
  background-color: #f3f4f6;
}

/* Included Section */
.included-section {
  margin-top: 3rem;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}

.included-section img {
  border-radius: 9999px;
  width: 6rem;
  height: 6rem;
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.included-section h3 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.included-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.75rem;
  color: #4b5563;
  /* max-width: 900px; */
  margin-left: auto;
  margin-right: auto;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  max-width: max-content;
  text-align: left;
  font-size: 16px;
}

.included-item i {
  color: #1e40af;
  font-size: 1rem;
  flex-shrink: 0;
}


/* Popup Styling here */
.fixed_side {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  display: none;
  z-index: 999;
}

.fixed_side_ {
  display: block;
}

.side_popup {
  width: 100%;
  max-width: 420px;
  background: var(--color-white);
  right: 0;
  top: 0;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  transform: translateX(100%);
  transition: all .3s ease-in-out;
}

.document_popup_,
.spacification_popup_,
.installation_popup_ {
  transform: translateX(0);
}

.inner_side_popup {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2.5rem;
  overflow: auto;
}

.inner_side_popup h2 {
  font-size: 24px;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 8px;
}

.inner_side_popup p {
  color: #6f6f6f;
  font-size: 14px;
}

.download-file-in-modal {
  margin-bottom: 20px;
  width: 100%;
}

.download-file-in-modal a {
  text-align: left;
  width: 100%;
  color: #212529;
  font-size: 16px;
  font-family: "DM Sans", sans-serif;
}

.download-file-in-modal:hover a {
  font-weight: bold;
}

.close-popup {
  z-index: 9999;
  position: absolute;
  right: 20px;
  top: 21px;
  background-color: rgba(243, 243, 243, 1);
  border: none;
  border-radius: 50px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close-popup:hover {
  background-color: #ebebeb;
}

.popup_accrodion {
  padding-top: 54px;
  display: flex;
  flex-direction: column;
}

.popup_accrodion .collapse:not(.show) {
  display: block;
}

.accordion-popup-header {
  margin: 0;
  background: #fff;
  display: flex;
  justify-content: space-between;
}

.accordion-popup-header i {
  font-size: 14px;
  color: #8d8d8d;
  cursor: pointer;
}

.accordion-item-popup {
  border-top: 1px solid #dfdfdf;
}

.accordion-item-popup .accordion-popup-header {
  background: var(--color-white);
  padding: 16px 0;
  color: #000;
  transition: all .2s ease-in-out;
}

.accordion-item-popup .accordion-popup-header span {
  color: #000;
  transition: all .2s ease-in-out;
  font-weight: 600;
}

.accordion-item-popup .accordion-popup-header:hover span {
  color: var(--color-primary);
}

.accordion-popup-header .accordion-button {
  width: 100%;
  background: var(--color-white);
  border: none;
  outline: none;
  text-align: left;
  padding: 1em;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding: 0;
}

.accordion-item-popup .accordion-popup-body {
  padding: 0;
  padding-bottom: 16px;
  font-size: 14px;
}

.accordion-item-popup .accordion-popup-body ol li {
  list-style: decimal;
  color: #212529;
}

.popup_accrodion .accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item-popup.open .accordion-collapse {
  max-height: 1000px;
  /* big enough to show the content */
}

.accordion-item-popup.open .fa-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* inner product swiper */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.topbar select,
.topbar button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}

.topbar .btn-primary {
  background-color: #2f5aa1;
  color: white;
  border: none;
}

.small-title {
  font-size: 11px;
  color: #6f6f6f;
}

.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.plan-image {
  width: auto;
  max-height: 320px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.info-bar {
  background: #fff;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  max-width: fit-content;
  flex-direction: column;
  box-shadow: 0 8px 15px 1px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .05);
  border-radius: 7px;
  overflow: hidden;
}

.topbar .nice-select {
  padding-right: 50px !important;
  max-width: max-content;
}

.br-cstm {
  border-right: 1px solid #e8e8e8;
}

.top-bar,
.bottom-bar {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: center;
  gap: 2rem;
}

.top-bar {
  padding: 5px;
}

.bottom-bar {
  padding: 5px 20px;
  background: var(--gray-04, #fcfcfc);
  border-top: 1px solid var(--gray-05, #e8e8e8);
}

.info-block {
  text-align: center;
  padding: 0 25px;
}

.bottom-bar .info-block {
  color: #6f6f6f;
  font-size: 12px;
}

.info-block .value {
  font-weight: bold;
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #000;
}

.swiper-button-next,
.swiper-button-prev {
  color: black;
  border: 1px solid black;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

/* Innerpages */
.innerpage-banner {
  width: 100%;
  position: relative;
  height: 100%;
  min-height: 100vh;
  background-size: cover !important;
  overflow: hidden;
}

.breadcrumb_main {
  width: 100%;
  position: relative;
  padding-top: 40px;
  background: var(--color-white);
}

.breadcrumb-item {
  font-size: 14px;
}

/*================================================================================
 --------------------------------------ABOUT US-----------------------------------
================================================================================*/

/* Success */
.section_success {
  width: 100%;
  position: relative;
  padding: 70px 0;
}

.pdt-75 {
  padding-top: 75px;
}

.mgb-30 {
  margin-bottom: 30px;
}

.cardHolder {
  background-color: var(--color-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 0 0 1px rgba(104, 113, 130, .16), 0 1px 1px rgba(82, 86, 95, .08);
  border-radius: 8px;
  cursor: pointer;
}

.h-100 {
  height: 100% !important;
}

.cardHolder .CardHeader {
  padding: 30px;
  border-bottom: 1px solid #f4e9dd;
}

.cardHolder .CardHeader .CardHeader__title {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.btn.btn_round_primary_black_bg {
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  padding: 17.5px 24px;
  gap: 10px;
  background: var(--color-secondary);
  border-radius: 4rem;
  border: 2px solid var(--color-secondary);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--color-white);
}

.cardHolder .CardHeader .CardHeader__title .h5,
.cardHolder .CardHeader .CardHeader__title h5 {
  font-weight: 500;
  font-size: 24px;
  margin: 0;
}

.cardHolder .CardHeader .CardHeader__subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
}

.cardHolder .CardBody {
  padding: 15px 30px;
}

.cardHolder .CardBody ul {
  margin-top: 10px;
  padding-left: 1rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.cardHolder .CardBody ul li {
  list-style: disc;
}

.cardHolder .CardBody .h5,
.cardHolder .CardBody h5 {
  font-weight: 600;
  font-size: 14px;
}

.btn.btn_round_primary {
  line-height: 16px;
  display: inline-flex;
  align-items: center;
  padding: 18px 24px;
  gap: 10px;
  background: var(--color-white);
  border-radius: 4rem;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color: var(--color-black);
  border: 1px solid #000;
  transition-property: opacity, margin-right, margin-left, transform;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.4, 0, .4, 1);
}

.cardHolder .CardHeader .CardHeader__subtitle .pdfDownloader:hover {
  background-color: #fdfdfd;
  color: #000;
  border: 1px solid #000 !important;
}

.btn.btn_round_primary:active {
  border: 2px solid var(--color-black);
  outline: transparent !important;
  box-shadow: none !important;
  border-radius: 999px;
}

/* Normal Section */
.NormalSection {
  padding-top: 72px;
  padding-bottom: 72px;
}

.pdt-50 {
  padding-top: 50px;
}

.font-size-20 {
  font-size: 20px;
}

.pdb-20 {
  padding-bottom: 20px;
}

.mgt-40 {
  margin-top: 40px;
}

.mgb-25 {
  margin-bottom: 25px !important;
}

.color-gray-11 {
  color: #6f6f6f;
}

.font-size-11 {
  font-size: 11px;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.sec-h4 {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.02px;
  font-family: "DM Sans";
  margin: 0;
}

.NormalSection .row .aboutImageHolder img {
  border-radius: 12px;
  display: block;
}

.BadgeIsButton {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 16px;
  gap: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 46px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.BadgeIsButton:hover {
  background-color: hsla(0, 7%, 89%, .13);
}

/* NormalSection */
.NormalSection .BadgeHolder {
  gap: 10px;
  flex-wrap: wrap;
}

.BadgeHolder {
  display: flex;
  gap: 5px;
  flex-direction: row;
}

.BadgeIsButton {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 9px 16px;
  gap: 12px;
  border: 1px solid #e2e2e2;
  border-radius: 46px;
  font-weight: 400;
  font-size: 16px;
}

.BadgeHolder.dark .BadgeIsButton {
  color: #656565;
}

/*================================================================================
 ------------------------------------CONTACT US-----------------------------------
================================================================================*/
.contact-cta {
  background: var(--color-white);
  margin: 2rem 0;
  position: relative;
  padding: 1rem 0;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, .06), 0px 0px 0px 1px rgba(104, 113, 130, .16), 0px 1px 1px rgba(82, 86, 95, .08);
  border-radius: 8px;
}

.mgt-60 {
  margin-top: 60px !important;
}

.contact-cta .contact-cta-content {
  color: var(--color-primary);
}

.contact-cta .h1,
.contact-cta h1 {
  font-weight: 500;
  font-size: 24px !important;
  line-height: 35px;
  padding-top: 10px;
  color: #000;
}

.contact-cta .contact-cta-phone {
  display: inline-block;
  font-weight: 700;
  font-size: 60px;
  line-height: 118%;
  color: var(--color-primary);
}

.contact-cta .contact-cta-email {
  display: inline-block;
  margin-top: 20px;
  color: #000;
  font-size: 20px;
  line-height: 1em;
  text-decoration: none;
}

/* Map section */
.map-info-section {
  margin-bottom: 100px;
}

.map-info-section .contactInfoHolder {
  height: 100%;
  overflow: hidden;
}

.HvBoxShadow {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 0 0 1px rgba(104, 113, 130, .16), 0 1px 1px rgba(82, 86, 95, .08);
  border-radius: 10px;
}

.map-info-section .contactInfoHolder .contactInfoHolder_general {
  padding: 30px;
  border-bottom: 1px solid #ededed;
}

.map-info-section .contactInfoHolder .contactInfoHolder_general .h2,
.map-info-section .contactInfoHolder .contactInfoHolder_general h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
}

.map-info-section .contactInfoHolder .contactInfoHolder_general p {
  font-weight: 400;
  font-size: 18px;
  line-height: 167.19%;
  color: #6f6f6f;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data {
  background: linear-gradient(97.7deg, #fcfcfc 35.14%, hsla(0, 0%, 99%, 0) 89.22%);
  padding: 20px 30px;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_first {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_heading {
  font-weight: 600;
  font-size: 16px !important;
  line-height: 167.19%;
  display: flex;
  align-items: center;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_subinfo {
  font-weight: 400;
  font-size: 16px;
  line-height: 167.19%;
  color: #6f6f6f;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_link {
  padding-top: 5px;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_link a {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px !important;
  line-height: 30px;
  color: var(--color-primary);
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_first {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.mgt-22 {
  margin-top: 22px !important;
}

.map-info-section .contactInfoHolder .contactInfoHolder_data .contactInfoHolder_data_first a.btn {
  padding-left: 75px;
  padding-right: 75px;
}

/* Kundservice */
.pdb-50 {
  padding-bottom: 50px;
}

.pdt-50 {
  padding-top: 50px;
}

.mgb-100 {
  margin-bottom: 100px !important;
}

.kudnseriveSectionHolder {
  background: var(--bg-off-yellow);
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .04);
  border-radius: 8px;
  padding: 14px 14px 30px;
  height: 100%;
  cursor: pointer;
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard img {
  height: 287px;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 27px;
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard .h3,
.customTabCarousel .rowHolder .col-md-6 .ProcessCard h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 143.19%;
  color: #0a1d29;
  padding-left: 10px;
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard ul {
  list-style: none;
  padding-left: 15px;
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard ul li:before {
  content: "\f00c";
  font-family: "FontAwesome";
  padding-right: 5px;
}

.customTabCarousel .rowHolder .col-md-6 .ProcessCard:hover {
  box-shadow: -1px 0 0 1px rgba(0, 0, 0, .05), 0 2px 6px rgba(0, 0, 0, .11), 0 5px 12px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .05) !important;
  transform: scale(1.015) rotate(-.75deg);
}

/*================================================================================
 ------------------------------------FACTORIES-----------------------------------
================================================================================*/

/* Normal Section */
.NormalSection .BadgeHolder .d-flex {
  align-items: end;
  gap: 12px;
}

.NormalSection .BadgeHolder .contentHolder .title {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

/* Normal Section */
.bgsection-brown {
  background-color: var(--bg-off-yellow);
}

.NormalSection .row ul {
  padding-left: 20px;
}

.NormalSection .row .NormalSectionCallToAction li {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: var(--color-primary);
  list-style-type: disc;
}

.NumbersDataHolder {
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .04);
  border-radius: 8px;
  padding: 18px;
  position: absolute;
  bottom: 17px;
  left: 17px;
  width: 248px;
}

.NumbersDataHolder ._flex {
  flex-wrap: wrap;
  justify-content: right;
  row-gap: 15px;
  display: inline-flex;
  column-gap: 15px;
}

.NumbersDataHolder .NumbersDataHolder_child {
  flex: 1 1 calc(50% - 24px);
}

.NumbersDataHolder .NumbersDataHolder_child .NumbersDataHolder_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  color: var(--color-primary);
}

.NumbersDataHolder .NumbersDataHolder_child .NumbersDataHolder_title span {
  color: var(--color-primary);
}

.NumbersDataHolder .NumbersDataHolder_child .NumbersDataHolder_description {
  font-weight: 400;
  font-size: 11px;
  line-height: 130%;
  color: #6f6f6f;
}

/* Limited Gallery Section */
.mgt-70 {
  margin-top: 70px !important;
}

.limited_gallery_section {
  width: 100%;
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
}

.trygghet-title-left {
  font-size: 40px;
  line-height: 145.5%;
  color: var(--color-primary);
}

.image-gallery-section .grid-item:hover {
  transform: scale(1.015) rotate(-.75deg);
  filter: opacity(.8);
}

.limited-gallery-content.row {
  row-gap: 25px;
}

.limited-gallery-content.row img {
  border-radius: 4px;
  display: block;
  object-fit: cover;
  /* vertical-align: middle; */
}

.pdb-30 {
  padding-bottom: 30px;
}

.mgb-50 {
  margin-bottom: 50px;
}

/*================================================================================
 ------------------------------------STEP BY STEP-----------------------------------
================================================================================*/
.pdb-120 {
  padding-bottom: 120px;
}

.pdt-80 {
  padding-top: 80px;
}

.pdt-10 {
  padding-top: 10px;
}

.mgb-10 {
  margin-bottom: 10px !important;
}

.pdt-45 {
  padding-top: 45px;
}

.mgt-30 {
  margin-top: 30px !important;
}

.containerBadge {
  border-radius: 29px;
  font-weight: 600;
  font-size: 13px;
  width: 63px;
  height: 22px;
  text-align: center;
  margin: auto;
  padding: 1px 10px;
  border: 1px solid #0c2737;
}

.customTabCarousel .rowHolder .col-md-6 {
  margin-bottom: 32px;
}

.mb-60 {
  margin-bottom: 60px;
}

.husverket-card.goodToKnow:hover {
  cursor: pointer;
}

.husverket-card {
  margin-bottom: 30px;
}

.pdb-20 {
  padding-bottom: 20px;
}

.husverket-card .object-item .Object-details {
  padding: 17px 0;
}

.husverket-card .object-item .Object-details .Object-name .h3,
.husverket-card .object-item .Object-details .Object-name h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  color: var(--color-primary);
}

.husverket-card .object-item img {
  width: 100%;
  border-radius: 5px;
  background-position: 50%;
  background-size: cover;
  max-height: 265px;
}

.goodToKnow a.object-item:hover .object-item-inner {
  transform: scale(1.015) rotate(-.75deg);
}

.goodToKnow a.object-item:hover img {
  opacity: .8;
}

/*================================================================================
 ------------------------------------GALLERY-----------------------------------
================================================================================*/
.gallery-nav li.current a {
  background-color: #ededed;
  font-weight: 500 !important;
}

.gallery-nav a {
  font-size: 14px;
  color: var(--color-primary);
}

.gallery-nav a:hover {
  background-color: #ededed;
}

/* [data-tab-content] {
    display: none;
}
[data-tab-content]:first-child {
    display: flex;
} */

/*================================================================================
 -----------------------------------------FAQ-------------------------------------
================================================================================*/
.HeroHeader {
  position: relative;
  overflow: hidden;
}

.pdb-100 {
  padding-bottom: 100px;
}

.pdt-100 {
  padding-top: 100px;
}

.pdb-70 {
  padding-bottom: 70px;
}

.pdt-70 {
  padding-top: 70px;
}

.HeroBody h1 {
  font-size: 60px;
  line-height: 118%;
  font-weight: 500;
}

.page-template-template-faq #Faq_Question_nav {
  display: list-item;
  list-style: none;
  padding: 45px 0 0;
}

#Faq_Question_nav button {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #000;
  padding: 7px 10px;
  border: 0;
  background-color: transparent;
  margin-bottom: 3px;
}

#Faq_Question_nav button.active {
  font-weight: 500;
  background: #f3f3f3;
  border-radius: 4px;
  border: 0;
}

.tab-content>.active {
  display: block;
}

.faqsectionTitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section_faq_posts .accordion-item {
  margin-top: 16px;
  border-radius: 6px;
}

.section_faq_posts .accordion-item .accordion-header {
  background: #f8f8f8;
  border-radius: 6px;
}

.section_faq_posts .accordion-item .accordion-header button {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000;
  padding: 13px 18px 13px 16px;
}

.section_faq_posts .accordion-item .accordion-header button:after {
  font-family: "FontAwesome" !important;
  content: "\f078";
  opacity: .4;
  rotate: 180deg;
}

.section_faq_posts .accordion-item .accordion-header button.collapsed:after {
  rotate: unset;
}

.accordion-item .accordion-body {
  padding: 13px 18px 13px 16px;
  word-wrap: break-word;
  color: #656565;
  font-size: 16px;
}

.section_faq_posts .accordion-item.active {
  border: 1px solid #e2e2e2;
}

.section_faq_posts .accordion-item.active .accordion-header {
  background-color: white;
}

/* Kontakt oss */
.kontakta-oss-area {
  margin: 53px 0;
}

.kontakta-oss-area .kontakta-oss-area-main-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.kontakta-oss-area .kontakta-oss-area-main-left img {
  max-width: 113px;
  height: 113px;
  border-radius: 50%;
  z-index: 1;
}

.kontakta-oss-area .kontakta-oss-area-main-left>div:first-of-type {
  max-width: 620px;
  float: none;
}

.kontakta-oss-area .kontakta-oss-area-main-left .h2,
.kontakta-oss-area .kontakta-oss-area-main-left h2 {
  z-index: 1;
  font-size: 24px !important;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0;
  line-height: 35px;
}

.kontakta-oss-area div.HvBoxShadow {
  padding: 24px;
}

.kontakta-oss-area .kontakta-oss-area-main-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.kontakta-oss-area .kontakta-oss-area-main-right a.btn {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  background: var(--color-gray-12);
  border-radius: 32px;
  color: var(--color-white);
  display: inline-block;
  margin-top: 10px;
  transition: .2s;
  transition: all .2s ease-in-out;
  padding: 16px 42px;
  transform: scale(1);
}

.kontakta-oss-area .kontakta-oss-area-main-right a.btn:hover {
  transform: scale(1.01);
  /* box-shadow: --shadow-3; */
}

@media only screen and (max-width:992px) {
  ul#Faq_Question_nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow: auto;
  }

  #Faq_Question_nav li.nav-item {
    width: max-content;
    white-space: nowrap;
  }

  ul#Faq_Question_nav::-webkit-scrollbar {
    display: none;
  }
}


/*================================================================================
 ------------------------------------INNER PAGE----------------------------------
================================================================================*/
.gallery-section img {
  width: 100%;
  border-radius: 16px;
  max-height: 666px;
}

.endimg {
  object-fit: cover;
  border-radius: 50%;
}

.end-div {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}

.end-div span {
  font-weight: 600;
}

.pdt-40 {
  padding-top: 40px;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.pdr-10 {
  padding-right: 10px !important;
}

.font-size-12 {
  font-size: 12px;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.textGray {
  color: #8f8f8f;
}

.font-size-12 {
  font-size: 12px;
}

.toThinkAblout {
  padding: 60px;
  border-radius: 10px;
}

.BgGray {
  background-color: #f8f8f8;
}

.mgt-100 {
  margin-top: 100px !important;
}

.toThinkAblout .h3,
.toThinkAblout h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
}

.toThinkAblout ul {
  list-style: none;
  padding: 40px 0 0;
}

.toThinkAblout ul li:before {
  font-family: "FontAwesome" !important;
  content: "\f058";
  color: var(--color-secondary-dark);
}

.toThinkAblout ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 167.19%;
  padding-bottom: 20px;
  display: flex;
  gap: 20px;
}

/*================================================================================
 ------------------------------------TESTIMONIAL----------------------------------
================================================================================*/
.pdb-100 {
  padding-bottom: 100px;
}

.pdt-10 {
  padding-top: 10px;
}

.card.card-video {
  cursor: pointer;
  background: var(--color-white);
  transition: all .2s ease-in-out;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .03), 0 4px 6px 0 rgba(0, 0, 0, .03), 0 2px 6px 0 rgba(0, 0, 0, .05), -1px 0 0 1px rgba(0, 0, 0, .05);
  border-radius: 5px;
  border: unset;
}

.card.card-video img.embed-responsive-item {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.card.card-video:hover img {
  filter: opacity(.8);
}

.card.card-video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, .25);
  border: none;
  outline: 0;
  cursor: pointer;
  border-radius: 50%;
}

.card.card-video .card-top {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  gap: 12px;
}

.card.card-video img.customers-img-card {
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  padding: 0;
}

.card.card-video .card-text {
  text-align: left;
  align-self: center;
}

.card-subtitle,
.card-text:last-child {
  margin-bottom: 0;
}

.card.card-video span.customers-title-card {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-primary);
  text-align: start;
}

.card.card-video span.customers-ss-title-card {
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  display: flex;
  align-items: flex-end;
  color: #0a1d29;
}

.embed-responsive:before {
  display: block;
  content: "";
  padding-top: 56.25%;
}

.color-gray-11 {
  color: #6f6f6f;
}

.card.card-video:hover {
  box-shadow: -1px 0 0 1px rgba(0, 0, 0, .05), 0 2px 6px rgba(0, 0, 0, .11), 0 5px 12px rgba(0, 0, 0, .05), 0 0 0 1px rgba(0, 0, 0, .05);
  transform: scale(1.015) rotate(-.75deg);
}

.play-btn i {
  color: var(--color-white);
  font-size: 24px;
}

.gallerySwiper img {
  width: 100%;
  object-fit: cover;
  max-height: 362px;
  min-height: 362px;
  border-radius: 5px;
  object-position: 50%;
  background-size: cover;
}

.gallerySwiper .swiper-slide {
  margin-bottom: 30px;
}

.RecenationSliderNav {
  display: flex;
  align-items: center;
  float: none;
  justify-content: center;
  margin-top: 70px;
  gap: 30px;
}

.RecenationSliderNav>div {
  position: relative !important;
  color: #fff;
  background-color: #000;
  padding: 10px;
  border-radius: 50px;
  width: 32px;
  height: 32px;
}

.RecenationSliderNav .swiper-button-prev:after {
  font-size: 14px;
  font-family: "FontAwesome";
  content: "\f060";
}

.RecenationSliderNav .swiper-button-next:after {
  font-size: 14px;
  font-family: FontAwesome;
  content: "\f061";
}


.modal.fade.show .txt-model {
  padding: 8px 35px 25px;
}


.modal.fade.show span.title-model {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 65px;
  color: #000;
}


.modal.fade.show .info-user-model {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 0 0 12px 0;
}

.modal.fade.show .info-user-model {
  background: #fcf9f6;
  padding: 0;
  border-left: 1px solid #efddcc;
  padding-top: 40px;
}

.modal.fade.show img.customers-img-card {
  width: 50px !important;
  height: 50px !important;
  margin: 10%;
}

.testimonial-modal.modal.fade.show img.customers-img-card {
  border-radius: 50px;
  object-fit: cover;
}

.testimonial-modal.modal.fade.show .modal-title-info-usr {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #000;
}

.modal.fade.show .modal-rating-info-usr {
  z-index: 100;
  padding: 1px 8px 1px 7px;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 167%;
  display: flex;
  width: 57px;
  color: #0a1d29;
  bottom: 10px;
  left: 15px;
  border-radius: 13px;
  align-items: center;
}

.modal.fade.show .modal-date-info-usr {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 167%;
  color: #8f8f8f;
  position: absolute;
  bottom: 10px;
}

.modal.show .btn-close-container {
  position: absolute;
  right: 5px;
  top: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05), 0 1px 1px rgba(0, 0, 0, .04);
  border-radius: 50% !important;
}

.modal.show button.btn-close {
  background-color: #fff;
  opacity: 1;
  padding: 10px;
  border-radius: 50%;
}

/*================================================================================
 --------------------------------WEBSITE MEDIA QUERY------------------------------
================================================================================*/
@media (min-width: 768px) {
  .contact-cta .contact-cta-email {
    font-size: 24px;
  }
}

@media screen and (min-width: 992px) {

  .NormalSection .row.flex-row-reverse>div:first-child,
  .NormalSection .row.flex-row>div:nth-child(2) {
    padding-left: 65px;
  }
}

@media only screen and (max-width:992px) {
  .info-block {
    padding: 0 5px;
  }

  .top-bar,
  .bottom-bar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .contact-section {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-left {
    justify-content: center;
    flex-direction: column;
  }

  .contact-text {
    max-width: 100%;
    text-align: center;
    font-size: 18px;
  }

  .included-list {
    max-width: 100%;
  }

  .included-item {
    max-width: 100%;
  }
}

@media only screen and (max-width: 430px) {
  .image-product-main {
    min-width: 100%;
    max-width: 100%;
  }
}

.iti {
  display: block;
  width: 100%;
}

.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel], .iti--allow-dropdown input[type=text], .iti--separate-dial-code input, .iti--separate-dial-code input[type=tel], .iti--separate-dial-code input[type=text]{
  padding-left: 90px !important;
}
.grecaptcha-badge {
    display: none !important;
}