@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-bold.ttf) format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-boldit.ttf) format("truetype");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-light-webfont.ttf) format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-regular.ttf) format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-regularitalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Proxima Nova";
  src: url(../fonts/proxima/proximanova-semibold.ttf) format("truetype");
  font-weight: 400;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Proxima Nova";
}

html {
  min-width: 360px;
  
  display: flex;
  justify-content: center;
}

#go-to-form{
  visibility: hidden;
  position: fixed;
  right: 100px;
  bottom: 0px;
  border-radius: 14px 14px 0px 0px;
  background: #E27C37;
  box-shadow: 3px 8px 8px 0px rgba(0, 0, 0, 0.25);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80px;
  max-height: 115px;
  cursor: pointer;
}
#go-to-form p {
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-transform: uppercase;
  color: white;
}
#go-to-form svg{
  margin-bottom: 20px;
}
.main {
  background-color: white;
  max-width: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}
.main .hero {
  display: flex;
  flex-direction: column;
  background-image: url("../assets/gradient-background.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto;
  max-width: 1920px;
}
.main .hero__content-wrapper {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  height: min-content;
}
.main .hero__content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.main .hero__content .logo-container__logo {
  width: 302px;
}
.page-description-p {
  color: var(--Black, #000);
  font-family: "Proxima Nova";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.main .hero__content__title {
  margin-top: 65px;
  color: #E27C37;
  font-family: "Proxima Nova";
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -2px;
}
.main .hero__content__subtitle {
  color: #000;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.main .hero__content__content {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: -0.1px;
}

.main .hero__content__figure{
  height: 350px;
}

.description-container{
  width: 930px;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 0px;
  margin-left: 0px; 
}

.description-row{
  width: 100%;
}

.description-col{
  margin-left: 0;
  padding-left: 0;
}

.description-td{
  text-align: center;
}

.description-title{
  color: #1F4270;
  font-size: 20px;
  line-height: 17px;
  font-family: "Proxima Nova";
  text-align: center;
  padding-bottom: 10px;
}

.description-span{
  color: #1F4270;
  font-size: 14px;
  line-height: 17px;
  font-family: "Proxima Nova";
}
.icons-table{
  border-left: 2px solid black;
}
.flex-container{
  display: inline-grid;
  grid-template-columns: 33.33% 33.33% 33.33% ;
  padding: 4px;
  grid-gap: 10px;
}
.flex-item{
  position: relative;
  text-align: center;
}

.main .hero__content__figure__media {
  width: 100%;
}
.main .hero__form-container {
  justify-self: flex-end;
  max-width: 420px;
}
.main .hero__form-container__form {
  width: 100%;
  padding: 30px 20px;
  background-color: #555555;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main .hero__form-container__form input {
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;
  color: white;
  border: 1px solid white;
  height: 40px;
  border-radius: 4px;
  background-color: transparent;
  padding-left: 1;
}

.main .hero__form-container__form input,
.main .hero__form-container__form select {
  padding: 9px 15px;
}

.main .hero__form-container__form input::-moz-placeholder {
  color: white;
  opacity: 1;
}
.main .hero__form-container__form input::placeholder {
  color: white;
  opacity: 1;
}
.main .hero__form-container__form select {
  background-color: transparent;
  border: 1px solid white;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 200;
  line-height: 140%;
  color: white;
}

.main .hero__form-container__form select option {
  color: black;
  font-weight: 200;
}

.main .hero__form-container__form select:invalid {
  padding-left: 15px;
  color: white;
  opacity: 1;
}
.main .hero__form-container__form input[type=checkbox] {
  margin-top: 5px;
  margin-left: 6px;
  margin-right: 0px;
  margin-bottom: 40px;
  width: 28px;
}
.main .hero__form-container__form label {
  font-size: 13px;
  line-height: 16px;
  color: white;
  width: 270px;
  margin-left: 0px;
  margin-top: 7px;
  margin-right: 15px;
  float: right;
}

.main .hero__form-container__form .captcha-container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
}
.main .hero__form-container__form .privacypolicy {
  color: white;
}
.main .hero__form-container__form .privacypolicy p {
  line-height: 18px;
  font-size: 16px;
  font-weight: 200;
}
.main .hero__form-container__form .privacypolicy a {
  line-height: 16px;
  text-decoration: underline;
  color: #09F;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-decoration-line: underline;
}
.main .hero__form-container__form .suscription-label {
  font-size: 16px;
  line-height: 140%;
}
.main .hero__form-container__form .suscription-radio {
  display: grid;
}
.main .hero__form-container__form .suscription-radio__label {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 16px;
  line-height: 140%;
  font-weight: 100;
}
.main .hero__form-container__form .suscription-radio__inputs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.main .hero__form-container__form .suscription-radio__inputs label {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  width: 40px;
  gap: 6px;
  font-size: 16px;
}
.main .hero__form-container__form .suscription-radio__inputs label input[type=radio] {
  margin: 0;
  padding: 0;
}
.main .hero__form-container__form__submit-btn {
  background-color: #E27C37;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  height: 56px;
  border-radius: 2px;
  font-size: 18px;
  font-weight: 700;
  border-style: none;
}
.main .hero__key-specs-wrapper {
  display: flex;
  justify-content: center;
}
.main .hero__key-specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
}

.main .hero__key-specs svg {
  /* margin-top: 40px; */
}

.main .hero__key-specs__title {
  margin-top: 40px;
  font-size: 56px;
  font-weight: 200;
  color: white;
}
.main .hero__key-specs__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.main .hero__key-specs__grid__item {
  text-transform: uppercase;
}
.main .hero__key-specs__grid__item :first-child {
  color: white;
  font-size: 24px;
  font-weight: 100;
}
.main .hero__key-specs__grid__item :last-child {
  color: #E27C37;
  font-size: 32px;
  font-weight: 700;
}
.main__page-section {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 80px;
}
.main__page-section__section-title {
  font-size: 56px;
  font-weight: 200;
  margin-block-start: 0;
  margin-block-end: 0;
  line-height: 56px;
}
.main__page-section__section-title--blue {
  color: #1F4270;
}
.main__page-section__section-title--orange {
  color: #E27C37;
}
.main__page-section__section-title--white {
  color: white;
}
.main__page-section__section-description {
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  color: #666766;
  max-width: 1206px;
  padding-top: 40px;
}
.main__page-section__section-description--black {
  color: #000;
}
.main__page-section__section-description--white {
  color: white;
}
.main__page-section__section-media {
  max-width: 1206px;
}
.main__page-section__section-media video,
.main__page-section__section-media img {
  max-width: 100%;
}
.main__page-section#what-makes-it-tick {
  display: grid;
  justify-items: center;
}
.main__page-section#ElectricvsHydraulic {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  background-color: #EDEDED;
}
.main__page-section#ElectricvsHydraulic .left {
  max-width: 640px;
}
.main__page-section#ElectricvsHydraulic .right {
  max-width: 480px;
}
.main__page-section#ElectricvsHydraulic .right :last-child {
  font-weight: 300;
}
.main__page-section#work-smarter-not-harder {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
  background-color: white;
}
.main__page-section#work-smarter-not-harder .left {
  max-width: 480px;
}
.main__page-section#work-smarter-not-harder .left .main__page-section__section-title {
  max-width: 418px;
}
.main__page-section#work-smarter-not-harder .left :last-child {
  font-weight: 300;
}
.main__page-section#work-smarter-not-harder .right {
  max-width: 640px;
}
.main__page-section#work-smarter-not-harder .right svg {
  width: 100%;
  height: 440px;
}
.main__page-section#take-a-look {
  display: grid;
  justify-items: center;
  background-color: #EDEDED;
}
.main__page-section#take-a-look .take-a-look-videos {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.main__page-section#take-a-look .take-a-look-videos figure {
  width: 418px;
  /* flex-shrink: 0; */
}
.main__page-section#take-a-look .take-a-look-videos figure figcaption {
  padding-top: 20px;
  color: #666766;
  font-weight: 600;
}
.main__page-section#actuators-at-work {
  display: grid;
  justify-items: center;
}
.main__page-section#actuators-at-work .media {
  padding-top: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.main__page-section#actuators-at-work .media figure > img {
  max-height: 300px;
}
.main__page-section#build-to-last {
  display: grid;
  justify-items: center;
  background-color: #1F4270;
  gap: 40px;
}
.main__page-section#build-to-last .main__page-section__section-description {
  font-weight: 400;
}
.main__page-section#build-to-last .media {
  max-width: 1200px;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.main__page-section#build-to-last .media :nth-child(1) {
  rotate: -45deg;
}
.main__page-section#build-to-last .media :nth-child(2) {
  rotate: 0deg;
}
.main__page-section#build-to-last .media :nth-child(3) {
  rotate: 30deg;
}
.main__page-section#build-to-last .media :nth-child(4) {
  rotate: 55deg;
}
.main__page-section#build-to-last .media figure img {
  max-width: 100%;
  -webkit-clip-path: circle();
          clip-path: circle();
}
.main__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;
  width: 100%;
  height: 80px;
}
.main__footer p {
  padding: 20px 0 20px 0;
  color: white;
  font-size: 16px;
  font-weight: 100;
  line-height: 140%;
}
@media screen and (max-width: 1536px) {

  .main .hero {
    max-width: 1536px;
  }

  .main .hero__content__title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -2px;
    margin-top: 40px;
  }
  
  .main .hero__content__subtitle {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -2px;
  }

  .main .hero__content__content {
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: -0.1px;
  }

  .main .hero__content__figure {
    height: 280px;
  }

  .main .hero__content__figure__media {
    max-width: 700px;
  }

  .main .hero__form-container {
    align-self: flex-start;
    padding-top: 0;
  }

  .main__page-section {
    padding: 70px 47px;
  }
  .description-container{
    max-width: 700px;
  }

}

@media screen and (max-width: 1330px) {
  .main .hero__content__figure {
    height: 380px;
  }
  .main .hero__content__figure__media {
    position: absolute;
    max-width: 900px;
    width: unset;
    padding-top: 100px ;
  }

  .main .hero__key-specs svg {
    margin-top: 40px;
  }
  
  .description-container{
    max-width: 650px;
  }

}

@media screen and (max-width: 1024px) {

  #go-to-form{
    display: none;
  }
  .main .hero {
    background-position: bottom left; 
  }
  .main .hero__content {
    position: relative;
  }

  .main .hero__form-container {
    max-width: 40%;
    justify-self: end;
  }

  .main .hero__content-wrapper {
    justify-content: center;
    padding-right: 15px;
    gap: 10px;
  }

  .main .hero__content__title {
    margin-top: 30px;
  }

  .main .hero__content__figure {
    height: 280px;
  }
  .main .hero__content__figure__media {
    padding-top: 0;
  }

  .main .hero__key-specs__grid  {
    grid-template-columns: 1fr 1fr;
  }

  
  .main__page-section#ElectricvsHydraulic {
    flex-direction: column-reverse;
    align-items: center;
  }
  .main__page-section#ElectricvsHydraulic .main__page-section__section-title {
    text-align: center;
  }
  .main__page-section#ElectricvsHydraulic .right {
    max-width: 610px;
  }
  .main__page-section#work-smarter-not-harder .left {
    max-width: 288px;
  }
  .main__page-section#work-smarter-not-harder .left :last-child {
    font-size: 21px;
    width: 290px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }
  .main__page-section#actuators-at-work .media {
    /* display: grid; */
    place-items: center;
    grid-template-columns: 1fr 1fr;
  }
  .main__page-section#build-to-last {
    display: grid;
    justify-items: center;
    background-color: #1F4270;
    gap: 40px;
  }
  .main__page-section#build-to-last .main__page-section__section-description {
    font-size: 21px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: -0.3px;
    max-width: 930px;
  }
  .main__page-section#build-to-last .media {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .main__page-section#build-to-last .media figure > img {
    width: 290px;
  }

  .description-container{
    max-width: 500px;
  }

  .icons-table{
    border-top: 2px solid black;
    border-left: 0px;
  }
}
@media screen and (max-width: 768px) {

  .main .hero__content-wrapper {
    justify-content: stretch;
    padding: 40px 30px;
  }
  .main__hero__content {
    width: 100%;
  }
  .main .hero__content__title {
    font-size: 56px;
    margin-top: 50px;
    line-height: 56px;
    letter-spacing: -2px;
  }
  .main .hero__content__content {
    font-size: 21px;
    line-height: 30px;
    letter-spacing: -0.1px;
    font-weight: 300;
  }
  .main .hero__content__figure {
    height: 120px;
  }
  .main .hero__content__figure__media {
    width: 200%;
  }
  .main .hero__form-container {
    max-width: 320px;
  }

  .main .hero__form-container__form__submit-btn {
    font-size: 13px;
  }
  .main .hero__key-specs-wrapper {
    display: flex;
    justify-content: flex-start;
    padding-left: 34px;
    margin-top: 0;
  }
  .main .hero__key-specs {
    align-items: flex-start;
  }
  .main .hero__key-specs svg {
    position: absolute;
    left: 0;
    padding: 0 34px;
  }
  .main .hero__key-specs__title {
    font-size: 48px;
    font-weight: 200;
    color: white;
  }
  .main .hero__key-specs__grid {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .main__page-section {
    padding: 70px 34px;
  }
  .main__page-section#what-makes-it-tick .main__page-section__section-title {
    justify-self: flex-start;
    font-size: 48px;
  }
  .main__page-section#what-makes-it-tick .main__page-section__section-description {
    font-size: 21px;
    line-height: 30px;
    font-weight: 300;
  }
  .main__page-section#ElectricvsHydraulic {
    flex-direction: column-reverse;
    align-items: center;
  }
  .main__page-section#ElectricvsHydraulic .main__page-section__section-title {
    text-align: left;
    font-size: 48px;
  }
  .main__page-section#ElectricvsHydraulic .main__page-section__section-description {
    font-size: 21px;
    line-height: 30px;
    font-weight: 300;
  }
  .main__page-section#ElectricvsHydraulic .right {
    max-width: 610px;
  }
  .main__page-section#work-smarter-not-harder {
    flex-direction: column;
  }
  .main__page-section#work-smarter-not-harder .left {
    max-width: 100%;
  }
  .main__page-section#work-smarter-not-harder .left .main__page-section__section-title {
    font-size: 48px;
    max-width: 100%;
  }
  .main__page-section#work-smarter-not-harder .left .main__page-section__section-description {
    font-size: 21px;
    width: 100%;
  }
  .main__page-section#work-smarter-not-harder .left :last-child {
    font-size: 21px;
    line-height: 30px;
    letter-spacing: -0.5px;
  }
  .main__page-section#take-a-look .take-a-look-videos {
    flex-direction: column;
  }
  .main__page-section#actuators-at-work .main__page-section__section-title {
    font-size: 48px;
  }
  .main__page-section#actuators-at-work .media {
    padding-top: 50px;
    max-width: 100%;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr;
  }
  .main__page-section#actuators-at-work .media figure > img {
    max-width: 100%;
  }
  .main__page-section#build-to-last {
    display: grid;
    justify-items: center;
    background-color: #1F4270;
    gap: 20px;
  }
  .main__page-section#build-to-last .main__page-section__section-title {
    font-size: 48px;
  }
  .main__page-section#build-to-last .main__page-section__section-description {
    font-size: 21px;
    font-weight: 200;
    line-height: 30px;
    letter-spacing: -0.3px;
    padding-top: 0;
  }
  .main__page-section#build-to-last .media {
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .main__page-section#build-to-last .media figure > img {
    width: 260px;
  }

  .description-container{
    max-width: 300px;
  }

  .icons-table{
    border-top: 2px solid black;
    border-left: 0px;
  }
}

/* @media screen and (max-width: 720px) {
  .main
  .main .hero__content-wrapper{
    display: grid;
    place-items: center;
    grid-template-columns: 1fr;
  }
  .main .hero__content__figure__media {
    width: 100%;
  }
} */

@media screen and (max-width: 721px) {
  .main {
    padding-bottom: 0;
  }
  .main .hero {
    flex-direction: column;
  }
  .main .hero__content-wrapper {
    flex-direction: column;
    align-items: center;
    /* padding: 0; */
  }

  .main .hero__form-container {
    align-self: center;
    max-width: 350px;
  }

  .main .hero__content-wrapper .hero__content {
    max-width: 100%;
    height: max-content;
  }

  .main .hero__content .logo-container {
    padding-left: 0;
  }
  .main .hero__content .logo-container__logo {
    width: 250px;
  }
  .main .hero__content__title {
    font-size: 48px;
    line-height: 48px;
  }
  .main .hero__content__figure__media {
    max-width: 100%;
  }
  .main .hero__key-specs-wrapper {
    margin-top: 30px;
  }
  .main .hero__key-specs {
    margin-bottom: 40px;
  }
  .main .hero__key-specs__grid {
    grid-template-columns: 1fr;
  }
  .main__page-section {
    padding: 70px 20px;
  }
  .main__page-section#ElectricvsHydraulic {
    gap: 0px;
  }
  .main__page-section#ElectricvsHydraulic .left figure > svg {
    width: 320px;
  }
  .main__page-section#work-smarter-not-harder {
    gap: 0;
    padding-bottom: 0;
  }
  .main__page-section#take-a-look {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .main__page-section#take-a-look .main__page-section__section-title {
    font-size: 48px;
    justify-self: flex-start;
  }
  .main__page-section#take-a-look .take-a-look-videos {
    margin-top: 30px;
    display: flex;
    gap: 40px;
  }
  .main__page-section#take-a-look .take-a-look-videos figure {
    width: 320px;
  }
  .main__page-section#actuators-at-work .media {
    grid-template-columns: 1fr;
  }
  .main__page-section#build-to-last .main__page-section__section-title {
    justify-self: flex-start;
  }
  .main__page-section#build-to-last .media {
    grid-template-columns: 1fr;
  }
  .main__footer#footer {
    height: 80px;
    align-items: center;
  }
  .main__footer#footer p {
    padding: 0 34px;
    text-align: center;
  }
  .description-container{
    max-width: 200px;
  }

  .icons-table{
    border-top: 2px solid black;
    border-left: 0px;
  }
}

@media screen and (max-width:361px) {

  .main .hero__content-wrapper {
    padding: 0 10px;
  }

  .main .hero__content-wrapper .hero__content {
    max-width: 360px;
    padding: 0 10px;
    align-items: flex-start;
    justify-content: center;
  }

  .main .hero__content__figure__media {
    position: unset;
    width: 100%;
    justify-self: flex-end;
  }

  .description-container{
    max-width: 200px;
  }

  .icons-table{
    border-top: 2px solid black;
    border-left: 0px;
  }
}
/*# sourceMappingURL=style.css.map */