/*
Theme Name: Theme
*/
:root {
  --primary-color: #212529;
  --secondary-color: #397ffc;
  --accent-color: #4d545a;
  --bg-color: #ffffff;
  --white: #ffffff;
  --black: #212529;
  --red: #b70420;
  --orange: #e48203;
  --green: #129c12;
  --grayhero: #f8f9fd;
  --gray: #808080;
  --gray-200: #e2e8f0;
  --gray-400: #a0aec0;
  --grayDark: #4d545a;
  --btnbg: #c10028;
  --btnbghover: #9c001f;
  --btngraybg: #4d545a;
  --btngraybghover: #3b4145;
  --btncolor: #fff;
  --btncolorhover: #fff;
  --xxs: 0.75rem;
  --xs: 0.9rem;
  --sm: 1rem;
  --md: 1.25rem;
  --lg: 1.38rem;
  --xl: 3.6rem;
  --xxl: 4rem;
  --radius: 0.25rem;
  --box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.2);
  --gray-50: #f7fafc;
  --gray-500: #718096;
  --font-regular: "Montserrat", sans-serif;
  --font-medium: "MontserratMedium", sans-serif;
  --font-semibold: "MontserratSemiBold", sans-serif;
  --font-bold: "MontserratBold", sans-serif;
}

@font-face {
  font-family: "Montserrat";
  font-stretch: normal;
  /* Note that font-stretch is a % of normal width */
  font-style: NORMAL;
  /* See note below */
  font-weight: normal;
  src: url("./assets/fonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "MontserratMedium";
  font-stretch: normal;
  /* Note that font-stretch is a % of normal width */
  font-style: NORMAL;
  /* See note below */
  font-weight: normal;
  src: url("./assets/fonts/Montserrat/Montserrat-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "MontserratSemiBold";
  font-stretch: normal;
  /* Note that font-stretch is a % of normal width */
  font-style: NORMAL;
  /* See note below */
  font-weight: normal;
  src: url("./assets/fonts/Montserrat/Montserrat-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "MontserratBold";
  font-stretch: normal;
  /* Note that font-stretch is a % of normal width */
  font-style: NORMAL;
  /* See note below */
  font-weight: normal;
  src: url("./assets/fonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  font-display: swap;
  src: url("./assets/fonts/FontAwesome/fa-regular-400.woff2");
}

:root,
:host {
  --fa-style-family-classic: "FontAwesome";
  --fa-font-solid: normal 900 1em/1 "FontAwesome";
}

@media (min-width: 1024px) {
  .main-menu .menu-item-has-children::after {
    /* Set the font for this icon style */
    font-family: "FontAwesome";
    /* Set the weight for this icon style */
    font-weight: 900;
    /* Make sure icons render pixel-perfect */
    -webkit-font-smoothing: antialiased;
    /* Set the Unicode value for the "fa-ghost" icon */
    content: "\f0d7";
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 17px;
  }
}

html,
body {
  width: 100%;
}

body {
  background: var(--bg-color);
  width: 100%;
  min-height: 100%;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

p,
a,
li,
span,
table,
td {
  font-family: var(--font-regular);
  line-height: 1.5;
  font-weight: 400;
  color: var(--black);
  font-size: var(--sm);
}

a {
  color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-semibold);
  line-height: 1.2;
  font-size: var(--md);
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 1.2rem;
}

.mobile {
  display: none;
}

@media screen and (min-width: 640px) {
  .mobile {
    display: none;
  }
}

img {
  max-width: 100%;
}

.container {
  max-width: 100%;
}

.wrapper {
  margin: 0 auto;
  padding: var(--sm);
}

@media screen and (min-width: 1024px) {
  .wrapper {
    max-width: 960px;
  }
}

@media screen and (min-width: 1280px) {
  .wrapper {
    max-width: 1200px;
  }
}

@media screen and (min-width: 1024px) {
  .wrapper.narrow {
    max-width: calc(960px * 0.83);
  }
}

@media screen and (min-width: 768px) {
  .cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--md);
  }
}

ul {
  padding-left: var(--lg);
}

ul li {
  list-style: disc;
  margin-bottom: var(--xs);
}

.btn {
  display: flex;
  background-color: var(--btnbg);
  color: var(--btncolor);
  padding: var(--xs);
  text-align: center;
  font-weight: 500;
  justify-content: center;
  width: fit-content;
}

.btn:hover {
  background-color: var(--btnbghover);
}

.btn.gray {
  background-color: var(--btngraybg);
  color: var(--white);
}

.btn.gray:hover {
  background: var(--btngraybghover);
}

.popup__signature {
  width: 100%;
}

.popup__signature tr {
  display: flex;
  justify-content: space-between;
}

section.catalog {
  background: var(--secondary-color);
  text-align: center;
  padding: var(--sm);
}

section.catalog .wrapper {
  max-width: calc(960px * 0.83);
}

section.catalog .wrapper h2 {
  color: var(--white);
  margin-bottom: var(--md);
  font-weight: 500;
  font-family: "Open Sans";
}

section.catalog .wrapper .btn {
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  section.catalog .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  section.catalog .wrapper h2 {
    margin-bottom: 0;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  section.catalog .wrapper {
    max-width: 1180px;
  }
}

.header {
  position: absolute;
  height: 1.5rem;
  width: 100%;
  z-index: 402;
  top: 0;
}

.header .wrapper {
  margin: 0 auto;
  display: flex;
  padding: 2rem 1rem 1rem;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--sm);
}

@media screen and (min-width: 768px) {
  .header .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.header img {
  height: 2rem;
  width: auto;
  max-height: 47px;
  width: auto;
  line-height: 1;
  vertical-align: middle;
}

@media screen and (min-width: 1024px) {
  .header img {
    max-height: 55px;
  }
}

@media screen and (min-width: 1280px) {
  .header img {
    max-height: 60px;
  }
}

#wpadminbar + header {
  top: 46px;
}

#wpadminbar + header + .hero {
  padding-top: 10rem;
}

.quick-contact__item {
  display: flex;
  align-items: center;
}

.quick-contact__icon {
  background: var(--gray-50);
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0px 1px 5px -1px #ccc;
  line-height: 1;
}

.quick-contact__text {
  margin: 0 0 0 var(--sm);
  color: var(--gray-500);
  font-size: var(--xs);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .quick-contact {
    display: flex;
    gap: var(--md);
  }
}

.hero {
  background-color: var(--grayhero);
  background-image: url("./assets/img/usa-map.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 11rem 0 var(--lg);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero .wrapper {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .hero .hero {
    padding: 5rem 0 var(--lg);
  }
  .hero .hero .wrapper {
    max-width: 90%;
  }
}

#gform_fields_1 {
  padding: 0.1rem;
  gap: var(--sm);
}

@media screen and (min-width: 1024px) {
  #gform_fields_1 {
    background-color: var(--white);
  }
}

.icon__pin {
  position: relative !important;
}

.icon__pin .ginput_container::after {
  display: block;
  content: "";
  background: url(./assets/img/pin.svg);
  width: var(--sm);
  height: var(--sm);
  position: absolute;
  right: var(--xs);
  top: 50%;
  transform: translateY(-50%);
}

.gform-theme--framework.ui-datepicker table td a,
.gform-theme--framework.ui-datepicker table td span {
  font-family: var(--font-regular);
  font-size: var(--xs) !important;
}

.gform-theme--framework.ui-datepicker th > span {
  font-family: var(--font-semibold);
}

.gform-theme--framework.ui-datepicker select.ui-datepicker-month,
.gform-theme--framework.ui-datepicker select.ui-datepicker-year {
  font-family: var(--font-medium) !important;
  color: var(--secondary-color);
  font-size: var(--xs) !important;
  border: none;
}

