/*
0-600px:      Phone
600-900px:    Tablet portrait
900-1200px:   Tablet lanscape
[1200-1800] is where our normal style apply
1800px: Big desktop


$breakpoint argument choices:
-phone
-tab-port
-tab-land
-big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em=16px
*/
/*
0-600px:      Phone
600-900px:    Tablet portrait
900-1200px:   Tablet lanscape
[1200-1800] is where our normal style apply
1800px: Big desktop


$breakpoint argument choices:
-phone
-tab-port
-tab-land
-big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em=16px
*/
@import "../node_modules/@flaticon/flaticon-uicons/css/all/all.css";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: auto;
  overflow-x: hidden;
  font-size: 62.5%;
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 43.75%;
  }
}
@media only screen and (max-width: 25em) {
  html {
    font-size: 37.5%;
    overflow-x: hidden;
  }
}

body {
  font-weight: 300;
  font-family: "Lora", sans-serif;
  line-height: 1.6;
  color: #333;
}
@media only screen and (max-width: 37.5em) {
  body {
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 25em) {
  body {
    overflow-x: hidden;
  }
}

.header {
  background-color: rgba(170, 170, 170, 0.3);
  border-bottom: 0.2rem solid #b28451;
  padding: 0.5rem 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .header {
    padding: 0.5rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header {
    padding: 0.5rem 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .header {
    padding: 0.5rem 1rem;
  }
}
.header_logo {
  height: 8rem;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-family: "Tinos", sans-serif;
}
.main-nav_list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .main-nav_list {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .main-nav_list {
    display: none;
  }
}
@media only screen and (max-width: 25em) {
  .main-nav_list {
    display: none;
  }
}
.main-nav_link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 3rem;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #b28451 50%);
  background-size: 230%;
  transition: all 0.4s;
}
@media only screen and (max-width: 56.25em) {
  .main-nav_link {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .main-nav_link {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .main-nav_link {
    font-size: 3rem;
  }
}
.main-nav_link:hover {
  background-position: 100%;
  color: #f9f7f6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1.5rem 1rem rgba(0, 0, 0, 0.2);
}
.main-nav_link:active {
  background-position: 100%;
  color: #f9f7f6;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
.main-nav_link-contact {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1rem 3rem;
  background-color: #b28451;
  color: #f9f7f6;
  transition: all 0.4s;
}
@media only screen and (max-width: 56.25em) {
  .main-nav_link-contact {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .main-nav_link-contact {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .main-nav_link-contact {
    font-size: 3rem;
  }
}
.main-nav_link-contact:hover {
  scale: 1.02;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1.5rem 1rem rgba(0, 0, 0, 0.2);
}
.main-nav_link-contact:active {
  scale: 0.95;
  transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

.navigation {
  display: none;
}
.navigation_checkbox {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .navigation {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .navigation {
    display: block;
  }
}
@media only screen and (max-width: 25em) {
  .navigation {
    display: block;
  }
}
.navigation_button {
  background-color: #b28451;
  height: 5rem;
  width: 5rem;
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  border-radius: 0.2rem;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.navigation_nav {
  border-radius: 0.3rem;
  background-color: rgba(249, 247, 246, 0.95);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  transition: all 0.8s;
}
@media only screen and (max-width: 56.25em) {
  .navigation_nav {
    height: 60%;
    top: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .navigation_nav {
    height: 60%;
    top: 10rem;
  }
}
@media only screen and (max-width: 25em) {
  .navigation_nav {
    height: 60%;
    top: 10rem;
  }
}
.navigation_nav-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.navigation_checkbox:checked ~ .navigation_nav {
  opacity: 1;
  width: 100%;
}
.navigation_icon {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.navigation_icon, .navigation_icon::before, .navigation_icon::after {
  display: inline-block;
  width: 2.8rem;
  height: 0.2rem;
  background-color: #f9f7f6;
}
.navigation_icon::before, .navigation_icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}
.navigation_icon::before {
  top: -0.8rem;
}
.navigation_icon::after {
  top: 0.8rem;
}
.navigation_button:hover .navigation_icon::before {
  top: -1rem;
}
.navigation_button:hover .navigation_icon::after {
  top: 1rem;
}
.navigation_checkbox:checked + .navigation_button .navigation_icon {
  background-color: transparent;
}
.navigation_checkbox:checked + .navigation_button .navigation_icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation_checkbox:checked + .navigation_button .navigation_icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.modaloverlay-contact {
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: all 0.3s;
  z-index: -1;
  visibility: hidden;
  margin: 0 auto;
}
.modaloverlay-contact:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}
@media only screen and (max-width: 56.25em) {
  .modaloverlay-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    height: 60vh;
    width: 100vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .modaloverlay-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    height: 60vh;
    width: 100vw;
  }
}
@media only screen and (max-width: 25em) {
  .modaloverlay-contact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    height: 60vh;
    width: 100vw;
  }
}

.modal-contact {
  background-color: rgba(170, 170, 170, 0.5);
  width: 70%;
  height: 90%;
  position: relative;
  margin: auto auto;
  padding: 3rem;
}
.modal-contact > iframe,
.modal-contact > div {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 56.25em) {
  .modal-contact {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .modal-contact {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}
@media only screen and (max-width: 25em) {
  .modal-contact {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}

.modal_content-contact {
  padding: 3rem;
  background-color: rgba(249, 247, 246, 0.9);
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .modal_content-contact {
    padding: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .modal_content-contact {
    padding: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .modal_content-contact {
    padding: 2rem;
  }
}

footer {
  padding-top: 4rem;
  background-color: #101d2c;
}

.footer_logo-box {
  text-align: center;
  width: 100%;
  transition: all 0.3s;
}
.footer_logo-box img {
  display: inline-block;
  width: 10%;
  transition: all 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .footer_logo-box img {
    width: 15%;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer_logo-box img {
    width: 15%;
  }
}
@media only screen and (max-width: 25em) {
  .footer_logo-box img {
    width: 15%;
  }
}
.footer_logo-box img:hover {
  background-color: rgba(249, 247, 246, 0.9);
  transform: translateY(-0.2rem);
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
}
.footer_logo-box img:active {
  background-color: rgba(249, 247, 246, 0.8);
  transform: translateY(-0.1rem);
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 56.25em) {
  .footer_logo-box {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer_logo-box {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .footer_logo-box {
    margin-bottom: 2rem;
  }
}

.footer_box {
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-evenly;
  gap: 6rem;
  margin-bottom: 3rem;
  padding: 1rem 4rem;
}
@media only screen and (max-width: 56.25em) {
  .footer_box {
    gap: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer_box {
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 0;
    gap: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .footer_box {
    flex-direction: column;
    align-items: center;
    justify-items: center;
    padding: 0;
    gap: 1rem;
  }
}

.information-block {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .information-block {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .information-block {
    width: 90%;
    margin: 0 auto;
  }
}
.information-block_header {
  width: 80%;
  border-bottom: 0.1rem solid #c69963;
  text-align: center;
  margin: 0 auto;
}
.information-block_header h3 {
  font-family: "Tinos", sans-serif;
  font-size: 2.8rem;
  color: #c69963;
  font-weight: 400;
  display: inline-block;
}
.information-block ul {
  padding: 3rem;
  justify-self: center;
  display: block;
  font-size: 2rem;
  color: #c69963;
}
@media only screen and (max-width: 37.5em) {
  .information-block ul {
    margin-left: 4rem;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .information-block ul {
    margin-left: 4rem;
    padding: 1.5rem;
  }
}
.information-block ul li {
  display: block;
  list-style: none;
}
.information-block ul a {
  text-decoration: none;
  color: #c69963;
  transition: all 0.3s ease;
}
.information-block ul a:hover {
  color: #f9f7f6;
}
@media only screen and (max-width: 37.5em) {
  .information-block {
    width: 85%;
    align-self: center;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .information-block {
    width: 85%;
    align-self: center;
    margin: 0 auto;
  }
}

.footer_contacts {
  width: 41%;
  align-self: flex-start;
  justify-self: center;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .footer_contacts {
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer_contacts {
    width: 80%;
  }
}
@media only screen and (max-width: 25em) {
  .footer_contacts {
    width: 80%;
  }
}
.footer_contacts-header {
  border-bottom: 0.1rem solid #c69963;
  text-align: center;
}
.footer_contacts-header h3 {
  font-family: "Tinos", sans-serif;
  font-size: 2.8rem;
  color: #c69963;
  font-weight: 400;
  display: inline-block;
}
.footer_contacts p {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 37.5em) {
  .footer_contacts p {
    margin-left: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .footer_contacts p {
    margin-left: 2rem;
  }
}
.footer_contacts p:last-child {
  margin-bottom: 0;
}
.footer_contacts p a {
  transition: all 0.3s;
}
.footer_contacts p a:hover {
  color: #f9f7f6;
}

ion-icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  color: #c69963;
}
ion-icon:hover {
  color: #f9f7f6;
}

.location-box {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  padding: 3rem 4rem;
}
@media only screen and (max-width: 56.25em) {
  .location-box {
    padding: 2rem 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .location-box {
    padding: 2rem 1rem;
  }
}
.location-box_item {
  width: 100%;
}

.location-box_itemF {
  display: flex;
  width: 100%;
  justify-content: center;
  justify-items: center;
  gap: 5rem;
  margin-bottom: 3rem;
}
.location-box_itemF a {
  display: block;
}
.location-box_itemF .facebook, .location-box_itemF .instagram {
  border: 0.1rem solid #c69963;
  padding: 1rem;
  border-radius: 2rem;
  display: block;
  width: 6rem;
  height: 6rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .location-box_itemF .facebook, .location-box_itemF .instagram {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .location-box_itemF .facebook, .location-box_itemF .instagram {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }
}
.location-box_itemF .facebook:hover, .location-box_itemF .instagram:hover {
  color: rgba(249, 247, 246, 0.9);
  border: 0.1rem solid #f9f7f6;
  transform: translateY(-0.3rem);
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
}
.location-box_itemF .facebook:active, .location-box_itemF .instagram:active {
  transform: translateY(-0.1rem);
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
}

.footer-link {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 2rem;
  color: #c69963;
}

.contacts-ul {
  padding: 3rem;
  display: block;
  font-size: 2rem;
  color: #c69963;
}
.contacts-ul li {
  display: block;
  list-style: none;
}
.contacts-ul a {
  display: block;
  text-decoration: none;
  color: #c69963;
  transition: all 0.3s ease;
}
.contacts-ul a:hover {
  color: #f9f7f6;
}

.accordion-for-lock {
  max-width: 100%;
  overflow: hidden;
}

.accordion-for-lock label {
  position: relative;
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-for-lock label::after {
  content: "+";
  display: block;
  position: absolute;
  right: 30%;
  top: 0;
  color: #c69963;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 37.5em) {
  .accordion-for-lock label::after {
    right: 20%;
  }
}
@media only screen and (max-width: 25em) {
  .accordion-for-lock label::after {
    right: 20%;
  }
}

.accordion-for-lock label:hover,
.accordion-for-lock:hover label::after {
  color: #f9f7f6;
}

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

.accordion-for-lock .accordion_content-lock {
  max-height: 0.1rem;
  overflow: hidden;
  border-radius: 0.4rem;
  line-height: 1.4;
  top: -100;
  opacity: 0;
  transition: all 0.3s ease;
}

.accordion-for-lock input[type=checkbox]:checked ~ .accordion_content-lock {
  max-height: 100%;
  border: 0.1rem solid #c69963;
  margin-bottom: 2rem;
  opacity: 1;
  top: 0;
}
@media only screen and (max-width: 37.5em) {
  .accordion-for-lock input[type=checkbox]:checked ~ .accordion_content-lock {
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .accordion-for-lock input[type=checkbox]:checked ~ .accordion_content-lock {
    margin-bottom: 0.5rem;
  }
}

.accordion-for-lock input[type=checkbox]:checked + label::after {
  content: "-";
}

.locks-range-ul {
  padding: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .locks-range-ul {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 25em) {
  .locks-range-ul {
    margin-left: 0 !important;
  }
}

.rights {
  text-align: center;
}
.rights p {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #c69963;
}

.contact-box {
  background-color: #101d2c;
  padding-bottom: 10rem;
}
@media only screen and (max-width: 37.5em) {
  .contact-box {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .contact-box {
    padding-bottom: 3rem;
  }
}

.contact-logo {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 3rem;
  padding: 3rem;
}
.contact-logo img {
  display: block;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .contact-logo {
    width: 45%;
    padding: 1rem;
    padding-top: 5rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 25em) {
  .contact-logo {
    width: 45%;
    padding: 1rem;
    padding-top: 5rem;
    margin-bottom: 0;
  }
}

.contact-content {
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-between;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .contact-content {
    flex-direction: column;
    gap: 2.8rem;
    padding: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-content {
    flex-direction: column;
    gap: 2.8rem;
    padding: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .contact-content {
    flex-direction: column;
    gap: 2.8rem;
    padding: 3rem;
  }
}
.contact-content_item {
  width: 50%;
}
@media only screen and (max-width: 56.25em) {
  .contact-content_item {
    text-align: start;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-content_item {
    width: 90%;
    text-align: start;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .contact-content_item {
    width: 90%;
    text-align: start;
    margin: 0 auto;
  }
}
.contact-content_item p {
  font-size: 2.2rem;
  text-transform: none;
  display: inline-block;
}
.contact-content_item p a {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-content_item a {
  text-decoration: none;
  color: #c69963;
  transition: all 0.3s;
}
.contact-content_item a:hover {
  color: rgba(249, 247, 246, 0.9);
}
.contact-content ion-icon {
  width: 3rem;
  height: 3rem;
  color: #c69963;
  transition: all 0.3s;
}
.contact-content ion-icon:hover {
  color: rgba(249, 247, 246, 0.9);
}
.contact-content_item2 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: center;
  gap: 5rem;
}
.contact-content_item2 ion-icon {
  display: block;
  width: 8rem;
  height: 8rem;
  justify-self: center;
  padding: 1rem;
  border: 0.1rem solid #c69963;
  border-radius: 1rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .contact-content_item2 ion-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .contact-content_item2 ion-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
  }
}
.contact-content_item2 ion-icon:hover {
  color: rgba(249, 247, 246, 0.9);
  border: 0.1rem solid rgba(249, 247, 246, 0.9);
  transform: translateY(-0.3rem);
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.5);
}
.contact-content_item2 ion-icon:active {
  transform: translateY(-0.1rem);
  box-shadow: 0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.5);
}
.contact-content_item2 a {
  display: block;
}

.modal-aboutUS {
  background-color: rgba(170, 170, 170, 0.5);
  width: 70%;
  height: 90%;
  position: relative;
  margin: 5rem auto;
  padding: 3rem;
}
.modal-aboutUS > iframe,
.modal-aboutUS > div {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 56.25em) {
  .modal-aboutUS {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .modal-aboutUS {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}
@media only screen and (max-width: 25em) {
  .modal-aboutUS {
    height: auto;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    margin: 0;
  }
}

.modal_content-aboutUS {
  padding: 3rem;
  background-color: rgba(249, 247, 246, 0.9);
  position: relative;
}

.aboutUS-box {
  padding: 3rem;
  background-color: #101d2c;
  padding-bottom: 9rem;
  border: 0.3rem solid #c69963;
}

.aboutUS-logo {
  padding: 1rem;
  width: 30%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.aboutUS-logo img {
  display: block;
  width: 40%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .aboutUS-logo {
    width: 45%;
  }
}
@media only screen and (max-width: 25em) {
  .aboutUS-logo {
    width: 45%;
  }
}

.aboutUS-text {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .aboutUS-text {
    width: 100%;
    text-align: justify;
  }
}
@media only screen and (max-width: 25em) {
  .aboutUS-text {
    width: 100%;
    text-align: justify;
  }
}
.aboutUS-text p {
  font-size: 2.2rem;
  text-transform: none;
  color: #c69963;
}
@media only screen and (max-width: 37.5em) {
  .aboutUS-text p {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 25em) {
  .aboutUS-text p {
    font-size: 1.8rem;
  }
}

.section-video {
  overflow: hidden;
  background-color: rgba(109, 93, 77, 0.1);
}
.section-video-box {
  position: relative;
  width: 100vw;
  height: 90vh;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .section-video-box {
    height: 60vh;
    margin-bottom: 2.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-video-box {
    height: 50vh;
    margin-bottom: 2.8rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-video-box {
    height: 45vh;
    margin-bottom: 2.8rem;
  }
}

.video_content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
  border-bottom: 0.2rem solid #101d2c;
}

.text-box {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  background-color: rgba(249, 247, 246, 0.9);
}

.header-main {
  text-align: center;
  text-transform: uppercase;
  font-family: "Tinos", sans-serif;
  font-size: 5rem;
  font-weight: 500;
}
@media only screen and (max-width: 37.5em) {
  .header-main {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 25em) {
  .header-main {
    font-size: 3rem;
    font-weight: 600;
  }
}

.section-onity {
  padding: 4rem;
}
@media only screen and (max-width: 25em) {
  .section-onity {
    padding: 3rem 2rem;
  }
}
.section-onity--text-box {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .section-onity--text-box {
    width: 100%;
    padding: 3rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-onity--text-box {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-onity--text-box {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 2rem 1rem;
  }
}

.section-onity h1 {
  padding: 0;
  font-weight: 500;
}

.onity_logo-box {
  display: block;
  text-align: center;
}

.onity-logo {
  width: 30rem;
}
@media only screen and (max-width: 37.5em) {
  .onity-logo {
    width: 25rem;
  }
}
@media only screen and (max-width: 25em) {
  .onity-logo {
    width: 15rem;
  }
}

.onity-content {
  font-size: 2.2rem;
  font-family: "Lora", sans-serif;
}
@media only screen and (max-width: 25em) {
  .onity-content {
    width: 90%;
    margin: 0 auto;
  }
}

.products-categories {
  background-color: rgba(109, 93, 77, 0.1);
}
@media only screen and (max-width: 25em) {
  .products-categories {
    padding-bottom: 4rem;
  }
}

.products-header {
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 25em) {
  .products-header {
    padding-top: 2rem;
  }
}

.header-primary {
  text-align: center;
  text-transform: uppercase;
  font-family: "Tinos", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  padding: 3rem;
}
@media only screen and (max-width: 25em) {
  .header-primary {
    font-size: 3rem;
    padding: 1rem 2rem;
  }
}

.cards-category {
  padding: 9rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  justify-content: space-between;
  grid-gap: 4.8rem;
  transition: all 0.7s;
}
@media only screen and (max-width: 25em) {
  .cards-category {
    padding: 3rem 6rem;
  }
}
.cards-category_item {
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: flex-end;
  padding: 2rem;
  position: relative;
  height: 50rem;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(to bottom, rgba(178, 132, 81, 0.9), rgba(255, 255, 255, 0.9));
  overflow: hidden;
  border: 0.5rem solid rgba(16, 29, 44, 0.3);
  border-radius: 3px;
  z-index: 1;
  transition: all 0.4s;
}
.cards-category_item:hover {
  cursor: pointer;
  box-shadow: 2rem 3rem 2rem rgba(0, 0, 0, 0.3);
  transform: translateY(-4rem);
  border: 0.5rem solid rgba(16, 29, 44, 0.8);
}
@media only screen and (max-width: 25em) {
  .cards-category_item:hover {
    box-shadow: 1rem 2rem 1rem rgba(0, 0, 0, 0.3);
    transform: translateY(-2rem);
  }
}
.cards-category_item:active {
  box-shadow: 1rem 2rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2rem);
}
@media only screen and (max-width: 25em) {
  .cards-category_item:active {
    box-shadow: 0.5rem 1rem 0.5rem rgba(0, 0, 0, 0.15);
    transform: translateY(-1rem);
  }
}
.cards-category_picture--1, .cards-category_picture--2, .cards-category_picture--3, .cards-category_picture--4 {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: rgba(3, 33, 64, 0.3);
  z-index: -1;
}
.cards-category_picture--4 {
  object-fit: contain;
}
.cards-category_header {
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.header-tertiary {
  border-radius: 3px;
  background-color: rgba(178, 132, 81, 0.8);
  color: #f9f7f6;
  font-weight: 400;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.section-projects {
  padding: 3rem 5rem;
}
@media only screen and (max-width: 37.5em) {
  .section-projects {
    padding: 2rem 4rem;
  }
}
.section-projects_header {
  font-family: "Tinos", sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 37.5em) {
  .section-projects_header {
    padding-bottom: 2rem;
  }
}
.section-projects_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  grid-gap: 4.8rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .section-projects_box {
    grid-gap: 2rem;
  }
}

.project-box_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 0.5rem;
}

.project-header {
  font-family: "Tinos", sans-serif;
}
.project-header h2 {
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 37.5em) {
  .project-header h2 {
    font-size: 2.6rem;
  }
}

.project-image {
  border: 0.1rem solid #333;
  width: 100%;
  padding: 2rem;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 37.5em) {
  .project-image {
    padding: 1rem;
  }
}
.project-image img {
  display: block;
  width: 100%;
  border: 0.1rem solid #333;
  border-radius: 0.3rem;
}

.project-text {
  font-size: 2rem;
}

.section-energy_box {
  height: 85vh;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(170, 170, 170, 0.1)), url("../img/room_with_sensorstat.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 56.25em) {
  .section-energy_box {
    height: 40vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-energy_box {
    flex-direction: column;
    height: 40vh;
  }
}
@media only screen and (max-width: 25em) {
  .section-energy_box {
    flex-direction: column;
    height: 40vh;
  }
}

.energy-models {
  padding: 6rem 3rem;
}
@media only screen and (max-width: 56.25em) {
  .energy-models {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .energy-models {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .energy-models {
    padding-bottom: 3rem;
  }
}
.energy-models_header {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .energy-models_header {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .energy-models_header {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .energy-models_header {
    width: 100%;
  }
}
.energy-models_header h2 {
  font-size: 3rem;
  font-family: "Tinos", sans-serif;
}
.energy-models p {
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
}

.sensor-models {
  margin-top: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .sensor-models {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .sensor-models {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .sensor-models {
    margin-top: 2rem;
  }
}
.sensor-models_box {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  justify-content: space-evenly;
}
@media only screen and (max-width: 56.25em) {
  .sensor-models_box {
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .sensor-models_box {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .sensor-models_box {
    flex-direction: column;
  }
}
.sensor-models_header {
  text-align: center;
  margin-bottom: 10rem;
}
.sensor-models_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3.2rem;
}
@media only screen and (max-width: 56.25em) {
  .sensor-models_header {
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .sensor-models_header {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .sensor-models_header {
    margin-bottom: 3rem;
  }
}
.sensor-models_text {
  width: 60%;
}
@media only screen and (max-width: 37.5em) {
  .sensor-models_text {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .sensor-models_text {
    width: 100%;
  }
}
.sensor-models_image {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .sensor-models_image {
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .sensor-models_image {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .sensor-models_image {
    width: 100%;
  }
}
.sensor-models_image img {
  display: block;
  width: 60%;
  justify-self: center;
  margin: 0 auto;
}

.sensor-features_header {
  text-align: center;
}
.sensor-features_header h2 {
  font-size: 2.8rem;
  font-family: "Tinos", sans-serif;
  border-bottom: 0.1rem solid #333;
}

.sensor-ul {
  display: block;
  padding: 2rem 3rem;
  font-size: 1.8rem;
  column-count: 2;
  column-gap: 7rem;
}
@media only screen and (max-width: 56.25em) {
  .sensor-ul {
    column-count: 1;
    font-size: 2rem;
    margin: 0 auto;
    padding: 2rem 4rem;
  }
}

.system-description {
  margin-top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .system-description {
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .system-description {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .system-description {
    margin-top: 3rem;
  }
}
.system-description_header {
  text-align: center;
}
.system-description_header h2 {
  display: inline-block;
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
  border-bottom: 0.1rem solid #333;
}
@media only screen and (max-width: 56.25em) {
  .system-description_header h2 {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .system-description_header h2 {
    display: block;
  }
}
@media only screen and (max-width: 25em) {
  .system-description_header h2 {
    display: block;
  }
}

.system-description {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .system-description {
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .system-description {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 25em) {
  .system-description {
    flex-direction: column-reverse;
  }
}

.system-features_image {
  width: 60%;
}
.system-features_image img {
  display: block;
  max-width: 100%;
  justify-self: center;
}
@media only screen and (max-width: 56.25em) {
  .system-features_image img {
    scale: 1.3;
    margin-right: 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .system-features_image {
    width: 70%;
  }
}

.system-features {
  width: 40%;
}
@media only screen and (max-width: 37.5em) {
  .system-features {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .system-features {
    width: 100%;
  }
}

.system-list {
  width: 90%;
  margin: 0 auto;
}

.system-ul {
  display: block;
  padding: 2rem 4rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 56.25em) {
  .system-ul {
    font-size: 2rem;
  }
}

.section-intelity {
  background-color: rgba(170, 170, 170, 0.1);
  padding: 7rem 0;
}
@media only screen and (max-width: 37.5em) {
  .section-intelity {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 25em) {
  .section-intelity {
    padding: 3rem 0;
  }
}
.section-intelity_header {
  text-align: center;
  font-family: "Tinos", sans-serif;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .section-intelity_header {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-intelity_header {
    margin-bottom: 2rem;
  }
}
.section-intelity_header h2 {
  font-size: 4rem;
}
.section-intelity_header p {
  font-size: 2.4rem;
}
@media only screen and (max-width: 56.25em) {
  .section-intelity_header p {
    font-size: 2.6rem;
  }
}

.intelity-features {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 4.8rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .intelity-features {
    gap: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .intelity-features {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .intelity-features {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
  }
}
.intelity-features_box {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .intelity-features_box {
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .intelity-features_box {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .intelity-features_box {
    width: 100%;
  }
}
.intelity-features_image {
  width: 40%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .intelity-features_image {
    width: 80%;
  }
}
@media only screen and (max-width: 25em) {
  .intelity-features_image {
    width: 80%;
  }
}
.intelity-features_image img {
  display: block;
  width: 50%;
  justify-self: center;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .intelity-features_header {
    width: 95%;
    margin: 0 auto;
    text-align: center;
  }
}
.intelity-features_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
  border-bottom: 0.1rem solid #333;
}

.intelity-ul {
  display: block;
  padding: 3rem 5rem;
  font-size: 1.8rem;
}
@media only screen and (max-width: 56.25em) {
  .intelity-ul {
    width: 95%;
    margin: 0 auto;
    font-size: 2rem;
  }
}

.oniSwitch {
  width: 20%;
  margin: 0 auto;
}

.advance-intro {
  padding: 8rem 2rem;
  background-color: rgba(170, 170, 170, 0.1);
  display: flex;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .advance-intro {
    padding: 5rem 1rem;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 25em) {
  .advance-intro {
    padding: 5rem 1rem;
    flex-direction: column-reverse;
  }
}
.advance-intro_image {
  width: 50%;
}
.advance-intro_image img {
  display: block;
  padding: 2rem;
  border: 0.1rem double #c69963;
  width: 70%;
  justify-self: center;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 37.5em) {
  .advance-intro_image img {
    width: 60%;
    margin: 2rem auto;
  }
}
@media only screen and (max-width: 25em) {
  .advance-intro_image img {
    width: 50%;
    margin: 2rem auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .advance-intro_image {
    width: 80%;
    margin-top: 3rem;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .advance-intro_image {
    width: 80%;
    margin-top: 3rem;
    margin: 0 auto;
  }
}
.advance-intro_box {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .advance-intro_box {
    width: 80%;
  }
}
@media only screen and (max-width: 25em) {
  .advance-intro_box {
    width: 80%;
  }
}

.security {
  width: 100%;
}
.security_header {
  text-align: center;
}
.security_header h2 {
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
}
.security p {
  font-size: 1.8rem;
  font-weight: 500;
}

.upgrade {
  width: 100%;
}
.upgrade_header {
  text-align: center;
}
.upgrade_header h2 {
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
}
.upgrade p {
  font-weight: 500;
  font-size: 1.8rem;
}

.advance-features {
  padding: 10rem 5rem;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(170, 170, 170, 0.3)), url("../img/Handles/advance-trillium_hotel-corridor.jpg");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 37.5em) {
  .advance-features {
    padding: 5rem;
    padding-left: 0;
  }
}
@media only screen and (max-width: 25em) {
  .advance-features {
    padding: 5rem;
    padding-left: 0;
  }
}
.advance-features_box {
  width: 80%;
  background-color: rgba(249, 247, 246, 0.8);
}
@media only screen and (max-width: 37.5em) {
  .advance-features_box {
    width: 90%;
  }
}
@media only screen and (max-width: 25em) {
  .advance-features_box {
    width: 90%;
  }
}
.advance-features_header {
  padding: 2rem 1rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .advance-features_header {
    padding: 0 1rem;
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .advance-features_header {
    padding: 0 1rem;
    padding-top: 2rem;
  }
}
.advance-features_header h2 {
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  border-bottom: 0.1rem solid #b28451;
}

.advance-list {
  padding: 2rem 4rem;
}

.advance-ul {
  font-size: 1.8rem;
  column-count: 2;
  column-gap: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .advance-ul {
    column-count: 1;
  }
}
@media only screen and (max-width: 25em) {
  .advance-ul {
    column-count: 1;
  }
}

.advance-physical {
  background-color: rgba(170, 170, 170, 0.1);
}

.physical-features_header {
  padding-top: 5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.physical-features_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
  color: #b28451;
}

.advance-table {
  width: 70%;
  margin: 0 auto;
}
.advance-table td {
  width: 10%;
}
.advance-table th {
  width: 1%;
}

.advance-look {
  margin-top: 5rem;
  padding: 5rem 2rem;
}
@media only screen and (max-width: 37.5em) {
  .advance-look {
    margin-top: 2rem;
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .advance-look {
    margin-top: 2rem;
    padding: 3rem 2rem;
  }
}
.advance-look_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .advance-look_box {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .advance-look_box {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 1.5rem;
  }
}
.advance-look_item {
  align-items: center;
  justify-items: center;
  width: 100%;
}
.advance-look_item img {
  display: block;
  width: 80%;
  margin-bottom: 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in;
}
.advance-look_item img:hover {
  transform: scale(1.1);
  border-radius: 8rem;
}
.advance-look h4 {
  font-size: 1.6rem;
  font-weight: 600;
}

.additional-finish_box--advance {
  padding: 3rem 10rem;
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .additional-finish_box--advance {
    padding: 3rem;
    width: 90%;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finish_box--advance {
    padding: 3rem;
    width: 90%;
  }
}

.additional-finish_header--advance {
  font-family: "Tinos", sans-serif;
  text-align: center;
  margin-bottom: 2rem;
}
.additional-finish_header--advance h3 {
  font-size: 3rem;
  color: #b28451;
  font-weight: 600;
  text-transform: uppercase;
}

.additional-finishes_advance {
  margin-top: 3rem;
  border: 0.2rem solid #c69963;
  border-top: none;
  display: flex;
  gap: 1rem;
  margin-bottom: 5rem;
}
.additional-finishes_advance-item {
  align-items: center;
  justify-items: center;
  margin-bottom: 2rem;
}
.additional-finishes_advance-picture {
  clip-path: circle(30%);
  width: 100%;
}
.additional-finishes_advance-picture img {
  display: block;
  width: 50%;
  justify-self: center;
}
.additional-finishes_advance-picture h4 {
  text-align: center;
}

.advance-specs_header {
  color: #b28451;
  text-align: center;
  margin-bottom: 1.5rem;
}
.advance-specs_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
}

.advance-table--2 {
  display: block;
  width: 55%;
  padding-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .advance-table--2 {
    width: 80%;
  }
}
@media only screen and (max-width: 25em) {
  .advance-table--2 {
    width: 80%;
  }
}
.advance-table--2 th {
  width: 3%;
}

.advance-dimensions {
  padding-bottom: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-items: center;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .advance-dimensions {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .advance-dimensions {
    flex-direction: column;
  }
}
.advance-dimensions img {
  display: block;
  justify-self: center;
}
@media only screen and (max-width: 37.5em) {
  .advance-dimensions img {
    width: 70%;
  }
}
@media only screen and (max-width: 25em) {
  .advance-dimensions img {
    width: 70%;
  }
}

.advance-credentials {
  margin-top: 7rem;
  padding-bottom: 5rem;
}

.acees-header--advance h3 {
  font-size: 3rem;
  color: #b28451;
  font-weight: 600;
}

.hero-lock {
  width: 100vw;
  height: 90vh;
  background-image: linear-gradient(to left top, rgba(96, 56, 19, 0.8), rgba(178, 159, 148, 0.1));
}
@media only screen and (max-width: 56.25em) {
  .hero-lock {
    height: auto;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero-lock {
    height: auto;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 25em) {
  .hero-lock {
    height: auto;
    padding-bottom: 5rem;
  }
}

.header-secondary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  font-size: 2.6rem;
  font-family: "Tinos", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 0.3rem solid #b28451;
  background-color: #f9f7f6;
}
@media only screen and (max-width: 37.5em) {
  .header-secondary {
    font-size: 2.2rem;
    padding: 1rem 2rem;
    font-weight: 600;
  }
}

.lock-icon {
  display: block;
  height: 4rem;
  opacity: 0.8;
}

.section-locks {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 6rem;
  padding: 0 4rem;
  height: 80vh;
}
@media only screen and (max-width: 56.25em) {
  .section-locks {
    flex-direction: column;
    height: auto;
    gap: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-locks {
    flex-direction: column;
    height: auto;
    gap: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks {
    gap: 3rem;
    flex-direction: column;
    padding: 2rem 4rem;
    height: auto;
  }
}
.section-locks_text-box {
  max-width: 50%;
}
@media only screen and (max-width: 56.25em) {
  .section-locks_text-box {
    max-width: 100%;
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-locks_text-box {
    max-width: 100%;
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks_text-box {
    max-width: 100%;
    padding-top: 3rem;
  }
}
.section-locks .text-box_header {
  padding: 0 3rem;
}
@media only screen and (max-width: 37.5em) {
  .section-locks .text-box_header {
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks .text-box_header {
    padding: 0 1rem;
  }
}
.section-locks .header_lock {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.6rem;
  font-family: "Tinos", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 56.25em) {
  .section-locks .header_lock {
    font-size: 3.2rem;
    font-weight: 600;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks .header_lock {
    font-size: 3rem;
    font-weight: 600;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks .header_lock {
    font-size: 3rem;
    font-weight: 600;
  }
}
.section-locks .locks-content {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 3rem;
  color: #333;
}
@media only screen and (max-width: 56.25em) {
  .section-locks .locks-content {
    font-size: 2.4rem;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-locks .locks-content {
    padding: 1rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks .locks-content {
    font-size: 2rem;
    padding: 1rem;
    width: 90%;
    margin: 0 auto;
  }
}
.section-locks_video {
  display: block;
  width: 50%;
  height: 80%;
  object-fit: fill;
  object-position: center;
  padding: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .section-locks_video {
    width: 80%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-locks_video {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 25em) {
  .section-locks_video {
    width: 100%;
    height: auto;
  }
}
.section-locks_video {
  border: 0.5rem double rgba(249, 247, 246, 0.2);
}

.locks-range {
  padding: 3rem 4rem;
  background-color: rgba(170, 170, 170, 0.1);
}
@media only screen and (max-width: 56.25em) {
  .locks-range {
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .locks-range {
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .locks-range {
    padding: 3rem 2rem;
  }
}
.locks-range_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  grid-column-gap: 12rem;
  grid-row-gap: 5rem;
  padding: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .locks-range_block {
    grid-column-gap: 5rem;
    grid-row-gap: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .locks-range_block {
    grid-template-columns: 1fr;
    grid-row-gap: 2.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .locks-range_block {
    grid-template-columns: 1fr;
    grid-row-gap: 2.5rem;
  }
}

.locks-header {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .locks-header {
    margin-bottom: 3rem;
    border-bottom: 0.2rem solid #b28451;
  }
}
@media only screen and (max-width: 37.5em) {
  .locks-header {
    margin-bottom: 3rem;
    border-bottom: 0.2rem solid #b28451;
  }
}
@media only screen and (max-width: 25em) {
  .locks-header {
    margin-bottom: 2.5rem;
    border-bottom: 0.2rem solid #b28451;
  }
}

.block-image_item {
  display: block;
  filter: opacity(0.9);
  border-radius: 10rem;
  width: 100%;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(96, 56, 19, 0.8);
  transition: all 0.3s;
}
.block-image_item:hover {
  filter: none;
}
@media only screen and (max-width: 56.25em) {
  .block-image_item {
    border-radius: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .block-image_item {
    border-radius: 5rem;
  }
}
@media only screen and (max-width: 25em) {
  .block-image_item {
    border-radius: 5rem;
  }
}
.block-image_item-left, .block-image_item-right {
  filter: opacity(0.8);
  transform: scale(100%, 80%);
}

@media only screen and (max-width: 37.5em) {
  .block-image_trillium {
    grid-row: 3;
  }
}
@media only screen and (max-width: 25em) {
  .block-image_trillium {
    grid-row: 3;
  }
}

.block-text {
  font-size: 2.2rem;
}
@media only screen and (max-width: 37.5em) {
  .block-text_header {
    text-align: center;
  }
}
@media only screen and (max-width: 25em) {
  .block-text_header {
    text-align: center;
  }
}

.button {
  justify-self: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .button {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .button {
    margin-top: 0;
    justify-self: auto;
    text-align: right;
  }
}
@media only screen and (max-width: 25em) {
  .button {
    margin-top: 0;
    justify-self: auto;
    text-align: right;
  }
}

@media only screen and (max-width: 37.5em) {
  .button_trillium {
    margin-top: 1.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .button_trillium {
    margin-top: 1.5rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .button:last-child {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .button:last-child {
    margin-bottom: 2.5rem;
  }
}

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.3s;
  position: relative;
  font-size: 1.8rem;
  z-index: 0;
  border: none;
  cursor: pointer;
  background-color: rgba(178, 132, 81, 0.9);
  color: #333;
}
@media only screen and (max-width: 25em) {
  .btn:link, .btn:visited {
    padding: 1rem 2rem;
  }
}
.btn:hover {
  scale: 1.02;
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-color: rgba(96, 56, 19, 0.8);
  color: rgba(249, 247, 246, 0.9);
}
.btn:active {
  scale: 0.95;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5 1rem rgba(0, 0, 0, 0.2);
}

.other-locks_header {
  text-align: center;
  padding: 3rem;
  border: 0.1rem solid #333;
}
@media only screen and (max-width: 25em) {
  .other-locks_header {
    padding: 1.5rem;
  }
}
.other-locks_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 5rem;
  font-weight: 500;
}
@media only screen and (max-width: 25em) {
  .other-locks_header h2 {
    font-size: 3.8rem;
  }
}
.other-locks_box {
  padding: 7rem 3rem;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 4.8rem;
  background-color: rgba(170, 170, 170, 0.1);
}
@media only screen and (max-width: 37.5em) {
  .other-locks_box {
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_box {
    flex-direction: column;
    gap: 1rem;
    padding: 4rem 2rem;
  }
}
.other-locks_item-text {
  width: 60%;
}
@media only screen and (max-width: 37.5em) {
  .other-locks_item-text {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_item-text {
    width: 90%;
    margin: 0 auto;
  }
}
.other-locks_item-text h3 {
  font-family: "Tinos", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.other-locks_item-text ul {
  padding: 2rem;
  font-size: 2rem;
  font-weight: 500;
  justify-self: center;
  column-count: 2;
  column-gap: 5rem;
}
.other-locks .other_header {
  text-align: center;
}
.other-locks .other_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
}
.other-locks_image {
  width: 40%;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .other-locks_image {
    width: 70%;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_image {
    width: 70%;
    padding-bottom: 2rem;
  }
}
.other-locks_image img {
  display: block;
  width: 100%;
  border-radius: 5rem;
  border: 0.1rem solid #f9f7f6;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
  justify-self: center;
}

.other-locks_boxC {
  padding: 7rem 3rem;
  height: 70vh;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.3), rgba(249, 247, 246, 0.3)), url("../img/Handles/cylinder-lock_on-door1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .other-locks_boxC {
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .other-locks_boxC {
    flex-direction: column;
    height: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_boxC {
    flex-direction: column;
    height: auto;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}

.cylinder-main-header {
  text-align: center;
  font-size: 3rem;
  font-family: "Tinos", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .cylinder-main-header {
    text-align: end;
  }
}
@media only screen and (max-width: 25em) {
  .cylinder-main-header {
    text-align: end;
  }
}

.cylinder-header {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Tinos", sans-serif;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .cylinder-header {
    display: none;
  }
}
@media only screen and (max-width: 25em) {
  .cylinder-header {
    display: none;
  }
}

.cylinder-img {
  display: block;
  width: 50%;
  justify-self: center;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .cylinder-img {
    margin: 0;
    justify-self: flex-end;
  }
}
@media only screen and (max-width: 25em) {
  .cylinder-img {
    margin: 0;
    justify-self: flex-end;
  }
}

.other-locks_cylinder-text {
  align-self: flex-start;
  justify-self: center;
  border-radius: 0.3rem;
  padding: 3rem;
  background-color: rgba(249, 247, 246, 0.8);
  width: 50%;
}
.other-locks_cylinder-text p {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 37.5em) {
  .other-locks_cylinder-text {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_cylinder-text {
    width: 100%;
  }
}

.other-locks_imageC {
  align-self: flex-start;
  justify-self: center;
  width: 60%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .other-locks_imageC {
    width: 80%;
    align-self: auto;
    justify-self: auto;
    text-align: right;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_imageC {
    width: 80%;
    align-self: auto;
    justify-self: auto;
    text-align: right;
  }
}

.other-locks_imageO {
  width: 50%;
  justify-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .other-locks_imageO {
    width: 100%;
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks_imageO {
    width: 100%;
    padding-bottom: 2rem;
  }
}
.other-locks_imageO img {
  display: block;
  width: 80%;
  justify-self: center;
  border-radius: 5rem;
  border: 0.1rem solid #f9f7f6;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

@media only screen and (max-width: 37.5em) {
  .other-locks .onilocker-list {
    column-count: 1;
  }
}
@media only screen and (max-width: 25em) {
  .other-locks .onilocker-list {
    column-count: 1;
  }
}

.section-minibars_box {
  height: 85vh;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.7), rgba(170, 170, 170, 0.1)), url("../img/room_with_minibar.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 56.25em) {
  .section-minibars_box {
    height: 45vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-minibars_box {
    flex-direction: column;
    height: 40vh;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 25em) {
  .section-minibars_box {
    flex-direction: column;
    height: 40vh;
    justify-content: flex-start;
  }
}
.section-minibars_text {
  width: 60%;
  background-color: rgba(249, 247, 246, 0.8);
  padding: 3rem 6rem;
  border-radius: 0.3rem;
}
@media only screen and (max-width: 56.25em) {
  .section-minibars_text {
    width: 100%;
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-minibars_text {
    width: 100%;
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-minibars_text {
    width: 100%;
    padding: 3rem 2rem;
  }
}
.section-minibars_text p {
  font-size: 2rem;
}

.empty {
  width: 50%;
}

.minibars_text-header {
  text-align: center;
}
.minibars_text-header h2 {
  font-size: 3rem;
  font-family: "Tinos", sans-serif;
}

.minibar-models {
  padding: 6rem 3rem;
  background-color: rgba(170, 170, 170, 0.2);
}
@media only screen and (max-width: 37.5em) {
  .minibar-models {
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .minibar-models {
    padding-top: 3rem;
  }
}
.minibar-models_header {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
.minibar-models_header h2 {
  font-size: 2.8rem;
  font-family: "Tinos", sans-serif;
}
@media only screen and (max-width: 56.25em) {
  .minibar-models_header h2 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .minibar-models_header {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .minibar-models_header {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .minibar-models_header {
    width: 100%;
  }
}
.minibar-models_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.minibar-image_box {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .minibar-image_box {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .minibar-image_box {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .minibar-image_box {
    width: 100%;
  }
}
.minibar-image_box img {
  display: block;
  width: 100%;
}

.minibar-features_box {
  padding: 1rem 2rem;
}

.minibar-features_header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #333;
}
.minibar-features_header h2 {
  font-size: 3rem;
  font-family: "Tinos", sans-serif;
}

.minibar-ul {
  display: block;
  width: 95%;
  margin: 0 auto;
  font-size: 1.8rem;
  column-count: 2;
  column-gap: 6rem;
  font-weight: 500;
}
@media only screen and (max-width: 56.25em) {
  .minibar-ul {
    font-size: 2rem;
    column-count: 1;
    padding-left: 3rem;
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .minibar-ul {
    column-count: 1;
    width: 100%;
    padding-left: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .minibar-ul {
    column-count: 1;
    width: 100%;
    padding-left: 3rem;
  }
}

.section-model_ab3 {
  padding-bottom: 5rem;
}

.ab3-header {
  margin-bottom: 7rem;
  padding-top: 6rem;
  text-align: center;
  font-family: "Tinos", sans-serif;
  font-size: 2.4rem;
}
@media only screen and (max-width: 56.25em) {
  .ab3-header {
    padding-top: 3rem;
    margin-bottom: 3rem;
  }
}
.ab3-header h2 {
  display: inline-block;
  border-bottom: 0.2rem solid rgba(170, 170, 170, 0.9);
}

.model_ab3-box {
  display: flex;
  align-items: center;
  gap: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .model_ab3-box {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .model_ab3-box {
    flex-direction: column;
    gap: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .model_ab3-box {
    flex-direction: column;
    gap: 2rem;
  }
}

.model_ab3-image {
  width: 40%;
  justify-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .model_ab3-image {
    width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .model_ab3-image {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .model_ab3-image {
    width: 100%;
  }
}
.model_ab3-image img {
  display: block;
  width: 60%;
  margin: 0 auto;
}

.model_ab3-image_glass {
  width: 40%;
  justify-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .model_ab3-image_glass {
    width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .model_ab3-image_glass {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .model_ab3-image_glass {
    width: 100%;
  }
}
.model_ab3-image_glass img {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.model-ab3_text--solid {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .model-ab3_text--solid {
    width: 95%;
  }
}
@media only screen and (max-width: 25em) {
  .model-ab3_text--solid {
    width: 95%;
  }
}

.model-ab3_text--glass {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .model-ab3_text--glass {
    width: 95%;
  }
}
@media only screen and (max-width: 25em) {
  .model-ab3_text--glass {
    width: 95%;
  }
}

.table-ab {
  display: block;
}

.table-ab tr:nth-child(odd) {
  background-color: rgba(170, 170, 170, 0.3);
}

.table-ab th,
.table-ab td {
  border: 0.2rem solid rgba(170, 170, 170, 0.9);
}

.absorption {
  text-align: center;
}

.hinge {
  text-align: center;
}

.section-model_box {
  padding: 10rem 3rem;
  background-color: rgba(170, 170, 170, 0.2);
}

.section-te1-box_header {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.section-te1-box_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .section-te1-box_header {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-te1-box_header {
    width: 100%;
  }
}

.features-te1-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .features-te1-content {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 25em) {
  .features-te1-content {
    flex-direction: column-reverse;
  }
}

.features-te1_box {
  width: 60%;
}
@media only screen and (max-width: 37.5em) {
  .features-te1_box {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .features-te1_box {
    width: 100%;
  }
}

.features-te1_header {
  text-align: center;
}
.features-te1_header h2 {
  font-family: "Tinos", sans-serif;
  font-size: 2.8rem;
  border-bottom: 0.1rem solid #333;
}

.te1-ul {
  display: block;
  padding: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}

.te1-image_box {
  width: 40%;
}
@media only screen and (max-width: 37.5em) {
  .te1-image_box {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .te1-image_box {
    width: 80%;
    margin: 0 auto;
  }
}
.te1-image_box img {
  display: block;
  width: 70%;
  justify-self: center;
  margin: 0 auto;
}

.te1-description {
  padding: 5rem 0;
}
.te1-description_box {
  width: 90%;
  margin: 0 auto;
}

.te1-header {
  text-align: center;
  margin-bottom: 5rem;
}
.te1-header h2 {
  display: inline-block;
  font-family: "Tinos", sans-serif;
  font-size: 3rem;
  border-bottom: 0.2rem solid rgba(170, 170, 170, 0.9);
}

.table-te1 {
  display: block;
  width: 90%;
  margin: 0 auto;
}
.table-te1 th, .table-te1 td {
  width: 20%;
  border: 0.2rem solid rgba(170, 170, 170, 0.9);
}

.table-te1 tr:nth-child(odd) {
  background-color: rgba(170, 170, 170, 0.3);
}

.center {
  text-align: center;
}

.minibar-optional {
  margin: 5rem 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(249, 247, 246, 0.6)), url("../img/minibar_option_60l.jpg");
  background-size: cover;
  background-position: center;
}

.optional-header {
  background-color: rgba(249, 247, 246, 0.5);
  font-family: "Tinos", sans-serif;
  text-align: center;
  padding: 3rem;
  font-size: 2.4rem;
}

.descrption-min60l {
  padding-bottom: 10rem;
}

.table-option {
  display: block;
  background-color: rgba(249, 247, 246, 0.9);
  width: 90%;
  margin: 0 auto;
}
.table-option th, .table-option td {
  width: 10%;
  border: 0.2rem solid rgba(51, 51, 51, 0.8);
}

.table-option tr:nth-child(odd) {
  background-color: rgba(170, 170, 170, 0.2);
}

.hero-safe {
  width: 100%;
  height: 90vh;
  background-image: linear-gradient(to left top, rgba(96, 56, 19, 0.8), rgba(178, 159, 148, 0.1));
}
@media only screen and (max-width: 37.5em) {
  .hero-safe {
    height: auto;
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .hero-safe {
    height: auto;
    padding-bottom: 3rem;
  }
}

.safe-icon {
  display: block;
  height: 4rem;
  opacity: 0.8;
}

.section-safes {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 6rem;
  padding: 0 4rem;
  height: 80vh;
}
@media only screen and (max-width: 37.5em) {
  .section-safes {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    height: auto;
  }
}
@media only screen and (max-width: 25em) {
  .section-safes {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    height: auto;
  }
}
.section-safes_text-box {
  max-width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .section-safes_text-box {
    max-width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-safes_text-box {
    max-width: 100%;
  }
}
.section-safes .text-box_header {
  padding: 0 3rem;
}
.section-safes .header_safe {
  text-align: center;
  text-transform: uppercase;
  font-size: 3.6rem;
  font-family: "Tinos", sans-serif;
  font-weight: 500;
}
.section-safes .safes-content {
  font-size: 2.2rem;
  font-weight: 500;
  padding: 3rem;
  color: #333;
}
.section-safes_video {
  display: block;
  max-width: 50%;
  max-height: 80%;
  object-fit: fill;
  object-position: center;
  padding: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .section-safes_video {
    max-width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-safes_video {
    max-width: 100%;
  }
}
.section-safes_video {
  border: 0.5rem double rgba(249, 247, 246, 0.2);
}

.safe-cta_box2 {
  text-align: right;
}

@media only screen and (max-width: 37.5em) {
  .safe-cta_box {
    text-align: right;
  }
}
@media only screen and (max-width: 25em) {
  .safe-cta_box {
    text-align: right;
  }
}

.section-range {
  background-color: rgba(170, 170, 170, 0.1);
}
.section-range_description {
  padding: 6rem 0;
  width: 50%;
  margin: 0 auto;
  border-bottom: 0.2rem solid #c69963;
}
@media only screen and (max-width: 37.5em) {
  .section-range_description {
    width: 90%;
    padding: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .section-range_description {
    width: 90%;
    padding: 3rem;
  }
}
.section-range_description p {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
.section-range .box-item-safe {
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .section-range .box-item-safe {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 25em) {
  .section-range .box-item-safe {
    flex-direction: column-reverse;
  }
}
.section-range .box-item-safe_image1 {
  padding: 2rem;
  width: 50%;
  border: 0.1rem solid #c69963;
}
.section-range .box-item-safe_image1 img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .section-range .box-item-safe_image1 {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-range .box-item-safe_image1 {
    width: 100%;
  }
}
.section-range .box-item-safe_text {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .section-range .box-item-safe_text {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-range .box-item-safe_text {
    width: 100%;
  }
}
.section-range .box-item-safe_text p {
  font-size: 1.8rem;
}
.section-range .box-item-safe_header {
  font-family: "Tinos", sans-serif;
  font-size: 2rem;
  color: #b28451;
  margin-bottom: 2rem;
}
.section-range .box-item-safe_image2 {
  padding: 2rem;
  width: 50%;
  border: 0.1rem solid #c69963;
}
.section-range .box-item-safe_image2 img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .section-range .box-item-safe_image2 {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .section-range .box-item-safe_image2 {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-range .box-item-safe--1,
  .section-range .box-item-safe--100 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .section-range .box-item-safe--1,
  .section-range .box-item-safe--100 {
    flex-direction: column;
  }
}

.content-safe {
  width: 90%;
  margin: 0 auto;
}
.content-safe_header {
  font-size: 4rem;
  color: #b28451;
  font-family: "Tinos", sans-serif;
  text-align: center;
}

.safe-features_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .safe-features_box {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .safe-features_box {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.safe-features_item1 {
  width: 60%;
}
@media only screen and (max-width: 37.5em) {
  .safe-features_item1 {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .safe-features_item1 {
    width: 90%;
    margin: 0 auto;
  }
}

.safe-ul {
  display: block;
  font-size: 1.8rem;
  column-count: 2;
  column-gap: 4rem;
}
@media only screen and (max-width: 37.5em) {
  .safe-ul {
    column-count: 1;
    padding-left: 5rem;
  }
}
@media only screen and (max-width: 25em) {
  .safe-ul {
    column-count: 1;
    padding-left: 5rem;
  }
}

.features-header-safe {
  font-size: 2rem;
  color: #b28451;
  border-bottom: 0.1rem solid #c69963;
  margin-bottom: 2rem;
}

.safe-features_item2 {
  width: 50%;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .safe-features_item2 {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .safe-features_item2 {
    width: 80%;
    margin: 0 auto;
  }
}
.safe-features_item2 img {
  display: block;
  width: 100%;
  justify-self: center;
  scale: 1.2;
  transition: all 0.2s;
}
.safe-features_item2 img:hover {
  scale: 1.5;
}

.safe-table {
  display: block;
  margin-bottom: 2rem;
}

.safe-caption {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Tinos", sans-serif;
}

.box-image_os500 .mmu-image {
  width: 50%;
  margin: 0 auto;
}

.box-image_os700 {
  align-self: center;
  justify-self: center;
  scale: 1.1;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .box-image_os700 {
    padding: 3rem 0;
    scale: 1;
  }
}
@media only screen and (max-width: 25em) {
  .box-image_os700 {
    padding: 3rem 0;
    scale: 1;
  }
}
.box-image_os700 img {
  display: block;
  width: 100%;
}

.safe-table-sl3 {
  margin: 0 auto;
  margin-top: 5rem;
}

.box-image_os200 {
  align-self: center;
  justify-self: center;
  scale: 1.3;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .box-image_os200 {
    scale: 1.2;
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 25em) {
  .box-image_os200 {
    scale: 1.2;
    padding: 3rem 0;
  }
}
.box-image_os200 img {
  display: block;
  width: 100%;
}

.box-image_os100 {
  align-self: center;
  justify-self: center;
  scale: 1.2;
  width: 100%;
}
.box-image_os100 img {
  display: block;
  width: 100%;
}

main {
  max-width: 100vw;
}

.hero-serene {
  height: 90vh;
  background-image: linear-gradient(to left top, rgba(96, 56, 19, 0.8), rgba(178, 159, 148, 0.1));
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (max-width: 56.25em) {
  .hero-serene {
    display: block;
    height: auto;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero-serene {
    display: block;
    height: auto;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width: 25em) {
  .hero-serene {
    display: block;
    height: auto;
    padding-bottom: 5rem;
  }
}
.hero-serene_box {
  background-color: #f9f7f6;
  border-bottom: 0.3rem solid #b28451;
}
.hero-serene_header {
  display: flex;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .hero-serene_header {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 25em) {
  .hero-serene_header {
    justify-content: space-between;
  }
}

.vertical-line {
  font-size: 2.8rem;
}
@media only screen and (max-width: 37.5em) {
  .vertical-line {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 25em) {
  .vertical-line {
    font-size: 4rem;
  }
}

.header-secondary_serene {
  border-bottom: none;
}

.link-secondary {
  text-decoration: none;
  color: #333;
}
.link-secondary:hover {
  color: #b28451;
}

.demo-description {
  background-color: rgba(170, 170, 170, 0.1);
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 10rem;
  grid-gap: 4.8rem;
}
@media only screen and (max-width: 56.25em) {
  .demo-description {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 37.5em) {
  .demo-description {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 25em) {
  .demo-description {
    grid-template-columns: 1fr;
  }
}
.demo-description_text {
  margin-bottom: 2rem;
  font-size: 2.2rem;
}
@media only screen and (max-width: 56.25em) {
  .demo-description_text {
    font-size: 2.4rem;
  }
}

.demo-item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-image: linear-gradient(to left top, rgba(96, 56, 19, 0.8), rgba(178, 159, 148, 0.9));
  border-radius: 0.2rem;
}
.demo-item_img {
  display: block;
  width: 30%;
  border: 0.5rem double rgba(249, 247, 246, 0.3);
  padding: 2rem;
}
.demo-item_img-tall {
  scale: 0.9;
}

.serene-handles {
  background-color: rgba(170, 170, 170, 0.1);
  padding-bottom: 5rem;
}
.serene-handles_header {
  color: #b28451;
  margin: 0;
}
.serene-handles .granada-header h2 {
  display: block;
  text-align: center;
  font-size: 3rem;
  font-weight: 400;
  color: #b28451;
  padding-top: 3rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem solid #b28451;
}
.serene-handles .granada {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  justify-items: center;
  align-items: center;
  gap: 3rem;
  padding: 0 3rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .serene-handles .granada {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .serene-handles .granada {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    margin-bottom: 2rem;
  }
}
.serene-handles figure {
  padding-top: 6rem;
  text-align: center;
}
.serene-handles figure img {
  width: 50%;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .serene-handles figure img {
    width: 80%;
  }
}
@media only screen and (max-width: 25em) {
  .serene-handles figure img {
    width: 70%;
  }
}
.serene-handles .bronze,
.serene-handles .brass {
  scale: 0.9 1;
}
.serene-handles figcaption {
  text-align: center;
  font-size: 1.8rem;
}

.additional {
  margin: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  column-gap: 4.8rem;
  padding-top: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .additional {
    margin: 2.5rem;
    padding-top: 2.5rem;
    grid-template-columns: 1fr;
    row-gap: 3rem;
    align-items: center;
    justify-items: center;
  }
}
@media only screen and (max-width: 25em) {
  .additional {
    margin: 2.5rem;
    padding-top: 2.5rem;
    grid-template-columns: 1fr;
    row-gap: 3rem;
    align-items: center;
    justify-items: center;
  }
}

.additional-finish_box {
  border: 0.2rem solid rgba(198, 153, 99, 0.5);
  border-top: none;
}
@media only screen and (max-width: 37.5em) {
  .additional-finish_box {
    border: 0;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finish_box {
    border: 0;
  }
}

.additional-finish_header {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
  font-family: "Tinos", sans-serif;
}

.additional-finishes {
  display: flex;
}
@media only screen and (max-width: 56.25em) {
  .additional-finishes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .additional-finishes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finishes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
  }
}
.additional-finishes_item {
  align-items: center;
  justify-items: center;
}
.additional-finishes_item-picture {
  width: 100%;
  clip-path: circle(35%);
}
@media only screen and (max-width: 37.5em) {
  .additional-finishes_item-picture {
    width: 90%;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finishes_item-picture {
    width: 90%;
  }
}

h4 {
  font-size: 1.4rem;
  font-family: "Lora", sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 37.5em) {
  h4 {
    margin-bottom: 1rem;
    text-align: center;
  }
}
@media only screen and (max-width: 25em) {
  h4 {
    margin-bottom: 1rem;
    text-align: center;
  }
}

.additional-handles {
  border: 0.2rem solid rgba(198, 153, 99, 0.5);
  border-top: none;
}
@media only screen and (max-width: 37.5em) {
  .additional-handles {
    border: 0;
  }
}
@media only screen and (max-width: 25em) {
  .additional-handles {
    border: 0;
  }
}
.additional-handles_header {
  text-align: center;
  font-size: 2rem;
  font-family: "Tinos", sans-serif;
  margin-bottom: 2.5rem;
}
.additional-handles_text {
  font-size: 1.8rem;
  padding: 0 3rem;
}

.access {
  padding-top: 3rem;
  padding-bottom: 5rem;
}
.access-header {
  text-align: center;
  font-size: 2rem;
  font-family: "Tinos", sans-serif;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.access-types {
  display: flex;
  margin: 0 auto;
  gap: 3rem;
  padding: 3rem;
  width: 80%;
  border: 0.2rem solid #c69963;
  border-top: none;
}
@media only screen and (max-width: 37.5em) {
  .access-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    width: 90%;
  }
}
@media only screen and (max-width: 25em) {
  .access-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    width: 90%;
  }
}
.access-types_item {
  text-align: center;
}
.access-types_item-pic {
  width: 100%;
  justify-items: center;
}
.access-types_item-pic > img {
  display: block;
  width: 40%;
  margin-bottom: 1rem;
  margin: 0 auto;
}
.access-types_item-header h4 {
  font-size: 1.6rem;
  font-weight: 600;
}

.wristband {
  scale: 1.5;
}
@media only screen and (max-width: 37.5em) {
  .wristband {
    scale: 1.8;
  }
}
@media only screen and (max-width: 25em) {
  .wristband {
    scale: 1.8;
  }
}

.onity-card {
  border: 0.1rem solid rgba(170, 170, 170, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 0.1rem rgba(170, 170, 170, 0.8);
}

.features {
  height: auto;
  padding: 5rem 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(249, 247, 246, 0.1)), url(../img/Handles/Serene_Hotel_Door.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.features-box {
  max-width: 55%;
  padding: 5rem;
  background-color: rgba(249, 247, 246, 0.8);
  border-radius: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .features-box {
    max-width: 65%;
    padding: 2.5rem;
    padding-left: 3.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .features-box {
    max-width: 65%;
    padding: 2.5rem;
    padding-left: 3.5rem;
  }
}
.features-box_header {
  font-size: 2rem;
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #c69963;
}
.features-box_text {
  font-size: 1.8rem;
}

ul > li {
  margin-bottom: 1rem;
}

table {
  border-collapse: collapse;
  max-width: 100%;
  font-size: 1.6rem;
}

th,
td {
  border: 0.2rem solid #c69963;
  padding: 1rem;
  text-align: left;
}

.table-image {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .table-image {
    display: block;
  }
}
@media only screen and (max-width: 25em) {
  .table-image {
    display: block;
  }
}

.inter-view {
  justify-items: center;
  padding: 2rem;
}
.inter-view img {
  display: block;
  width: 70%;
  margin: 0 auto;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .inter-view img {
    width: 50%;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 25em) {
  .inter-view img {
    width: 40%;
    margin-bottom: 1.5rem;
  }
}
.inter-view img:hover {
  transform: scale(1.2);
}

.inter-view_ansi img {
  margin: 0 auto;
}
.inter-view_ansi img:hover {
  transform: scale(1.15);
}

.dim-euro {
  display: block;
  text-align: center;
  transition: all 0.3s;
}
.dim-euro img {
  width: 90%;
}
.dim-euro:hover {
  transform: scale(1.1);
}

.technical-description {
  background-color: rgba(170, 170, 170, 0.3);
  height: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.technical-description_header {
  text-align: center;
  margin-bottom: 7rem;
  border-bottom: 0.1rem solid #c69963;
}
.technical-description_header h2 {
  color: #b28451;
  font-size: 4rem;
  font-weight: 500;
}

.accordion {
  max-width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

.accordion label {
  position: relative;
  font-size: 2rem;
  background-color: rgba(249, 247, 246, 0.9);
  font-weight: 600;
  display: block;
  margin-bottom: 1rem;
  cursor: pointer;
  padding: 1.5rem;
  border: 0.1rem solid #c69963;
}

.accordion label::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 2rem;
  height: 2rem;
  background-image: url(../chevron-forward-outline.svg);
}

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

.accordion .accordion_content {
  max-height: 0.1rem;
  overflow: hidden;
  border-radius: 0.4rem;
  line-height: 1.4;
  opacity: 0;
  transition: all 0.3s ease;
}

.accordion_content table {
  margin: 0 auto;
}

.accordion input[type=checkbox]:checked ~ .accordion_content {
  padding-top: 3rem;
  max-height: 100%;
  padding-bottom: 2.5rem;
  background-color: #f9f7f6;
  margin-bottom: 2rem;
  opacity: 1;
  top: 0;
}

.accordion input[type=checkbox]:checked + label::after {
  transform: rotate(90deg);
}

.special-locks {
  display: grid;
  grid-template-columns: 1fr;
  padding-top: 7rem;
  background-color: rgba(170, 170, 170, 0.1);
  margin-top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .special-locks {
    padding-top: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .special-locks {
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks {
    padding-top: 1rem;
  }
}
.special-locks_header {
  text-align: center;
  font-size: 2.4rem;
  font-family: "Tinos", sans-serif;
  color: #b28451;
  border-bottom: 0.1rem solid #c69963;
  border-top: 0.1rem solid #c69963;
  margin-bottom: 2rem;
  margin-top: 4rem;
  font-weight: 400;
}
.special-locks_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (max-width: 37.5em) {
  .special-locks_item {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_item {
    flex-direction: column-reverse;
  }
}
.special-locks_item-img {
  padding: 3rem 0;
}
.special-locks_item-img img {
  display: block;
  max-width: 50%;
  margin: 0 auto;
  padding: 2rem;
  border: 0.2rem solid #c69963;
  transition: all 0.3s ease;
}
.special-locks_item-img img:hover {
  scale: 1.1;
}
@media only screen and (max-width: 37.5em) {
  .special-locks .special-locks_item--gap {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks .special-locks_item--gap {
    margin-bottom: 4rem;
  }
}
.special-locks .panic-bar {
  scale: 1.1;
}
.special-locks_item-text {
  padding: 0 3rem;
  max-width: 50%;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media only screen and (max-width: 37.5em) {
  .special-locks_item-text {
    max-width: 90%;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_item-text {
    max-width: 90%;
  }
}
.special-locks_item-text--header {
  color: #b28451;
  text-align: center;
  font-size: 2rem;
  font-family: "Tinos", sans-serif;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .special-locks_item-text--header {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_item-text--header {
    margin-bottom: 0;
  }
}
.special-locks_block-glass {
  height: 90vh;
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(170, 170, 170, 0.2)), url(../img/Handles/office_forglass.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .special-locks_block-glass {
    height: auto;
    padding: 5rem 1rem;
    margin: 3rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .special-locks_block-glass {
    flex-direction: column;
    height: auto;
    padding: 5rem 1rem;
    margin: 3rem 0;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_block-glass {
    flex-direction: column;
    height: auto;
    padding: 5rem 1rem;
    margin: 3rem 0;
  }
}
.special-locks .block-glass_image {
  padding: 3rem 0;
  background-color: rgba(249, 247, 246, 0.2);
  border-radius: 0.1rem;
  box-shadow: 0 0.4rem 3rem rgba(249, 247, 246, 0.2);
  backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.special-locks .block-glass_image img {
  border: 0.2rem double rgba(0, 0, 0, 0.3);
  display: block;
  width: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.special-locks .block-glass_image img:hover {
  scale: 1.1;
}
.special-locks_block-text {
  max-height: fit-content;
  max-width: 40%;
  font-size: 1.8rem;
  line-height: 1.7;
  padding: 3rem;
  background: rgba(249, 247, 246, 0.5);
  border-radius: 0.1rem;
  box-shadow: 0 0.4rem 3rem rgba(249, 247, 246, 0.2);
  backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 56.25em) {
  .special-locks_block-text {
    max-width: 55%;
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .special-locks_block-text {
    max-width: 95%;
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_block-text {
    max-width: 95%;
    backdrop-filter: none;
  }
}
.special-locks_block-text--header {
  text-align: center;
  font-size: 2rem;
  font-family: "Tinos", sans-serif;
  margin-bottom: 1rem;
}

.panic-cta_box {
  text-align: right;
}

.glass-cta_box {
  text-align: right;
}

@media only screen and (max-width: 37.5em) {
  .sliding-cta_box {
    text-align: right;
  }
}
@media only screen and (max-width: 25em) {
  .sliding-cta_box {
    text-align: right;
  }
}

.glass-cta_box a {
  background-color: rgba(249, 247, 246, 0.2);
  border-radius: 0.1rem;
  box-shadow: 0 0.4rem 3rem rgba(249, 247, 246, 0.2);
  backdrop-filter: blur(0.5rem);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 56.25em) {
  .glass-cta_box a {
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .glass-cta_box a {
    backdrop-filter: none;
  }
}
@media only screen and (max-width: 25em) {
  .glass-cta_box a {
    backdrop-filter: none;
  }
}

.glass-cta_box a:hover {
  scale: 1.02;
  color: #333;
  background-color: rgba(170, 170, 170, 0.2);
}

.cta {
  background-color: #c69963;
  border: 0.1rem solid #b28451;
  border-radius: 0.3rem;
  color: #333;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  margin-top: 2rem;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 37.5em) {
  .cta {
    margin-top: 0;
  }
}
@media only screen and (max-width: 25em) {
  .cta {
    margin-top: 0;
  }
}
.cta:hover {
  scale: 1.02;
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  background-color: #b28451;
  color: #f9f7f6;
}
.cta:active {
  scale: 0.95;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5 1rem rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 37.5em) {
  .cta-trill-rfid {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .cta-trill-rfid {
    margin-top: 2rem;
  }
}

.modaloverlay {
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s;
  z-index: -1;
  display: none;
}
.modaloverlay:target {
  display: block;
  opacity: 1;
  pointer-events: auto;
  z-index: 99999;
}
@media only screen and (max-width: 56.25em) {
  .modaloverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70vh;
    width: 100vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .modaloverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60vh;
    width: 100vw;
  }
}
@media only screen and (max-width: 25em) {
  .modaloverlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 60vh;
    width: 100vw;
  }
}

.modal {
  background-color: rgba(170, 170, 170, 0.1);
  height: 100%;
  margin: 0 auto;
  padding: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .modal {
    padding: 1rem;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 25em) {
  .modal {
    padding: 1rem;
    overflow-y: scroll;
  }
}
.modal > iframe,
.modal > div {
  width: 100%;
  height: 100%;
}

.modal_content {
  padding: 3rem;
  background-color: rgba(249, 247, 246, 0.9);
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .modal_content {
    padding: 1rem;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 25em) {
  .modal_content {
    padding: 1rem;
    overflow-y: scroll;
  }
}

.close {
  display: block;
  background-color: #f9f7f6;
  color: #b28451;
  font-size: 3rem;
  padding: 0.5rem 1.5rem;
  position: absolute;
  right: 1rem;
  text-align: center;
  text-decoration: none;
  top: 1rem;
  z-index: 1;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
  border: #b28451;
  transition: all 0.3s ease;
}
.close:hover {
  color: #f9f7f6;
  background-color: #c69963;
}

.modal_header {
  padding-top: 2rem;
  text-align: center;
  font-size: 2.2rem;
  font-family: "Tinos", sans-serif;
}

.slider {
  max-width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .slider {
    overflow: scroll;
  }
}
@media only screen and (max-width: 25em) {
  .slider {
    overflow: scroll;
  }
}

.switch input {
  display: none;
  appearance: none;
}

.controls {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 100;
}
@media only screen and (max-width: 37.5em) {
  .controls {
    display: none;
  }
}
@media only screen and (max-width: 25em) {
  .controls {
    display: none;
  }
}

.controls label {
  width: 2rem;
  height: 2rem;
  background-color: #b28451;
  border-radius: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.5s;
}
@media only screen and (max-width: 56.25em) {
  .controls label {
    width: 4rem;
    height: 4rem;
  }
}

.switch input:nth-child(1):checked ~ .controls label:nth-child(1),
.switch input:nth-child(2):checked ~ .controls label:nth-child(2),
.switch input:nth-child(3):checked ~ .controls label:nth-child(3) {
  opacity: 1;
  width: 5rem;
}
@media only screen and (max-width: 56.25em) {
  .switch input:nth-child(1):checked ~ .controls label:nth-child(1),
  .switch input:nth-child(2):checked ~ .controls label:nth-child(2),
  .switch input:nth-child(3):checked ~ .controls label:nth-child(3) {
    width: 10rem;
  }
}

.wrapper {
  position: relative;
  width: 300%;
  display: flex;
  transition: 0.5s;
}

.wrapper .box {
  width: 100vw;
  height: 100vh;
  display: flex;
}
@media only screen and (max-width: 37.5em) {
  .wrapper .box {
    height: 80vh;
  }
}
@media only screen and (max-width: 25em) {
  .wrapper .box {
    height: 80vh;
  }
}

.wrapper .box:nth-child(1) {
  background: #fff;
}

.wrapper .box:nth-child(2) {
  background: #fff;
}

.wrapper .box:nth-child(3) {
  background: #fff;
}

.switch input:nth-child(1):checked ~ .wrapper {
  left: 0;
}

.switch input:nth-child(2):checked ~ .wrapper {
  left: -100%;
}

.switch input:nth-child(3):checked ~ .wrapper {
  left: -200%;
}

.wrapper .content-panic {
  width: 100%;
}

.wrapper .content-sliding {
  width: 100%;
}

.panic-header {
  font-size: 4rem;
  padding: 2rem;
  text-align: center;
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-weight: 600;
  margin-bottom: 4rem;
}

.panic-features_box {
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 37.5em) {
  .panic-features_box {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .panic-features_box {
    flex-direction: column;
  }
}

.panic-features_item1 {
  padding: 2rem 4rem;
  background-color: rgba(198, 153, 99, 0.1);
  border-radius: 0.3rem;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .panic-features_item1 {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .panic-features_item1 {
    width: 100%;
    margin-bottom: 3rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .panic-features_item2 {
    width: 90%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 25em) {
  .panic-features_item2 {
    width: 90%;
    margin: 0 auto;
  }
}

.panic-features_header {
  font-size: 2.4rem;
  color: #b28451;
  font-weight: 500;
  border-bottom: 0.1rem solid #b28451;
  margin-bottom: 1rem;
}

.panic-image_box1 {
  display: flex;
  align-items: center;
  justify-items: center;
}

.panic-image_box1 img {
  display: block;
  width: 50%;
  justify-self: center;
  transition: all 0.2s;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .panic-image_box1 img {
    width: 40%;
  }
}
@media only screen and (max-width: 25em) {
  .panic-image_box1 img {
    width: 40%;
  }
}

.panic-image_box1 img:hover {
  scale: 1.1;
}

.antipanic-image_box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .antipanic-image_box {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .antipanic-image_box {
    flex-direction: column;
  }
}

.antipanic-image_box {
  justify-items: center;
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .antipanic-image_box {
    width: 80%;
    justify-items: auto;
  }
}
@media only screen and (max-width: 25em) {
  .antipanic-image_box {
    width: 80%;
    justify-items: auto;
  }
}

.antipanic-image_box img {
  display: block;
  width: 80%;
  border: 0.1rem solid #c69963;
}

.sliding-header {
  font-size: 4rem;
  padding: 2rem;
  text-align: center;
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-weight: 600;
  margin-bottom: 4rem;
}

.sliding-header_two {
  font-size: 3rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.sliding-features_box {
  width: 80%;
  margin: 0 auto;
  padding: 3rem 6rem;
  background-color: rgba(198, 153, 99, 0.1);
  border-radius: 0.3rem;
}

.sliding-features_box table {
  width: 80%;
  margin: 0 auto;
  display: block;
}

.sliding-features_image {
  width: 50%;
  margin: 0 auto;
}

.sliding-features_image img {
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.sliding-features_image img:hover {
  scale: 1.1;
}

.sliding-features_header {
  font-size: 2.6rem;
  color: #b28451;
  font-weight: 500;
  border-bottom: 0.1rem solid #b28451;
  margin-bottom: 1rem;
}

.panic-ul {
  font-size: 2rem;
}
.panic-ul li {
  display: block;
  text-align: center;
}

.glass-box {
  padding: 1rem 4rem;
  height: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .glass-box {
    height: auto;
  }
}
@media only screen and (max-width: 25em) {
  .glass-box {
    height: auto;
  }
}

.glass-box_header {
  text-align: center;
  padding: 2rem;
}

.glass-header {
  font-size: 3rem;
  color: #b28451;
  font-family: "Tinos", sans-serif;
  margin-bottom: 2rem;
}

.glass-box_content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .glass-box_content {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .glass-box_content {
    flex-direction: column;
  }
}

.glass-features1 {
  width: 40%;
}
@media only screen and (max-width: 37.5em) {
  .glass-features1 {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .glass-features1 {
    width: 100%;
  }
}
.glass-features1_header1 {
  font-size: 2rem;
  color: #b28451;
  border-bottom: 0.1rem solid #c69963;
  margin-bottom: 1rem;
}

.glass-ul {
  font-size: 1.8rem;
}

.glass-features2 {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .glass-features2 {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .glass-features2 {
    width: 100%;
  }
}
.glass-features2_header2 {
  font-size: 2rem;
  color: #b28451;
}

.glass-table {
  font-size: 1.6rem;
}

.content-mag {
  padding: 0 3rem;
}

.mag-header {
  display: block;
  text-align: center;
  color: #b28451;
  font-family: "Tinos", sans-serif;
  font-size: 3.2rem;
  padding: 2rem;
}

.mag-features_box {
  padding: 2rem 4rem;
  background-color: rgba(170, 170, 170, 0.1);
  border-radius: 0.3rem;
}
@media only screen and (max-width: 37.5em) {
  .mag-features_box {
    padding: 2rem;
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 25em) {
  .mag-features_box {
    padding: 2rem;
    padding-left: 4rem;
  }
}

.mag-features_box-slide2 {
  padding: 2rem 4rem;
  background-color: rgba(170, 170, 170, 0.1);
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}
@media only screen and (max-width: 37.5em) {
  .mag-features_box-slide2 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .mag-features_box-slide2 {
    flex-direction: column;
  }
}

.mag-features_header {
  font-size: 2.8rem;
  font-family: "Tinos", sans-serif;
  text-align: center;
  color: #b28451;
  border-bottom: 0.1rem solid #c69963;
}

.mag-ul {
  padding: 0 3rem;
  font-size: 1.8rem;
  column-count: 2;
  column-gap: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .mag-ul {
    column-count: 1;
    padding: 1rem;
  }
}
@media only screen and (max-width: 25em) {
  .mag-ul {
    column-count: 1;
    padding: 1rem;
  }
}

.mag-specs {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .mag-specs {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .mag-specs {
    width: 100%;
  }
}

.mag-features_image {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .mag-features_image {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .mag-features_image {
    width: 100%;
  }
}
.mag-features_image img {
  display: block;
  width: 50%;
  justify-self: center;
  margin: 0 auto;
}

.mag-features_box3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.mag-handles {
  display: flex;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .mag-handles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 25em) {
  .mag-handles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.mag-handles_item {
  width: 30%;
  align-items: center;
  justify-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .mag-handles_item {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .mag-handles_item {
    width: 100%;
  }
}
.mag-handles_item > img {
  display: block;
  width: 60%;
  justify-self: center;
  margin: 0 auto;
}

.additional-finish_header--mag {
  color: #b28451;
}

.additional-finish_box--mag {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .additional-finish_box--mag {
    width: 70%;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finish_box--mag {
    width: 70%;
  }
}

.magad-features_box-slide2 {
  padding: 2rem;
  background-color: rgba(170, 170, 170, 0.1);
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .magad-features_box-slide2 {
    padding: 5rem;
    flex-direction: column;
    gap: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .magad-features_box-slide2 {
    padding: 5rem;
    flex-direction: column;
    gap: 3rem;
  }
}

.magad-features_image {
  width: 90%;
  margin: 0 auto;
}
.magad-features_image img {
  display: block;
  width: 60%;
  margin: 0 auto;
  justify-self: center;
}
.magad-features_image .adv {
  display: block;
  width: 90%;
}

.magad-features_box3 {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-items: center;
  justify-content: space-evenly;
  gap: 1rem;
}
@media only screen and (max-width: 37.5em) {
  .magad-features_box3 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .magad-features_box3 {
    flex-direction: column;
  }
}

.magad-handles {
  width: 100%;
  display: flex;
  align-items: center;
  justify-items: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 37.5em) {
  .magad-handles {
    gap: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .magad-handles {
    gap: 3rem;
  }
}
.magad-handles_item {
  justify-items: center;
}
.magad-handles_item img {
  clip-path: circle(45%);
  display: block;
  width: 70%;
  border-radius: 0.3rem;
  transition: all 0.2s ease-in;
}
@media only screen and (max-width: 37.5em) {
  .magad-handles_item img {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .magad-handles_item img {
    width: 100%;
  }
}
.magad-handles_item img:hover {
  transform: scale(1.2);
  clip-path: circle(40%);
}
.magad-handles h4 {
  font-size: 1.6rem;
}

.mag-ad_table {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .mag-ad_table {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .mag-ad_table {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.table-magad {
  display: block;
}
.table-magad th, .table-magad td {
  width: 10%;
}
@media only screen and (max-width: 37.5em) {
  .table-magad th, .table-magad td {
    width: auto;
  }
}
@media only screen and (max-width: 25em) {
  .table-magad th, .table-magad td {
    width: auto;
  }
}

.magad-2flex {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .magad-2flex {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .magad-2flex {
    width: 100%;
  }
}

.additional-finish_box--magad {
  width: 70%;
}
@media only screen and (max-width: 37.5em) {
  .additional-finish_box--magad {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finish_box--magad {
    width: 100%;
  }
}

.additional-finishes_magad {
  display: flex;
  align-items: center;
  justify-items: center;
  gap: 3rem;
}
.additional-finishes_magad-item {
  justify-items: center;
  align-items: center;
}
.additional-finishes_magad-picture {
  clip-path: circle(30%);
  width: 100%;
}
.additional-finishes_magad-picture img {
  display: block;
  width: 90%;
}
@media only screen and (max-width: 37.5em) {
  .additional-finishes_magad-picture img {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .additional-finishes_magad-picture img {
    width: 100%;
  }
}

.credentials-trill {
  padding: 6rem 2rem;
}
.credentials-trill_header {
  text-align: center;
  color: #b28451;
  font-size: 2.6rem;
  font-family: "Tinos", sans-serif;
  margin-bottom: 4rem;
}
.credentials-trill_box {
  display: flex;
  padding: 2rem;
  border: 0.2rem solid #b28451;
  border-top: none;
}
@media only screen and (max-width: 37.5em) {
  .credentials-trill_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
  }
}
@media only screen and (max-width: 25em) {
  .credentials-trill_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    row-gap: 2rem;
  }
}
.credentials-trill_item {
  align-items: center;
  justify-items: center;
  width: 100%;
}
.credentials-trill_item img {
  align-self: center;
  justify-self: center;
  display: block;
  width: 30%;
  margin-bottom: 1rem;
  margin: 0 auto;
}
.credentials-trill_item h4 {
  align-self: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
}
.credentials-trill_item .magstripe {
  width: 65%;
  margin-bottom: 1.45rem;
}
.credentials-trill_item .onity-card-trill {
  border-radius: 0.3rem;
  border: 0.1rem solid rgba(170, 170, 170, 0.9);
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.2);
  width: 33%;
}
.credentials-trill_item .wristband-trill {
  width: 40%;
  scale: 1.8;
}
.credentials-trill_item .keyfob-trill {
  width: 33%;
  scale: 1.1;
}
.credentials-trill_item .direct-key-trill {
  width: 27%;
  margin-bottom: 0.3rem;
}

.trill-features_box3 {
  display: flex;
  align-items: center;
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .trill-features_box3 {
    flex-direction: column;
  }
}
@media only screen and (max-width: 25em) {
  .trill-features_box3 {
    flex-direction: column;
  }
}

.trill-rfid_table {
  padding: 0 2rem;
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .trill-rfid_table {
    width: 100%;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .trill-rfid_table {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.trill-handles {
  width: 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  justify-items: center;
}
@media only screen and (max-width: 37.5em) {
  .trill-handles {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .trill-handles {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}
.trill-handles_item {
  width: 40%;
  align-items: center;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .trill-handles_item {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .trill-handles_item {
    width: 100%;
  }
}
.trill-handles_item > img {
  display: block;
  width: 70%;
  justify-self: center;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .trill-handles_item > img {
    width: 100%;
  }
}
@media only screen and (max-width: 25em) {
  .trill-handles_item > img {
    width: 100%;
  }
}
.trill-handles_item > img:hover {
  transform: scale(1.5);
}
.trill-handles h4 {
  text-align: center;
}

.header-range {
  text-align: center;
  padding: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .header-range {
    padding: 1rem;
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 25em) {
  .header-range {
    padding: 1rem;
    padding-top: 3rem;
  }
}
.header-range h2 {
  font-family: "Tinos", sans-serif;
  font-size: 4rem;
  color: #b28451;
  border-bottom: 0.2rem solid #c69963;
}

.special-locks_block-bg {
  margin: 5rem 0;
  height: 80vh;
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(170, 170, 170, 0.3)), url("../img/Handles/Trillium_RFID_bg.png");
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 56.25em) {
  .special-locks_block-bg {
    height: 35vh;
    margin: 3rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .special-locks_block-bg {
    height: 25vh;
    margin: 3rem 0;
  }
}
@media only screen and (max-width: 25em) {
  .special-locks_block-bg {
    height: 25vh;
    margin: 3rem 0;
  }
}

/*# sourceMappingURL=style.css.map */
