* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Roboto", sans-serif;
  color: #2B2B2B;
  font-size: 18px;
  letter-spacing: -0.03em;
}

a, img, link, hover, :hover, ::after, div {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

a:link {
  text-decoration: none;
  color: #2B2B2B;
  font-weight: 500;
}

a:visited {
  text-decoration: none;
  color: #2B2B2B;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
  color: #D8261C;
  font-weight: 500;
}

a:active {
  text-decoration: none;
  color: #2B2B2B;
  font-weight: 500;
}

.box-top-wrap {
  width: 100%;
  height: 100px;
  background: #1D1D1D;
}

.box-top {
  width: 1200px;
  position: relative;
  margin: auto;
}

.box-logo-top {
  position: absolute;
  top: 10px;
  left: 50px;
}

.box-menu {
  height: 100px;
  position: absolute;
  top: 0px;
  right: 50px;
  line-height: 100px;
  font-size: 24px;
  font-weight: 600;
  color: #FFF;
  text-transform: uppercase;
}
.box-menu li {
  display: inline-block;
  padding: 0 10px;
}
.box-menu a:link {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.box-menu a:visited {
  text-decoration: none;
  color: white;
  font-weight: 500;
}
.box-menu a:hover {
  text-decoration: none;
  color: #D8261C;
  font-weight: 500;
}
.box-menu a:active {
  text-decoration: none;
  color: #2B2B2B;
  font-weight: 500;
}

.box-banner {
  width: 100%;
}
.box-banner img {
  width: 100%;
}

.box-history-wrap {
  width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: auto;
}
.box-history-wrap p {
  margin: 20px 0;
}

.class-title {
  color: #D8261C;
  font-size: 36px;
  font-weight: 800;
}

.box-history-left {
  font-size: 24px;
  padding-right: 50px;
}

.box-business {
  width: 1200px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  margin: auto;
}

.box-title {
  font-size: 48px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}
.box-title::after {
  content: "";
  width: 10px;
  height: 34px;
  position: absolute;
  left: -20px;
  top: 12px;
  background: #D8261C;
}

.box-business-wrap {
  background: #191919;
  padding: 80px 0;
  margin: 40px 0;
  color: white;
}

.box-business-left {
  width: 410px;
  height: 340px;
  background: url("../img/dark-img.jpg") no-repeat center;
  position: relative;
}

.box-business-left-title {
  width: 310px;
  font-size: 30px;
  position: absolute;
  border-left: solid 10px #D8261C;
  padding-left: 10px;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
}

.box-business-right ul {
  display: inline-block;
  font-weight: 300;
  font-size: 24px;
  vertical-align: top;
  padding-top: 20px;
  line-height: 36px;
}

.box-brands-wrap {
  width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.box-maps {
  margin: 50px 0 -5px 0;
}

.box-bottom {
  width: 1200px;
  display: flex;
  color: white;
  font-size: 24px;
  justify-content: space-evenly;
  align-items: center;
  gap: 16px;
  margin: auto;
  padding: 50px 0;
}

.box-bottom-wrap {
  width: 100%;
  background: #D8261C;
}

.box-botto-title {
  font-weight: 600;
  padding-left: 10px;
  border-left: 10px solid #191919;
  margin: 20px 0;
}

.box-bottom-adress {
  width: 33%;
}

.box-socials {
  align-self: flex-start;
}

.box-copyright {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #B9170F;
  color: white;
  text-align: center;
  font-size: 14px;
}

.box-content-wrap {
  width: 1200px;
  margin: 70px auto 70px auto;
}
.box-content-wrap p {
  margin: 15px 0;
}

.box-about-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: auto;
}

.box-services-wrap {
  display: grid;
  justify-content: space-between;
  gap: 16px;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
}

.box-services-cell {
  padding: 10px 20px;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.24);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  z-index: 9999;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.28);
  outline: none;
  color: white;
}

.whatsapp-float svg {
  display: block;
}

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