section.head {
  margin-top: 80px;
  padding: 0;
  height: calc(100vh - 80px);
  width: 100%;
  background-image: url("../img/first_screen.jpg");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.head div.text {
  position: relative;
  font-size: 28px;
  font-weight: bold;
}

section.head div.text p {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(25px, -50%);
          transform: translate(25px, -50%);
}

section.head div.company_name {
  padding-right: 50px;
}

section.head div.company_name h1 {
  font-size: 135px;
  color: #ffffff8c;
}

section.head div.company_name h1 span {
  font-size: 288px;
}

section {
  width: 70%;
  padding: 0 15%;
  margin-top: 35px;
}

section .title {
  text-align: center;
  margin-bottom: 35px;
}

section .title h1 {
  display: inline-block;
  padding: 0 20px;
  font-weight: normal;
  font-size: 36px;
  line-height: 50px;
  text-transform: uppercase;
  color: white;
  background-color: #68B354;
  position: relative;
}

section .title h1::before, section .title h1::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  line-height: 0px;
}

section .title h1::before {
  left: -40px;
  border-width: 0 0 49.5px 40px;
  border-color: transparent transparent #69b354 transparent;
  _border-color: #000000 #000000 #69b354 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

section .title h1::after {
  right: -40px;
  border-width: 49.5px 40px 0 0;
  border-color: #69b354 transparent transparent transparent;
  _border-color: #69b354 #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

section.about {
  -webkit-transition: opacity 0.8s, -webkit-transform 1s;
  transition: opacity 0.8s, -webkit-transform 1s;
  transition: transform 1s, opacity 0.8s;
  transition: transform 1s, opacity 0.8s, -webkit-transform 1s;
  opacity: 1;
}

section.about.animate-on-scroll.to-top {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  opacity: 0;
}

section.about p {
  margin: 20px 0;
  line-height: 133%;
}

section.about p span.highlight {
  background-color: #68B354;
  color: white;
}

section.about .help {
  font-weight: light;
  font-style: italic;
  color: #252525;
  margin: 0 auto;
  padding: 3px 20px;
  background-color: #F0F0F0;
  border-left: 3px solid #1799D8;
}

section.about .help p {
  margin-bottom: 0;
}

section.about .help .author {
  margin: 0;
  margin-bottom: 10px;
  text-align: right;
  font-style: normal;
  font-size: 15px;
}

section.call-to-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  -webkit-box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.5);
  position: relative;
}

section.call-to-action .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/first_screen.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  opacity: 0.6;
}

section.call-to-action .button {
  padding: 10px 15px;
  background-color: white;
  font-size: 20px;
  text-transform: uppercase;
  border: 3px solid #1799D8;
  z-index: 2;
  cursor: pointer;
}

section.products {
  -webkit-transition: opacity 0.8s, -webkit-transform 1s;
  transition: opacity 0.8s, -webkit-transform 1s;
  transition: transform 1s, opacity 0.8s;
  transition: transform 1s, opacity 0.8s, -webkit-transform 1s;
  opacity: 1;
  overflow-x: hidden;
}

section.products.animate-on-scroll.to-top {
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  opacity: 0;
}

section.products .products-wrapper {
  position: relative;
}

section.products .products-wrapper .top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 200px;
  background-color: #68B354;
  z-index: 1;
}

section.products .products-wrapper .top-left div {
  position: absolute;
  top: 4px;
  left: 4px;
  background-color: #fff;
  width: 100%;
  height: 100%;
}

section.products .products-wrapper .bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 65%;
  height: 200px;
  background-color: #68B354;
  z-index: 1;
}

section.products .products-wrapper .bottom-right div {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: #fff;
  width: 100%;
  height: 100%;
}

section.products .products-wrapper .product {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}

section.products .products-wrapper .product .img {
  margin-right: 30px;
}

section.products .products-wrapper .product .text * {
  margin: 10px 0;
}

section.products .products-wrapper .product .text h3 {
  font-weight: normal;
  font-size: 24px;
}

section.products .products-wrapper .overlay {
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: 4px;
  right: 4px;
  z-index: 3;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), color-stop(10%, rgba(255, 255, 255, 0.7)), color-stop(40%, #FFFFFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.7) 10%, #FFFFFF 40%);
}

