/*=====================================*/
* {
  margin: 0;
  padding: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* :root {
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
} */

:root {
  --padding: 1.5rem;
  --red: #e20218;
  --black: #000;
  --white: #fff;
  --grey: #777;
  --light: #efefef;
  --font-family-sans: "Poppins", sans-serif;
}

body {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  /* padding: var(--padding);
  max-width: 70rem;
  margin: 0 auto; */
}

.bg-danger {
  background-color: var(--red) !important;
}

.text-danger {
  color: var(--red) !important;
}

.btn-danger {
  background-color: var(--red) !important;
  padding: 0.6rem 1.6rem;
}

.btn-outline-danger {
  border-color: var(--red);
  color: var(--red);
  padding: 0.6rem 1.6rem;
}

.btn-outline-danger .btn-outline-danger {
  text-decoration: none;
}

a {
  text-decoration: none;
}

.text a {
  word-break: break-all;
}

.bg-black {
  background-color: var(--black) !important;
}

.text-balck {
  color: var(--black) !important;
}

.btn-black {
  background-color: var(--black) !important;
}

li {
  list-style: none;
}

a {
  /* color: currentColor!important; */
  text-decoration: none;
}

.red-box a {
  color: #fff;
}

.red-box a:hover {
  color: #000;
}

li.dropdown-item a {
  color: #000;
}

#f5ed7601-0df2-49a8-85f0-50f5d21df1d4 .btn-danger:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}

.get-start a {
  color: var(--red) !important;
}

li.dropdown-item a:hover {
  color: #fff;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  line-height: 1.2;
  font-size: 0.9rem;
  white-space: normal;
}

.nav-item ul li.dropdown {
  padding: 0.5rem 1rem;
  line-height: 1.2;
  font-size: 0.9rem;
}
.nav-item ul li a {
  color: #000;
  white-space: normal;
}
ul li ul li.nav-item.dropdown.dropdown-toggle:hover {
  color: #fff;
}

.nav-item ul li:hover a {
  color: #fff;
}

.nav-item ul li.dropdown:hover {
  background-color: var(--red);
}
.dropdown-menu {
  padding: 0rem 0;
  min-width: 11rem;
}

.dropdown-item:hover a {
  color: #fff !important;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: inherit;
  color: var(--color-text-grey);
}

.bg-light {
  background-color: var(--color-light);
}

.color-grey {
  color: var(--color-text-grey);
}

/*
.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-bottom: 6rem;
}

.logo {
  padding: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.menu {
  display: flex;
}
.menu a {
  padding: 1rem;
  display: block;
}
.menu a[aria-current] {
  text-decoration: underline;
}
*/

.section {
  padding: 3rem 0;
  width: 1170px;
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}

.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

figure {
  margin: 0 0 0.5em;
  /* overflow: hidden; */
}

.text {
  line-height: 1.5em;
}

.text :first-child {
  margin-top: 0;
}

.text :last-child {
  margin-bottom: 0;
}

.text p,
.text ul,
.text ol {
  margin-bottom: 1.5rem;
}

/* .text ul,
.text ol {
  margin-left: 1rem;
} */
ol,
ul {
  padding: 0;
}

.text ul p,
.text ol p {
  margin-bottom: 0;
}

.text ul > li {
  list-style: disc;
  list-style-position: inside;
}

.text ol > li {
  list-style: decimal;
}

.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}

.sec section h5 {
  color: var(--red);
  text-transform: uppercase;
  font-size: 1rem;
}

.text h1,
.h1,
.intro,
h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}

.text h2,
.h2,
h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.text h3,
.h3,
h3 {
  font-weight: 600;
  font-size: 1.3;
}

.fs-18 {
  font-size: 1.125rem;
}

.text .codeblock {
  display: grid;
}

.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 0.5rem;
  display: inline-block;
  color: var(--color-black);
}

.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}

.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}

.text hr {
  margin: 6rem 0;
}

.text dt {
  font-weight: 600;
}

.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}

.text blockquote footer {
  font-size: 0.875rem;
  font-style: italic;
}

.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}

.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.img[data-contain] img {
  object-fit: contain;
}

.img-caption,
.video-caption {
  padding-top: 0.75rem;
  line-height: 1.5em;
}

/*
.footer {
  padding: 9rem 0 6rem;
  line-height: 1.5em;
}
.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}

.footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
.footer ul,
.footer p {
  color: var(--color-text-grey);
}
.footer p {
  max-width: 15rem;
}
.footer a:hover {
  color: var(--color-text);
} */

.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: 0.75rem;
}

.margin-m {
  margin-bottom: 1rem;
}

.margin-l {
  margin-bottom: 2rem;
}

.margin-xl {
  margin-bottom: 2rem;
}

.margin-xxl {
  margin-bottom: 3rem;
}

@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .grid > .column {
    grid-column: span var(--columns);
  }
}

.pagination {
  display: flex;
  padding-top: 6rem;
}

.pagination > span {
  color: var(--color-text-grey);
}

.pagination > * {
  padding: 0.5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.note-excerpt {
  line-height: 1.5em;
}

.note-excerpt header {
  margin-bottom: 1.5rem;
}

.note-excerpt figure {
  margin-bottom: 0.5rem;
}

.note-excerpt-title {
  font-weight: 600;
}

.note-excerpt-date {
  color: var(--color-text-grey);
}

/*======================*/

/* .container-xl, .container-lg, .container-md, .container-sm, .container {
  max-width: 1240px;
  margin: 0 auto;
} */

section#\37 c7c36c1-1d93-4b09-a1b6-d4534a87459f,
section#eb942f8c-3207-489e-b652-f73b3dd6eef5,
section#\36 c346be4-79f3-4df3-ad00-5c17db8acf24 {
  max-width: 1240px;
  margin: 0 auto;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}
/*
.dropdown>.dropdown-toggle:active {
  pointer-events: none;
} */

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: var(--red);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--red);
}

.dropdown-item.active a,
.dropdown-item:active a {
  color: #fff;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff !important;
  background-color: var(--red);
  transition: all 0.5s ease-in-out;
}

.top-bg a {
  color: #fff;
}

ul,
ol {
  margin: 0;
}

.top-list {
  display: block;
}

.top-list li {
  display: inline;
}

ul.top-list li a:hover {
  color: var(--red) !important;
  transition: all 0.5s ease-in-out;
}

.navbar-light .navbar-nav .nav-link {
  color: rgb(0 0 0);
  text-transform: capitalize;
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  transition: all 0.5s ease-in-out;
  color: var(--red);
}

i.bi.bi-search {
  font-size: 1.2rem;
}

.hero button.active {
  background-color: var(--red) !important;
  opacity: 1;
}

.swiper-pagination {
  bottom: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
  transition: all 0.3s;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #dc3545 !important;
  box-shadow: 0 0 0 2px #fff !important;
  transform: scale(1.2) !important;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-item img {
  object-fit: contain;
  max-height: 480px;
  background: #fff;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 991px) {
  .carousel-item img {
    max-height: 340px;
  }
}

@media only screen and (max-width: 640px) {
  .carousel-item img {
    max-height: 240px;
  }
}

.hero h1 {
  font-weight: bold;
  text-transform: capitalize;
}

.hero h5 {
  font-weight: normal;
}

.hero .carousel-caption {
  right: 1%;
  bottom: 2rem;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.happy-cust {
  display: flex;
}

.happy-cust p {
  margin-bottom: 0;
}

.radius-50 {
  border-radius: 50px;
}

.get-start .btn img {
  margin-left: 4px;
}

.red-box p {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.red-box .bi {
  font-size: 1.5rem;
  line-height: 0;
}

.or {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: solid 2px #fff;
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

footer h5 {
  font-weight: bold;
  text-transform: uppercase;
}

footer .address,
footer .address,
footer .address2 {
  display: block;
}

footer .address li,
footer .menu-list li,
footer .address li {
  display: block;
  padding: 4px 0;
  position: relative;
  margin-left: 0px;
}

footer .address2 li {
  display: block;
  padding: 4px 0;
  position: relative;
  margin-left: 25px;
}

footer li a {
  color: #fff;
  text-decoration: none;
}

footer li a:hover {
  color: var(--red);
  transition: all 0.5s ease;
}

footer .address li i {
  position: absolute;
  margin-left: -25px;
}

footer .address2 li i {
  position: absolute;
  margin-left: -25px;
}

ul.menu-list,
ul.social {
  margin: 0;
  padding: 0;
}

.social-icon {
  display: inline-flex;
  margin-bottom: 0;
  padding: 0;
}

.social a {
  margin: 0.2rem;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  color: #000;
  display: inline-flex;
}

.social a:hover {
  background-color: var(--red);
  transition: all 0.5s ease;
}

.social a:hover svg {
  fill: #fff;
  transition: all 0.5s ease;
}

.social-icon a {
  margin: 0.3rem;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  background-color: var(--red);
  align-items: center;
  display: flex;
  justify-content: center;
  color: #fff;
}

.social-icon a:hover {
  transition: all 0.5s ease;
  background-color: #777;
}

.border-top {
  border-top: 1px solid #dee2e661 !important;
}

.border-top p {
  opacity: 0.8;
  font-size: normal;
}

.border-top p:hover {
  opacity: 1;
}

.border-top p a {
  opacity: 0.8;
  font-size: normal;
}

.border-top p a:hover {
  opacity: 1;
}

.border-top a {
  color: #fff;
  text-decoration: none;
}

.red-box a:hover {
  color: #000;
  transition: all 0.5s ease;
}

.zoom {
  transition: transform 0.2s;
}

.zoom:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}

.get-start {
  border-radius: 24px;
}
.btn-danger:hover {
  background-color: #000 !important;
}

.get-start .btn-light {
  box-shadow: 0 3px 20px #00000040;
  border-radius: 8px;
  color: var(--red);
  font-size: 1.25rem;
}

.get-start .btn-light:hover {
  background-color: #000;
  transition: all 0.5s ease;
  border-color: #000;
  color: #fff !important;
}

.list-icon {
  display: block;
}

.list-icon li {
  display: block;
}

span.video.home-video iframe {
  border-radius: 20px;
}

.btn.btn-dark:hover {
  background-color: var(--red);
  border-color: var(--red);
  transition: all 0.5s ease;
}

.box .btn.btn-danger:hover {
  background-color: #000 !important;
  transition: all 0.5s ease;
}

.service-bg {
  background-image: url("../images/service-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.box {
  background-color: #fff;
  display: block;
  border-radius: 20px;
  padding: 2rem 0.5rem;
  position: relative;
  margin-top: 8rem;
}

.box:hover {
  background-color: var(--red);
  color: #fff;
  transition: all 0.5s ease;
  cursor: pointer;
}
.box:hover h3.text-danger {
  color: #fff !important;
  transition: all 0.5s ease;
}
#open-hours td:first-child {
  padding-right: 10px;
}
.box:hover .btn-danger {
  background-color: transparent;
  border-color: #fff;
}
.box img {
  border-radius: 50%;
  position: relative;
  margin-top: -8rem;
  padding-bottom: 1rem;
}

#f5ed7601-0df2-49a8-85f0-50f5d21df1d4 {
  background-image: url("../images/join.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.5rem 0;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.75);
  background-blend-mode: lighten;
  color: #000;
  max-width: 1290px;
}

#e9de3491-73ec-4e77-b979-dc1502544c15 {
  background-image: url("../images/video-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0.5rem 10rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/*
.title-bg {background-image:url("../images/career.png"); background-repeat: no-repeat; background-size: cover; margin-bottom: 2.4rem;} */
.title-bg a {
  text-decoration: underline;
  color: #e5e5e5;
}

/* .title-bg a:hover {color: var(--red);} */

#bbf9d499-f67e-4924-815b-a19cb9376267 .column,
section#\30 fc63fd8-dda9-4c24-b106-7ecd5d448da1 .column,
#be90f30b-5b73-4540-80b3-22c67a133d0f .column,
section#\38 61fa412-3a0b-4611-be10-066a326306e7 .column,
#e1d3fd11-3914-40a7-850b-9db0d23d462b .column,
section#\36 f9d7d78-3c23-457e-8b5a-8a5e9cea7db4 .column,
section#\32 f6fbe11-4703-479c-89d2-ee2826daa718 .column,
section#\32 131a4c7-0cc5-45bb-8986-f07656605cc1 .column,
section#\37 495c062-457b-4c38-a618-a2e9a7362598 .column,
section#f6901d6c-a861-4423-ac66-8554c67e959e .column,
section#\38 accbb21-30e5-4158-8c90-7c9aa41ad85d .column,
section#\35 0854272-7b6d-4b79-bc06-bd6d98563f09 .column,
#df7bc3d4-4a89-4923-b164-b026e2fc9bfc .column {
  box-shadow: 0 0 10px #00000010;
  border: solid 1px #d9d9d9;
  border-radius: 10px;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.zertifi-list {
  display: block;
}

.zertifi-list li {
  display: block;
  padding: 2px 0;
}

.zertifi-list li::before {
  content: "> ";
  position: relative;
  font-size: 1.5rem;
}

section#bbf9d499-f67e-4924-815b-a19cb9376267 {
  margin-bottom: 25px;
}

#de464249-741d-4223-9304-046ed851b8c4 .column {
  border: solid 1px #c4c4c4;
  height: 100%;
  padding: 1rem 1rem 0;
}
#de464249-741d-4223-9304-046ed851b8c4 .column:last-child {
  border: solid 1px #c4c4c4;
  height: 100%;
  padding: 1rem 1rem 1rem;
}

section#\35 afde653-9d0f-41dd-b378-6666edb93a2a .video iframe {
  width: 80%;
  margin: 0 auto;
  border-radius: 20px;
}

