/*
================== Global Variables
*/
:root {
  --base-color: #D21E0A;
  --grey-color: #262626;
  --white: #fff;
  --black: #000;
  --global-font: "Roboto", sans-serif;
  --secondary-font: "Aire Exterior", sans-serif;
}
/*
	================== Global Style
*/
html {
  font-size: 62.5%;
}
body,
html {
  -webkit-font-smoothing: antialiased;
}
body {
  overflow-x: hidden;
  font-family: var(--global-font);
  font-weight: 400;
  color: var(--grey-color);
  font-size: 1.6rem;
}
a {
  text-decoration: none;
  color: var(--black);
}
a:focus {
  outline: none;
}
a:visited {
  color: var(--black);
}
a:hover {
  color: var(--black);
  transition: all ease 0.3s;
}
strong {
  font-weight: 500;
}
video {
  width: 100%;
  display: block;
}
*:focus {
  outline: 0;
}
:focus-visible {
  outline: 0;
}
::-webkit-input-placeholder {
  color: #767676;
}
::-moz-placeholder {
  color: #767676;
}
:-ms-input-placeholder {
  color: #767676;
}
:-moz-placeholder {
  color: #767676;
}
p {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
  color: var(--grey-color);
}
ul {
  padding-left: 0px;
  margin-left: 0px;
}
li {
  list-style-type: none;
}
/*
	================== Common Style
*/
.container {
  max-width: 1380px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
.text-center {
  text-align: center;
}
.heading-wrap {
  margin-bottom: 20px;
}
.heading-wrap ul,
section ul {
  padding-left: 15px;
}
.heading-wrap ul li,
section ul li {
  list-style-type: disc;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
.common-heading {
  margin-bottom: 16px;
}
.common-heading h2 {
  font-size: 5rem;
  margin: 0;
  line-height: 1;
}
.dark-bg .common-heading h2,
.dark-bg p,.dark-bg .sub-heading p
.dark-bg ul li {
  color: #f3f3f3;
}
.center-heading .common-heading {
  margin-bottom: 44px;
  position: relative;
  text-align: center;
}
.center-heading .common-heading:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.center-heading .common-heading h2{
  display: inline-block;
  background-color: var(--white);
  position: relative;
  z-index: 1;
  padding: 0 15px;
  text-transform: uppercase;
}
/*
	================== Button Style
*/
.common-btn {
  display: inline-block;
  background-color: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
  padding: 13px 20px;
  transition: all ease 0.5s;
  border-radius: 12px;
  font-family: var(--global-font);
  font-size: 1.4rem;
  line-height: 1.14;
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
.common-btn:visited {
  color: var(--white);
}
.common-btn:hover {
  color: var(--base-color);
  background-color: var(--white);
  border: 1px solid var(--base-color);
}

.sub-heading p {
  font-size: 3rem;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--black);
}
.post,
.page {
  margin: 0;
}
/*
	================== Header Style
*/
.default-page {
  padding-top: 100px;
}
.site-header.nav-up {
  transition: all ease 0.5s;
  transform: translateY(-100%);
}
.site-header.nav-down .main-menu-navigation ul.custom-menu li a {
  color: #000;
}
header.site-header {
  padding: 11px 0;
  position: fixed;
  transform: translateY(0);
  transition: all ease 0.5s;
  top: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 9;
  box-shadow: 0 4px 2px -2px rgb(0 0 0 / 10%);
}
.desktop-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-header{
  display: none;
}
.main-menu-part {
  margin-right: 10px;
}
.main-logo {
  max-width: 183px;
  width: 100%;
  margin-right: 20px;
}
.main-logo img {
  display: block;
  width: 100%;
}
.main-menu-part .main-navigation ul > li {
  margin-right: 35px;
}
.main-menu-part .main-navigation ul li a {
  font-size: 1.8rem;
  line-height: 1.16;
}
.main-menu-part .main-navigation ul > li a {
  font-weight: 600;
}
.search-wrap {
  margin: 0 10px 0 0px;
  position: relative;
  display: block;
}
.search-wrap.mobile-search-wrap{
  display: none;
}

/* Custom Menu */
.main-menu-navigation ul.custom-menu {
  display: flex;
  align-items: start;
  margin-bottom: 0;
}
.main-menu-navigation ul {
  margin-bottom: 0;
}
.main-menu-navigation ul.custom-menu > li {
  margin: 0;
  padding: 28px 10px;
  position: relative;
}
li.custom-menu-item .drop-down {
  display: none;
}
.main-menu-navigation ul.custom-menu > li a {
  font-weight: 600;
}
.main-menu-navigation ul.custom-menu > li a:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -3px;
  left: 0;
  width: 100%;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-top: 1px solid var(--black);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1);
}
.main-menu-navigation ul.custom-menu > li a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-menu-navigation ul.custom-menu li a {
  font-size: 1.8rem;
  line-height: 1.16;
  position: relative;
  color: var(--black);
}
.main-menu-navigation ul.custom-menu li a:hover {
  color: var(--base-color);
}
.sub-menu-list {
  border-radius: 0px 0px 20px 20px;
  width: 230px;
  background: var(--white);
  padding: 20px 0;
  display: none;
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 2;
  flex-direction: column;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu > .sub-menu-list {
  flex-direction: unset;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > ul.custom-sub-menu {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 0;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu > .sub-menu-list > ul.custom-sub-menu {
  width: 234px;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li {
  margin-bottom: 0;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li:last-child {
  margin-bottom: 0;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li a {
  padding: 7px 10px 7px 0;
  display: block;
  align-items: center;
  color: #423f3f;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 400;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu > .sub-menu-list li a {
  display: flex;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu > .sub-menu-list > .listing-wrapper ul.sublist {
  width: 207px;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu .listing-wrapper.m-menu {
  display: none;
}
.main-menu-navigation ul.custom-menu li .sub-menu-list ul.sublist li a {
  font-size: 1.4rem;
  line-height: 1.14;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li a .image-icon {
  margin-right: 5px;
  border: solid 2px #a39c95;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 5px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li a .image-icon img {
  height: 30px;
}
.main-menu-navigation ul.custom-menu li .sub-menu-list ul.sublist li a .image-icon {
  border-width: 1px;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li a:hover .image-icon,
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li.active-item a .image-icon {
  border-color: var(--black);
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > ul.custom-sub-menu > li a {
  text-transform: uppercase;
  color: var(--black);
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list ul li a:after {
  display: none;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list ul li a span.menutext:after {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 0;
  width: 100%;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  border-top: 2px solid var(--black);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 0, 0.4, 1);
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list ul li a span.menutext {
  position: relative;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list ul li a:hover span.menutext:after ,
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > ul.custom-sub-menu > li.active-item a > span.menutext:after{
  transform: scaleX(1);
  transform-origin: left;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li ul.sublist li a {
  color: #423f3f;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list li ul.sublist li a:hover {
  color: var(--black);
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > ul.custom-sub-menu > li a:hover,
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > ul.custom-sub-menu > li.active-item a {
  color: var(--black);
  opacity: 1;
}
.main-menu-navigation ul.custom-menu > li > .sub-menu-list > .listing-wrapper {
  width: 480px;
  display: none;
}
.main-menu-navigation ul.custom-menu > li.custom-mega-menu > .sub-menu-list > .listing-wrapper {
  display: block;
}
li.custom-menu-item.custom-mega-menu .sub-menu-list {
  width: 720px;
}
figure.product-image {
  width: 273px;
  margin: 0px;
  padding: 7px 20px;
}
figure.product-image img {
  width: 100%;
  display: block;
}
.sub-wrapper {
  display: none;
}
.sub-wrapper.active-item {
  display: flex;
}
.main-menu-toggle {
  display: none;
  padding: 8px 8px;
  background: var(--black);
  border-radius: 5px;
  width: 35px;
  height: 35px;
}
.main-menu-toggle i {
  font-size: 2rem;
  color: var(--white);
  margin-top: -1px;
}
.close-m {
  display: none;
}
.main-menu-navigation.mobile-menu .open-m {
  display: none;
}
.main-menu-navigation.mobile-menu .close-m {
  display: block;
}
.seacrh-icon input {
  border: 0;
  background: url("../images/search-icon.svg") no-repeat;
  padding: 0;
  font-size: 0;
  background-size: 100%;
  height: 22px;
  width: 22px;
}
.search-wrap button {
  padding: 0;
  font-size: 0;
  display: flex;
  border-radius: 21px;
  border: 1px solid #262626;
  background-color: var(--white);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
.search-bar input {
  font-size: 1.6rem;
  font-weight: 400;
  border-radius: 21px;
  height: 42px;
  width: 42px;
  color: var(--black);
  background-color: var(--white);
  transition: all 1s;
  padding: 13px 10px 11px 21px;
  border: 1px solid #262626;
}
.input-open input {
  width: 210px;
  padding-left: 45px;
}
.input-open input#s::placeholder {
  font-size: 1.8rem;
}
.search-wrap .input-open button {
  z-index: 2;
}
.search-popup-main{
  display: none;
}
.search-popup-main {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
}
.search-popup-wrap {
  overflow: auto;
  width: 830px;
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  padding: 40px 100px;
}
.search-popup-main button.search-close {
  background: transparent;
  position: absolute;
  right: 0;
  top: 30px;
}
.search-popup-wrap form{
  position: relative;
}
.search-popup-wrap button.btn {
  position: absolute;
  right: 0;
  border: 0px;
  border-radius: 0px;
  background: transparent;
  padding: 10px;
}
.search-popup-wrap form input {
  color: #fff !important;
  background: transparent;
  border: 0;
  border-bottom: solid 1px #fff;
  border-radius: 0;
  width: 100%;
  font-size: 3rem;
  text-align: center;
}
.searchloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}
.searchloader img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
}
.search-popup-wrap img.loader-img,.search-popup-wrap img.loader-img-search {
  width: 27px;
}
.search-popup-wrap.active-loader .loader-img{
  display: none;
}
.right-part-outer {
  margin-left: auto !important;
}
.top-btn-wrap {
  display: flex;
  align-items: center;
}
.wpml-language {
  margin-left: 20px;
  max-width: 104px;
}
.wpml-language .wpml-ls-legacy-dropdown a {
  border-color: #262626;
  border-radius: 12px;
  padding: 13px 15px 13px 15px;
  color: #262626;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
}
.wpml-language .wpml-ls-legacy-dropdown a::after{
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
}
.wpml-language .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after{
  right: 17px;
  width: 14px;
  height: 8px;
  border: 0;
  background: url("../images/down-icon.svg") no-repeat;
  background-size: cover;
}
.wpml-language .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  border-top: 0;
}
.wpcf7-response-output{
  display: none !important;
}
/*
	================== Home banner Style
*/
.home-banner {
  position: relative;
}
.home-banner video {
  display: block;
  pointer-events: none;
}
.home-banner video::-webkit-media-controls {
  display: none;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-content {
  position: absolute;
  bottom: 10px;
  z-index: 1;
  width: 100%;
  padding: 65px 174px;
}
.banner-content h1 {
  color: var(--white);
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 0;
}
.banner-content .sub-heading p {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.172;
}
.banner-content .common-btn {
  font-size: 1.6rem;
  line-height: 1.16;
  padding: 17px 25px;
}
.banner-content .common-btn:hover {
  background-color: var(--white);
  color: var(--base-color);
}

/*
	================== modular Style
*/
.modular-content-box {
  display: none;
}
.modular-content-box.active {
  display: block;
}

/*
	================== plan-install-section Style
*/
.plan-install-section {
  padding: 50px 0 50px 0;
  position: relative;
  min-height: 893px;
  background-position: center center;
}
.plan-install-section .container-wrap {
  max-width: 720px;
  position: relative;
}
.plan-install-section .heading-wrap{
  margin-top: -30px;
}
.plan-install-section .heading-wrap .common-heading {
    margin-bottom: 5px;
}
.plan-install-list {
  margin-top: 20px;
}
.plan-install-list ul {
  margin: 0;
  padding: 0;
}
.plan-install-list ul li {
  list-style: none;
  display: grid;
  grid-template-columns: 35px auto;
  align-items: center;
  margin-bottom: 6px;
}
.plan-install-list ul li p {
  margin: 0;
  font-size: 2rem;
  line-height: 1.125;
  font-weight: 700;
}
.plan-install-list ul li span {
  width: 25px;
}
.plan-install-list ul li span img {
  width: 100%;
}
.installation-group {
  width: 100%;
}
.plan-install-section .sub-heading p{
  color: #F3F3F3;
  font-size: 2rem;
  max-width: 511px;
  margin: 0;
}
.installation-group ul {
  margin: 0;
  padding: 0;
}
.installation-group ul li {
  position: absolute;
  list-style: none;
  border: solid 1.5px var(--white);
  min-width: 104px;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  top: 0;
  margin: 0;
}
.installation-group ul li span {
  display: block;
}
.installation-group ul li a{
  color: var(--white);
}
.installation-group ul li span.install-icon {
  background: var(--white);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.53);
  width: 50px;
  height: 50px;
  border-radius: 6px;
  margin: 0px auto 5px auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.installation-group ul li span.install-icon img {
  display: block;
  width: 100%;
  height: 40px;
}
.installation-group ul li span.install-text {
  font-size: 1.4rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}
.installation-group ul li:nth-child(1) {
  left: 56.5%;
  top: 9%;
}
.installation-group ul li:nth-child(2) {
  left: 76.5%;
  top: 20%;
}
.installation-group ul li:nth-child(3) {
  left: 36%;
  top: 61%;
}
.installation-group ul li:nth-child(4) {
  left: 70%;
  top: 53%;
}
.installation-group ul li:nth-child(5) {
  left: 11%;
  top: 76%;
}
.installation-group ul li:nth-child(6) {
  left: 38%;
  top: 85%;
}
.installation-group ul li:nth-child(7) {
  left: 55.5%;
  top: 84%;
}
.installation-group ul li:nth-child(8) {
  left: 77.5%;
  top: 83%;
}
.m-install {
  display: none;
}
.m-install {
  display: none;
}
.installation-group.m-install ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.installation-group.m-install ul li {
  position: relative;
  top: 0;
  left: 0;
}
/*
	================== modular-energy-section Style
*/
.modular-energy-section {
  padding: 40px 0 60px 0;
}
.modular-energy-wrap {
  margin-top: 60px;
}
.modular-energy-section .common-heading h2{
  margin-left: 30px;
}
.modular-energy-list {
  border-radius: 20px;
  border: 1px solid #bbb;
  padding: 40px 30px 30px 30px;
  position: relative;
  margin-bottom: 56px;
}
h2.modular-title {
  position: absolute;
  top: -20px;
  margin: 0;
  padding: 0 10px;
  background: var(--white);
  line-height: 1;
  font-size: 4rem;
  text-transform: uppercase;
}
.modular-energy-list:last-child {
  margin-bottom: 0;
}
.modular-energy-list h2.modular-heading {
  font-size: 4rem;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: 30px;
  margin: 0;
  background: var(--white);
  padding: 0 10px;
  text-transform: uppercase;
}
.modular-list-outer {
  display: grid;
  grid-template-columns: 329px 1fr;
  align-items: start;
}
.modular-image {
  margin-right: 29px;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  border: 1px solid #bbb;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modular-tab-wrap {
  display: grid;
  grid-template-columns: 341px 1fr;
}
.modular-tabs {
  margin-right: 40px;
}
.tabs-list {
  border-radius: 6px;
  border: 0.5px solid #c1c1c1;
  margin-bottom: 20px;
  padding: 6px 12px;
  display: grid;
  grid-template-columns: 61px 1fr;
  align-items: center;
  cursor: pointer;
}
.tabs-list.active,
.tabs-list:hover {
  background: #eee;
}
.tabs-list:last-child {
  margin-bottom: 0;
}
.modular-icon {
  width: 42px;
  height: 47px;
  margin-right: 19px;
  display: flex;
  align-items: center;
}
.modular-icon img {
  width: 100%;
  height: 90%;
}
.modular-title{
  font-size: 1.8rem;
  line-height: 1.166;
  font-weight: 500;
}
.modular-content-outer {
  padding-top: 25px;
}
.modular-content-outer h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.16;
  font-family: var(--global-font);
  font-weight: 600;
}
.modular-content p {
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}
.content-box.shotext .modular-content p{
  display: block;
}
.redmore-content {
  margin-top: 6px;
  text-align: right;
}
.redmore-content a {
  border-radius: 6px;
  background-color: var(--base-color);
  border: 1px solid var(--base-color);
  padding: 8px 18px;
  display: inline-block;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
}
.redmore-content a:hover {
  color: var(--base-color);
  background-color: var(--white);
  border: 1px solid var(--base-color);
}

/*
	================== benefits-section Style
*/
.benefits-section {
  padding: 80px 0 100px 0;
}
.benefits-outer {
  margin-top: 30px;
}
.benefit-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 36px;
}

.benefit-box {
  border-radius: 20px;
  border: 2px solid #eaeaea;
  padding: 20px;
}
.benefit-icon {
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 5px;
}
.benefit-icon img {
  width: 100%;
  height: 90%;
}
.benefit-box h3 {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--global-font);
  margin: 20px 0;
  line-height: 1.16;
}

/*
	================== flexible-section Style
*/
.flexible-section {
  background-color: #a6a6a6;
  padding: 40px 0;
}
.flexible-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flexible-content-wrap {
  width: 54%;
  margin-right: 45px;
}
.flexible-content {
  margin-top: 50px;
  max-width: 730px;
}
.flexible-content p:first-child {
  font-size: 2.4rem;
  line-height: 1.166;
}
.flexible-image-slider {
  width: 40%;
  margin-top: 24px;
}
.flexible-image-slider .owl-item {
  padding-bottom: 25px;
  padding-top: 25px;
}
.flexible-image-slider.product-gallery-slider button.owl-prev ,
.flexible-image-slider.product-gallery-slider button.owl-next{
  top: 30%;
}
.owl-carousel .owl-item .image-border img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

/*
	================== affordable-section Style
*/
.affordable-section {
  margin-top: 60px;
  padding: 50px 0 50px;
  min-height: 800px;
}
.affordable-text {
  width: 100%;
  background: linear-gradient(90deg,var(--white) -129.43%,rgba(255, 255, 255, 0) 111.11%);
  padding: 22px 20px 22px 0;
  position: relative;
}
.affordable-text p {
  margin-bottom: 0;
}
.affordable-content-wrap {
  max-width: 650px;
  width: 100%;
  position: relative;
}
.affordable-content-wrap .affordable-text:after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, 0.4);
  width: 200px;
  right: 100%;
  top: 0;
  height: 100%;
}
.affordable-content-wrap .common-btn {
  float: right;
  min-width: 254px;
  line-height: 1.171;
  font-size: 2.2rem;
  padding: 13px 20px;
  margin-top: 19px;
  text-transform: uppercase;
  font-weight: 600;
}
.affordable-content-wrap .common-btn:hover{
  background-color: var(--white);
}
.affordable-content-wrap .common-btn span {
  line-height: 1.125;
  font-size: 1.6rem;
  text-transform: none;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}

/*
	================== Footer Style
*/
footer.site-footer {
  padding: 60px 0 0 0;
}
.footer-upper-wrap {
  border-top: solid 1px rgba(38, 38, 38, 40%);
  padding-top: 40px;
  padding-bottom: 10px;
}
.content-logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  width: 481px;
}
.footer-content .common-heading h2 {
  font-size: 6.5rem;
  line-height: 1;
}
.footer-content .sub-heading {
  font-size: 2.7rem;
  line-height: 1.296;
  font-weight: 500;
}
.footer-menu-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 63px;
  grid-row-gap: 30px;
  margin-top: 27px;
}
.footer-menu-wrap ul {
  margin: 0;
}
.footer-menu-box h4 {
  font-size: 3.5rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: solid 1px rgba(38, 38, 38, 1);
  text-transform: uppercase;
  position: relative;
}
.footer-menu-link{
  display: block;
}
.footer-menu-link ul li {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.footer-menu-link ul li:last-child {
  margin-bottom: 0;
}
.footer-social-media {
  margin-top: 0;
}
ul.social-media {
  display: flex;
  align-items: center;
  margin: 0;
}
ul.social-media li {
  margin-right: 31px;
  font-size: 2.5rem;
}
ul.social-media li:last-child {
  margin-right: 0;
}
.footer-bottom-outer {
  border-top: solid 1px rgba(38, 38, 38, 0.4);
  padding-top: 16px;
  padding-bottom: 16px;
}
.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.important-links p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.29;
}
.important-links p a {
  margin-left: 50px;
  font-weight: 500;
  color: rgba(38, 38, 38, 0.6);
}
.important-links p a:hover {
  color: var(--base-color);
}
.copyright-text {
  font-size: 1.2rem;
  line-height: 1.29;
  font-weight: 500;
  color: rgba(38, 38, 38, 0.6);
}
.footer-upper-wrap a:hover {
  color: var(--base-color);
}
/*
	================== Inner page
*/
.inner-main-banner {
  background-color: #4d4d4d;
  min-height: 814px;
  position: relative;
  overflow: hidden;
}
.bg-image{
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-animation: zoomeffect 10s ;
   -moz-animation: zoomeffect 10s ;
   animation: zoomeffect 10s ;
}
.bg-image.d-mobile{
  display: none;
}
@-webkit-keyframes zoomeffect{
  0%{
    background-position:center;
    transform:scale(2,2);
  }
  50%{
    background-position:center;
    transform:scale(1,1);
  }
  100%{
    background-position:center;
    transform:scale(1,1);
  }
}
@keyframes zoomeffect {
  0%{
    background-position:center;
    transform:scale(2,2);
  }
  50%{
    background-position:center;
    transform:scale(1,1);
  }
  100%{
    background-position:center;
    transform:scale(1,1);
  }
}
.inner-banner-outer {
  position: relative;
  max-width: 1380px;
  margin-left: 15px;
  left: 50%;
  transform: translateX(-50%);
  top: 600px;
  z-index: 1;
  color: var(--white);
}
.inner-banner-para {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.166;
  margin-bottom: 20px;
}
.inner-banner-content h2 {
  font-size: 6rem;
  color: var(--white);
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.product-section {
  padding: 50px 0 50px 0;
}
.product-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  gap: 40px;
}
.product-card {
  border-radius: 20px;
  border: 1px solid #BEBEBE;
  background: var(--white);
  padding: 30px;
  width: 47%;
}
.product-card-inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.product-left {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-content {
  margin-bottom: 30px;
}
.product-left h3 {
  margin-top: 0;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.16;
  margin-bottom: 11px;
  font-family: var(--global-font);
}
.product-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.14;
  color: #616161;
  text-align: justify;
}
.product-card .product-gallery-slider .owl-nav span {
  color: #3d3d3d;
}
.product-gallery-wrap {
  margin-top: auto;
}
.overlay.ovlymobile {
  display: none;
}

.overlay.ovlydesktop {
  display: block;
}
.product-gallery-slider .owl-stage-outer {
  padding: 28px 0;
}
.product-gallery-slider .owl-item {
  opacity: 0.3;
  transition: .4s ease all;
  -webkit-transition: .4s ease all;
}
.product-gallery-slider .owl-item .product-item{
  pointer-events: none;
}
.product-gallery-slider .owl-item.active.center {
  opacity: 1;
  transform: scale(1.5);
  z-index: 1;
}
.flexible-image-slider.product-gallery-slider .owl-item.active.center{
    margin-top: 23px;
    padding: 0;
}
.product-gallery-slider .owl-item.active.center .product-item{
  pointer-events: unset;
}
.flexible-image-slider .image-item img {
  border-radius: 5px;
}
.product-gallery-slider button.owl-next ,
.product-gallery-slider button.owl-prev {
  position: absolute !important;
}
.product-gallery-slider button.owl-prev {
  left: 0;
  top: 13%;
}
.product-gallery-slider .owl-nav span {
  font-size: 60px;
}
.product-gallery-slider button.owl-next {
  right: 0;
  top: 13%;
}
.product-right {
  width: 25%;
}
.footer-cta-section {
  background-color: #a6a6a6;
  position: relative;
  padding-top: 69px;
  padding-bottom: 70px;
}
.footer-cta-outer .heading-wrap {
  margin-bottom: 0;
}
.footer-cta-image {
  width: 470px;
  height: 100%;
  background: #ddd;
  position: absolute;
  right: 0;
  top: 0;
}
.footer-cta-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.footer-cta-content .common-heading h2 {
  color: var(--white);
  font-size: 4rem;
}
.footer-cta-content .sub-heading {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 1.3;
}
.footer-cta-content .common-btn {
  border-radius: 6px;
  background-color: var(--base-color);
  border: 3px solid var(--base-color);
  text-transform: none;
  text-transform: uppercase;
}
.footer-cta-content .common-btn:empty {
  display: none;
}
.footer-cta-content .common-btn:hover{
  background-color: var(--white);
  border-color: var(--base-color);
  color: var(--base-color);
}
.footer-cta-content {
  padding-right: 470px;
}
.support-outer {
  display: flex;
  grid-gap: 78px;
  justify-content: start;
}
.support-list {
  text-align: center;
}
.support-icon {
  width: 44px;
  margin: 0px auto 7px auto;
}
.support-icon img {
  display: block;
  width: 100%;
}
.support-list:hover img {
  -webkit-filter: invert(40%) grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-50deg) saturate(900%) contrast(0.8);
  filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-50deg) saturate(900%) contrast(0.8);
}
.support-text,.support-text a {
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.28;
  font-weight: 700;
}
.support-list:hover .support-text a, .support-list:hover .support-text {
  color: var(--base-color);
}

/*
	================== milestone-section
*/

.milestone-section {
  padding-top: 60px;
  padding-bottom: 10px;
}
.milestone-outer {
  margin-top: 87px;
}
.milestone-section .common-heading h2 {
  font-size: 6rem;
  line-height: 1;
}
.milestone-repeater {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: start;
  padding-bottom: 71px;
}
.milestone-repeater:last-child{
  padding-bottom: 0
}
.milestone-repeater:after {
  position: absolute;
  content: '';
  left: 25px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #939393;
}
.milestone-repeater::before{
  position: absolute;
  content: '';
  left: 25px;
  top: -50px;
  width: 1px;
  height: 55px;
  background-color: #939393;
}
.milestone-date {
  width: 16%;
  position: relative;
  display: flex;
  align-items: center;
}
.service-repeater {
  width: 84%;
  position: relative;
  border: solid 1px #BEBEBE;
  border-radius: 20px;
  padding: 20px 20px 20px 30px;
  margin-top: 10px;
}
.milestone-date .date-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #CCCCCC;
  border: solid 1px #939393;
  border-radius: 50%;
  padding: 5px;
  margin-right: 10px;
  z-index: 1;
}
.milestone-date .date-text {
  font-size: 1.8rem;
  line-height: 1.166;
  font-weight: 500;
  width: calc(100% - 60px);
}
.service-repeater h3 {
  margin: 0;
  position: absolute;
  top: -15px;
  font-size: 2.4rem;
  line-height: 1.166;
  font-weight: 500;
  font-family: var(--global-font);
  background-color: var(--white);
  padding: 0 10px;
  margin-bottom: 15px;
}
.service-content-wrap {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.service-content-left {
  width: 57%;
}
.service-image-gallery {
  width: 37%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.service-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-gap: 10px;
  border: solid 1px #BEBEBE;
  padding: 5px;
  border-radius: 6px;
}
.service-list .service-type-list {
  display: flex;
  align-items: center;
}
.service-list .service-icon {
  width: 40px;
  height: 40px;
  border: solid 1px var(--black);
  padding: 5px;
  border-radius: 5px;
  display: block;
  margin-right: 10px;
}
.service-list .service-icon img{
  width: 100%;
  display: block;
  height: 30px;
}
.service-list .service-text {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 500;
  width: calc(100% - 50px);
}
.service-description p {
  font-size: 1.4rem;
  line-height: 1.357;
  color: #6B6B6B;
}
.service-tags {
  padding-top: 10px;
  margin-top: 10px;
  border-top: solid 2px #BEBEBE;
  line-height: 1.375;
  font-weight: 500;
}
.service-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: solid 1px #E0E0E0;
}
.service-image a {
  width: 100%;
  display: block;
}
.service-image img {
  display: block;
  width: 100%;
}

/*
  =============== Our People
*/
.our-value-section{
  padding-bottom: 80px;
}
.about-people-section {
  padding-top: 50px;
  padding-bottom: 80px;
}
.about-people-section .paragraph p {
  font-size: 2rem;
  line-height: 1.3;
  color: #6B6B6B;
  margin-top: 0;
}
.our-value-repeater {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 139px;
  grid-row-gap: 53px;
}
.our-value-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 2.8rem;
  line-height: 1.142;
  font-family: var(--global-font);
  font-weight: 600;
}
.our-value-card .value-title {
  font-size: 2.2rem;
  line-height: 1.136;
  color: #525252;
  margin-bottom: 8px;
}
.value-content p {
  margin-top: 0;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #6B6B6B;
}
.our-team-section {
  padding: 80px 0 20px;
}
.team-card-wrap {
  text-align: center;
}
.team-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.team-image {
  height: 317px;
  position: relative;
}
.team-image img {
  height: 100%;
  object-fit: cover;
}
.team-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.0006127450980392135) 90%);
}
.team-name {
  position: absolute;
  bottom: 0;
  color: var(--white);
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
}
.designation {
  font-size: 1.6rem;
  line-height: 1.16;
  margin-top: 16px;
}
.our-team-slider .owl-dots {
  margin-top: 40px;
  text-align: center;
}
.our-team-slider .owl-dots button {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #848484;
  margin: 3px;
}
.our-team-slider .owl-dots button.active {
  background: var(--black);
}
.page-template-template-our-people .footer-cta-section{
  display: none;
}
.page-template-template-our-people .our-people-appointment .footer-cta-section{
  display: block;
}

/*
  =============== advantage-section
*/
.advantage-section {
  padding: 50px 0 80px;
}
.advantage-section .sub-heading {
  font-size: 2.8rem;
  line-height: 1.142;
  margin-bottom: 22px;
}
.advantage-repeater {
  margin-top: 60px;
}
.advantage-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 50px;
}
.advantage-box {
  display: grid;
  grid-template-columns: 131px auto;
}
.advantage-icon {
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 10px;
}
.advantage-icon img {
  height: 100%;
  width: 80px;
}
.advantage-content h3 {
  margin-top: 0;
  margin-bottom: 19px;
  font-size: 2.8rem;
  line-height: 1.142;
  font-weight: 700;
  font-family: var(--global-font);
}
.advantage-text p {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 0;
}
.no-banner {
  padding-top: 70px;
}
.questions-section{
  padding-top: 83px;
  padding-bottom: 80px;
}
.question-box-repeater {
  display: flex;
  margin-bottom: 80px;
}
.question-left {
  width: 28%;
  margin-right: 70px;
}
.question-heading {
  margin-bottom: 20px;
}
.question-heading h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 1.166;
  font-family: var(--global-font);
  font-weight: 500;
}
.default-search-inner {
  border-radius: 9px;
  border: 1px solid #BEBEBE;
  max-width: 369px;
  overflow: hidden;
}
.faq-search input[type="submit"] , .vacancies-section input[type="submit"] {
  font-size: 0;
  background-image: url(../images/faq-search-icon.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  border-radius: 0;
  width: 24px;
  height: 25px;
  margin: 10px;
  border-right: 1px solid #000;
  padding: 13px 18px 0;
}
.loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255,255,255,0.8);
  display: none;
  text-align: center;
}
img.loader-img {
  width: 40px;
}
.default-search-inner button {
  background: transparent;
  border-right: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 0;
  padding: 0 10px;
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  margin-right: 0;
}
.default-search-inner form {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.default-search-inner input[type="text"] {
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 10px;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 300;
}
.question-right {
  width: 58%;
  position: relative;
}
.accordion-repeater .loading{
	left: 24%;
}
.accordion-items {
  margin-bottom: 10px;
}
.accordion-heading {
  padding-right: 40px;
  position: relative;
  cursor: pointer;
  max-width: 517px;
  height: 30px;
  display: flex;
  align-items: center;
}
.accordion-heading h4 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.277;
  font-family: var(--global-font);
  font-weight: 400;
}
.accordion-content p {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.142;
  color: var(--grey-color);
  font-weight: 400;
  letter-spacing: 0.42px;
}
.accordion-heading .accordion-icon {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
}
.accordion-heading .accordion-icon .minus-icon {
  display: none;
  padding: 10px;
}
.accordion-heading .accordion-icon .plus-icon {
  border: solid 1px #ddd;
  background-color: rgba(190, 190, 190, 0.20);
  border-radius: 50%;
  padding: 7px;
  display: block;
}
.accordion-items.active .accordion-heading .accordion-icon .minus-icon {
  display: block;
}
.accordion-items.active .accordion-heading .accordion-icon .plus-icon {
  display: none;
}
.question-box-repeater.question-answer-wrap {
  margin-bottom: 0;
}
.question-answer-wrap .question-heading h3 {
  border-bottom: solid 1px #000;
  padding-bottom: 10px;
}
.faq-list-wrap{
	position: relative;
}
.qna-list .qna-accordion-icon .plus-icon {
  border: solid 1px #ddd;
  background-color: rgba(190, 190, 190, 0.20);
  border-radius: 50%;
  padding: 7px;
  display: block;
}
.qna-list .qna-accordion-icon .minus-icon {
  display: none;
  padding: 7px;
}
.qna-list h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--grey-color);
  font-family: var(--global-font);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.277;
  margin-bottom: 0;
}
.qna-list ul li{
  color: var(--grey-color);
  font-family: var(--global-font);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  list-style: none;
  margin: 0;
}
.qna-list ul li >a.active{
  color: var(--base-color);
}
.qna-accordion.active h4 .qna-accordion-icon .minus-icon {
  display: block;
}
.qna-accordion.active h4 .qna-accordion-icon .plus-icon {
  display: none;
}
.qna-accordion.active ul{
  display: block;
}
.qna-accordion ul{
  display: none;
  margin: 10px 0 0 0;
}
/*
  =============== imprint-section
*/
.imprint-section {
  padding: 70px 0 0;
}
.imprint-section strong{
  font-weight: 800;
}
.imprint-box-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 103px;
}
.imprint-outer h3 {
  font-size: 2.4rem;
  line-height: 1.172;
  font-weight: 600;
  font-family: var(--global-font);
  margin-bottom: 16px;
  margin-top: 0;
}
.imprint-content strong {
  font-weight: 700;
}
.imprint-content a{
  color: #085394;
  text-decoration: underline;
}
.imprint-list.co-imprint {
  margin-top: 30px;
}
.imprint-list ul {
  padding: 0;
  margin: 0;
}
.imprint-list ul li {
  list-style: none;
  margin-bottom: 5px;
  font-size: 1.6rem;
  line-height: 1.25;
}
.imprint-list.co-imprint ul li strong {
  min-width: 180px;
  display: inline-block;
}
.imprint-content p:last-child {
  margin-bottom: 0;
}
.imprint-list.cont-details ul li strong {
  min-width: 60px;
  display: inline-block;
}
.imprint-copyright {
  margin-top: 22px;
  max-width: 1253px;
}
.data-protection-section {
  padding: 30px 0 20px;
}
.data-protection-section h3 {
  font-size: 2rem;
  line-height: 1.172;
  font-family: var(--global-font);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #000;
}
.data-protection-section h3 + p {
  margin-top: 5px;
}
.data-protection-outer p {
  line-height: 1.171;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #000;
}
.data-protection-outer a{
  color: #085394;
  text-decoration: underline;
}
.data-protection-outer table {
  width: auto;
}
.data-protection-outer table td {
  border: 0;
  background: #fff;
  padding: 4px 10px 4px 0px;
  font-size: 1.6rem;
  color: #000;
}
.data-protection-outer ul,
.data-protection-outer ol{
  padding-left: 40px;
  margin-left: 0;
}
.data-protection-outer ul li,
.data-protection-outer ol li{
  font-size: 1.6rem;
  margin-bottom: 0;
  line-height: 1.4;
}
.data-protection-outer ol li{
  list-style-type: decimal;
}
.data-protection-outer p.space{
  line-height: 1;
  height: 5px;
}
.data-protection-section strong {
  font-weight: 500;
}
.generaltc-section{
  padding: 80px 0 20px;
}
.generaltc-section h3{
  font-size: 2rem;
  line-height: 1.172;
  font-family: var(--global-font);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 5px;
}
.generaltc-section p {
  line-height: 1.171;
  margin-top: 15px;
  margin-bottom: 15px;
}
.generaltc-section h3 + p {
  margin-top: 5px;
}
.generaltc-outer a{
  color: #085394;
  text-decoration: underline;
}
.generaltc-section strong {
  font-weight: 500;
}
.generaltc-section ul,
.generaltc-section ol{
  padding-left: 40px;
  margin-left: 0;
}
.generaltc-section ul li,
.generaltc-section ol li{
  font-size: 1.6rem;
  margin-bottom: 0;
  line-height: 1.4;
}
.generaltc-section ol li{
  list-style-type: decimal;
}
/* ============ career-section
 */
.future-video-section {
  padding-top: 27px;
  padding-bottom: 26px;
  margin-top: 40px;
  background-color: #A6A6A6;
  }
  .future-video-outer {
  display: flex;
  }
.future-video-content {
  width: 54.5%;
  margin-right: 55px;
  margin-top: 10px;
}
.future-video-wrap {
  width: 45.5%;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.future-video-content .sub-heading p {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--white);
}
.future-video-content .btn-group {
  margin-top: 48px;
}
.future-video-content .btn-group .common-btn {
  background-color: var(--base-color);
  border: 3px solid var(--base-color);
  border-radius: 6px;
  max-width: 181px;
  display: block;
  font-size: 1.4rem;
  line-height: 1.171;
  text-transform: uppercase;
}
.future-video-content .btn-group .common-btn:hover{
    background-color: var(--white);
    border-color: var(--base-color);
    color: var(--base-color);
  }
  .employee-benefits {
  padding-top: 55px;
  padding-bottom: 53px;
  }
  .benefit-card-repeater {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  }
  .benefit-card {
  border-radius: 10px;
  border: 1px solid var(--black);
  padding: 60px 20px 30px;
  text-align: center;
  }
  .benefit-image {
  margin-bottom: 35px;
  }
  .benefit-image img {
  height: 222px;
  display: block;
  margin: 0px auto;
  width: 100%;
  }
  .card-wrapper{
    position: relative;
  }
  .card-listing{
    height: 388px;
    perspective: 500px;
    width: 100%;
  }
  .cards {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 1s;
    transform-style: preserve-3d;
  }
  .card-wrapper:hover .cards {
    transform: rotateY( 180deg ) ;
    transition: transform 0.5s;
  }
  .benefit-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  }
  
.benefit-card,
.flip-text {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  backface-visibility: hidden;
}

.flip-text {
  background: #fff;
  color: white;
  transform: rotateY( 180deg );
  font-size: 30px;
  border-radius: 5px;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  padding: 15px;
}
.flip-text p{
  font-size: 16px;
  margin: 10px 0;
}
.flip-text h3 {
  font-size: 24px;
  margin: 0;
  line-height: 1;
  text-align: center;
}
 
.our-staff-section {
  padding-top: 52px;
  padding-bottom: 40px;
}
.our-staff-repeater {
  margin-top: 30px;
}
.staff-card-wrap {
  display: flex;
  border-radius: 20px;
  background: #CCC;
  padding: 20px;
}
  .staff-card-content {
  margin-right: 20px;
  width: 67%;
  }
  .staff-detsils-wrap {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  }
  .staff-slider .owl-stage {
  left: -40px;
  }
  .quote-icon {
  margin-right: 20px;
  }
  .staff-image {
  width: 29.5%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  align-self: start;
  }
  .staff-image:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.0006127450980392135) 90%);
  }
  .staff-name {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  color: #050505;
  }
  .staff-card-content .designation {
  margin-top: 0;
  }
  .staff-details {
    font-size: 1.4rem;
    line-height: 1.428;
    font-weight: 400;
    color: #303030;
    padding-left: 50px;
  }
  .vacancies-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .vacancies-section .default-search-inner {
    max-width: 541px;
}
.vacancies-section .default-search-inner input[type="text"]{
  padding: 16px 0 15px
}
.job-listing-outer {
  margin-top: 30px;
}
.listing-filter {
  margin-bottom: 20px;
}
.listing-filter ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
.listing-filter ul li {
  list-style-type: none;
  margin-right: 30px;
}
.listing-filter ul li a {
  border-radius: 6px;
  border: 2px solid #EAEAEA;
  padding: 12px 26px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-align: center;
  display: block;
  font-weight: 400;
}
.listing-filter ul li a:hover,.listing-filter ul li a.active {
  border-color: var(--black);
  background: rgba(0, 0, 0, 0.12);
}
.job-list-box {
  display: flex;
  flex-direction: column;
}
.job-card {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #EAEAEA;
  padding-bottom: 6px;
  margin-bottom: 30px;
  padding-right: 44px;
  max-width: 760px;
}
.job-card:last-child{
  margin-bottom: 0;
}
.job-card-details {
  margin-right: 40px;
  width: 100%;
}
.job-card-details h4 {
  margin-top: 0;
  margin-bottom: 7px;
  font-family: var(--global-font);
  font-weight: 700;
}
.job-description p {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.125;
  font-size: 1.6rem;
  font-weight: 300;
}
.job-card .common-btn {
  background-color: var(--base-color);
  border: 1px solid var(--base-color);
  color: var(--white);
  padding: 10px;
  border-radius: 6px;
  width: 140px;
  text-transform: uppercase;
}
.job-card .common-btn:hover{
  color: var(--base-color);
  background-color: var(--white);
  border-color: var(--base-color);
}
/* =============== quote section
 */
 .thankyou-page .inner-banner-content h2 {
  position: relative;
}
.thankyou-page .inner-banner-content h2::after {
  content: '';
  position: absolute;
  background-image: url(../images/Vector.png);
  background-repeat: no-repeat;
  left: -80px;
  top: 9px;
  width: 50px;
  height: 47px;
}
.thankyou-page .inner-banner-content {
  margin-left: 115px;
}
.thankyou-page  .inner-main-banner{
  margin-bottom: 20px;
}
 .quote-section-outer {
  padding-top: 32px;
}
 .quote-details h2 {
  margin: 0 0 20px 0;
  font-family: var(--secondary-font);
  font-size: 6rem;
  line-height: 1;
}
.quote-details p {
  font-size: 2.4rem;
  line-height: 1.16;
  font-family: var(--global-font);
  color: var(--black);
  margin: 0 0 20px 0;
  font-weight: 500;
}

 .personal-information {
  padding-bottom: 45px;
}
 .personal-information .container {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  border: 1px solid #C7C7C7;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.left-block{
  margin-right: 40px;
  max-width: 739px;
  width: 100%;

}
.personal-information  h2 {
  margin-bottom: 20px;
  font-family: var(--global-font);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.12;
  color: var(--black);
  padding-bottom: 10px;
  margin-top: 0;
  border-bottom: 1px solid #BEBEBE;
}
.personal-information  label {
  font-family: var(--global-font);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0em;
  margin-bottom: 6px;
  display: inline-block;
  text-align: left;
}
select option{
  padding: 20px;
}
.personal-information  .input-box{
  border: 1px solid #BEBEBE;
  border-radius: 6px;
  height: 50px;
  max-width: 100%;
  width: 100%;
  padding: 0 15px 0 20px;
  margin-bottom: 0;
  font-size: 1.7rem;
  font-family: var(--global-font);
  color: var(--grey-color);
}
.personal-information .pnum .input-box{
  padding-left: 45px;
}
.phone-num .wpcf7-form-control-wrap input{
  background-image: url(../images/phone-solid.svg);
  background-repeat: no-repeat;
  background-position: 12px 13px;
}
.select-box {
  position: relative;
  width: 100px;
}
.select-box:after {
  position: absolute;
  content: ' ';
  width: 1px;
  height: 26px;
  background-color: #BEBEBE;
  top: 10px;
  right: 30px;
}
.personal-information .select-box .input-box{
  padding-right: 35px;
}
.right-block {
  max-width: 453px;
  padding-top: 33px;
  margin: 0 auto;
}
.right-block .image img{
  width: 100%;
  height: auto;
}
.image {
  margin-bottom: 43px;
}
.image p {
  margin: 0;
}
.right-block .submit-btn input {
  font-family: var(--global-font);
  font-size: 1.6rem !important;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: center;
  height: 50px;
  border-radius: 6px;
  background-color: var(--base-color);
  border: 3px solid var(--base-color);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
}
.right-block .submit-btn input:hover{
  background-color: var(--white);
  border-color: var(--base-color);
  color: var(--base-color);
  transition: all ease 0.3s;
}
.submit-btn {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.submit-btn p{
  margin: 0;
}
.submit-btn .wpcf7-spinner {
  position: absolute;
  left: 50%;
  margin: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
.form-details {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
}
.form-details.quoteform {
  display: block;
}
.wide-field {
  display: flex;
}
.wide-field .house {
  width: 20%;
}
.wide-field .str{
  width: 80%;
}
.str-sup {
  width: 100%;
}
.select-box select{
  background-image: url(../images/eva_arrow.svg);
  background-repeat: no-repeat;
  background-position: 99% 8px;
  -webkit-appearance: none;
  appearance: none;
}
.phone-num {
    position: relative;
}
.mobile-num {
  position: relative;
}
.mobile-num .wpcf7-form-control-wrap input {
  background-image: url(../images/mobile-icon.svg);
  background-repeat: no-repeat;
  background-position: 12px 13px;
}
.email{
  position: relative;
}
.email .wpcf7-form-control-wrap input {
  background-image: url(../images/email-solid.svg);
  background-repeat: no-repeat;
  background-position: 12px 13px;
}
.name p, .str p, .pcod p ,.pnum p ,.str-sup p , .house p{
  margin: 0;
}
.Communication {
  padding-top: 10px;
}
.personal-information.product-choice.new-shores .left-block {
  max-width: 867px;
}
.personal-information.product-choice.new-shores .upload-details{
  max-width: 471px;
}
.product-choice .right-block{
padding-top: 0;
}
.checkbox {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  justify-content: center;
  align-items: start;
}
.checkbox-content {
  display: grid;
  width: 100%;
  grid-gap: 20px;
  grid-template-columns: 32% auto;
  margin-top: 30px;
}
.checkbox-content p .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
}
.checkbox-content .image-icon img {
  margin-right: 5px;
  border: solid 2px #000000;
  border-radius: 9px;
  width: 123px;
  height: 123px;
  padding: 5px;
}
.checkbox-content h3{
  line-height: 1.2;
  font-size: 6rem;
  margin: 0;
  grid-column: 1 / -1;
}
.checkbox-content .wpcf7-list-item-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0em;
  text-align: left;
  margin-left:30px;
  display: inline-block;
}
.checkbox-content .wpcf7-list-item{
  margin: 0 0 0;
}
.checkbox-content h2, .checkbox-content p {
  margin: 0;
}
.checkbox-content .wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
}
.checkbox-content .wpcf7-checkbox input[type=checkbox] {
    position: absolute;
    visibility: hidden;
    height: 23px;
    width: 23px;
    top: 3px;
    left: 0;
}
.checkbox-content .wpcf7-checkbox input[type=checkbox] + span:before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 4px;
    height: 23px;
    width: 23px;
    top: 0px;
    left: 0px;
    border: 1px solid #797979;
}
.checkbox-content .wpcf7-checkbox input[type=checkbox] + span:after {
    display: block;
    position: absolute;
    visibility: hidden;
    content: '';
    background-image: url(../images/check.svg);
    height: 17px;
    width: 17px;
    top: 5px;
    left: 3px;
}
.checkbox-content .wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}
.checkbox-content .wpcf7-checkbox input[type=checkbox]:checked + span:after {
    visibility: visible;
}
input.wpcf7-form-control.wpcf7-file {
  font-size: 0;
  border: 0;
  position: relative;
  bottom: 15px;
  width: 55px;
  height: 81px;
}
 input.wpcf7-form-control.wpcf7-file:after {
  position: absolute;
  top: -29px;
  left: 0;
  background: url(../images/icons8_plus.svg);
  content: '';
  width: 100%;
  height: 100%;
  background-position: 58px 24px;
}
.file-1 {
  display: flex;
  align-items: center;
}
.uploaded-file {
  max-width: 58%;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #bbb;
  padding: 32px 30px 20px 30px;
  position: relative;
  margin-bottom: 14px;
}
.file-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}

.file-1 p,.upload-details p ,.upload-details ul li {
  margin: 0;
}
.uploaded-file h2 {
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: -12px;
  left: 21px;
  border: none;
  margin: 0;
  background: var(--white);
  padding: 0 7px;
}
.file-1 h3 {
  font-family: var(--global-font);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0em;
  text-align: left;
  margin: 0 10px;
}
.upload-details .addfile {
  color: var(--black);
  font-family: var(--global-font);
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 500;
  margin: 0 8px 10px;
  line-height: normal;
  display: inline-block;
}
.upload-details ul li {
  color: #343434;
  font-family: var(--global-font);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-left: 16px;
}
.quote-3 {
  width: 100%;
  position: relative;
}
div#the-count {
  position: absolute;
  bottom: 22px;
  right: 10px;
  width: 123px;
}

div#the-count span {
    font-size: 1.2rem;
}
.quote-3 .input-box{
  margin-bottom: 10px;
}
.quote-3 .input-box .form-details{
  margin-bottom: 0;
}
.quote-3 textarea{
  height: 313px !important;
  resize: none;
  padding: 20px !important;
  position: relative;
}
.quote3-form .left-block {
  max-width: 850px;
  width: 100%;
}
.quote3-form .right-block {
  max-width: 350px;
  padding: 0;
}
.quote3-form .right-block .submit-btn input{
  width: 100%;
  padding: 0;
}
.quote3-form .right-block .image {
  margin-top: 43px;
  margin-bottom: 56px;
}
/* ======= application-1
 */
 .new-shores {
  padding-bottom: 10px;
}
 .new-shores .container{
  border: none;
  box-shadow: none;
  padding: 0;
 }
 .new-shores  .form-details {
  margin-bottom: 20px;
  grid-column-gap: 20px;
  margin-top: 0;
}
.new-shores .uploaded-file {
  max-width: 100%;
  margin-bottom: 80px;
}
.new-shores .left-block {
  max-width: 761px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #A8A8A8;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.new-shores .upload-details {
  width: 100%;
  max-width: 524px;
  border: 1px solid #A8A8A8;
  box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 25%);
  padding: 30px;
  border-radius: 20px;
  margin-top: 0;
}
.new-shores .codedropz-upload-handler{
  height: auto;
  width: 100%;
  margin-bottom: 55px;
  margin-right: 0;
}
.new-shores .codedropz-upload-wrapper{
  height: auto;
  flex-direction: column-reverse;
}
.new-shores  .dnd-upload-status .dnd-upload-details span.has-error {
  color: #f50505;
  font-size: 12px;
  line-height: 1.1;
  margin-top: 18px;
  display: inline-block;
}
.new-shores .file-content {
  margin-top: 30px;
}
.new-shores .submit-btn input {
  width: 100%;
  height: 50px;
  font-family: var(--global-font);
  font-size: 1.6rem !important;
  text-transform: none;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0em;
  text-align: center;
  border-radius: 6px;
  background-color: var(--base-color);
  border: 3px solid var(--base-color);
  color: var(--white);
  cursor: pointer;
}
.new-shores .submit-btn input:hover {
  background-color: var(--white);
  border-color: var(--base-color);
  color: var(--base-color);
  transition: all ease 0.3s;
}
.new-shores .submit-btn p{
margin-bottom: 0;
}
.new-shores .upload-details ul{
  margin-bottom: 0;
}
.new-shores .dnd-upload-status {
  margin-right: 14px;
  width: 160px;
}
.tooltip {
  background: #606060;
  font-size: 1.3rem;
  word-break: break-all;
  bottom: 100%;
  color: #fff;
  border-radius: 4px;
  left: 50%;
  margin-bottom: 10px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  width: 100%;
  -webkit-transform: translate(-50%, 10px);
  -moz-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  -o-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px
  rgba(0, 0, 0, 0.28);
  z-index: 1;
}

.tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.tooltip:after {
  border-left: solid transparent 10px;
  border-right: solid transparent 10px;
  border-top: solid #606060 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -13px;
  position: absolute;
  width: 0;
}

.dnd-upload-status:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translate(-50%, 0);
}

.new-shores .img-file-wrapper{
  justify-content: space-between;
  margin-bottom: 30px;
}

.codedropz-btn-wrap a {
  position: relative;
  margin: 0 auto;
}
.codedropz-upload-handler {
  width: 100%;
  margin-top: 25px;
}
.codedropz-upload-inner .codedropz-btn-wrap{
  text-align: center;
}

.codedropz-btn-wrap a::after {
  position: absolute;
  background-image: url(../images/icons8_plus.svg);
  content: '';
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
.codedropz-btn-wrap a:hover::after {
  position: absolute;
  background-image: url(../images/icons8_plus_white.png);
  content: '';
  left: 0;
  right: 0;
  width: 60px;
  height: 60px;
}

a.cd-upload-btn {
  font-size: 0;
  width: 60px;
  height: 60px;
  display: block;
}

.dnd-progress-bar {
  display: none !important;
}
.dnd-upload-counter{
  display: none;
}

.dnd-upload-status .dnd-upload-details .name em {
  display: none;
}

.dnd-upload-status .dnd-upload-details .name {
  padding: 0 !important;
  font-size: 1.6rem;
}
/* .dnd-upload-status{
    margin-bottom: 10px;
    margin-right: 30px;
} */
.dnd-upload-status .dnd-upload-details .name span{
  word-break: break-all;
  white-space: unset !important;
  padding-right: 18px !important;
}
.img-file-wrapper {
  padding: 38px 30px 20px;
  border-radius: 12px;
  border: 1px solid #A8A8A8;
  background: #FFF;
  position: relative;
}
.img-file-wrapper::after {
  content: 'Uploaded files';
  position: absolute;
  top: -15px;
  left: 15px;
  font-size: 2.4rem;
  line-height: 1.166;
  font-weight: 500;
  font-family: var(--global-font);
  background-color: var(--white);
  padding: 0 10px;
}
[lang="de-DE"] .img-file-wrapper::after{
  content: 'Angefügte Dateien';
}
[lang="fr-FR"] .img-file-wrapper::after{
  content: 'Fichiers téléchargés';
}
[lang="zh-hans"] .img-file-wrapper::after{
  content: '上传的文件';
}
[lang="ja"] .img-file-wrapper::after{
  content: 'アップロードされたファイル';
}
[lang="es-ES"] .img-file-wrapper::after{
  content: 'Archivos cargados';
}
.dnd-icon-remove.deleting{
    top: 0px;
    left: 30px;
}
.dnd-upload-status .dnd-upload-image span.file{
    background-image: url(../images/pepicons-pencil_file.svg) !important;
    height: 36px !important;
    width: 36px !important;
}
.dnd-upload-status .dnd-upload-image {
  width: 34px!important;
  height: 34px!important;
  border: none !important;
}
.dnd-upload-status .dnd-upload-details .remove-file span:after {
  width: 20px !important;
  height: 25px !important;
  background-size: 100%;
  background-image: url(../images/delete.svg) !important;
}
.codedropz-upload-inner{
  padding: 10px;
}
.codedropz-upload-inner h3{
  font-family: var(--global-font);
}
.codedropz-upload-handler .codedropz-upload-container {
  padding: 0;
}
.upload-details {
  position: relative;
  margin-top: 43px;
}

.codedropz-upload-wrapper span.has-error-msg {
  position: absolute;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  top: 40px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 1em;
}
.search.search-results .entry-title {
  text-decoration: underline;
}
.search.search-results .entry-summary {
  margin-top: 0;
  display: none;
}
.search.search-results .entry-summary p:first-child{
  margin-top: 0;
}
.search.search-results .entry-summary p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.entry-title a:hover{
  color: var(--base-color);
}
.installation-group ul li:hover .install-icon img {
  transform: scale(1.1);
  transition: all ease-in-out 0.3s;
}
.installation-group ul li:hover a {
  color: var(--base-color);
}
.no-results.not-found input.search-field {
  width: 203px;
  height: 41px;
  border-radius: 11px;
  font-size: 14px;
}
.cmplz-body span.cmplz-icon {
  display: none;
}
.cmplz-body .cmplz-description {
  display: none;
}
.cmplz-cookiebanner.cmplz-show .cmplz-header {
  grid-template-columns: 230px 1fr 40px;
  gap: 10px;
}
.cmplz-cookiebanner .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:focus + .cmplz-label:before {
  box-shadow: none !important;
}
.cmplz-cookiebanner.cmplz-show .cmplz-logo img {
  max-height: unset !important;
}
.cmplz-cookiebanner.cmplz-show .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:before{
  height: 22px;
  width: 40px;
  border-radius: 40px
}
.cmplz-cookiebanner.cmplz-show .cmplz-categories .cmplz-category .cmplz-banner-checkbox .cmplz-label:after {
  top: -3px;
  height: 14px;
  width: 14px;
}
.cmplz-cookiebanner .cmplz-close{
  position: absolute;
  top: 10px;
  right: 20px;
}
.cmplz-cookiebanner.cmplz-show .cmplz-title{
  font-size: 3.5rem;
  font-family: var(--secondary-font);
  line-height: 1.2;
  justify-self: left;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner{
  grid-row-gap: 5px;
}
.cmplz-cookiebanner.cmplz-show .cmplz-buttons .cmplz-btn.cmplz-save-preferences{
  background-color: var(--cmplz_button_accept_border_color);
  color: #fff
}
.cmplz-cookiebanner.cmplz-show .cmplz-categories .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label:after {
  left: 23px;
}
.cmplz-cookiebanner.cmplz-show .cmplz-buttons .cmplz-btn:hover,
.cmplz-cookiebanner.cmplz-show .cmplz-buttons .cmplz-btn.cmplz-save-preferences:hover {
    background-color: #fff;
    border: 1px solid var(--cmplz_button_accept_border_color);
    color: var(--cmplz_button_accept_border_color);
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-body{
  max-height: 35vh;
}
.cmplz-message {
  padding-right: 10px;
}
.cmplz-message p {
    margin-top: 0;
}
.cmplz-cookiebanner .cmplz-close{
  display: none !important;
}