.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 30px;
}

.hide {
  display: none !important;
}

.active {
  transform: translateX(350px);
}

html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1;
  height: 100%;
  font-family: "Roboto", sans-serif;
}

button {
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: white;
  background-color: #ff3300;
  padding: 20px 40px;
  border: none;
  border-radius: 6px;
  transition: background-color 300ms ease-in-out;
  letter-spacing: 1px;
}
button:hover {
  background-color: #0a0f2b;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

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

li {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.32px;
}

a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: inherit;
}

p {
  font-family: "Roboto", sans-serif;
  line-height: 26px;
  margin: 0;
  padding: 0;
  color: #595959;
}

ul {
  font-family: "Roboto", sans-serif;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 35px;
  color: white;
  margin: 0;
  margin-top: 10px;
  margin-left: -4px;
  line-height: 45px;
  text-align: center;
}
@media (min-width: 30.0625rem) {
  h1 {
    font-size: 40px;
    line-height: 55px;
    text-align: start;
  }
}
@media (min-width: 48.0625rem) {
  h1 {
    font-size: 55px;
    line-height: 65px;
  }
}

h2 {
  color: #0a0f2b;
  line-height: 36px;
}

h3 {
  font-size: 20px;
  color: #0a0f2b;
}

span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.submenu {
  position: relative;
  z-index: 2;
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid #dadbdf;
}
.submenu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 48.0625rem) {
  .submenu__content {
    flex-direction: row;
  }
}
.submenu__contact {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 48.0625rem) {
  .submenu__contact {
    display: flex;
  }
}
.submenu__contact--item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.submenu__contact--icon img {
  width: 2.1875rem;
  height: 2.1875rem;
}
.submenu__contact--text {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.submenu__contact--text span:first-child {
  font-weight: 500;
  color: #0a0f2b;
}
.submenu__contact--text span:nth-child(2) {
  color: #666666;
}
.submenu__contact--button {
  display: none;
}
@media (min-width: 64.0625rem) {
  .submenu__contact--button {
    display: block;
  }
}
.submenu__logo {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.submenu__logo img {
  width: 250px;
}
@media (min-width: 30.0625rem) {
  .submenu__logo {
    justify-content: center;
  }
}
@media (min-width: 48.0625rem) {
  .submenu__logo {
    justify-content: start;
  }
}

.header__menu--desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
}
.header__menu--desktop li {
  font-weight: 500;
  display: inline-block;
  padding: 1.25rem 0;
  margin-right: 1.625rem;
  text-transform: uppercase;
  transition: color 300ms ease-in-out;
}
.header__menu--desktop li:last-child {
  margin-right: 0;
}
.header__menu--desktop a {
  transition: color 300ms ease-in-out;
}
.header__menu--desktop a:hover {
  color: #ff3300;
}
@media (max-width: 48rem) {
  .header__menu--desktop {
    display: none;
  }
}
.header__menu--mobile {
  position: absolute;
  left: -21.875rem;
  height: 100vh;
  width: 12.5rem;
  padding-left: 1.875rem;
  padding-top: 1rem;
  background-color: #0a0f2b;
  transition: transform 0.3s;
  z-index: 5;
}
.header__menu--mobile li {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(0, 0%, 100%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem 0;
  border-bottom: 1px solid #ff3300;
  text-transform: uppercase;
  transition: color 300ms ease-in-out;
}
.header__menu--mobile li:hover {
  color: #ff3300;
}
.header__menu--mobile li:last-child {
  border-bottom: 0;
}
.header__menu--overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 9.75rem;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0s ease;
}
.header__menu--scroll {
  overflow: hidden;
}
.header__toggler {
  margin: 1rem 0;
  width: -moz-fit-content;
  width: fit-content;
}
.header__toggler button {
  all: unset;
}
.header__toggler svg {
  cursor: pointer;
  fill: #0a0f2b;
  width: 1.875rem;
  height: 1.875rem;
  transition: fill 300ms ease-in-out;
}
.header__toggler svg:hover {
  fill: #ff3300;
}
@media (min-width: 48.0625rem) {
  .header__toggler {
    display: none;
  }
}

.slider {
  position: relative;
  background-image: url(/images/slider1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 70vh;
}
.slider__text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 30px;
  text-align: center;
}
@media (min-width: 30.0625rem) {
  .slider__text {
    text-align: start;
  }
}
.slider__text p {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  margin: 1rem 0;
}
@media (min-width: 30.0625rem) {
  .slider__text p {
    text-align: start;
  }
}
@media (min-width: 48.0625rem) {
  .slider__text p {
    margin: 1.875rem 0;
  }
}
.slider__text span {
  font-size: 2.25rem;
  color: #ff3300;
}
@media (min-width: 30.0625rem) {
  .slider__text span {
    font-size: 2.5rem;
    line-height: 55px;
    text-align: start;
  }
}
@media (min-width: 48.0625rem) {
  .slider__text span {
    font-size: 3.5rem;
    line-height: 65px;
  }
}

.about {
  padding-top: 5rem;
}
@media (min-width: 64.0625rem) {
  .about {
    padding-top: 7.5rem;
  }
}
.about__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 3rem;
}
@media (min-width: 48.0625rem) {
  .about__content {
    flex-direction: row;
    gap: 1.5rem;
  }
}
@media (min-width: 64.0625rem) {
  .about__content {
    gap: 6.25rem;
  }
}
@media (min-width: 48.0625rem) {
  .about__text {
    width: 50%;
  }
}
.about__text--header {
  margin-bottom: 3.75rem;
}
.about__text--header span {
  font-weight: 500;
  color: #595959;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about__text--header h2 {
  line-height: 36px;
  margin: 1rem 0;
}
.about__text--item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.about__text--icon img {
  width: 3rem;
  height: 3rem;
}
@media (min-width: 48.0625rem) {
  .about__text--content {
    width: 75%;
  }
}
.about__text--content h3 {
  margin-bottom: 1rem;
}
.about__image {
  background-image: url(/images/about.webp);
  background-position: 20% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 18.75rem;
  border-radius: 10px;
}
@media (min-width: 30.0625rem) {
  .about__image {
    background-position: 25% 25%;
    height: 25rem;
  }
}
@media (min-width: 48.0625rem) {
  .about__image {
    background-position: 50% 50%;
    width: 50%;
    height: unset;
  }
}

.services {
  padding-top: 5rem;
}
@media (min-width: 64.0625rem) {
  .services {
    padding-top: 7.5rem;
  }
}
.services__title {
  margin-bottom: 3rem;
}
.services__title span {
  font-weight: 500;
  letter-spacing: 1px;
  color: #595959;
  text-transform: uppercase;
}
.services__title h2 {
  margin-top: 0.625rem;
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 30.0625rem) {
  .services__content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px;
    row-gap: 2rem;
  }
}
.services__item p {
  margin: 1rem 0;
  line-height: 26px;
  margin-bottom: 25px;
}
.services__item a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.75px;
  color: #ff3300;
  transition: color 300ms ease-in-out;
  border-top: 1px solid #0a0f2b;
  padding-top: 10px;
  margin-top: 10px;
}
.services__item a:hover {
  color: #0a0f2b;
}
@media (min-width: 30.0625rem) {
  .services__item {
    width: 48%;
  }
}
@media (min-width: 64.0625rem) {
  .services__item {
    width: 32%;
  }
}
.services__item--overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0a0f2b;
  opacity: 0;
  transition: all 500ms ease-in-out;
}
.services__item--overlay svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5rem;
  height: 2.5rem;
  fill: #ff3300;
}
.services__item--img {
  position: relative;
  width: 100%;
  margin-bottom: 2.25rem;
}
.services__item--img:hover .services__item--overlay {
  opacity: 0.8;
}
.services__item--img img {
  height: auto;
  width: 100%;
}
.services__button {
  margin-top: 80px;
  text-align: center;
}

.process {
  background-color: #f7f7f7;
  margin-top: 7.5rem;
}
.process__title {
  padding: 48px 0;
  margin-top: 48px;
}
.process__title span {
  font-weight: 500;
  letter-spacing: 1px;
  color: #595959;
  text-transform: uppercase;
}
.process__title h2 {
  margin-top: 0.625rem;
  margin-bottom: 3.75rem;
}
.process__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 30.0625rem) {
  .process__content {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.process__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 1.875rem;
}
.process__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 30.0625rem) {
  .process__item {
    width: 48%;
  }
}
@media (min-width: 64.0625rem) {
  .process__item {
    width: 23%;
    margin-bottom: 0;
  }
}
.process__item--img {
  margin-bottom: 2.5rem;
}
.process__item--img img {
  height: 3.125rem;
}
.process__item h3 {
  margin-bottom: 1rem;
}
.process__item p {
  color: #595959;
}

.gallery__title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 48px;
  margin-top: 48px;
  margin-bottom: 3.75rem;
}
.gallery__title span {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #595959;
}
.gallery__title h2 {
  margin-top: 0.625rem;
}
.gallery__title a {
  font-weight: 500;
  text-decoration: none;
  color: #ff3300;
  transition: all 500ms ease-in-out;
}
.gallery__title a:hover {
  color: #0a0f2b;
}
.gallery__content {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 48.0625rem) {
  .gallery__content {
    flex-direction: row;
  }
}
.gallery__content--overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #0a0f2b;
  transition: all 700ms ease-in-out;
  z-index: 2;
}
.gallery__content--overlay:hover {
  opacity: 0;
}
.gallery__content--overlay:hover .gallery__content--title {
  opacity: 0;
}
.gallery__content--title {
  position: absolute;
  left: 5%;
  bottom: 5%;
  color: hsl(0, 0%, 100%);
  font-size: 1rem;
  letter-spacing: 1px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #ff3300;
  transition: all 700ms ease-in-out;
}
.gallery__content--description {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 700ms ease-in-out;
  background-color: rgba(255, 51, 0, 0.7);
  padding: 1.25rem;
  z-index: 1;
}
.gallery__content--description p {
  color: white;
}
.gallery__content--left {
  position: relative;
  padding-bottom: 100%;
  width: 100%;
  background-image: url(/images/gallery/gallery-1.webp);
  background-position: center center;
  background-size: cover;
}
@media (min-width: 48.0625rem) {
  .gallery__content--left {
    padding-bottom: 50%;
    width: 50%;
    height: 0;
    margin: 0 auto;
  }
}
.gallery__content--left:hover .gallery__content--description {
  opacity: 1;
}
.gallery__content--right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 48.0625rem) {
  .gallery__content--right {
    width: 50%;
  }
}
.gallery__content--item {
  position: relative;
  padding-bottom: 50%;
  width: 50%;
  background-position: center center;
  background-size: cover;
}
@media (min-width: 48.0625rem) {
  .gallery__content--item {
    padding-bottom: 50%;
    width: 50%;
    height: 0;
    margin: 0 auto;
  }
}
.gallery__content--item1 {
  background-image: url(/images/gallery/gallery-6.webp);
}
.gallery__content--item1:hover .gallery__content--description {
  opacity: 1;
}
.gallery__content--item2 {
  background-image: url(/images/gallery/gallery-9.webp);
}
.gallery__content--item2:hover .gallery__content--description {
  opacity: 1;
}
.gallery__content--item3 {
  background-image: url(/images/gallery/gallery-5.webp);
}
.gallery__content--item3:hover .gallery__content--description {
  opacity: 1;
}
.gallery__content--item4 {
  background-image: url(/images/gallery/gallery-8.webp);
}
.gallery__content--item4:hover .gallery__content--description {
  opacity: 1;
}
.gallery__machines {
  display: flex;
}

.machines {
  display: flex;
  flex-wrap: wrap;
}

.projects {
  margin-top: 100px;
  margin-bottom: 100px;
}
.projects a {
  position: relative;
}
.projects a:hover .projects__overlay {
  opacity: 0.7;
}
.projects__content {
  display: flex;
  flex-direction: column;
}
.projects__content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ff3300;
  width: -moz-fit-content;
  width: fit-content;
}
.projects__content h2:nth-last-child(2) {
  margin-top: 80px;
}
.projects__row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48.0625rem) {
  .projects__row {
    flex-direction: row;
  }
}
.projects__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0a0f2b;
  opacity: 0;
  transition: all 500ms ease-in-out;
}
.projects__overlay svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  z-index: 1;
  fill: #ff3300;
}
@media (min-width: 48.0625rem) {
  .projects__left {
    width: 50%;
  }
}
.projects__right {
  display: flex;
  flex-wrap: wrap;
}
.projects__right a {
  width: 50%;
}
@media (min-width: 48.0625rem) {
  .projects__right {
    width: 50%;
  }
}
.projects__full {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48.0625rem) {
  .projects__full {
    flex-direction: row;
  }
}

.footer {
  background-color: #f7f7f7;
}
.footer__top {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 3.125rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  margin-bottom: 3.125rem;
  border-bottom: 1px solid #cccccc;
}
@media (min-width: 30.0625rem) {
  .footer__top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    row-gap: 25px;
  }
}
.footer__top--item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 1.5625rem;
}
@media (min-width: 30.0625rem) {
  .footer__top--item {
    width: 50%;
    justify-content: start;
  }
}
@media (min-width: 48.0625rem) {
  .footer__top--item {
    justify-content: center;
  }
}
@media (min-width: 64.0625rem) {
  .footer__top--item {
    width: 25%;
  }
}
.footer__top--item img {
  width: 3.125rem;
  height: auto;
}
.footer__top--item h4 {
  margin: 0;
  color: #ff3300;
  margin-bottom: 0.625rem;
}
.footer__top--item p {
  margin: 0;
  color: #0a0f2b;
  line-height: 26px;
}
.footer__top--item svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: #0a0f2b;
}
.footer__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 30.0625rem) {
  .footer__main {
    flex-direction: row;
    gap: 1.25rem;
  }
}
@media (min-width: 64.0625rem) {
  .footer__main {
    gap: 0;
  }
}
.footer__main--left {
  width: 100%;
}
@media (min-width: 30.0625rem) {
  .footer__main--left {
    width: 50%;
  }
}
@media (min-width: 48.0625rem) {
  .footer__main--left {
    width: 35%;
  }
}
@media (min-width: 64.0625rem) {
  .footer__main--left {
    width: 35%;
  }
}
.footer__main--right {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 30.0625rem) {
  .footer__main--right {
    justify-content: space-evenly;
    gap: 0.625rem;
    width: 50%;
  }
}
@media (min-width: 48.0625rem) {
  .footer__main--right {
    width: 65%;
  }
}
@media (min-width: 64.0625rem) {
  .footer__main--right {
    width: 65%;
    justify-content: end;
    gap: 12.5rem;
  }
}
.footer__main--item p {
  color: #0a0f2b;
  line-height: 26px;
}
.footer__main--item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #0a0f2b;
}
.footer__main--item li {
  margin-bottom: 1rem;
  transition: color 300ms ease-in-out;
}
.footer__main--item li:hover {
  color: #ff3300;
}
.footer__main--item h3 {
  font-size: 1.25rem;
  color: #0a0f2b;
  margin: 0;
  margin-bottom: 1.875rem;
}
.footer__main--item img {
  margin-bottom: 1.5625rem;
}
@media (min-width: 64.0625rem) {
  .footer__main--item img {
    width: 70%;
  }
}
.footer__bottom {
  background-color: #0a0f2b;
  color: hsl(0, 0%, 100%);
}
.footer__bottom--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.875rem 1.875rem;
  gap: 1rem;
}
@media (min-width: 48.0625rem) {
  .footer__bottom--content {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.875rem 1.875rem;
  }
}
.footer__bottom--content ul {
  margin: 0;
  padding: 0;
}
.footer__bottom--content li {
  margin: 5px 0;
}
.footer__bottom--left p {
  margin: 0;
  opacity: 0.55;
}
.footer__bottom--right li {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  margin-right: 1.25rem;
}
.footer__bottom--right li::after {
  content: "";
  position: absolute;
  top: 1px;
  right: -14px;
  height: 90%;
  width: 2px;
  background-color: white;
}
.footer__bottom--right li:last-child {
  margin-right: 0;
}
.footer__bottom--right li:last-child::after {
  display: none;
}

.facts {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .facts {
    display: none;
  }
}
.facts__bg {
  position: relative;
  background-image: url(/images/facts-bg.webp);
  width: 100%;
  height: 20rem;
}
.facts__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 100%;
  color: white;
}
.facts__text {
  width: 40%;
}
.facts__text p {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 56px;
  color: hsl(0, 0%, 100%);
}
.facts__numbers {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
@media (min-width: 64.0625rem) {
  .facts__numbers {
    width: 50%;
  }
}
.facts__numbers--item {
  display: flex;
  flex-direction: column;
}
.facts__numbers--item h2 {
  color: hsl(0, 0%, 100%);
  font-size: 3rem;
  margin: 0;
}
.facts__numbers--item span {
  font-size: 1.125rem;
}
.facts__numbers--item span:nth-child(3) {
  color: #ff3300;
}
@media (min-width: 64.0625rem) {
  .facts__numbers--item {
    gap: 1.25rem;
  }
}

.cooperation {
  padding-top: 100px;
}
.cooperation__content {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
@media (min-width: 64.0625rem) {
  .cooperation__content {
    flex-direction: row;
    gap: 6.25rem;
  }
}
.cooperation__text span {
  font-weight: 500;
  letter-spacing: 1px;
  color: #595959;
  text-transform: uppercase;
}
.cooperation__text h2 {
  margin-top: 10px;
  margin-bottom: 20px;
}
.cooperation__address {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
}
@media (min-width: 30.0625rem) {
  .cooperation__address {
    flex-direction: row;
    justify-content: start;
    gap: 20px;
  }
}
@media (min-width: 64.0625rem) {
  .cooperation__address {
    gap: 40px;
  }
}
.cooperation__address--item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1.5625rem;
}
.cooperation__address--item h4 {
  position: relative;
  margin: 0;
  color: #ff3300;
  margin-bottom: 0.625rem;
}
.cooperation__address--item h4::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #0a0f2b;
}
.cooperation__address--item p {
  margin: 0;
  color: #0a0f2b;
  line-height: 26px;
}
.cooperation__address--item svg {
  width: 1.875rem;
  height: 1.875rem;
  fill: #0a0f2b;
}
.cooperation__image img {
  border-radius: 10px;
}

.single {
  margin-bottom: 100px;
}
.single__head {
  position: relative;
  background-image: url(/images/slider1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
}
.single__head--text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-right: 30px;
  text-align: center;
}
@media (min-width: 30.0625rem) {
  .single__head--text {
    text-align: start;
  }
}
.single__head--text p {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1rem;
  text-align: center;
  margin: 1rem 0;
}
@media (min-width: 30.0625rem) {
  .single__head--text p {
    text-align: start;
  }
}
@media (min-width: 48.0625rem) {
  .single__head--text p {
    margin: 1.875rem 0;
  }
}
.single__head--text span {
  font-size: 2.25rem;
  color: #ff3300;
  font-weight: 500;
}
@media (min-width: 30.0625rem) {
  .single__head--text span {
    font-size: 2.5rem;
    line-height: 55px;
    text-align: start;
  }
}
@media (min-width: 48.0625rem) {
  .single__head--text span {
    font-size: 3.5rem;
    line-height: 65px;
  }
}
.single__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
@media (min-width: 30.0625rem) {
  .single__wrapper {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (min-width: 48.0625rem) {
  .single__wrapper {
    gap: 100px;
  }
  .single__wrapper::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: #ff3300;
  }
}
.single__content--left {
  position: relative;
  display: flex;
  flex-direction: row;
}
@media (min-width: 30.0625rem) {
  .single__content--left {
    width: 50%;
  }
}
@media (min-width: 48.0625rem) {
  .single__content--left {
    gap: 100px;
    width: 100%;
  }
  .single__content--left::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff3300;
  }
}
.single__content--right {
  position: relative;
  display: flex;
  flex-direction: row;
}
@media (min-width: 30.0625rem) {
  .single__content--right {
    width: 50%;
  }
}
@media (min-width: 48.0625rem) {
  .single__content--right {
    gap: 100px;
    width: 100%;
  }
  .single__content--right::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 30px;
    height: 1px;
    background-color: #ff3300;
  }
}
.single__image {
  display: none;
  width: 50%;
}
@media (min-width: 48.0625rem) {
  .single__image {
    display: block;
  }
}
.single__image--img {
  background-position: 20% 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 18.75rem;
  border-radius: 10px;
}
@media (min-width: 30.0625rem) {
  .single__image--img {
    background-position: 25% 25%;
    height: 25rem;
  }
}
@media (min-width: 48.0625rem) {
  .single__image--img {
    background-position: 50% 50%;
  }
}
.single__image--first {
  background-image: url(/images/service-1.webp);
}
.single__image--second {
  background-image: url(/images/service-2.webp);
}
.single__image--third {
  background-image: url(/images/service-3.webp);
}
.single__image--fourth {
  background-image: url(/images/service-4.webp);
}
@media (min-width: 30.0625rem) {
  .single__text {
    width: 100%;
    padding: 0 20px;
  }
}
@media (min-width: 48.0625rem) {
  .single__text {
    width: 50%;
  }
}
.single__text h2 {
  position: relative;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.single__text h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 20px;
  height: 1px;
  background-color: #ff3300;
}
.single__text p {
  margin-bottom: 30px;
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}
.sl-wrapper * {
  box-sizing: border-box;
}
.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}
.sl-wrapper button:hover {
  opacity: 0.7;
}
.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}
.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 10060;
  color: #000;
  font-size: 1rem;
}
.sl-wrapper .sl-download {
  display: none;
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  z-index: 10060;
  color: #fff;
  font-size: 1rem;
}
.sl-wrapper .sl-download a {
  color: #fff;
}
.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}
.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}
.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}
.sl-wrapper .sl-image {
  position: fixed;
  touch-action: none;
  z-index: 10000;
}
.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: transform ease 200ms;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}/*# sourceMappingURL=main.css.map */