section#\36 1172b9d-7c4c-4507-a79d-a8dac6b997b8,
section#\36 d8e36ba-da35-4d99-be69-3eb4d108de29,
section#\35 760c24c-d648-4eec-b6f7-17419e092062 {
  align-items: center;
}

#search-form {
  display: none;
}

.claim-form {
  width: 85%;
  margin: 0 auto;
  padding: 2rem;
  box-shadow: 0 0 10px #00000030;
}

.feature-area.feature-1 .image {
  padding-inline: 20px;
}

.feature-area .image img {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.2));
}
.bg-danger a {
  color: #fff;
}
.form-check-input:checked,
.form-check-input:checked[type="radio"] {
  background-color: var(--red);
  border-color: var(--red);
}
.form-control:focus,
.form-check-input:checked,
.form-check-input:checked[type="radio"] {
  box-shadow: none;
}
.form-check-input {
  margin-top: 0.2em;
}
.text-link a {
  color: #000;
}
ul.menu-list a {
  text-transform: capitalize;
}
.form-check-input[type="radio"] {
  margin-top: 3px !important;
}
.form-check-input:checked[type="radio"] {
  margin-top: 3px;
}

.searchbutton {
  position: relative;
  line-height: 2.4;
  height: 42px;
  padding-left: 10px;
  /* z-index: 99; */
  padding-right: 8px;
  cursor: pointer;
}

.search {
  position: absolute;
  left: 60px;
  /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
  background-color: #f7f7f7;
  outline: none;
  border: none;
  padding: 0;
  width: 0;
  height: 42px;
  z-index: 10;
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  border-radius: 4px;
}

.search:focus + .searchbutton {
  transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  background-color: #f7f7f7;
}

.search:focus {
  width: 300px;
  /* Bar width+1px */
  /* padding: 0 16px 0 0; */
}

.expandright {
  left: auto;
  right: 30px;
  /* Button width-1px */
}

.expandright:focus {
  padding: 0 0px 0 16px;
}
.search_bar {
  position: relative;
}

/* Doesn't displays the 'X' when input 'Disabled' */

input[type="search"]:disabled::-webkit-search-cancel-button {
  -webkit-appearance: none;
  background: none;
  cursor: not-allowed;
}

/*
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
} */

.carousel-caption img {
  width: 100%;
}

/* .hero {
  background-image: url('https://werner.pixel-square.com/werner/assets/images/slide-bg.png');
  background-size: cover;
} */

.carousel-item {
  height: 480px;
}

textarea {
  resize: none;
}

.text-danger a {
  color: var(--red);
}

/*
.dropdown-submenu > a:after {
border-color: transparent transparent transparent #333;
border-style: solid;
border-width: 5px 0 5px 5px;
content: " ";
display: block;
float: right;
height: 0;
margin-right: -10px;
margin-top: 5px;
width: 0;
} */

/* section#dda385d0-cd17-4a37-b5c1-ce0f1d25529e .column {
  border: solid 1px #ccc;
  padding: 1rem ;
  border-radius: 4px;
  height: 100%;
} */
.filter-box {
  border: solid 1px #ccc;
  padding: 1rem;
  border-radius: 4px;
  height: 100%;
}
/*================ Media Query ==============*/

@media only screen and (min-width: 640px) {
  .carousel-item {
    height: 340px;
  }
}
@media only screen and (min-width: 991px) {
  .dropdown ul.dropdown-menu:hover ul.dropdown-menu {
    position: absolute;
    left: -100%;
    top: 0;
    margin-left: 0;
    width: 100%;
  }
  .search-hide-m {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .carousel-item {
    height: 480px;
  }
}

@media only screen and (max-width: 1200px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .carousel-caption {
    bottom: 1rem;
  }
}

@media only screen and (max-width: 1045px) {
  .hero .carousel-caption {
    bottom: 0rem;
  }

  .logo img {
    width: 180px;
  }

  .text h1,
  .h1,
  .intro,
  h1 {
    font-size: 2rem;
  }
  .claim-form {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-toggler {
    padding: 0.1rem 0.3rem;
    font-size: 1rem;
  }
  /* button.navbar-toggler {
    position: absolute;
    right: 17%;
} */
  .search-hide-d {
    display: none;
  }
  img.wir {
    width: 100%;
  }
  /* .expandright {
    left: auto;
    right: auto;
  } */

  .search:focus {
    width: 200px;
  }
  .hero .carousel-caption {
    right: 1%;
    bottom: 1rem;
  }

  .red-box p {
    font-size: 1rem;
  }

  .get-start .btn-light {
    font-size: 1rem;
  }

  .service-bg {
    background-size: cover;
  }

  .carousel-indicators {
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  footer h5 {
    margin-top: 1.2rem;
  }

  #ac061cdd-cbdf-40c3-8f32-4c3356c85b40.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 768px) {
  #ac061cdd-cbdf-40c3-8f32-4c3356c85b40 img {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .text h2,
  .h2,
  h2 {
    font-size: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .text h1,
  .h1,
  .intro,
  h1 {
    font-size: 1.6rem;
  }
  .carousel-item {
    height: 320px;
  }

  #e9de3491-73ec-4e77-b979-dc1502544c15,
  #f5ed7601-0df2-49a8-85f0-50f5d21df1d4 {
    padding: 0.5rem;
  }

  .top-bg a {
    font-size: 0.75rem;
  }

  a.logo img {
    width: 150px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h5 {
    font-size: 1rem;
  }

  .claim-form {
    width: 100%;
    padding: 1rem;
  }
}

@media only screen and (max-width: 575px) {
  .carousel-item {
    height: 530px;
  }
}

@media only screen and (max-width: 425px) {
  .carousel-item {
    height: 480px;
  }
}

.slider-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff 60%, #f3f3f3 100%);
  overflow: hidden;
}

.slider-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
}

.carousel-item {
  min-height: 320px;
  max-height: 480px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .slider-image-wrapper,
  .carousel-item {
    min-height: 220px;
    max-height: 320px;
  }
}
@media (max-width: 640px) {
  .slider-image-wrapper,
  .carousel-item {
    min-height: 160px;
    max-height: 220px;
  }
}

.job .intro h1 {
  color: var(--red);
}

.job h2 {
  color: var(--red);
  text-align: left;
  font-size: 2.4rem;
}

.job ul {
  list-style: none;
}

.job ul li::before {
  content: "\2022";
  color: var(--red);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  margin-right: 4px;
}

.site-content label,
.site-content input,
.site-content textarea {
  display: block;
}

.site-content .uniform__potty {
  position: absolute;
  left: -9999px;
}

.site-content .error {
  border: 1px solid red;
}