#gform_next_button_1_31 {
  width: 90%;
  margin: 0 auto;
  height: 60px;
  background: #0088ff;
  border-radius: 6px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  cursor: pointer;
  display: block;
}

#gform_next_button_1_31:hover {
  background-color: #0f7dde;
}

#field_1_18 .gfield_label.gform-field-label,
#field_1_20 .gfield_label.gform-field-label,
#field_1_35 .gfield_label.gform-field-label,
#field_1_36 .gfield_label.gform-field-label,
#field_1_37 .gfield_label.gform-field-label,
#field_1_41 .gfield_label.gform-field-label,
#field_1_34 .gfield_label.gform-field-label {
  font-family: var(--font-semibold);
  font-size: 1rem;
}

#field_1_22 #choice_1_22_1 {
  width: var(--lg);
  height: var(--lg) !important;
}

#field_1_22 #label_1_22_1 {
  font-family: var(--font-regular);
  align-self: center;
}

@media screen and (min-width: 1024px) {
  #field_1_22 {
    grid-row: 8 / span 1;
  }
}

.gform-icon--circle-error {
  display: none !important;
}

.gotrgf_form_wrapper,
.gotrgf_form_overview_container_1 {
  background-color: var(--white);
}

.gotrgf_line_part_left {
  font-family: var(--font-regular);
}

.gotrgf_line_part_right {
  font-family: var(--font-semibold);
}

#field_1_13 {
  grid-row: 7 / span 1;
  grid-column: 1 / 9;
}

@media screen and (min-width: 1024px) {
  #field_1_13 {
    grid-row: 4 / span 1;
  }
}

#field_1_14 {
  grid-column: 9 / 12;
  align-self: end;
}

@media screen and (min-width: 1024px) {
  #field_1_14 {
    grid-row: 5 / span 1;
  }
}

#field_1_15 {
  grid-row: 8 / span 1;
  grid-column: 1 / 9;
}

@media screen and (min-width: 1024px) {
  #field_1_15 {
    grid-row: 5 / span 1;
  }
}

#field_1_16 {
  grid-column: 9 / 12;
  align-self: end;
}

#field_1_18 {
  grid-row: 6 / span 1;
  grid-column: 1 / 9;
}

@media screen and (min-width: 1024px) {
  #field_1_18 {
    grid-row: 3 / span 1;
  }
}

#field_1_19 {
  grid-column: 9 / 12;
  align-self: end;
}

@media screen and (min-width: 1024px) {
  #field_1_19 {
    grid-row: 3 / span 1;
  }
}

#field_1_20 {
  grid-row: 7 / span 1;
  grid-column: 1 / 9;
}

@media screen and (min-width: 1024px) {
  #field_1_20 {
    grid-row: 4 / span 1;
  }
}

#field_1_21 {
  grid-row: 7;
  grid-column: 9 / 12;
  align-self: end;
}

@media screen and (min-width: 1024px) {
  #field_1_21 {
    grid-row: 4 / span 1;
  }
}

#gform_submit_button_2 {
  height: 40px !important;
  font-family: var(--font-regular);
}

#gform_2_validation_container {
  margin-top: var(--md);
}

.gform-theme--framework .gform_validation_errors h2.gform_submission_error,
.gform-theme--framework .gform_validation_errors .gform_validation_error_link,
.validation_message.gfield_validation_message.gfield_description {
  font-family: var(--font-regular);
  font-size: var(--xxs);
}

.gform-theme.gform-theme--framework {
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .gform-theme.gform-theme--framework {
    max-width: 90%;
  }
}

@media screen and (max-width: 1500px) {
  .gform-theme.gform-theme--framework {
    max-width: 1200px;
  }
}

.gform-theme.gform-theme--framework .gf_progressbar_wrapper {
  display: none;
}

.gform-theme.gform-theme--framework.gform-theme--foundation .gform_fields {
  row-gap: var(--sm);
}

.gform-theme.gform-theme--framework .ginput_address_city {
  inline-size: 100%;
}