section.products .products-wrapper .open-catalog {
  position: absolute;
  padding: 15px 30px;
  bottom: 40px;
  left: 50%;
  text-transform: uppercase;
  background-color: #68B354;
  color: white;
  font-weight: 500;
  font-size: 18px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  cursor: pointer;
  z-index: 3;
}

section.other {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
  overflow: hidden;
}

section.other > * {
  width: 50%;
}

section.other > * .title {
  font-weight: normal;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 500;
  color: #373737;
  margin: 30px 0;
}

section.other .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.8s, -webkit-transform 1s;
  transition: opacity 0.8s, -webkit-transform 1s;
  transition: transform 1s, opacity 0.8s;
  transition: transform 1s, opacity 0.8s, -webkit-transform 1s;
  opacity: 1;
}

section.other .contacts.animate-on-scroll.to-right {
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  opacity: 0;
}

section.other .contacts .contacts-wrapper {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.other .contacts .contacts-wrapper table {
  margin-bottom: 30px;
  width: 90%;
}

section.other .contacts .contacts-wrapper table tr {
  margin: 0;
  padding: 0;
}

section.other .contacts .contacts-wrapper table tr td {
  margin: 0;
  padding: 0;
}

section.other .contacts .contacts-wrapper table tr td a {
  line-height: 40px;
}

section.other .contacts .contacts-wrapper table .img {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #68B354;
  margin: 7px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  color: white;
}

section.other .contacts .contacts-wrapper iframe {
  width: 90%;
  margin-bottom: 20px;
}

section.other .form-wrapper {
  background-color: #68B354;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  -webkit-transition: opacity 0.8s, -webkit-transform 1s;
  transition: opacity 0.8s, -webkit-transform 1s;
  transition: transform 1s, opacity 0.8s;
  transition: transform 1s, opacity 0.8s, -webkit-transform 1s;
  opacity: 1;
}

section.other .form-wrapper.animate-on-scroll.to-left {
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
  opacity: 0;
}

section.other .form-wrapper .title {
  color: white;
}

section.other .form-wrapper .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
  height: 75%;
}

section.other .form-wrapper .form > * {
  width: 50%;
}

section.other .form-wrapper .form .col-1 .textarea-wrapper, section.other .form-wrapper .form .col-2 .textarea-wrapper {
  position: relative;
}

section.other .form-wrapper .form .col-1 .textarea-wrapper label, section.other .form-wrapper .form .col-2 .textarea-wrapper label {
  position: absolute;
  left: 15px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #68B354;
  color: white;
  padding: 0 5px;
  font-size: 16px;
  top: 0;
  font-size: 14px;
}

section.other .form-wrapper .form .col-1 .textarea-wrapper textarea, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea {
  width: 100%;
  height: 100%;
  resize: none;
  background-color: transparent;
  border-radius: 7px;
  border: 2px solid white;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: 16px;
  outline: 0;
  padding: 12px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
}

section.other .form-wrapper .form .col-1 .textarea-wrapper textarea:focus::-webkit-input-placeholder, section.other .form-wrapper .form .col-1 .textarea-wrapper textarea:focus::-moz-placeholder, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea:focus::-webkit-input-placeholder, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea:focus::-moz-placeholder {
  color: white;
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .textarea-wrapper textarea:-webkit-autofill, section.other .form-wrapper .form .col-1 .textarea-wrapper textarea:-webkit-autofill:hover, section.other .form-wrapper .form .col-1 .textarea-wrapper textarea:-webkit-autofill:focus, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea:-webkit-autofill, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea:-webkit-autofill:hover, section.other .form-wrapper .form .col-2 .textarea-wrapper textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: whitesmoke;
  -webkit-box-shadow: 0 0 0px 1000px #68B354 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

section.other .form-wrapper .form .col-1 {
  padding-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.other .form-wrapper .form .col-1 .for-mobile {
  display: none;
}

section.other .form-wrapper .form .col-1 .input-wrapper {
  position: relative;
}

section.other .form-wrapper .form .col-1 .input-wrapper input:focus ~ label,
section.other .form-wrapper .form .col-1 .input-wrapper input:valid ~ label {
  top: 0;
  font-size: 14px;
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .input-wrapper label {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #68B354;
  color: white;
  padding: 0 5px;
  font-size: 16px;
  opacity: .6;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: text;
}

section.other .form-wrapper .form .col-1 .input-wrapper label.top {
  top: 0;
  font-size: 14px;
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .input-wrapper input {
  width: 100%;
  line-height: 45px;
  background-color: transparent;
  border-radius: 7px;
  border: 2px solid white;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: 16px;
  outline: 0;
  padding-left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: white;
}

section.other .form-wrapper .form .col-1 .input-wrapper input:focus::-webkit-input-placeholder, section.other .form-wrapper .form .col-1 .input-wrapper input:focus::-moz-placeholder {
  color: white;
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .input-wrapper input:-webkit-autofill, section.other .form-wrapper .form .col-1 .input-wrapper input:-webkit-autofill:hover, section.other .form-wrapper .form .col-1 .input-wrapper input:-webkit-autofill:focus {
  -webkit-text-fill-color: whitesmoke;
  -webkit-box-shadow: 0 0 0px 1000px #68B354 inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

section.other .form-wrapper .form .col-1 .rules {
  color: white;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

section.other .form-wrapper .form .col-1 .rules input {
  display: none;
}

section.other .form-wrapper .form .col-1 .rules .checkbox {
  width: 30px;
  height: 30px;
  border: 2px solid white;
  border-radius: 7px;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-right: 10px;
  position: relative;
  -webkit-transform: border-color 0.2s;
          transform: border-color 0.2s;
}

section.other .form-wrapper .form .col-1 .rules .checkbox.error {
  border-color: #FF5722;
}

section.other .form-wrapper .form .col-1 .rules .checkbox.checked::before {
  -webkit-transform: translate(-3px, 0) rotateZ(-40deg);
          transform: translate(-3px, 0) rotateZ(-40deg);
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .rules .checkbox.checked::after {
  -webkit-transform: translate(-5px, -10px) rotateZ(40deg);
          transform: translate(-5px, -10px) rotateZ(40deg);
  opacity: 1;
}

section.other .form-wrapper .form .col-1 .rules .checkbox::before {
  content: '';
  width: 3px;
  height: 10px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-3px, 0);
          transform: translate(-3px, 0);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

section.other .form-wrapper .form .col-1 .rules .checkbox::after {
  content: '';
  width: 3px;
  height: 20px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-2px, -10px);
          transform: translate(-2px, -10px);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

section.other .form-wrapper .form .col-1 .send-btn {
  text-align: center;
  line-height: 50px;
  border: 2px solid white;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  font-size: 17px;
  background: none;
  width: 100%;
  cursor: pointer;
}

section.other .form-wrapper .form .col-2 {
  padding-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

@media only screen and (max-width: 1300px) {
  section {
    width: 85%;
    padding: 0 7.5%;
  }
  section.head div.company_name h1 {
    font-size: 80px;
  }
  section.head div.company_name h1 span {
    font-size: 175px;
  }
}

@media only screen and (max-width: 1150px) {
  section.other .form-wrapper .form .col-1 {
    width: 100%;
  }
  section.other .form-wrapper .form .col-1 .textarea-wrapper textarea {
    height: 95px;
  }
  section.other .form-wrapper .form .col-1 .for-mobile {
    display: block;
  }
  section.other .form-wrapper .form .col-2 {
    display: none;
  }
}

@media only screen and (max-width: 980px) {
  section {
    width: 90%;
    padding: 0 5%;
  }
  section.head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  section.head div.company_name {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    display: none;
  }
  section.other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  section.other > * {
    width: 100%;
  }
  section.other .form-wrapper {
    padding-bottom: 50px;
  }
  section.other .form-wrapper .form {
    min-height: 390px;
  }
  section.other .form-wrapper .form .col-1 {
    padding: 0;
  }
}

@media only screen and (max-width: 600px) {
  section.head .text {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  section.other .form-wrapper .form {
    width: 90%;
    padding: 0 5%;
  }
}

@media only screen and (max-width: 450px) {
  section .title h1 {
    font-size: 30px;
  }
  section.other > * .title {
    font-size: 30px;
  }
  section.head .text {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  section.products .products-wrapper .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section.products .products-wrapper .product .img {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  section.products .products-wrapper .overlay {
    height: 170px;
  }
}

@media only screen and (max-width: 350px) {
  section .title h1 {
    font-size: 26px;
  }
  section.head .text {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
}

@media (orientation: portrait) {
  section.head {
    height: 50vh;
  }
  section.products .products-wrapper .top-left {
    width: 100%;
  }
  section.products .products-wrapper .bottom-right {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */