:root {
  --main: #022147;
  --secondary: #e2c667;
  --lightBlue: #5f96bb;

  --bg4: rgba(235, 244, 255, 0.25);

  --grad1: linear-gradient(90deg, #6fbfd0, #3a378b);
  --grad2: linear-gradient(90deg, #3a378b, #6fbfd0);

  --transition-1: all 0.5s cubic-bezier(0.42, 0, 0.15, 0.96);
}

/***********************/
#search-icon2 {
  display: none;
}
#search-icon2.searchIcon {
  background: none;
  margin-inline: auto 10px;
}
#search-icon2.searchIcon path {
  stroke: #333;
}
/********************************/
.ar-text {
  display: none !important;
}
input::placeholder,
select::placeholder {
  color: #909090 !important;
}
a,
a:hover,
a:focus-visible,
a:focus {
  text-decoration: none;
}
a {
  color: var(--main);
  transition: all 0.2s;
}
a:hover {
  color: var(--secondary);
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}
.header.fixed {
  animation-timing-function: cubic-bezier(0.78, 0.09, 0.03, 1.01);
  animation-name: fixedAnim;
  animation-duration: 1s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 28%);
}
.header.fixed + .onFixed {
  height: 76px;
}
@keyframes fixedAnim {
  0% {
    top: -150px;
  }

  100% {
    top: 0px;
  }
}
.row.mb-0 {
  margin-bottom: 0 !important;
}
form .row > * {
  margin-bottom: 30px !important;
}
form .row > * > .row > * {
  margin-bottom: 0px !important;
}
#closeBtn {
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 500px;
  border: 1px solid #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s linear;
}
#closeBtn:hover {
  transform: rotate(90deg);
}
.noStyle {
  border: 0;
  text-shadow: none;
  background: none;
}
.openModal.noStyle {
  /* color: #5F96BB; */
  padding-inline: 0;
}
.btn {
  border: 0;
  border-radius: 0;
  padding: 12px 25px;
  font-size: 105%;
}
.btn-primary {
  background: var(--main);
  transition: 0.5s linear;
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
  background: var(--secondary);
}
.btn-secondary {
  background: #6fbfd0;
  transition: 0.5s linear;
}
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:hover {
  background: #5397a7;
}
.actions > * {
  margin-inline: 6px;
  padding-block: 8px;
}
.actions > * svg {
  width: 16px;
}
.path-frontpage header {
  position: absolute;
  top: 0;
  z-index: 100;
  inset-inline: 0;
}
.banner {
  position: relative;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}
.blogbanner {
  background-color: rgb(194, 194, 194);
  height: 250px;
  position: relative;
  z-index: 0;
}
.blogbanner::before {
  background-image: url(../imgs/blog.png);
  background-size: cover;
  background-position: 50%;
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  opacity: 0.5;
}
.blogbanner .breadcrumb {
  margin-bottom: 0;
}
#navbar-main {
  padding-block: 0;
  background: #f5f5f5;
}
.navbar-brand {
  padding-block: 0;
  width: 76px;
  height: 76px;
  padding: 4px;
  background: #083061;
}
.coverBanner {
  object-fit: cover;
  object-position: 50%;
  position: absolute;
  z-index: -1;
  width: 100%;
}
.banner-content {
  height: calc(100vh - 0px);
}
.banner-content h1 {
  color: var(--lightBlue);
  font-weight: 700;
}
.bannerImg img {
  max-height: 66vh;
  width: auto;
}

.logos-bg {
  background-color: #010c2b8f;
  padding-block: 12px;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  border-top: 1px solid #ffffff6b;
}

.logos-bg .ccc {
  max-width: 80%;
  margin-inline: auto;
}

.logos-bg img {
  max-width: 120px;
  max-height: 36px;
  object-fit: contain;
}
.bannerLogos .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.swiper-pagination > span {
  background-color: var(--main);
  opacity: 0.7;
}

.swiper-pagination {
  bottom: -40px;
}
.pb-swiper {
  padding-bottom: 70px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.language-switcher-language-url nav,
.language-switcher-language-url nav .content {
  display: flex;
  justify-content: center;
}
.language-switcher-language-url nav .nav-link {
  height: 100%;
  display: flex;
  padding: 0;
  align-items: center;
}
.language-switcher-language-url nav .nav-link span,
.language-switcher-language-url nav .nav-link .language-link {
  height: 100%;
  display: flex;
  color: #fff;
}
.language-switcher-language-url nav .nav-link .language-link {
  padding-inline: 10px;
  align-items: center;
  background: #b29e5a;
  transition: all 0.2s linear;
}
.language-switcher-language-url nav .nav-link .language-link:hover {
  background: #cab570;
}
.language-switcher-language-url nav .nav-link.is-active {
  display: none;
}
.search-ul {
  display: flex;
  margin: 0;
  padding: 0;
}
.search-ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.searchIcon {
  border: 0;
  display: flex;
  background: #083061;
  height: 100%;
  align-items: center;
  padding-inline: 14px;
  transition: all 0.2s linear;
}
.searchIcon svg {
  width: 30px;
  height: 30px;
}
.searchIcon svg path {
  stroke: #fff;
}
.searchIcon:hover {
  background: #cab570;
}
.form,
.why-choose-us,
.holocost {
  background-position: 50%;
  background-size: cover;
  color: #fff;
  padding-block: 60px;
}

.why-choose-us,
.holocost {
  background-image: url(../imgs/bg2.png);
  background-position: 50%;
  background-size: cover;
  color: #fff;
  padding-block: 90px;
  position: relative;
  z-index: 1;

  & .blocks {
    border: 1px solid #ffffff57;
    margin-top: 40px;
  }
  & .blocks > * {
    display: flex;
    flex-direction: column;
    border-inline-end: 1px solid #ffffff57;

    & .title {
      color: var(--lightBlue);
      font-weight: 700;
      font-size: 125%;
      margin-block: 12px;
    }

    & img {
      padding: 10px;
      width: 120px;
      height: 120px;
      border-radius: 120px;
      border: 1px solid #fff;
      display: flex;
      margin-inline: auto;
    }
  }
  & .blocks > *:last-child {
    border: 0;
  }
}
.why-choose-us:before,
.holocost:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--main);
  opacity: 0.4;
  /* background-attachment: fixed; */
}
.why-choose-us:after,
.holocost:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000;
  opacity: 0.5;
}
.holocost {
  background-image: url(../imgs/holo.jpg);
  background-attachment: fixed;
  padding-block: 100px;
}
.holocost h3 {
  font-weight: 700;
  font-size: 290%;
  padding-inline-start: 10px;
  border-inline-start: 6px solid var(--secondary);
  margin-block-end: 30px;
}
.holocost .views-element-container a {
  background: #0000004a;
  display: flex;
  color: #d3d3d3;
  padding: 20px 15px;
  border-inline-start: 4px solid #cab570;
  margin-block: 10px;
  /* font-size: 110%; */
  text-transform: uppercase;
  position: relative;
}
.holocost .views-element-container a:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: var(--secondary);
  transition: var(--transition-1);
}
.holocost .views-element-container a:hover:before {
  width: 100%;
}
.section-title {
  font-weight: 300;
  font-size: 230%;
  text-transform: uppercase;
}
.form {
  padding-top: 140px;
  background-color: #17282df2;
  position: relative;
  z-index: 0;
}
.form:before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  background-image: url(../imgs/bg3.png);
}
.form .marquee {
  position: absolute;
  top: 0;
  inset-inline: 0;
  opacity: 0.2;
}

.form-control,
.form-select {
  background-color: #ffffffc2;
  border: 1px solid #e6e6e6;
  padding: 14px;
  border-radius: 0;
}
.form-select option[value=""] {
}
.form-control:focus,
.form-select:focus {
  background: #fff;
  border: 1px solid var(--secondary);
  box-shadow: 0 0 0 2px var(--secondary);
}

.form h3 {
  color: var(--lightBlue);
  font-weight: 700;
  /* text-align: center; */
}
.form label {
  margin-bottom: 15px;
}
.js-form-type-webform-terms-of-service {
  margin-top: 35px;
  padding-inline-start: 38px;
  display: flex;
}
.js-form-type-webform-terms-of-service .form-check-label {
  padding-inline-start: 15px;
}
.js-form-type-webform-terms-of-service input {
  border-radius: 100px !important;
  width: 28px;
  height: 28px;
}
.js-form-type-webform-terms-of-service a {
  color: var(--lightBlue);
  font-weight: bold;
}
.aboutus {
  background-color: #eef1f5;
  padding-block: 50px;
}
.aboutus .section-title {
  margin-top: 20px;
  font-size: 240%;
  font-weight: 600;
}
.aboutus .section-desc {
  margin-block: 30px 40px;
}
.aboutus .about-block {
  background: #fff;
}
.products .marquee,
.aboutus .marquee {
  opacity: 0.3;
}
.text-bg-1 {
  font-size: 120%;
}
.services {
  padding-block: 70px;
}
.section-title {
  color: var(--main);
  margin-bottom: 10px;
}
.dark .section-title {
  color: #fff;
}
.dark .section-desc {
  color: #b1b1b1;
}
.holocost .section-desc {
  padding-inline-start: 20px;
}
.service {
  background: url(../imgs/bg4.png);
  color: #fff;
  /* margin-block: 12px; */
  height: 100%;
  padding-block: 0px 0px;
  min-height: 236px;
  display: flex;
  flex-direction: column;
}

.service .title {
  font-size: 130%;
  font-weight: 700;
  color: var(--lightBlue);
  padding: 18px;
}
.service p {
  background-color: #010c2baf;
  padding: 18px;
  margin-bottom: 0;
  margin-top: auto;
}

footer {
  background-color: #0b1522;
}
.team {
  background: radial-gradient(#0e4e9c, var(--main));
  padding: 80px;
  color: #fff;
}
.team-member {
  /* border: 1px solid #ffffff38; */
  padding: 12px;
  background: #00000021;
}
.team-image {
  position: relative;
  height: 270px;
  overflow: hidden;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: 50% !important;
}
.team-name {
  font-weight: 400;
  font-size: 110%;
  margin-block: 10px 2px;
}
.team-name,
.position {
  text-align: center;
}
.position {
  font-weight: 300;
  font-size: 80%;
}
.center-navs {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  margin-top: 60px;
}

.products {
  background-color: #f8fbff;
  padding-block: 100px;
}
.center-navs > * {
  width: 40px;
  height: 40px;
  position: relative;
  /* border: 1px solid #ffffff; */
  margin-inline: 20px;
  background: var(--secondary);
  color: #fff;
}
.center-navs > *:after {
  font-size: 24px;
  color: #ffff;
}

.cusModal {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  inset: 0;
  background: rgb(0 0 0 / 37%);
  z-index: -10;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
.cusModal.open {
  z-index: 9999999;
  opacity: 1;
  transform: scale(1);
}
.cusModal:not(.open) {
  transition-delay: 0.8s;
}
.cusModal > div {
  height: 90vh;
  background: rgb(255 255 255);
  min-width: 80%;
  max-width: 90%;
  padding: 5px 25px 25px 25px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  overflow: auto;
}
.cusModal.open > div {
  opacity: 1;
  transition-delay: 0.5s;
  position: relative;
}
#cusModalContent {
  height: calc(100% - 46px);
}
#cusModalContent > * {
  height: calc(100%);
}
.cusModal > div iframe {
  width: 100%;
  height: 100% !important;
}
.products .section-title {
  color: #5f96bb;
  margin-top: 16px;
  margin-bottom: 40px;
}
.products {
}
.p-row-1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  align-content: flex-start;
}
.p-row-1 .product-image {
  width: 50px;
  height: 50px;
  border-radius: 200px;
  padding: 12px;
  box-shadow: 0px 4px 10px #00000042;
  margin-inline-end: 14px;
}
.p-row-1 .label {
  font-weight: 800;
  font-size: 110%;
}
.p-row-1 > *:last-child {
  width: calc(100% - 70px);
}
.p-row-1 .product-image img {
  width: 100%;
  height: 100%;
}
.product .desc p {
  margin-bottom: 0;
}
.product {
  margin-bottom: 40px;
}

#cusModalContent .p-row-1 {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.paragraph--type--products-details {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.paragraph--type--products-details p {
  background: #f7fafc;
  margin-bottom: 0;
  padding: 14px;
  font-size: 95%;
}
.close-row {
  position: sticky;
  top: 26px;
  inset-inline: auto 10px;
  z-index: 1;
}

footer {
  color: #9f9f9f !important;
  padding-block: 10px 10px;
}
footer .footer-logo {
  width: 120px;
  display: flex;
  margin-inline: auto;
}
footer a {
  color: #9f9f9f !important;
}
.social-link {
  background-color: #0a0e17db;
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 8px;
  transition: all 0.3s;
  border-top: 1px solid #ffffff08;
}
.social-link:hover {
  background: #ffffffd6;
}
.social-link svg {
  color: #514c40;
}
.noStyle.show-locations {
  /* border: 1px solid #ffffff6b; */
  /* border-radius: 10px; */
  /* padding: 8px 14px; */
  /* color: #fff !important; */
  /* display: flex; */
  /* flex-direction: column; */
}
.about-blocks {
  display: flex;
  align-items: center;
}
.about-blocks img {
  width: 100%;
  height: auto;
}
.about-blocks p {
  font-size: 130%;
}
.about-blocks.row:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 992px) {
  .view-products > .row > :nth-child(odd) {
    padding-inline-end: 80px;
  }
  .view-products > .row > :nth-child(even) {
    padding-inline-start: 80px;
  }
  .about-blocks.row:nth-child(odd) > *:last-child {
    padding-inline-start: 80px;
  }
  .about-blocks.row:nth-child(even) > *:last-child {
    padding-inline-end: 80px;
  }
}

.t-row-1 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.t-row-1 > div:first-child img {
  width: 64px;
  height: 64px;
  border-radius: 200px;
  margin-inline-end: 10px;
}
.t-row-1 > div {
  display: flex;
  align-items: center;
}
.stars svg {
  color: transparent;
}
.stars svg path {
  fill: #e8ad15;
}
.testimonials .row {
  /* align-items: center */
}
.heading h3 {
  font-size: 200%;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 350px;
  color: #5f96bb;
  margin-bottom: 30px;
}
.testimonials .desc {
  max-width: 75%;
  font-size: 110%;
}
.t-row-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dd1 {
  display: flex;
  align-items: center;
}
.dd1 > *:nth-child(2) > *:first-child {
  color: #5f96bb;
  font-size: 120%;
  font-weight: 600;
}
.t-row-3 img {
  width: 90px;
  height: 90px;
  border-radius: 800px;
  border: 1px solid #33333333;
  margin-inline-end: 12px;
}
.t-row-3 svg {
  color: transparent;
  width: 60px;
  height: 60px;
}
.t-row-3 svg path {
  fill: #666;
}
.t-row-4 a.btn-primary {
  min-width: 50%;
  margin-inline-start: 100px;
}
.testimonials {
  padding-block: 70px 50px;
}
.testimonialView .swiper-slide {
  border: 1px solid #e1e1e1;
  border-radius: 20px 0 20px 0;
  padding: 30px;
}

.testimonialView .center-navs {
  margin-top: 30px;
}
.menu--main a {
  font-weight: 400;
}
.menu--main a.active,
.menu--main a:hover {
  color: var(--secondary) !important;
}
.team {
  padding-inline: 15px;
}

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

.offcanvas-body .social-link svg {
  color: #fff;
}
.per-lc {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  box-shadow: 0 0 10px #0000002e;
  margin-block: 14px;
}
.per-lc .lc-title {
  font-weight: 600;
  font-size: 140%;
  color: #5f96bb;
}
.lc-link {
  display: flex;
  justify-content: end;
}
.lc-link a {
  min-width: 200px;
  padding-block: 8px;
}
.lc-phones {
  display: flex;
  flex-direction: column;
}
.lc-phones .social-link {
  color: #fff;
  width: 30px;
  height: 30px;
  margin-inline-end: 5px;
}
.lc-phones a {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-block: 5px;
}
.lc-phones .social-link svg {
  width: 16px;
  color: #fff;
}

/*node--type-blog-article*/
.node--type-blog-article {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cusModal > div {
    max-width: 100%;
    min-width: 98%;
  }
}
@media screen and (min-width: 1200px) {
  .offcanvas-header img {
    display: none;
  }
}
@media screen and (max-width: 1199px) {

  #search-icon2 {
    display: flex;
  }
  #cusModalContent .p-row-1 {
    padding-top: 30px;
  }
  .why-choose-us {
    & .blocks > * {
      & .title {
        text-align: center;
      }
    }
    & .blocks p {
      text-align: center;
    }
  }
  .offcanvas-header {
    padding-inline-start: 22px;
    padding-block: 8px 0;
  }
  .navbar-nav li {
    border-bottom: 1px solid #e1e1e10d;
  }
  .offcanvas-body .navbar-nav li {
    padding-block: 5px;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding-inline: 25px;
    padding-top: 10px;
  }
  .offcanvas-body .d-lg-none {
    margin-block: auto 30px;
    display: flex;
    justify-content: center;
  }
  .offcanvas-body .d-lg-block {
    display: flex;
  }
  .offcanvas-body .social-link {
    width: 44px;
    height: 44px;
  }
  .offcanvas-header .btn-close {
    filter: contrast(0);
    opacity: 1;
  }
  .region-menu-tools {
    order: -1;
    margin-block: 2px 10px;
  }
}
@media screen and (max-width: 767px) {
  body:not(.path-frontpage) #main-wrapper {
    padding-block: 30px !important;
  }
  .bef-exposed-form .flex-wrap > *,
  .bef-exposed-form .flex-wrap > * button {
    width: 100%;
  }
  .page-title {
    padding-block: 24px 14px !important;
  }
  .aboutus .section-title {
    margin-top: 6px;
    font-size: 180%;
    font-weight: 500;
  }
  .why-choose-us,
  .holocost {
    padding-block: 60px;
  }
  .paragraph--type--products-details {
    flex-direction: column;
  }
  .text-bg-1 p {
    text-align: center;
  }
  .footer-logo {
    display: flex;
    margin-inline: auto;
  }
  form .form-actions {
    align-self: unset !important;
    text-align: center;
  }
  .custom-search-panel .views-exposed-form > * .form-actions {
    padding-block: 0px !Important;
    top: 4px !Important;
}
  .custom-search-panel .views-exposed-form > * .form-actions button {
    padding-block: 5px !important;
    height: 40px;
    width: 40px;
  }
  form .form-actions button {
    width: 100%;
  }
  footer .views-element-container .row > *:nth-child(3) {
    margin-top: 20px;
  }
  footer .views-element-container .row > *:nth-child(2) {
    order: 4;
    text-align: center;
    margin-bottom: 18px;
    margin-top: 18px;
  }
  footer .views-element-container .row > *:nth-child(1) {
    order: 5;
    text-align: center;
  }
  .section-title {
    font-size: 160%;
  }
  .holocost h3 {
    font-size: 160%;
  }
}
.view-blog .field--name-title {
  font-weight: 600;
  font-size: 140%;
}
.view-blog p {
  color: #777;
}
.bog-teaser-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: 50%;
  /* border-radius: 18px; */
}
.tag {
  display: flex;
  gap: 10px;
  margin-block: 10px;
  color: #999;
}
.tag svg {
  opacity: 0.75;
  width: 20px;
}

/* .readmore{
  display: inline-flex;
  color: #111;
  position: relative;
  margin-bottom: 10px;
  padding-block: 8px;
}
.readmore::before{
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #111;
  width: 60%;
  inset-inline: 20%;
  transition: all 0.2s
}
.readmore:hover::before{
  width: 100%;
  inset-inline: 0%;
} */

body:not(.path-frontpage) #main-wrapper {
  padding-block: 50px 50px;
}
body.node--type-about-us #main-wrapper {
  padding-block: 0px 0px !important;
}
.blogbanner h1 {
  color: #000;
}
.blogbanner a {
  color: #000;
}

.banner-image img {
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}
.gallery-row > * {
  margin-bottom: 24px;
}
.node--type-blog-article .node__meta {
  display: none !important;
}
.node--type-blog-article h1 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
}

/* mainSlider */

.mainSlider .swiper-wrapper {
  position: relative;
}
/* .mainSlider .swiper-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #3c3c3c86;
} */
.mainSlider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 50%;
}

.site-name-slogan > div:first-child {
  font-size: 155%;
  font-weight: 600;
  text-transform: uppercase;
}
.site-name-slogan > div:last-child {
  font-weight: 400;
  font-size: 80%;
  color: #888;
}
.navbar-collapse .nav-link:hover,
.navbar-collapse .nav-link.active {
  /* background-color: #dbdbdb; */
  color: var(--secondary) !important;
}

.banner .social-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline: 0 auto;
  width: 76px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #01020cbf;
}

.contentSlider {
  position: absolute;
  top: 76px;
  bottom: 0;
  inset-inline: auto 0;
  min-width: 350px;
  max-width: 30%;
}

.content-slider-item {
  display: flex;
  flex-direction: column;
  background: rgb(7 7 12);
  height: 100%;
}
.content-slider-item .info {
  padding: 22px 30px;
  color: #fff;
  flex: 2;
}
.content-slider-item .info > *:nth-child(1) {
  color: var(--secondary);
  position: relative;
  padding-inline-start: 24px;
  font-size: 86%;
}
.content-slider-item .info > *:nth-child(1):before {
  content: "";
  position: absolute;
  top: 8px;
  inset-inline: 0 auto;
  width: 14px;
  height: 3px;
  border-radius: 50px;
  background: var(--secondary);
}
.content-slider-item .info > *:nth-child(2) {
  font-size: 180%;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-block: 10px 5px;
}
.content-slider-item .info > *:nth-child(3) {
  color: #999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  column-gap: 2px;
}
.swiper-pagination-bullet {
  background-color: transparent;
  width: 9px;
  height: 9px;
  border: 1px solid #ffffff57;
  border-radius: 0;
  transform: rotate(45deg);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.office {
  border: 1px solid #f2f2f2;
  padding: 9px 15px;
  height: 100%;
  background: #f7f7f7;
  z-index: 1;
}
.multiple-items {
  display: flex;
  align-items: flex-start;
  margin-block: 12px;
}

.multiple-items > svg {
  display: flex;
  width: 28px;
  height: 28px;
  padding: 5px;
  /* background: #f1f1f1; */
  margin-inline-end: 12px;
  opacity: 0.8;
}

.multiple-items > div {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.multiple-items p {
  margin-bottom: 0;
}
.country-city {
  font-weight: 600;
  font-size: 130%;
}

.gray-bg {
  background-color: #f6f6f6;
}
.custom-sep {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  & > *:nth-child(2) {
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    transform: rotate(45deg);
  }
  & > *:first-child,
  & > *:last-child {
    height: 2px;
    width: 110px;
    background-color: var(--secondary);
  }
}
.custom-sep2 {
  display: flex;
  /* justify-content: center; */
  gap: 22px;
  align-items: center;
  & > *:nth-child(2) {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    transform: rotate(45deg);
  }
  & > *:first-child,
  & > *:last-child {
    height: 2px;
    width: 80px;
    background-color: var(--secondary);
  }
  & > *:first-child {
    width: 35px;
  }
}
.custom-sep3 {
  display: flex;
  /* justify-content: center; */
  gap: 22px;
  align-items: center;
  & > *:nth-child(2) {
    width: 10px;
    height: 10px;
    background-color: var(--secondary);
    transform: rotate(45deg);
  }
  & > *:first-child,
  & > *:last-child {
    height: 2px;
    width: 60px;
    background-color: var(--secondary);
  }
}
form label {
  text-transform: uppercase;
}
.has-corners,
.has-corners2 {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.has-corners::before,
.has-corners::after,
.has-corners2::before,
.has-corners2::after {
  content: "";
  position: absolute;
}
.has-corners::before {
  z-index: 1;
  top: 0;
  inset-inline-end: 0;
  border-top: 20px solid var(--main);
  border-inline-start: 20px solid transparent;
}
.has-corners::after {
  z-index: 0;
  top: 0;
  inset-inline-end: 0;
  border-top: 30px solid var(--secondary);
  border-inline-start: 30px solid transparent;
}

.has-corners2::before {
  z-index: 1;
  bottom: 0;
  inset-inline-start: 0;
  border-bottom: 20px solid var(--main);
  border-inline-end: 20px solid transparent;
}
.has-corners2::after {
  z-index: 0;
  bottom: 0;
  inset-inline-start: 0;
  border-bottom: 30px solid var(--secondary);
  border-inline-end: 30px solid transparent;
}

.text-black {
  color: #111;
}
.text-white {
  color: #fff;
}
.text-primary {
  color: var(--main);
}
.text-secondary {
  color: var(--secondary);
}

.gallery-row a {
  position: relative;
  overflow: hidden;
  display: flex;
}
.gallery-row a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(25deg, var(--main) 50%, transparent);
  opacity: 0.4;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 1.06);
}
.gallery-row a svg {
  position: absolute;
  color: #fff;
  top: 10px;
  inset-inline: 10px auto;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.24, 1.06);
}
.gallery-row a:hover svg {
  top: 15px;
  inset-inline: 15px auto;
  transform: scale(1.4);
  color: var(--secondary);
}
.gallery-row a:hover:before {
  opacity: 0.8;
}

.page-title {
  background-color: var(--main);
  color: var(--secondary);
  padding-block: 30px;
}
.page-title h1 {
  font-weight: 200;
}

.section-title-style-1 > * {
  font-size: 180%;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.categories {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}
.categories > * {
  background-color: rgb(241 241 241 / 75%);
  border-radius: 100px;
  padding: 3px 20px;
  font-size: 90%;
  color: #666;
}
.files {
  display: flex;
  flex-direction: column;
  max-width: 480px;
}
.files > * {
  background: #ededed;
  margin-block: 0px;
}
.files > *:nth-child(odd) {
  background: #f3f3f3;
}
.files a {
  display: flex;
  color: var(--main);
  padding: 14px 20px;
  min-width: 400px;
  align-items: center;
}
.files a > span:first-child {
  background: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  padding: 5px;
  display: flex;
  justify-content: center;
  margin-inline-end: 12px;
  align-items: center;
}
.files a svg {
  color: #fff;
}

.muted-text {
  color: #999;
}
.video-embed-field-responsive-video {
  margin-bottom: 40px;
}
.image-text:nth-child(odd) {
  flex-direction: row-reverse;
}

.image-text .theText {
  padding-block: 15px;
  padding-inline-end: 15px;
}
.image-text .theText .title {
  font-size: 135%;
  font-weight: 600;
  margin-bottom: 12px;
}
.image-text:nth-child(odd) .theText {
  padding-inline-start: 15px;
}

/* pagination */
.pagination {
  gap: 10px;
  justify-content: center;
}
.page-item .page-link {
  border-radius: 5px;
  border-color: #bbbbbb;
  color: #272727;
  min-width: 40px;
  text-align: center;
}
.active > .page-link {
  background: var(--main);
  border-color: var(--main);
  color: var(--secondary);
}

/*view-title*/
.views-item .bog-teaser-img a {
  position: relative;
  display: flex;
  overflow: hidden;
}
.views-item .bog-teaser-img a img {
  transition: all 0.6s cubic-bezier(0.79, 0.16, 0.27, 0.95);
}
.views-item:hover .bog-teaser-img a img {
  transform: scale(1.2);
}
.view-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--main);
}
.readmore {
  position: relative;
  z-index: 1;
  display: inline-flex;
  background-color: var(--main);
  color: #ffffff;
  padding: 8px 20px;
}
.readmore.readmore2 {
  background-color: var(--secondary);
}
.readmore:hover {
  color: #fff;
}
.readmore svg {
  transition: all 0.4s cubic-bezier(0.42, 0, 0.15, 0.96);
}
.readmore:hover svg {
  margin-inline-start: 15px;
}
.readmore:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: var(--secondary);
  transition: var(--transition-1);
}
.readmore.readmore2:before {
  background: var(--main);
}
.readmore:hover:before {
  width: 100%;
}

.views-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.rest-content {
  margin-bottom: 24px;
  /* border: 1px solid #cacaca; */
  background: #f7f7f7;
  padding: 15px;
  border-bottom: 4px solid var(--secondary);
  flex: 2;
  display: flex;
  flex-direction: column;
}
.rest-content > *:last-child {
  margin-block-end: 0;
  margin-top: auto;
}
.views-item .tag {
  margin-block: 0 15px;
  font-size: 80%;
}
.tagsItems {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
}
.tagsItems > * {
  position: relative;
}
.tagsItems > *:not(:last-child):before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: #9c9c9c;
  inset-inline-start: auto;
  inset-inline-end: -10px;
  top: 7px;
}
.views-item .tag svg {
  width: 16px;
  height: 16px;
}
/* views-exposed-form */
.views-exposed-form {
  margin-bottom: 12px;
}
.views-exposed-form .form-select {
  min-width: 200px;
}
.views-exposed-form .button.form-submit {
  /* height: 38px; */
}

.partners-carousel .swiper-slide a {
  display: flex;
}
/*******************/
.counters .row > * {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
}
.counters .row > * > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% / 4) - (24px));
  margin-block: 20px;
  z-index: 1;
}
.counters .row > * > * .has-corners:before,
.counters .row > * > * .has-corners2:before {
  display: none;
}
.counters .row > * > * .has-corners,
.counters .row > * > * .has-corners2 {
  opacity: 0;
  transition: All 0.35s;
}
.counters .row > * > *:hover .has-corners,
.counters .row > * > *:hover .has-corners2 {
  opacity: 1;
}
.counters .row > * > * .image {
  width: 120px;
  height: 120px;
  padding: 20px;
  /* background: var(--secondary); */
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counters .row > * > * .image img {
  opacity: 0.8;
  max-width: 80%;
}
.counter-title {
  margin-block: 10px 0px;
  text-transform: uppercase;
  font-weight: 600;
  color: #3c3c3c;
}
.counter-number {
  text-align: Center;
  font-family: fantasy;
  font-size: 60px;
  color: #083061;
  letter-spacing: 2px;
}
/*******************/
.view-footer {
  color: #999;
  font-size: 80%;
}

/*************/
.add-sub-projects {
  margin-top: 40px;
}

.add-sub-projects a {
  font-size: 140%;
  padding: 8px 30px;
  background: #083061;
  display: inline-flex;
  color: var(--secondary);
}
.add-sub-projects a:hover {
  color: #fff;
  background: #333;
}

/************/
.view-subprojects .view-content div a {
  background: #f4f4f4;
  padding-inline-end: 25px;
  border-inline-start: 4px solid var(--main);
  margin-block: 2px;
  position: relative;
  z-index: 1;
  transition: var(--transition-1);
}
.view-subprojects .view-content div a:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: var(--secondary);
  transition: var(--transition-1);
}
.view-subprojects .view-content div a:hover:before {
  width: 100%;
}
.view-subprojects .view-content div a:hover {
  color: #fff !important;
}
.view-subprojects .view-content div:nth-child(odd) a {
  background: #e6e6e6;
  border-inline-start: 4px solid var(--secondary);
}
.view-subprojects div a {
  display: inline-flex;
  align-items: center;
}
.view-subprojects a > span:first-child {
  margin-inline-end: 10px;
}
.view-subprojects a img {
  width: 60px;
  height: 60px;
}

.offcanvas-header img {
  width: 60px;
  height: 60px;
}

.view-projects .row > * {
  margin-bottom: 24px;
}
.views-item.style2 {
  display: flex;
  flex-direction: row;
}
.views-item.style2 > *:first-child {
  width: 40%;
  height: 100%;
}
.views-item.style2 > *:first-child a {
  height: 100%;
}
.views-item.style2 > *:first-child a img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.views-item.style2 > *:last-child {
  width: 60%;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .offcanvas-body {
    justify-content: flex-end;
  }

  .offcanvas-body .navbar-nav > li > a {
    display: flex;
    height: 76px;
    align-items: center;
    padding-inline: 10px !important;
    text-transform: uppercase;
    font-size: 90%;
  }
  .offcanvas-body .navbar-nav > li > a.is-active {
    position: relative;
  }
  .offcanvas-body .navbar-nav > li > a.is-active:before {
    position: absolute;
    content: "";
    width: 28px;
    height: 1px;
    background: #083061;
    bottom: 18px;
    inset-inline-start: calc(50% - 14px);
  }
  .offcanvas-body .navbar-nav > li:last-child > a.is-active:before {
    display: none;
  }
  .offcanvas-body .navbar-nav > li:last-child {
    margin-inline-start: 20px;
  }
  .offcanvas-body .navbar-nav > li:last-child > a {
    background: rgb(202 181 112);
    color: #fff;
    min-width: 168px;
    display: flex;
    justify-content: center;
  }
  .offcanvas-body .navbar-nav > li:last-child > a.is-active {
    color: #fff !important;
  }
  .offcanvas-body .navbar-nav > li:last-child > a:hover {
    background-color: var(--main);
  }
}
@media screen and (max-width: 1199px) {
  .offcanvas {
    background-color: var(--main);
  }
  .offcanvas .navbar-nav a {
    color: #dbdbdb;
    font-weight: 300;
    font-size: 88%;
  }
  .offcanvas .navbar-nav a.is-active {
    color: Var(--secondary);
  }
}

.truncate-multi-line {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #888;
  font-size: 80%;
}

.about-intro {
  position: relative;
  padding: 50px 50px 36px;
  font-size: 120%;
  background: #f2f2f2;
  z-index: 1;
}
.about-block {
  padding-top: 30px;
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  background: #fdfdfd;
  padding-inline: 20px;
}
.about-block h3 {
  text-align: center;
  font-weight: 300;
}

footer .nav {
  display: flex;
  justify-content: center;
}
footer .nav a {
  display: flex;
  justify-content: center;
  width: unset;
}
footer .nav a:hover {
  color: var(--secondary) !important;
}
footer .social-link {
  width: 50px;
  height: 50px;
}
footer .social-link svg {
  color: #8e8877;
}
.cp {
  margin-top: 28px;
  font-size: 70%;
}
.view-more-link {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.view-more-link a {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  padding: 8px 30px;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  font-size: 110%;
  z-index: 0;
  transition: all 0.3s cubic-bezier(0.42, 0, 0.24, 0.98);
}
.view-more-link a:before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  inset-inline-start: 0;
  border-bottom: 15px solid var(--secondary);
  border-inline-end: 15px solid transparent;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.24, 0.98);
}
.view-more-link a svg {
  margin-inline-end: 5px;
}
.view-more-link a:hover {
  color: #fff;
}
.view-more-link a:hover:before {
  border-bottom: 280px solid var(--secondary);
  border-inline-end: 280px solid transparent;
}
.blueBGSection {
  background: var(--main);
  color: #cacaca;
}
.blueBGSection .section-title {
  color: #fff;
}
.borderBlock {
  border-block: 1px solid #e2e2e2;
}
/* documents */
.docs-filter .d-flex.flex-wrap {
  flex-direction: column;
}
.docs-filter .d-flex.flex-wrap > *:first-child {
  /* max-width: 70%; */
  /* min-width: 60%; */
  /* margin-inline: auto; */
}
.docs-filter .views-exposed-form  .bef-nested >  ul , 
.docs-filter .views-exposed-form  .bef-nested > ul > li  {
  list-style-type: none;
  margin: 0;
  padding: 0
}
.docs-filter .views-exposed-form  .bef-nested > ul > li > ul {
  list-style-type: none
}
.form-check-input:checked {
    background-color: #cab570;
    border-color: #cab570;
}
.form-check-input:checked + label {
  color: #083061
}
.docs-filter .js-form-type-select label {
  display: none;
}
.docs-filter .js-form-type-select ul {
  display: flex;
  padding: 0;
  column-gap: 18px;
  justify-content: center;

  & li {
    list-style-type: none;
    & ul {
      display: flex;
      flex-direction: column;
      & a {
        max-width: calc(100% - 25px);
        margin-inline-start: 25px;
        position: relative;
      }
      & a:before {
        content: "";
        width: 8px;
        height: 2px;
        background: #969696;
        position: absolute;
        top: calc(50% - 2px);
        inset-inline: -16px auto;
      }
    }
  }
}
.docs-filter .js-form-type-select ul a {
  display: flex;
  background: #dee2e661;
  padding: 6px 12px;
  border-bottom: 2px solid #cab570;
  margin-block: 4px 8px;
  position: relative;
}
.docs-filter .bef-links.bef-nested > ul > li > a {
  font-size: 115%;
}
.docs-filter .js-form-type-select ul a:after {
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  z-index: 2;
  inset-inline-start: 0;
  bottom: 0;
  background: var(--main);
  transition: all 0.4s cubic-bezier(0.75, 0.06, 0.22, 0.98);
}
.docs-filter .js-form-type-select ul a:hover {
}
.docs-filter .js-form-type-select ul a:hover:after {
  width: 100%;
}
/*custom-search-panel*/

.custom-search-panel {
  position: fixed;
  top: -220px;
  left: 0;
  right: 0;
  min-height: 200px;
  width: 100%;
  background: #fff;
  transition: all 0.55s cubic-bezier(0.77, 0.04, 0.18, 0.95);
  z-index: -999;
  max-height: 0;
  padding-top: 40px;
}

.custom-search-panel.show {
  display: flex !important;
  top: 0;
  max-height: 100%;
  background: #fff !important;
  z-index: 999999 !important;
  box-shadow: 0 0 17px #00000045;
}

.csp {
  width: 100%;
  margin-top: 15px;
  padding-bottom: 20px;
}

.custom-search-panel .csp {
  opacity: 0;
  transition: all 0.3s linear;
}

.custom-search-panel .views-exposed-form {
  /* width: calc(100% - 58px); */
  margin-bottom: 0 !important;
}

.custom-search-panel .views-exposed-form > * {
  position: relative;
}
.custom-search-panel .js-form-item label {
  display: none
}
.custom-search-panel .views-exposed-form > * .form-actions {
  position: absolute;
  width: 90px;
  inset-inline: auto 0;
  display: flex;
  justify-content: flex-end;
  top: 15px;
}

.custom-search-panel .views-exposed-form > * .form-actions button {
  padding-inline: 16px !important;
  min-width: unset;
}
.custom-search-panel .views-exposed-form > * .form-actions button:last-child {
  display: none
}
.custom-search-panel .views-exposed-form > * .form-actions button:hover,
.custom-search-panel .views-exposed-form > * .form-actions button:focus {
  background: var(--secondary);
  color: #fff;
}

.custom-search-panel.show .csp {
  opacity: 1;
  transition-delay: 0.5s;
}

.custom-search-panel .close {
  top: 0px;
  width: 46px;
  position: absolute;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto 8px;
  left: 0;
  right: 0;
  margin-top: 10px;
  transition: all 0.4s;
}

.custom-search-panel .close:hover {
  transform: rotate(90deg);
}

.is-close-btn {
  border-radius: 200px;
}

.custom-search-panel .close > * {
  position: relative;
  inset: 0 !important;
}

.custom-search-panel .product-teaser-overlay {
  display: none !important;
}

.custom-search-panel .csp .view-content {
  max-height: calc(90vh - 200px);
  overflow: auto;
}

.custom-search-panel .csp .view-content .every-view-row-field {
  display: flex;
}

.custom-search-panel .csp .view-content .every-view-row-field .image {
  order: -1;
  margin-inline-end: 10px;
}

.custom-search-panel .csp .view-content .every-view-row-field .image .v-type {
  display: none !important;
}

.custom-search-panel .csp .view-content .every-view-row-field .image img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.custom-search-panel .js-form-type-textfield {
  width: 100%;
  border: 0;
  margin-inline-end: 0;
}

.custom-search-panel .js-form-type-textfield input {
  width: 100%;
  border: 0;
  padding-inline-start: 0;
  border-radius: 0;
  border-bottom: 1px solid #111;
  font-size: 30px;
}

.custom-search-panel .js-form-type-textfield input:focus {
  padding-inline-start: 15px;
}

.custom-search-panel .v-type {
  font-size: 85%;
}

.custom-search-panel .v-type i {
  color: #cacaca;
}

.custom-search-panel .views-field-title a {
  font-size: 130%;
  font-weight: 600;
}


[id^="edit-submit-documentation"],
[id^="edit-submit-documentation"]:active,
[id^="edit-submit-documentation"]:disabled,
[id^="edit-submit-documentation"]:focus,
[id^="edit-submit-documentation"]:focus-visible,
[id^="edit-submit-documentation"]:hover{
  background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6725 16.6412L21 21M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
  color: transparent;
  background-repeat: no-repeat;
  width: 40px;
  background-size: 36px;
  background-position: 50%;
  transition: all 0.2s linear
}
[id^="edit-submit-documentation"]:hover {
  opacity: 0.2
}

[id^="edit-submit-general-search"],
[id^="edit-submit-general-search"]:active,
[id^="edit-submit-general-search"]:disabled,
[id^="edit-submit-general-search"]:focus,
[id^="edit-submit-general-search"]:focus-visible,
[id^="edit-submit-general-search"]:hover{
  background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16.6725 16.6412L21 21M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg>') !important;
  color: transparent  !important;
  background-repeat: no-repeat  !important;
  width: 36px;
  background-size: 42px;
  background-position: 50%;
  transition: all 0.2s linear
}
[id^="edit-submit-general-search"]:hover {
  opacity: 0.2
}
.docs-filter .bef-exposed-form .d-flex {
  position: relative;
}
.docs-filter .bef-exposed-form .form-actions {
  position: absolute;
  top: 0;
  inset-inline: auto 0;
}
.custom-search-panel .views-row {
  margin-bottom: 12px
}
.searchItem {
  display: flex;
  background: #f4f4f4;
}
.searchItem > div:first-child {
  width: 90px;
  height: 90px;
}
.searchItem > div:first-child img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.searchItem > div:last-child {
  width: calc(100% - 130px);
  display: flex;
  align-items: center;
  padding-inline-start: 8px;

}
.searchItem > div:last-child p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
.searchHeight {
  overflow: auto;
  max-height: calc(100vh - 160px);
}
.noImage {
  background: url(../imgs/logo.png);
  background-size: 80%;
  background-position: 50%;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-color: #022147;
}

@media screen and (min-width: 1200px) {
  .language-switcher-language-url nav,
  .language-switcher-language-url nav .content {
    height: 76px;
  }
  
}
@media only screen and (max-width: 1199px) {
  .custom-search-panel .js-form-type-textfield input {
    font-size: 145%;
  }
    .custom-search-panel .views-exposed-form {
    width: 100%;
      margin-bottom: 0 !important;
  }
  .site-name-slogan {
    margin-inline: 0 auto;
  }

  .offcanvas-body > *:last-child {
    display: flex;
    justify-content: center;
    margin-block: auto 18px;
  }
  .offcanvas-body > *:last-child > *:last-child {
    margin-inline: 0;
  }
  .language-switcher-language-url nav > *:first-child {
    margin-inline-end: 26px;
  }
  .language-switcher-language-url nav .nav-link a {
    padding: 8px 0 !important;
  }
  .language-switcher-language-url nav .nav-link.is-active {
    display: flex;
  }

  .language-switcher-language-url nav .nav-link.is-active a {
    display: flex;
    color: var(--secondary) !important;
  }
  .language-switcher-language-url nav .nav-link .language-link,
  .language-switcher-language-url nav .nav-link .language-link:hover {
    background: none;
  }
  .offcanvas-body .search-ul {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  #filter-btn {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
    
  #filter-btn {
    background-color: none;
    border: 0;
    box-shadow: none;
    position: absolute;
    inset-inline: auto -40px;
    top: 200px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-block: 1px solid #cacaca;
    border-inline-end: 1px solid #cacaca;
  }
  #toHide {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: -321px;
    width: 320px;
    background: #fff;
    z-index: 999;
    padding-top: 50px;
    transition: all 0.5s ease-in-out;
  }
  #toHide.open {
    inset-inline-start: 0px;
    box-shadow: 4px 0px 12px #1111114d;
  }
  #toExpand {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .offcanvas-body .navbar-nav > li:last-child > a {
    min-width: unset !important;
  }
  .site-name-slogan > div:last-child {
    font-size: 70%;
  }
  .offcanvas-body .navbar-nav > li:last-child {
    margin-inline-start: 5px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  .site-name-slogan > div:last-child {
    font-size: 50%;
  }
}
@media (max-width: 767px) {
  nav.menu--main {
    margin-inline: 0px !important;
  }
    .custom-search-panel .js-form-type-textfield input {
    font-size: 125%;
    padding-block: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .searchItem > div:last-child p {
  -webkit-line-clamp: 2; 
}
}
@media only screen and (max-width: 575px) {
    .custom-search-panel .js-form-type-textfield input {
    font-size: 110%;
  }
  .site-name-slogan > div:first-child {
    font-size: 110%;
  }
  #navbar-main {
    height: 75px;
  }
  .navbar-brand {
    margin-inline-end: 6px;
  }
  .site-name-slogan {
    width: 35%;
  }
  .site-name-slogan > div:last-child {
    font-size: 65%;
  }
  .banner .social-bar {
    display: none;
  }
  footer .footer-logo {
    width: 90px;
  }
  .testimonials {
    padding-block: 50px 50px;
  }
}