.gform-theme.gform-theme--framework input,
.gform-theme.gform-theme--framework select,
.gform-theme.gform-theme--framework .gform-datepicker {
  width: 100%;
  position: relative;
  margin-right: auto;
  margin-left: 0px;
  margin-bottom: 0px;
  border: none;
  border-radius: 6px;
  border: none !important;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-shadow: 0px 4px 34px 4px rgba(12, 38, 63, 0.1);
  height: 60px !important;
  cursor: text;
  padding-top: var(--xs);
  padding-bottom: var(--xs);
  padding-left: var(--sm);
  font-size: var(--sm) !important;
  line-height: 100%;
}

.gform-theme.gform-theme--framework input::placeholder,
.gform-theme.gform-theme--framework select::placeholder,
.gform-theme.gform-theme--framework .gform-datepicker::placeholder {
  font-family: var(--font-semibold);
  color: var(--gray);
}

.gform-theme.gform-theme--framework input,
.gform-theme.gform-theme--framework select,
.gform-theme.gform-theme--framework .gform-datepicker {
  font-family: var(--font-semibold) !important;
}

.gform-theme.gform-theme--framework input.gform_button {
  background: #0088ff;
  height: 60px;
  font-family: var(--font-semibold) !important;
  padding: var(--sm);
}

.gform-theme.gform-theme--framework input.gform_button:hover {
  background-color: #0f7dde;
}

#field_1_14,
#field_1_16,
#field_1_13,
#field_1_15 {
  font-family: var(--font-regular) !important;
}

#field_1_14 *,
#field_1_16 *,
#field_1_13 *,
#field_1_15 * {
  font-family: var(--font-regular);
}

.slogan {
  text-align: center;
  padding: var(--xxl) 0 var(--xxl);
}

.slogan p,
.slogan span {
  font-family: var(--font-semibold);
}

.slogan__first {
  font-size: var(--md);
}

.slogan__first span {
  color: var(--secondary-color);
  font-size: var(--md);
}

.slogan__second {
  font-size: var(--sm);
}

.trusted {
  border-top: 1px solid var(--gray-200);
  padding: var(--xxl) 0 var(--xxl);
}

.trusted__title {
  font-family: var(--font-medium);
  color: var(--gray-500);
  text-align: center;
  margin-bottom: var(--lg);
}

@media screen and (min-width: 768px) {
  .trusted__title {
    margin-bottom: var(--xl);
  }
}

.trusted__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--lg);
}

@media screen and (min-width: 768px) {
  .trusted__row {
    flex-direction: row;
    gap: var(--xl);
  }
}

.trusted__sentence {
  color: var(--gray-400);
  font-family: var(--font-medium);
  margin: var(--xl) auto var(--xxl);
  text-align: center;
  font-style: italic;
}

.trusted img {
  height: auto;
  width: auto;
  max-height: var(--xl);
}

.how {
  padding: var(--xl) 0 var(--lg);
  background: var(--grayhero);
}

.how__line {
  position: absolute;
  left: 20px;
  height: 360px;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--gray);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .how__line {
    height: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .how__line {
    height: 390px;
  }
}

.how__title {
  text-align: center;
  font-size: var(--lg);
  margin-bottom: var(--xxl);
  font-family: var(--font-semibold);
}

.how__list {
  max-width: 80%;
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .how__list {
    max-width: 30rem;
  }
}

.how__item {
  display: flex;
  gap: var(--lg);
  margin-bottom: var(--lg);
}

.how__point {
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--white);
  font-size: var(--md);
  font-family: var(--font-bold);
  position: relative;
  z-index: 2;
}

.how__desc {
  flex-direction: column;
}

.how__head {
  font-family: var(--font-semibold);
  margin-bottom: var(--xs);
}

.how__text {
  font-size: var(--xxs);
}

.page .page {
  padding: 2rem 0;
}

@media screen and (min-width: 1024px) {
  .page .page {
    padding: 4rem 0;
  }
}

.save {
  padding: var(--xxl) 0 var(--xl);
}

.save__title {
  text-align: center;
  font-family: var(--font-semibold);
  font-size: var(--md);
  margin-bottom: var(--xxl);
}

.save__title span {
  color: var(--secondary-color);
  font-family: var(--font-semibold);
  font-size: var(--md);
}

.save__list {
  max-width: 18rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .save__list {
    flex-direction: row;
    gap: var(--xl);
    justify-content: center;
    max-width: 90%;
  }
}

.save__item {
  margin-bottom: var(--lg);
}

.save__header {
  display: flex;
  gap: var(--xxs);
  align-items: center;
  margin-bottom: var(--xxs);
}

@media screen and (min-width: 1024px) {
  .save__header {
    flex-direction: column;
  }
}

.save__icon {
  max-width: 48px;
  max-height: 48px;
}

.save__head {
  margin-bottom: 0;
  font-family: var(--font-medium);
}

.save__text {
  font-size: var(--xxs);
}

@media screen and (min-width: 1024px) {
  .save__text {
    text-align: center;
  }
}

.btn--contact {
  cursor: pointer;
}

.fullwidth {
  left: 0;
}

.section {
  margin: 0 auto;
  box-sizing: border-box;
}

.section__title,
.section .gform_title {
  font-size: var(--lg);
  font-family: var(--font-bold);
}

@media screen and (min-width: 1024px) {
  .section__title,
  .section .gform_title {
    font-size: 2rem;
  }
}

.popup-customer-support .popup__title {
  font-size: var(--md);
  font-family: var(--font-semibold);
  margin-bottom: var(--sm) !important;
  display: block;
}

.popup-customer-support #input_2_1_3,
.popup-customer-support #input_2_2,
.popup-customer-support #input_2_3 {
  border: 1px solid var(--gray-200);
  font-family: var(--font-regular) !important;
  font-size: var(--sm);
  color: var(--black);
  height: 40px;
}

.popup-customer-support #input_2_1_3::placeholder,
.popup-customer-support #input_2_2::placeholder,
.popup-customer-support #input_2_3::placeholder {
  font-family: var(--font-regular);
  font-size: var(--sm);
  color: var(--gray);
}

.popup-customer-support .gform_button {
  background: #fbd38d !important;
  color: var(--black) !important;
}

.title-page {
  text-align: center;
  margin-bottom: var(--md);
  margin-top: var(--xl);
  text-transform: uppercase;
  font-weight: 800;
}

strong {
  font-weight: 700;
}

strong * {
  font-weight: 700;
}

.featured-image img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .featured-image .featured-image {
    width: 30%;
  }
}

.news--home {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--sm);
}

@media screen and (min-width: 480px) {
  .news--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--md);
  }
}

.news--home .news__single {
  background-color: #fafbff;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.news--home .news__single .news__content {
  padding: var(--sm);
}

.news .news__single {
  background-color: #fafbff;
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  margin-bottom: var(--lg);
}

@media screen and (min-width: 1024px) {
  .news .news__single {
    gap: 0;
  }
  .news .news__single .news__content {
    padding: var(--sm);
  }
}

@media screen and (min-width: 480px) {
  .news {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--md);
  }
}

.title-post {
  font-weight: 600;
  color: var(--primary-color);
}

section > h2 {
  margin-top: var(--md);
}

.oferta .wrapper {
  text-align: center;
  z-index: 1;
  position: relative;
  background: var(--white);
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
  justify-content: space-between;
  display: grid;
  width: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oferta .wrapper h2 {
  margin: 0 auto 1rem;
  width: 100%;
  display: inline-block;
  grid-column: 1 / 3;
}

@media screen and (min-width: 1024px) {
  .oferta .wrapper {
    display: flex;
    justify-content: space-around;
    max-width: 960px;
    align-items: center;
    padding: var(--lg) var(--sm);
    box-shadow: var(--box-shadow);
    z-index: 2;
  }
  .oferta .wrapper h2 {
    margin: 0;
    width: auto;
    line-height: 1;
  }
}

@media screen and (min-width: 1280px) {
  .oferta .wrapper {
    max-width: 1180px;
  }
}

.oferta__element {
  margin-bottom: 0;
  margin-top: 1em;
}

.oferta__element img {
  max-height: 33px;
}

@media screen and (min-width: 1024px) {
  .oferta__element {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  .oferta__element a {
    display: flex;
    align-items: center;
    color: var(--primary-color);
  }
}

.oferta__element a h3 {
  color: var(--accent-color);
}

.main-content h2 {
  text-align: center;
  margin-top: var(--md);
}

.main-content p > a {
  color: var(--btnbg);
}

.main-content p > a:hover {
  color: var(--btnbghover);
}

section.gallery ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
}

section.gallery ul li {
  list-style: none;
  overflow: hidden !important;
}

@media screen and (min-width: 768px) {
  section.gallery ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1024px) {
  section.gallery ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

section.gallery ul img {
  display: inline-block;
  overflow: hidden !important;
  transition: 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

section.gallery ul img:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
}

.card-block {
  margin-bottom: 3px;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.125);
}

.card-header h4 {
  color: var(--white);
  font-family: var(--font-medium);
  font-size: var(--sm);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-body {
  display: flex;
  flex: 1 1 auto;
  padding: 1.25rem;
}

@media screen and (min-width: 640px) {
  .card-body .row {
    display: flex;
    gap: var(--md);
  }
}

.collapse {
  display: none;
}

.contact-list,
.data-list {
  padding: 0;
}

.contact-list li,
.data-list li {
  list-style: none;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hr {
  width: 100%;
  height: 1px;
  background: var(--secondary-color);
}

.contact .wrapper {
  padding: var(--lg) var(--sm);
}

.contact a {
  color: var(--secondary-color);
}

.contact h5 {
  color: var(--primary-color);
  font-family: "Open Sans";
  font-size: var(--sm);
  font-weight: 500;
}

.contact li {
  margin-bottom: 0;
}

#map {
  height: 70vh;
}

@media screen and (min-width: 1024px) {
  #map {
    height: 620px;
  }
}

.leaflet-popup .leaflet-popup-content h5 {
  color: var(--black);
  font-size: var(--sm);
}

.leaflet-popup .leaflet-popup-content p {
  font-size: var(--xs);
  margin-top: 0;
}

.leaflet-popup .leaflet-popup-content a {
  font-size: var(--xs);
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive .table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
}

.table-responsive .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-responsive .text-right {
  text-align: right !important;
}

.table-responsive .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-responsive .table th,
.table-responsive .table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table-responsive .btn-sm,
.table-responsive .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.table-responsive .btn-secondary {
  color: #fff;
  background-color: #4d545a;
  border-color: #4d545a;
}

.table-responsive .fa {
  color: #fff;
  line-height: 22px;
  margin-left: 5px;
}

.table-responsive .table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.page-id-164 .wp-video {
  max-width: 640px;
  max-height: 360px;
  margin: 1rem 0 2rem;
}

.footer {
  background-color: var(--grayhero);
  padding: var(--xxl) 0 0;
}

.footer .wrapper {
  width: 80%;
}

.footer__line {
  width: 100%;
  border-top: 1px solid #ccc;
  margin: 2rem auto 7rem;
}

.footer .quick-contact {
  margin: 8rem 0 8rem;
}

.copyright p {
  font-size: var(--xs);
  text-align: left;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .copyright {
    justify-content: right;
  }
}

.social-container {
  margin-top: 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .social-container {
    justify-content: left;
  }
}

.social-container a {
  font-size: var(--md);
}

#cmplz-manage-consent .cmplz-btn.cmplz-manage-consent.cmplz-show {
  bottom: 0 !important;
}
