@import url('./blocks/_fonts.css');
@import url('./blocks/_header.css');
@import url('./blocks/_footer.css');
@import url('./blocks/cookie.css');

html {
  overflow-x: clip;
}

body {
  font-family: 'Formular', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  background: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.desc ul {
  list-style: revert;
  padding: revert;
  margin: revert;
}

.desc p + p {
  margin-top: 1em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal__search {
  background-color: rgba(0, 0, 0, 0.95);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  display: none;
}

.modal__search_input {
  width: 600px;
  border-bottom: 1px solid #868686;
  padding-bottom: 10px;
  background-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .modal__search_input {
    width: 300px;
  }
}

.modal__search_input input {
  font-weight: 700;
  font-size: 35px;
  color: #868686;
  width: 100%;
  padding-right: 30px;
  background-color: transparent;
  border: none;
}

@media screen and (max-width: 767px) {
  .modal__search_input input {
    font-size: 30px;
  }
}

.modal__search_input svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.modal__search_btn {
  cursor: pointer;
}

.modal__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.modal__close span {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  display: block;
}

.modal__close_first {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close_second {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -2px;
}

.modal__search input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.modal__search input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.modal__search input[type='search']::-webkit-search-decoration,
.modal__search input[type='search']::-webkit-search-cancel-button,
.modal__search input[type='search']::-webkit-search-results-button,
.modal__search input[type='search']::-webkit-search-results-decoration {
  display: none;
}

.modal__search input[type='text']::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.modal__search input[type='text']::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.modal__search input[type='search']::-webkit-search-decoration,
.modal__search input[type='search']::-webkit-search-cancel-button,
.modal__search input[type='search']::-webkit-search-results-button,
.modal__search input[type='search']::-webkit-search-results-decoration {
  display: none;
}

.loader {
  margin: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid #000000;
  border-right-color: transparent;
  border-radius: 100vw;
  animation: spin infinite 1s linear;
}

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

.section {
  width: 100%;
  height: auto;
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
}

/* .page-title {
  font-family: 'Formular';
  font-weight: 700;
  font-size: 19px;
  line-height: 25px;
  color: #000000;
  text-transform: uppercase;
  display: block;
} */

.page-title {
  font-family: 'Formular';
  font-weight: 500;
  font-size: 48px;
  line-height: 1.4;
  color: #000000;
  text-transform: capitalize;
  display: block;
}

@media screen and (max-width: 992px) {
  .page-title {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 17px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .page-title br {
    display: none;
  }
}

.breadcrumbs {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}
