@font-face {
  font-family: "Geometria";
  src: url("./assets/fonts/Geometria/Geometria.eot");
  src: url("./assets/fonts/Geometria/Geometria.woff") format("woff"), url("./assets/fonts/Geometria/Geometria.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Geometria Bold";
  src: url("./assets/fonts/Geometria/Geometria-Bold.eot");
  src: url("./assets/fonts/Geometria/Geometria-Bold.woff") format("woff"), url("./assets/fonts/Geometria/Geometria-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Geometria Medium";
  src: url("./assets/fonts/Geometria/Geometria-Medium.eot");
  src: url("./assets/fonts/Geometria/Geometria-Medium.woff") format("woff"), url("./assets/fonts/Geometria/Geometria-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Geometria Thin";
  src: url("./assets/fonts/Geometria/Geometria-Thin.eot");
  src: url("./assets/fonts/Geometria/Geometria-Thin.woff") format("woff"), url("./assets/fonts/Geometria/Geometria-Thin.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Geometria", sans-serif;
  color: #000000;
}

.section {
  width: 100%;
  padding: 35px 0;
}
.section-full {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}
.section-clear {
  background-color: #ffffff;
}
.section-accent {
  background-color: #f15f25;
  color: #ffffff;
}
.section-dark {
  background-color: #000000;
}
.section-banner {
  padding: 120px 0 60px 0;
  background-color: #f15f25;
  background-image: url("./assets/img/bg.png");
}
.section__title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-size: 32px;
  text-align: center;
}
.section__desc {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  text-align: justify;
}
.section__desc strong {
  font-weight: 700;
}
.section .row {
  max-width: 1200px;
  widows: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.section .content {
  display: flex;
  flex-direction: column;
}
.section .content-shift {
  margin: 20px auto 80px auto;
  padding: 30px 40px;
  background-color: #ffffff;
  box-shadow: 0px 10px 16px 0px rgba(13, 28, 126, 0.22);
  width: 80%;
  max-width: 800px;
  border-radius: 16px;
}

.header {
  background-color: #000000;
  padding: 20px 0;
  opacity: 0.8;
  position: fixed;
  z-index: 100;
}
.header .hamburger {
  display: none;
}
.header .navbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}
.header .logo {
  color: #ffffff;
  font-size: 24px;
  font-family: "Geometria Bold";
}
.header .nav {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.header .nav__item {
  padding: 0 20px;
  color: #ffffff;
  text-align: center;
}
.header .nav__link {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  font-family: "Geometria";
  transition: all 0.22s linear;
}
.header .nav__link:hover {
  color: #f15f25;
}

.toggle {
  display: block;
  cursor: pointer;
}
.toggle input {
  display: none;
}
.toggle input + div {
  width: 20px;
  height: 14px;
  position: relative;
}
.toggle input + div div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease;
}
.toggle input + div div span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
}
.toggle input + div div span:first-child {
  top: 0;
}
.toggle input + div div span:first-child:before, .toggle input + div div span:first-child:after {
  top: 0;
}
.toggle input + div div span:last-child {
  bottom: 0;
}
.toggle input + div div span:last-child:before, .toggle input + div div span:last-child:after {
  bottom: 0;
}
.toggle input + div div span:before, .toggle input + div div span:after {
  content: "";
  display: block;
  width: 47%;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
  position: absolute;
  -webkit-backface-visibility: hidden;
  transition: transform 0.5s ease, border-radius 0.3s ease, background 0.4s ease;
}
.toggle input + div div span:before {
  left: 0;
  transform-origin: 0 50%;
  transform: translate(1px, 0) scaleX(1.1);
}
.toggle input + div div span:after {
  right: 0;
  transform-origin: 100% 50%;
  transform: translate(-1px, 0) scaleX(1.1);
}
.toggle input + div svg {
  display: block;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2px;
  width: 44px;
  height: 44px;
  stroke-linecap: round;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -22px 0 0 -22px;
  stroke-dasharray: 0 82.801 8 82.801;
  stroke-dashoffset: 82.801;
  transform-origin: 50% 50%;
  -webkit-backface-visibility: hidden;
  transform: scale(1);
  transition: stroke-dashoffset 0.5s ease, stroke-dasharray 0.6s ease, transform 0.5s ease, stroke 0.4s ease;
}
.toggle input + div svg:nth-child(3) {
  transform: rotate(180deg) scale(1);
}
.toggle input:checked + div div {
  transform: rotate(90deg);
}
.toggle input:checked + div div span:before, .toggle input:checked + div div span:after {
  background: #ffffff;
}
.toggle input:checked + div div span:first-child:before {
  transform: rotate(45deg) translate(2.2px, -3px) scaleX(1.05);
}
.toggle input:checked + div div span:first-child:after {
  transform: rotate(-45deg) translate(-2.2px, -3px) scaleX(1.05);
}
.toggle input:checked + div div span:last-child:before {
  transform: rotate(-45deg) translate(2.2px, 3px) scaleX(1.05);
}
.toggle input:checked + div div span:last-child:after {
  transform: rotate(45deg) translate(-2.2px, 3px) scaleX(1.05);
}
.toggle input:checked + div svg {
  stroke-dashoffset: 62;
  stroke-dasharray: 0 82.801 62 82.801;
  transform: rotate(90deg);
  stroke: #ffffff;
}
.toggle input:checked + div svg:nth-child(3) {
  transform: rotate(270deg);
}

.banner {
  display: flex;
  justify-content: flex-start;
  text-align: center;
  width: 80%;
  padding: 50px 0;
  margin: 0 auto;
}
.banner__title {
  font-family: "Geometria Bold", Sans-serif;
  font-size: 60px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 40px;
}
.banner__desc {
  font-family: "Geometria Medium", Sans-serif;
  font-size: 44px;
  color: #ffffff;
  margin: 0;
  margin-bottom: 20px;
}
.banner__remark {
  font-family: "Geometria", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.grid {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.grid > * + * {
  margin-left: 20px;
}
.grid__item {
  flex: 50% 0 1;
  width: 50%;
}
.grid__60 {
  flex: 60% 0 1;
}
.grid__40 {
  flex: 40% 0 1;
}

.benefit {
  color: #000000;
  position: relative;
  padding-left: 20px;
}
.benefit::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  background-image: url("./assets/img/check.png");
  left: -12px;
  top: 6px;
}
.benefit__title {
  font-size: 24px;
  line-height: 28px;
  font-family: "Geometria Medium";
  margin: 0;
}
.benefit__desc {
  font-size: 18px;
  font-family: "Geometria";
  margin: 0;
  margin-bottom: 30px;
}
.benefit__img {
  max-width: 400px;
  width: 100%;
}

.products {
  background-color: #f15f25;
  color: #ffffff;
}
.products__title {
  font-size: 34px;
}
.products__desc {
  font-size: 24px;
  margin: 2rem auto;
}
.products__img {
  width: 100%;
  margin-top: -20%;
}

.propose__title {
  text-align: center;
  font-size: 44px;
  font-family: "Geometria Medium";
  color: #f15f25;
  margin-bottom: 50px;
}
.propose__list {
  margin: 0 auto;
}

.contacts {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: right;
}

.list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-left: 30px;
  margin-right: 30px;
}
.list__img {
  width: 62px;
  margin-right: 20px;
}
.list__text {
  font-size: 22px;
}

.button {
  font-family: "Geometria Medium", Sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 20px;
  padding: 20px 60px;
  box-shadow: none;
  transition: all 0.22s;
}
.button:hover {
  box-shadow: 6.7px 13.4px 13.4px hsla(0deg, 0%, 0%, 0.29);
}
.button-white {
  color: #f15f25;
  background-color: #ffffff;
}
.button-orange {
  color: #ffffff;
  background-color: #f15f25;
}

.contact {
  margin: 0;
  margin-bottom: 1rem;
}
.contact-dark {
  color: #fff;
}
.contact-dark a {
  text-decoration: none;
  color: #ffffff;
}

.show {
  display: block !important;
}

@media all and (max-width: 767px) {
  .header .hamburger {
    display: block;
  }
  .header .nav {
    position: absolute;
    width: 100%;
    flex-direction: column;
    left: 0;
    top: 92px;
    background: #000000;
    display: none;
  }
  .header .nav__item {
    padding: 15px 20px;
  }

  .grid {
    flex-direction: column;
  }
  .grid__item {
    width: 100%;
    flex: 100% 0 1;
  }
  .grid__60 {
    flex: 100% 0 1;
  }
  .grid__40 {
    flex: 100% 0 1;
  }

  .benefit__img {
    margin: 0 auto;
    display: block;
  }

  .products__img {
    margin-top: 0;
  }
  .products__title {
    text-align: center;
  }
  .products__desc {
    text-align: center;
  }

  .banner__title {
    font-size: 50px;
  }
  .banner__desc {
    font-size: 34px;
  }
  .banner__remark {
    font-size: 20px;
  }

  .propose__title {
    font-size: 34px;
  }

  .contacts {
    text-align: center;
  }
}

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