@font-face {
  font-family: "Acumin";
  src: url("../font/AcuminVariableConcept.otf") format("opentype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Acumin", sans-serif;
}

html {
  scroll-behavior: smooth;
}

header {
  height: 5rem;
  width: 100%;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
header .left {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
header .left a .logo__img {
  width: 7.5rem;
}
header .left h4 {
  font-size: 1.4em;
  font-weight: 400;
}
header .left h4 a {
  color: #000;
  text-decoration: none;
}
header .left nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
header .left nav a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s ease;
}
header .left nav a:hover {
  transform: scale(1.1);
  text-shadow: 0 0 35px #dc1a1a;
}
header .right {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  position: relative;
}
header .right button {
  background: none;
  border: none;
  cursor: pointer;
}
header .right .dropdown__menu {
  position: absolute;
  bottom: 0;
  left: 100%;
  display: none;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  transform: translate(-100%, 100%);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
header .right .dropdown__menu .dropdown__menu__part {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  row-gap: 0.5rem;
}
header .right .dropdown__menu .dropdown__menu__part#dropdown__maintenance, header .right .dropdown__menu .dropdown__menu__part#dropdown__repairs {
  display: none;
}
header .right .dropdown__menu .dropdown__menu__part#dropdown__maintenance {
  width: 275px;
}
header .right .dropdown__menu .dropdown__menu__part#dropdown__repairs {
  width: 250px;
}
header .right .dropdown__menu .dropdown__menu__part a {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s ease;
  color: #000;
  text-decoration: none;
}
header .right .dropdown__menu .dropdown__menu__part a:hover {
  transform: scale(1.025);
}
header .right .dropdown__menu .dropdown__menu__part a svg {
  height: 1.5em;
  width: 1.5em;
}

.offcanvas {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.offcanvas.repairs {
  display: none;
  z-index: 41;
}
.offcanvas .close__btn {
  background: none;
  border: none;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.offcanvas .close__btn.back {
  right: initial;
  left: 20px;
}
.offcanvas .close__btn svg {
  height: 30px;
  width: 30px;
  color: #DC1A1A;
}
.offcanvas .mobile__offcanvas {
  display: none;
}
.offcanvas .mobile__offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1em;
  text-decoration: none;
  border-bottom: 0.2rem solid #DC1A1A;
}
.offcanvas .mobile__offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .menu {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 5rem 10%;
}
.offcanvas .menu details {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
}
.offcanvas .menu details summary {
  font-size: 1.5em;
  font-weight: 600;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.offcanvas .menu details summary img {
  height: 35px;
  width: 35px;
}
.offcanvas .menu details a {
  color: #000;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9em;
  margin: 0.5rem;
  text-decoration: none;
}
.offcanvas .menu details a:hover span {
  transform: scale(1.025);
}
.offcanvas .menu details a span {
  margin-top: 0.25rem;
}
.offcanvas .menu details a svg {
  height: 1.35em;
  width: 1.35em;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 1300px) {
  header .left a .logo__img {
    width: 4rem;
  }
  header .left nav {
    gap: 1.5rem;
  }
  header .left nav a {
    font-size: 0.75em;
  }
  header .right button svg {
    color: #fff;
  }
}
@media only screen and (max-width: 700px) {
  header .left .logo {
    color: #fff;
  }
  header .left nav {
    display: none;
    color: #fff;
  }
  header .right button svg {
    color: #fff;
  }
  .offcanvas {
    display: flex;
    width: 100%;
  }
  .offcanvas .mobile__offcanvas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: 100%;
  }
  .offcanvas .menu {
    display: none;
  }
  .offcanvas.repairs {
    display: flex;
    background: rgb(8, 13, 36);
    background: linear-gradient(0deg, rgb(8, 13, 36) 0%, rgb(13, 31, 63) 100%);
  }
  .offcanvas.repairs #repairs__close {
    color: #fff;
  }
  .offcanvas.repairs nav {
    width: 100%;
    padding: 0 10%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column;
    gap: 2rem;
  }
  .offcanvas.repairs nav section {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column;
    gap: 0.35rem;
  }
  .offcanvas.repairs nav section h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
  }
  .offcanvas.repairs nav section h2 img {
    height: 30px;
    width: 30px;
  }
  .offcanvas.repairs nav section a {
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9em;
  }
  .offcanvas.repairs nav section a span {
    display: block;
    margin-top: 0.25rem;
  }
  .offcanvas.repairs nav section a svg {
    height: 1.35em;
    width: 1.35em;
  }
}
.btn {
  background: none;
  border: none;
  cursor: pointer;
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DC1A1A;
  padding: 0.75em 1.5em;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 500;
}
.btn:hover a {
  outline: 2px solid #DC1A1A;
}

.bottom__images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.bottom__images img {
  height: 15rem;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  background: #DC1A1A;
  padding: 5rem 10%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
footer h4 {
  font-size: 1.4em;
  font-weight: 400;
  color: #fff;
}
footer h4 a {
  color: #fff;
  text-decoration: none;
}
footer a .logo__img {
  width: 7.5rem;
}
footer nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3rem;
}
footer nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s ease;
  background: none;
}
footer nav a:hover {
  transform: scale(1.1);
  text-shadow: 0 0 35px #dc1a1a;
}

@media only screen and (max-width: 1300px) {
  footer {
    flex-flow: column;
  }
  footer nav {
    gap: 1.5rem;
  }
  footer nav a {
    font-size: 0.85em;
  }
}
@media only screen and (max-width: 850px) {
  footer nav {
    flex-flow: column;
  }
  footer nav a {
    font-size: 0.85em;
  }
}
@media only screen and (max-width: 700px) {
  .bottom__images {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: row wrap;
  }
  .bottom__images img {
    height: 10rem;
    flex: 0 0 33.3333%;
  }
  .bottom__images img:nth-child(4), .bottom__images img:nth-child(5) {
    flex: 0 0 50%;
  }
  footer {
    flex-flow: column;
    width: 100%;
  }
  footer nav {
    justify-content: center;
    flex-flow: column;
  }
  footer nav a {
    font-size: 0.7em;
  }
}
.title {
  height: 100vh;
  width: 100%;
  padding: 5rem 10% 15%;
  display: flex;
  justify-content: start;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.title .bg__parent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.title .bg__parent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.title .bg__parent .bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.title .text__content {
  position: relative;
  z-index: 2;
}
.title .text__content h1 {
  font-size: 2em;
  color: #DC1A1A;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.title .text__content h2 {
  font-size: 4.35em;
  color: #DC1A1A;
  font-weight: 900;
  text-transform: uppercase;
}
.title .text__content h2 span {
  color: #fff;
}
.title .text__content .btn {
  margin-top: 2.5rem;
}

.benefits {
  width: 100%;
  padding: 5rem 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  row-gap: 4rem;
  background: #000;
}
.benefits .item {
  flex: 0 1 25%;
}
.benefits .item:nth-child(2) {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
}
.benefits .item:nth-child(3), .benefits .item:nth-child(5) {
  border-right: 2px solid #fff;
}
.benefits .item img {
  width: 100%;
}

.info__cards .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.info__cards .item:nth-child(2) .part.text {
  background: #000;
}
.info__cards .item:hover .part.text {
  transform: scale(1.075);
}
.info__cards .item:nth-child(even) .part .number {
  right: inherit;
  left: 45px;
}
.info__cards .item .part {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  position: relative;
}
.info__cards .item .part.text {
  padding: 7rem 15%;
  background: #DC1A1A;
  z-index: 2;
  transition: 0.5s ease;
}
.info__cards .item .part img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s ease;
}
.info__cards .item .part .number {
  position: absolute;
  top: 45px;
  right: 45px;
  color: #fff;
  font-weight: 900;
  font-size: 3.5em;
}
.info__cards .item .part .part__content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  transition: 1s ease;
}
.info__cards .item .part .additional__heading {
  font-size: 1.35em;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.info__cards .item .part .heading {
  font-size: 2.25em;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}
.info__cards .item .part .text {
  font-size: 1.35em;
  color: #fff;
  line-height: 1.5em;
  margin: 0.75rem 0;
}
.info__cards .item .part .link {
  color: #fff;
  font-weight: 700;
  font-size: 1.4em;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.info__cards .item .part .link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: #fff;
}

.image__before__contacts {
  width: 100%;
  height: 100%;
  display: block;
}

.contacts {
  padding: 10rem 10%;
  background: #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contacts .item {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-flow: column;
}
.contacts .item .heading {
  font-size: 2.5em;
  color: #fff;
  font-weight: 900;
}
.contacts .item .subheading {
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
}
.contacts .item .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
  padding: 0 10%;
  position: relative;
}
.contacts .item .contact span {
  color: #DC1A1A;
  font-size: 1.3em;
}
.contacts .item .contact svg {
  height: 3rem;
  width: 3rem;
  color: #DC1A1A;
  stroke-width: 1.5;
}

@media only screen and (max-width: 1300px) {
  .title {
    height: 35rem;
    padding: 5rem 10% 7.5%;
  }
  .title .text__content h1 {
    font-size: 1.35em;
  }
  .title .text__content h2 {
    font-size: 3rem;
  }
  .title .text__content .btn {
    margin-top: 1.5rem;
  }
  .title .text__content .btn a {
    font-size: 1.3em;
  }
  .benefits {
    padding: 5rem 5%;
  }
  .benefits .item {
    padding: 0 1rem;
  }
  .benefits .item h2 {
    font-size: 1.25em;
  }
  .info__cards .item .part .number {
    font-size: 2em;
  }
  .info__cards .item .part .additional__heading {
    font-size: 1.15em;
  }
  .info__cards .item .part .heading {
    font-size: 1.75em;
  }
  .info__cards .item .part .text {
    font-size: 0.9em;
  }
  .info__cards .item .part .link {
    font-size: 1.2em;
  }
  .contacts {
    padding: 5rem 5%;
  }
  .contacts .item .heading {
    font-size: 2em;
  }
  .contacts .item .contact {
    flex-flow: column;
    row-gap: 0.5rem;
  }
  .contacts .item .contact span {
    font-size: 1em;
  }
  .contacts .item .contact svg {
    height: 3rem;
    width: 3rem;
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  .title {
    height: 27.5rem;
  }
  .title .text__content h1 {
    font-size: 1em;
  }
  .title .text__content h2 {
    font-size: 2.5em;
  }
  .title .text__content .btn a {
    font-size: 1.15em;
  }
  .info__cards .item .part .additional__heading {
    font-size: 1.15em;
  }
  .info__cards .item .part .heading {
    font-size: 1.75em;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 3rem;
  }
  .benefits .item:nth-child(even)::after {
    content: none;
  }
  .benefits .item h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 700px) {
  .title {
    height: 20rem;
    padding: 5rem 10% 3rem;
  }
  .title .bg__parent::after {
    background: rgba(0, 0, 0, 0.5);
  }
  .title .bg__parent .bg {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .title .text__content h1 {
    font-size: 0.8em;
    margin-bottom: 0.5rem;
  }
  .title .text__content h2 {
    font-size: 1.5em;
  }
  .title .text__content .btn a {
    font-size: 1em;
  }
  .benefits {
    padding: 3rem 5%;
  }
  .benefits .item h2 {
    font-size: 1em;
  }
  .info__cards .item {
    grid-template-columns: 1fr;
    background: rgb(8, 13, 36);
    background: linear-gradient(0deg, rgb(8, 13, 36) 0%, rgb(13, 31, 63) 100%);
    position: relative;
  }
  .info__cards .item:hover .part.text {
    transform: none;
  }
  .info__cards .item .part {
    background: none;
    position: initial;
  }
  .info__cards .item .part.text {
    padding: 3rem 10%;
    order: 2;
  }
  .info__cards .item .part .number {
    right: initial;
    left: 25px;
  }
  .info__cards .item .part .additional__heading {
    font-size: 0.9em;
  }
  .info__cards .item .part .heading {
    font-size: 1.5em;
  }
  .info__cards .item .part .text {
    font-size: 0.75em;
  }
  .info__cards .item .part .link {
    font-size: 1em;
  }
  .info__cards .item .part .link::after {
    height: 2px;
  }
  .contacts {
    grid-template-columns: 1fr;
    padding: 3rem 10%;
    row-gap: 2rem;
  }
  .contacts .item {
    align-items: start;
    width: 100%;
  }
  .contacts .item .heading__parent {
    width: 100%;
  }
  .contacts .item .heading {
    font-size: 1.5em;
    text-align: center;
    width: 100%;
  }
  .contacts .item .subheading {
    font-size: 0.8em;
    text-align: center;
    width: 100%;
  }
  .contacts .item .contact {
    justify-content: start;
    align-items: start;
    padding: 0;
    margin-top: 1rem;
    width: 100%;
  }
  .contacts .item .contact.second {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .contacts .item .contact.second span {
    font-size: 0.9em;
    line-height: 1.4em;
  }
  .contacts .item .contact.second span br {
    display: block;
  }
  .contacts .item .contact svg {
    position: relative;
    left: initial;
    height: 2rem;
    width: 2rem;
  }
  .contacts .item .contact span {
    font-size: 0.9em;
    text-align: center;
    display: block;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */