/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    /*  */
    --header-height: 0;
    /*  */

    --black: #000;
    --white: #fff;
    --wb-offwhite: #ededed;
    --wb-blue: #0055A4;
    --wb-red: #EF4135;

    --hamBg: var(--wb-blue);

    --wpforms-button-background-color: var(--wb-blue);
    --wpforms-button-border-color: var(--wb-blue);
    --wpforms-page-break-color: var(--wb-blue);

    --wpforms-label-error-color: var(--wb-red);

    --xl: 48px;
    --lg: 32px;
    --lg2: 30px;
    --md: 22px;
    --md2: 20px;
    --sm: 16px;
    --xs: 14px;
    --xxs: 12px;
    /* padding */
    --sectionPadding: 100px;
}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: "Poppins", sans-serif;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;
}

h1 {
  font-family: 'DAKDO Regular';
  font-weight: 100 !important;
  letter-spacing: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    padding: 0;
    margin: 0;
}

a {
  color: var(--wb-blue);
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
	height: auto;
}

img.lazy {
    background-image: url("../img/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 50px auto;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

/* h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
} */
h3 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
}
button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.row {
    --gutter-x: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1420px;
    padding: 0 10px;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    position: fixed;
    width: 100%;
    z-index: 10000;

    padding: 25px 0;
    background-color: var(--wb-offwhite);

    transition: all 0.3s ease-in-out;
}

.header-area.sticky-header {
    padding: 10px 0;

    background-color: var(--wb-blue);
}

.header-area + * {
    padding-top: 147px;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu-left .logo-area {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.menu-left .logo-area > a{
    line-height: 1;
}

.menu-left .logo-area span a {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--wb-blue);
    text-decoration: none;
    text-transform: uppercase;
}

.logo-area img {
  transition: all 0.3s ease-in-out;
  height: 95px;
	width: auto;
}

.header-area.sticky-header .logo-area img {
  height: 60px;
  filter: brightness(0) invert(1);
}

.mobile-logo img {
  filter: brightness(0) invert(1);
}

.menu {
    display: flex;
    align-items: center;
}
.menu ul {
    margin: 0;
    margin-bottom: 0 !important;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
    padding-left: 28px;
}

.menu ul ul li {
    padding-left: 0;
}

.menu ul li a {
    font-size: var(--sm);
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
}

.menu ul ul li a {
    color: var(--white);
}

.header-area.sticky-header .menu ul li a {
    color: var(--white);
}

.desktop-menu .contact a {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black) !important;
    width: 110px;
    height: 42px;
    padding: 10px 17px;
    background-color: var(--wb-red);
    border: 2px solid var(--wb-red);
}
.desktop-menu .contact a:hover {
    border: 2px solid var(--wb-red);
    background: var(--white);
}
.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;

    list-style: none;
    background-color: var(--wb-blue);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;

    position: fixed;
    width: 100%;
    z-index: 10000;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;

    padding: 100px 0;
}

.slideout-menu ul ul {
    display: block !important;
    position: relative !important;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--wb-blue);
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--white);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 8px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--black);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

/*===========================================================
Banner Area
===========================================================*/
.banner-area {
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 540px;
    background-position: center right;
    display: flex;
    align-items: center;
}

.banner-text {
    max-width: 500px;
    width: 100%;
}

.banner-text h1 {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.17;
    color: var(--black);
}

.banner-text p {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--black);
}

.banner-text ul li {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 7px;
}
.banner .bttn {
    margin-top: 20px;
}
/*===========================================================
Form Area
===========================================================*/
.form-area {
    padding: 50px 0;
    background-color: var(--wb-blue);
}
.form-card {
    display: flex;
    justify-content: space-between;
    max-width: calc(100% - 122px);
    width: 100%;
    gap: 22px;
}
.form-title h3 {
    text-align: center;
    font-size: var(--md2);
    font-weight: 600;
    line-height: 1.4;
    color: var(--black);
}
.form-inner form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.form-card .single-formm {
    position: relative;
    width: 33.33%;
}
.form-card .single-formm input {
    width: 363px;
    width: 100%;
    height: 42px;
    padding: 0 15px;
    padding-left: 45px;
    background-color: white;
    border: 0;
    padding-left: 47px;
    font-size: var(--sm);
}
.form-card .single-formm img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.search-form-home form .wpforms-submit-container button[type=submit],
.form-inner form button {
    font-size: var(--sm);
    font-weight: 600;
    color: var(--black) !important;
    width: 100px;
    line-height: 42px;
    background-color: var(--white) !important;
    cursor: pointer;
    border-radius: 0;

    padding: 0 !important;
    border: 0 !important;
}

.search-form-home  em.wpforms-error {
  color: var(--white) !important;
}

/*===========================================================
Book Area
===========================================================*/
.book-text-area {
    padding: var(--sectionPadding) 0;
}
.book-text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.book-text-left {
    /* max-width: calc(100% - 900px); */
    max-width: 310px;
    width: 100%;
}
.book-text-left h2 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.book-text-right {
    max-width: 700px;
    width: 100%;
}
.book-text-right p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
}
/*===========================================================
Map Area
===========================================================*/
.map-area {
    position: relative;
    background-color: var(--black);
    padding: var(--sectionPadding) 0;
}
.map {
    display: flex;
}
.map-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100%;
}
.map-left,
.map-right {
    width: 50%;
}

.map-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.map-text h3 {
    font-size: var(--lg);
    font-weight: bold;
    line-height: 1.25;
    color: white;
}
.map-filter {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.map-filter span {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}
.map-filter select {
    padding: 4px 7px;
    width: 136px;
    height: 32px;
    border-radius: 30px;
    border: solid 1px rgba(255, 255, 255, 0.7);
    font-size: var(--xxs);
    font-weight: normal;
    line-height: 1.67;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url(../img/select.png);
    background-repeat: no-repeat;
    background-position: 89% center;
    padding: 0 20px;
}
.map-filter select option {
    color: var(--black);
}
.map-menu {
    display: flex;
    gap: 85px;
}
.map-menu ul li {
    list-style: none;
    margin: 4px 0 !important;
}
.map-menu ul li a {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-block;
    border-bottom: 1px solid transparent;
}
.map-menu ul li a:hover {
    color: var(--wb-blue);
    border-bottom: 1px solid var(--wb-blue);
}
/*===========================================================
Review
===========================================================*/
.review-area {
    padding: var(--sectionPadding) 0;
}
.review-card {
    padding: 20px 15px;
    border: solid 1px var(--wb-red);
}
.review-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-slider {
    margin-top: 15px;
}
.review-slider .slick-track {
    margin: unset;
}
.review-arrows div {
    display: flex;
    align-content: center;
    cursor: pointer;
}
.review-arrows {
    display: flex;
    gap: 20px;
}
.review-title h3 {
    font-size: var(--lg2);
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.27;
    letter-spacing: normal;

    color: var(--black);
}
.review-card-top a,
.review-card-top h4 {
    font-size: var(--md2);
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: normal;
    color: var(--black);
    text-decoration: none;

    margin-bottom: 0;
}
.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.star {
    display: flex;
    align-items: center;
}
.review-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0;
}
/* the slides */
.review-slider .slick-slide {
    margin: 0 30px;
}

/* the parent */
.review-slider .slick-list {
    margin: 0 -30px;
}
/*===========================================================
Accordion
===========================================================*/
.accordion-area {
    background-color: var(--wb-blue);
    padding-top: var(--sectionPadding);
    padding-bottom: 70px;
}
.acc-container {
    max-width: 1040px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.acc {
    border-top: 1px solid var(--white);
    padding: 27px var(--sectionPadding);
}

.vc_tta-panel {
    position: relative;
}

.vc_tta-panel::before,
.vc_tta-panel::after {
    content: "";
    position: absolute;
    top: 50%;
    transition: all 0.3s;
}

.vc_tta-panel::before {
    right: 0;
    width: 26px;
    height: 26px;
    margin-top: -13px;
    background-image: url("../img/arrow-down.svg");
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

.vc_tta-panel::after {
    right: 21px;
    width: 14px;
    height: 26px;
    margin-top: -2px;
}

.vc_tta-panel p {
    font-size: var(--md);
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.36;
    letter-spacing: normal;
    color: var(--black);
    margin-bottom: 0;
}

.acc-content {
    display: none;
}

.vc_tta-panel.vc_active::before {
    transform: rotate(180deg);
}

.acc-title {
    margin-bottom: 30px;
}
.acc-title h2 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.acc-content p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0;
    margin-top: 27px;
}

.acc-content-text {
    margin-top: 27px;
}
.acc-content-text ul {
    margin: 0;
    padding-left: 10px;
}
.acc-content-text ul li,
.acc-content-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0 !important;
    list-style: none;
}
.acc-content-text ul li {
    position: relative;
    padding-left: 12px;
}
.acc-content-text ul li:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    background: var(--black);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/*===========================================================
Content Area
===========================================================*/
.content-area {
    padding-bottom: var(--sectionPadding);
}
.content-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.content-card {
    text-align: center;
    padding: 50px 25px;
    border: solid 1px var(--wb-red);
    display: block;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 35px;

    transition: background-color 0.3s ease;
}

.content-text h3 {
    font-size: var(--md2);
    font-weight: 600;
    line-height: 1.4;
    color: var(--black);
    display: inline-block;
    margin: 10px 0;
}
.content-text p {
    margin: 0;
}

a.content-card:hover {
    background-color: var(--wb-red);
}

a.content-card:hover * {
  transition: color 0.3s ease;
}

a.content-card:hover * {
    color: #fff;
}

/*a.content-card:hover img {
  transition: filter 0.3s ease;
}

a.content-card:hover img {
    filter: brightness(0) invert(1);
}*/

/*===========================================================
Contact Area
===========================================================*/
.contact-area {
    padding: var(--sectionPadding) 0;
    background-color: var(--black);
}
.contact-title p,
.contact-title h3 {
    color: var(--white);
}
.contact-title {
    text-align: center;
}
.col,
.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.two-col .single-form {
    width: calc(50% - 8px);
    margin-bottom: 16px;
}

.wpforms-field textarea,
.wpforms-field label,
.wpforms-field input,
.col .single-form,
.single-form textarea,
.single-form label,
.single-form input {
    width: 100% !important;
    font-size: var(--sm) !important;
    font-weight: normal !important;
    border-radius: 0 !important;
}
.single-form input {
    background-color: var(--white);
    line-height: 42px;
    color: var(--black);
    padding: 0 20px;
    border: 0;
}
.wpforms-field-label,
.single-form label {
    margin-bottom: 6px !important;
    font-size: var(--sm) !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    display: block !important;
}

.single-form textarea {
    height: 180px;
    color: var(--black);
    padding: 10px 20px;
}
.contact-inner {
    max-width: 830px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.contact-title p {
    margin-bottom: 45px;
}
.contact-form button[type=submit],
.contact-inner button {
    font-size: var(--sm) !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    width: 123px !important;
    line-height: 42px !important;
    background-color: var(--wb-blue) !important;
    cursor: pointer !important;
    border-radius: 0 !important;
}
.checkbox {
    margin: 12px 0;
}
input[type="checkbox"] + label {
    display: block !important;
    cursor: pointer !important;
    font-size: var(--xs) !important;
    font-weight: normal !important;
    line-height: 1.71 !important;
    color: var(--wb-blue) !important;
}

input[type="checkbox"] {
    display: none;
}

input[type="checkbox"] + label:before {
    content: "\2714";
    border: solid 1px var(--wb-blue);
    border-radius: 0.2em;
    display: inline-block;
    width: 16px;
    height: 16px;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 10px;
    vertical-align: bottom;
    color: transparent;
    transition: 0.2s;
}

input[type="checkbox"] + label:active:before {
    transform: scale(0);
}

input[type="checkbox"]:checked + label:before {
    background-color: var(--wb-blue);
    border-color: var(--wb-blue);
    color: var(--white);
}

input[type="checkbox"]:disabled + label:before {
    transform: scale(1);
    border-color: #aaa;
}

input[type="checkbox"]:checked:disabled + label:before {
    transform: scale(1);
    background-color: #bfb;
    border-color: #bfb;
}
/*===========================================================
Product Area
===========================================================*/
.product-area {
    padding: var(--sectionPadding) 0;
}
.product-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: var(--sectionPadding);
}
.product-img {
    position: relative;
}
.product-img-1 {
    position: absolute;
    right: 0;
    bottom: -130px;
}
.product-img {
    /* max-width: calc(100% - 712px); */
    max-width: 520px;
    width: 100%;
}
.product-text {
    max-width: 712px;
    width: 100%;
}
.product-text h3 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.product-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin-top: 7px;
}

/*===========================================================
 Footer Area
===========================================================*/

.footer-area {
    background-color: var(--wb-offwhite);
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 45px;
    display: flex;
}
.footer-top-left {
    width: 53%;
}
.footer-logo a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: white;
}
.footer-top-text {
    max-width: 300px;
    width: 100%;
    margin-top: 16px;
}
.footer-top-text p {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
}
.footer-top-menu {
    display: flex;
    gap: 100px;
}
.footer-top-menu div p {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    margin-bottom: 10px;
}
.footer-top-menu div a {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 2;
    text-decoration: none;
    display: block;

    color: var(--black);
}
.footer-menu {
    border-top: 1px solid var(--wb-red);
    border-bottom: 1px solid var(--wb-red);
    padding: 50px 0;
}
.footer-menu p {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: white;
}
.footer-menu-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-menu-inner div a {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 2.4;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
}
.footer-bttm ul li a:hover,
.footer-top-menu div a:hover,
.footer-menu-inner div a:hover {
    color: var(--wb-blue);
}
.footer-bttm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;

    border-top: 1px solid var(--wb-red);
}
.footer-bttm p {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    margin: 0;
}
.footer-bttm ul {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 35px;
}
.footer-bttm ul li {
    list-style: none;
    margin: 0 !important;
}
.footer-bttm ul li a {
    text-decoration: none;
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;

    color: var(--black)
}

/* ================================Individual City============= */
.individual-banner-area {
    background-image: url(../img/banner-img-2.png);
    min-height: 505px;
    background-repeat: no-repeat;
    background-position: right;
}
.arrow-next {
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
}
.individual-banner-area {
    background-color: var(--wb-blue);
    position: relative;
}
.individual-banner-img {
    text-align: right;
}
.individual-banner-text {
    position: relative;
    max-width: 500px;
    width: 100%;
    padding-top: 135px;
}
.individual-banner-text h1 {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.17;
    color: var(--black);
    margin-bottom: 15px;
}
.individual-banner-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0;
}
.address-inner {
    padding-right: 45px;
    margin-top: 10px;
}
.loc-card,
.add-card,
.review-single {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.add-card {
    border-bottom: 1px solid var(--wb-red);
    padding: 18px 0;
}
.loc-card {
    width: 100%;
}
.loc-card div {
    flex: 1;
    margin-right: 55px;
    width: 100%;
}
.loc-card div a {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 4px;
}

.loc-card div a span {
  margin-right: 35px;
  max-width: 300px;
}

.loc-card div p {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: white;
    margin: 0;
}
.add-card-review {
    text-align: right;

    width: 150px;
}
.add-card-review h6 {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: white;
    margin: 0;

    margin-top: 7px;
}
.add-card-review .star {
    color: #fff !important;
    justify-content: flex-end;
    gap: 7px;
}
.add-card-review .star img {
    width: 19px;
}
.gmbh-text-area {
    padding: var(--sectionPadding) 0;
}
.gmbh-text-inner {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.gmbh-text-card {
    width: 50%;
}
.gmbh-text h3 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.gmbh-text P {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0;
}
.product-2-area {
    padding: var(--sectionPadding) 0;
}
.product-2-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-2-img {
    max-width: 405px;
    width: 100%;
}
.product-2-img h2 {
    font-size: var(--lg2);
    font-weight: 600;
    line-height: 1.27;
    color: var(--black);
}
.product-2-text {
    max-width: calc(100% - 530px);
    width: 100%;
}
.product-2-text p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin-bottom: 10px;
}
.product-2-text ul {
    margin-bottom: 10px;
}
.product-2-text ul li {
    position: relative;
    padding-left: 12px;
    list-style: none;
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0 !important;
    list-style: none;
}
.product-2-text ul li:before {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    background: var(--black);
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.product-2-text span {
    font-size: var(--sm);
    font-weight: normal;
    font-style: italic;
    line-height: 1.5;
    color: var(--black);
    padding: 20px 45px;
    background-color: var(--wb-blue);
    display: block;
    margin-bottom: 10px;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 200px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }

    .header-area + * {
      padding-top: 85px;
    }

    .banner-area {
      background-size: cover;
      background-color: rgba(255,255,255,0.5);
      background-blend-mode: lighten;
    }
}

/*===========================================================
Containers
============================================================*/
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}
/*===========================================================
 Responsive
============================================================*/

@media (max-width: 1399px) {
    .product-text {
        max-width: 540px;
    }
}

@media (max-width: 1199px) {
    :root {
        --sectionPadding: 60px;
    }
    .product-2-text {
        max-width: calc(100% - 450px);
    }
    .menu ul li a {
        font-size: var(--xs);
    }
    .menu ul li {
        padding-left: 0;
    }
    .accordion-area {
        padding-bottom: 60px;
    }
    .product-text,
    .book-text-right {
        max-width: 100%;
    }
    .product-img {
        max-width: 650px;
        width: 100%;
    }
    .product-text {
        margin-top: 150px;
    }
    .product-inner {
        padding-bottom: 0;
    }
    .footer-menu-inner {
        gap: 30px;
    }
    .footer-menu-inner div {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 991px) {
    .panel-header {
        background: var(--wb-blue);
    }

    .mobile-logo .mobile-logo-area > a{
        line-height: 0;
    }

    .mobile-logo .mobile-logo-area {
        text-decoration: none;
        gap: 10px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .mobile-logo .mobile-logo-area img {
        width: 130px;
    }

    .mobile-logo .mobile-logo-area span a{
        font-size: 17px;
        font-weight: 600;
        line-height: 1;
        color: #ffce00;
        text-decoration: none;
    }
    .address-inner {
        padding-right: 0;
    }
    .product-2-img {
        margin-bottom: 30px;
    }
    .product-2-img,
    .product-2-text {
        max-width: 100%;
    }
    .individual-banner-area,
    .banner-area {
        position: relative;
    }
    .individual-banner-area::before,
    .banner-area::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
    }
    .banner {
        position: relative;
        z-index: 10;
    }
    .acc {
        padding: 15px 0;
    }
    .content-inner {
        justify-content: center;
        gap: 30px;
    }
    .map-area {
        padding-bottom: 0;
    }
    .review-slider .slick-slide {
        margin-left: 10px;
        margin-right: 10px;
    }
    .map-left,
    .map-right {
        width: 100%;
    }
    .map-right {
        height: 500px;
    }
    .map-right {
        position: unset;
    }
    .map-left {
        padding-bottom: var(--sectionPadding);
    }

    :root {
        --xl: 36px;
        --lg: 28px;
        --lg2: 24px;
        --md: 18px;
        --md2: 16px;
    }
    .product-2-text span {
        padding: 15px;
    }
    .gmbh-text-inner {
        flex-direction: column;
    }
    .gmbh-text-card {
        width: 100%;
    }
    .form-card {
        flex-wrap: wrap;
    }
    .form-inner form {
        flex-direction: column;
    }
    .form-inner form button {
        margin-top: 22px;
        width: 160px;
    }

    .form-card,
    .form-card .single-formm {
        width: 100%;
        max-width: 100%;
    }
    .footer-top {
        flex-wrap: wrap;
        gap: 30px;
    }
    .footer-menu-inner div {
        width: calc(50% - 15px);
    }
    .footer-top-right,
    .footer-top-left {
        width: 100%;
    }

    .footer-bttm {
      flex-direction: column;
    }

    .container .container {
      width: 100% !important;
      max-width: 100% !important;
    }

    .search-form-home form,
    .search-form-home .wpforms-field-layout .wpforms-layout-row {
      flex-wrap: wrap !important;
    }

    .search-form-home .wpforms-field-container {
      flex: 1 1 100% !important;
    }

    .search-form-home .wpforms-layout-column-25 {
      width: 50% !important;
    }
}

@media (max-width: 600px) {
    .search-form-home .wpforms-layout-column-25 {
      width: 100% !important;
    }
}

@media (max-width: 575px) {
    .two-col .single-form {
        width: 100%;
    }
    .col,
    .two-col {
        gap: 0;
    }
    .review-inner {
        flex-direction: column;
    }
    .add-card {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }
    .loc-card {
        align-items: flex-start;
        justify-content: flex-start;
    }
    .loc-card a img {
        display: none;
    }
    .map-menu ul {
        margin: 0;
    }
    .map-menu {
        flex-direction: column;
        gap: 30px;
    }
    .footer-bttm {
        display: flex;
        flex-direction: column-reverse;
    }
    .footer-top-menu {
        flex-direction: column;
        gap: 30px;
    }
    .footer-menu-inner div {
        width: 100%;
    }
}
