* {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #084d52;
  zoom: 100%;
}

.identify:after {
  z-index: 20;
  color: #666;
  position: fixed;
  font-size: 3rem;
  top: 10%;
  right: 10%;
}

#header .header {
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
}

#header .header .nav-bar {
  background: rgba(26, 95, 104, 0.9);
  display: flex;
  flex-direction: row;
  box-shadow: 0px 0px 15px #12cefd;
  height: 60px;
}

#header .header .nav-bar .brand {
  flex-grow: 0.95;
}

#header .header .nav-bar .brand img {
  display: none;
}

#header .header .nav-bar .nav-list {
  width: fit-content;
  display: flex;
  align-items: right;
  line-height: 60px;
}

#header .header .nav-bar .nav-list .language select {
  color: #044d5a;
  text-decoration: none;
  margin-top: 20%;
  margin-right: 10px;
  padding: 5px 3px;
  border-radius: 5px;
}

#header .header .nav-bar .nav-list .hamburger {
  display: none;
}

#header .header .nav-bar .nav-list ul {
  position: initial;
  display: block;
  height: auto;
  text-align: right;
}

#header .header .nav-bar .nav-list ul li {
  display: inline-block;
}

#header .header .nav-bar .nav-list ul li a {
  text-decoration: none;
  margin-left: 30px;
  font-size: 0.9vw;
  text-transform: uppercase;
  color: #a8bbce;
  transition: 0.3s ease color;
}

#header .header .nav-bar .nav-list ul li a:hover {
  color: #11acd3;
  text-shadow: 0px 0px 1px white;
}

#main .container {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
}

#main .container .top {
  display: flex;
  flex-direction: column;
  height: 60vh;
  width: 100vw;
  max-height: 100%;
  max-width: 100%;
}

#main .container .top h1, #main .container .top h2 {
  animation: text_reveal .5s ease forwards;
  animation-delay: 1s;
}

#main .container .top h1 span, #main .container .top h2 span {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 0px;
  background-color: #07c2f1;
  animation: text_reveal_box 1s ease forwards;
  animation-delay: 2s;
  z-index: 10;
}

#main .container .top .text2 {
  font-size: 4vh;
  font-weight: 200;
}

#main .container .top .text2:nth-child(1) {
  position: absolute;
  margin-left: 50px;
  top: 27.5vh;
  color: transparent;
  animation: text_reveal .5s ease forwards;
  animation-delay: 4s;
}

#main .container .top .text2:nth-child(1) span {
  animation-delay: 3.5s;
}

#main .container .top .text2:nth-child(2) {
  position: absolute;
  margin-left: 50px;
  top: 33vh;
  color: transparent;
  animation-delay: 5s;
}

#main .container .top .text2:nth-child(2) span {
  animation-delay: 4.5s;
}

#main .container .top .title {
  font-size: 4.5vh;
  font-weight: 800;
  text-shadow: 0px 0px 20px #ffffff;
}

#main .container .top .title:nth-child(3) {
  position: absolute;
  margin-left: 50px;
  top: 39vh;
  color: transparent;
  animation-delay: 6s;
  text-shadow: 3px 3px 20px #37abaf;
}

#main .container .top .title:nth-child(3) span {
  animation-delay: 5.5s;
}

#main .container .top .button:nth-child(4) {
  position: absolute;
  padding: 10px 50px;
  margin-left: 50px;
  top: 47vh;
  font-size: 2.8vh;
  text-decoration: none;
  background-color: rgba(21, 102, 134, 0.4);
  border: 2px solid #1c95c5;
  text-transform: uppercase;
  transition: .3s ease;
  transition-property: background-color, color;
  border-radius: 5px;
  color: white;
}

#main .container .top .button:nth-child(4):hover {
  color: white;
  background-color: #117d85;
}

#main .container .top .logo img {
  position: absolute;
  margin-left: 45px;
  top: 12vh;
  width: 45vh;
  -webkit-filter: drop-shadow(0px 0px 1px #06273d);
}

#main .container .top .banner-image {
  display: flex;
  z-index: -1;
  height: 60vh;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
}

#main .container .top .banner-image img:nth-child(1) {
  position: absolute;
  height: 60vh;
  width: 100vw;
  max-width: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

#main .container .top .banner-image img:nth-child(2) {
  position: absolute;
  height: 60vh;
  width: 100vw;
  max-width: 100%;
  object-fit: cover;
  animation-name: FadeInOut;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-duration: 15s;
  animation-direction: alternate;
}

#main .container .top .banner-image img:nth-child(3) {
  position: absolute;
  height: 60vh;
  width: 100vw;
  max-width: 100%;
  object-fit: cover;
  animation-name: FadeInOut;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  animation-duration: 30s;
  animation-direction: alternate;
}

#main .container .top .banner-image::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0px;
  height: 60vh;
  width: 100vw;
  max-width: 100%;
  background-color: black;
  opacity: 0.5;
}

#main .container .bottom {
  display: flex;
  flex-direction: row;
  width: 100vw;
  max-width: 100%;
  height: 40vh;
  max-height: 100%;
  position: relative;
  background: linear-gradient(to right, whitesmoke 0%, whitesmoke 30%, #5c9096 62%, #006b73 100%);
}

#main .container .bottom .decoration {
  position: absolute;
  z-index: -2;
  left: 25em;
  width: 20em;
  border-left: 0px solid transparent;
  border-right: 225px solid transparent;
}

#main .container .bottom .bottom-left {
  width: 45vw;
  max-width: 100%;
}

#main .container .bottom .bottom-left .title {
  margin-left: 50px;
  margin-top: 5vh;
  margin-bottom: 20px;
  color: #0f4f5a;
  font-weight: 800;
}

#main .container .bottom .bottom-left .title:nth-child(1)::after {
  content: "We love to build Solutions !";
  font-size: 2.5vw;
}

#main .container .bottom .bottom-left .text1 {
  margin-left: 50px;
  color: #21707e;
}

#main .container .bottom .bottom-left .text1:nth-child(2)::after {
  content: "We are an Engineering team borned in 2003, our main";
  font-size: 1.3vw;
}

#main .container .bottom .bottom-left .text1:nth-child(3)::after {
  content: "goals are Industry project development, Automation";
  font-size: 1.3vw;
}

#main .container .bottom .bottom-left .text1:nth-child(4)::after {
  content: "services, and a full chain electric parts provider.";
  font-size: 1.35vw;
}

#main .container .bottom .bottom-left .text1:nth-child(5)::after {
  content: "We have a high technical counseling level,";
  font-size: 1.4vw;
}

#main .container .bottom .bottom-left .text1:nth-child(6)::after {
  content: "and also a very high transparency with";
  font-size: 1.45vw;
}

#main .container .bottom .bottom-left .text1:nth-child(7)::after {
  content: "all our customers and collaborators.";
  font-size: 1.48vw;
}

#main .container .bottom .bottom-right {
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 45vw;
  max-width: 100%;
  display: flex;
  flex-direction: row;
}

#main .container .bottom .bottom-right .engineer {
  width: 22em;
  max-width: 100%;
  height: 40vh;
  max-height: 100%;
  z-index: 1;
}

#main .container .bottom .bottom-right .engineer img {
  width: 37vh;
  position: absolute;
  bottom: 0%;
}

#main .container .bottom .bottom-right .text-block {
  width: 33em;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#main .container .bottom .bottom-right .text-block .text2:nth-child(1) {
  color: #589fa1;
  font-size: 3.5vh;
  font-weight: 400;
}

#main .container .bottom .bottom-right .text-block .text2:nth-child(2) {
  color: #0a4f5c;
  font-size: 3.4vh;
  font-weight: 800;
}

#main .container .bottom .bottom-right .text-block .text2:nth-child(2) span {
  color: #3cafa5;
}

#main .container .bottom .bottom-right .text-block img {
  width: 24vh;
  -webkit-filter: drop-shadow(0px 0px 3px #08525f);
}

#about {
  height: 100vh;
  widh: 100vw;
  max-height: 100%;
  max-width: 100%;
}

#about .container {
  display: flex;
  flex-direction: row;
}

#about .container .left {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
}

#about .container .left .title {
  color: #0d4a61;
  margin-left: 80px;
  width: 80%;
  font-size: 3.5vh;
  font-weight: 800;
}

#about .container .left .subtitle {
  color: #087880;
  margin-top: 3vh;
  margin-bottom: 2vh;
  margin-left: 80px;
  width: 80%;
  font-size: 3vh;
  font-weight: 400;
}

#about .container .left .text3 {
  color: #496f7e;
  margin-left: 80px;
  width: 80%;
  margin-top: 10px;
  font-size: 1.1vw;
  font-weight: 400;
}

#about .container .left .text3:nth-child(1) {
  margin-top: 100px;
  margin-bottom: 15px;
  font-weight: 800;
}

#about .container .left hr {
  border: 4px solid #6e8d8f;
  margin-top: 10px;
  margin-left: 80px;
  width: 79%;
}

#about .container .right {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

#about .container .right .top-banner {
  position: absolute;
  top: 11.5%;
  right: 10%;
  background-color: #d1e0e4;
  width: 40vw;
  height: 10vh;
  text-align: center;
  border-radius: 5px;
}

#about .container .right .top-banner .title {
  color: #0f6b86;
  font-size: 4.3vh;
  font-weight: 400;
  height: 10vh;
  line-height: 10vh;
}

#about .container .right .top-banner .title span {
  color: #0a96a0;
  font-weight: 800;
}

#about .container .right .bottom-pictures img:nth-child(1) {
  position: absolute;
  left: 0%;
  top: 30%;
  width: 35vw;
}

#about .container .right .bottom-pictures img:nth-child(2) {
  position: absolute;
  left: 10%;
  top: 45%;
  width: 40vw;
}

#services .container {
  background: #ecf1f6;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

#services .container .top {
  display: flex;
  flex-direction: row;
  height: 50vh;
  max-height: 100%;
}

#services .container .top .left {
  width: 50vw;
  height: 50vh;
  text-align: center;
}

#services .container .top .left h2 {
  margin-top: 20%;
  font-size: 4.5vh;
  font-weight: 300;
  color: #0c4e5a;
}

#services .container .top .left h1 {
  font-size: 7vh;
  color: #10899e;
}

#services .container .top .right {
  display: flex;
  flex-direction: row;
  width: 50vw;
  height: 50vh;
  max-width: 100%;
  max-height: 100%;
}

#services .container .top .right .pictures {
  display: flex;
  flex-direction: column;
  width: 500px;
  position: relative;
}

#services .container .top .right .pictures .group {
  position: absolute;
  top: 23%;
  left: 15%;
}

#services .container .top .right .pictures .group img {
  margin: 15px 0px;
  width: 8.5vh;
  height: 8.5vh;
  transition: .2s ease transform;
}

#services .container .top .right .pictures .group img:hover {
  transform: scale(1.2);
  -webkit-filter: drop-shadow(0px 0px 5px #0d4f50);
}

#services .container .top .right .text {
  padding-left: 100px;
  padding-right: 100px;
}

#services .container .top .right .text .tittle {
  margin-top: 26%;
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
}

#services .container .top .right .text .tittle img {
  width: 5vh;
  height: 5vh;
}

#services .container .top .right .text .tittle h2 {
  position: absolute;
  top: 25%;
  left: 16%;
  font-size: 1.8vw;
  color: #19615d;
}

#services .container .top .right .text hr {
  margin-top: 15px;
  border: 4px solid #6e8d8f;
}

#services .container .top .right .text h1 {
  margin-top: 30px;
  text-align: justify;
  font-weight: 300;
  font-size: 1.3vw;
}

#services .container .bottom {
  width: 100vw;
  height: 50vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

#services .container .bottom .card1 {
  flex-basis: 15%;
  padding: 40px;
  width: 15vw;
  height: 25vh;
  border-radius: 7px;
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  position: relative;
}

#services .container .bottom .card1 h1 {
  font-size: 1rem;
  font-weight: 800;
  color: white;
}

#services .container .bottom .card1 h2 {
  color: #ffffff;
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 300;
  text-align: justify;
}

#services .container .bottom .card1::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #000000;
  border-radius: 7px;
  opacity: 0.6;
  z-index: -1;
}

#services .container .bottom .card1:nth-child(1) {
  background-image: url("images/service10.jpg");
}

#services .container .bottom .card1:nth-child(2) {
  background-image: url("images/service11.jpg");
}

#services .container .bottom .card1:nth-child(3) {
  background-image: url("images/automation06.jpg");
}

#services .container .bottom .card1:nth-child(4) {
  background-image: url("images/board01.jpg");
}

#projects .container {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

#projects .container .more {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  z-index: 101;
  display: none;
}

#projects .container .more .content {
  background: #1b6c6d;
  border-radius: 10px;
  width: 50%;
  height: 80%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  padding: 50px;
  opacity: 1;
}

#projects .container .more .content img {
  position: absolute;
  width: 5%;
  right: 5%;
}

#projects .container .more .content h3 {
  color: #6ca1a1;
  padding: 10px 0px;
  font-size: 3.5vh;
  font-weight: 300;
}

#projects .container .more .content h1 {
  color: white;
  font-size: 5vh;
}

#projects .container .more .content hr {
  margin: 20px 0px;
  border: 2px solid #498383;
}

#projects .container .more .content h2 {
  color: white;
  font-size: 3vh;
  font-weight: 300;
  text-align: justify;
}

#projects .container .more .content h3:nth-child(5) {
  margin-top: 30px;
}

#projects .container .more .content h3:nth-child(7) {
  margin-top: 30px;
}

#projects .container .top {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 40vh;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
}

#projects .container .top .right {
  background: #dfebea;
  position: absolute;
  right: 2.5%;
  top: 31%;
  padding: 35px;
  border-radius: 7px;
  width: 30%;
  text-align: center;
}

#projects .container .top .right h1 {
  font-size: 4.5vh;
  font-weight: 300;
  color: #17797c;
}

#projects .container .top .right h1 span {
  font-weight: 800;
  color: #0ea0a5;
}

#projects .container .top .left {
  width: 100vw;
  height: 50vh;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

#projects .container .top .left .text {
  padding-left: 60px;
  padding-right: 60px;
}

#projects .container .top .left .text .tittle {
  margin-top: 8%;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 20px;
}

#projects .container .top .left .text .tittle img {
  width: 5vh;
  height: 5vh;
}

#projects .container .top .left .text .tittle h2 {
  position: absolute;
  top: 25%;
  left: 6%;
  font-size: 2vw;
  color: #19615d;
}

#projects .container .top .left .text hr {
  width: 50%;
  border: 4px solid #6e8d8f;
}

#projects .container .top .left .text h1 {
  width: 50%;
  margin-top: 30px;
  text-align: justify;
  font-size: 1.2vw;
  font-weight: 300;
  color: #235f64;
}

#projects .container .bottom {
  background: #dde6e6;
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  height: fit-content;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 1;
}

#projects .container .bottom .card2 {
  background: linear-gradient(60deg, #092b3f 0%, #4a8585 30%);
  flex-basis: 29%;
  height: 27vh;
  border-radius: 7px;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  margin: 15px 10px;
  position: relative;
  z-index: 1;
}

#projects .container .bottom .card2 .sideright::after {
  background-size: cover;
  content: "";
  position: absolute;
  top: 0%;
  left: 0px;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.3;
  z-index: -1;
}

#projects .container .bottom .card2 .sideleft {
  padding: 20px;
  width: 80%;
}

#projects .container .bottom .card2 .sideleft h1 {
  font-size: 2.5vh;
  font-weight: 800;
  color: white;
}

#projects .container .bottom .card2 .sideleft h2 {
  font-size: 2vh;
  font-weight: 800;
  text-align: justify;
  color: white;
  margin: 12px 0px;
}

#projects .container .bottom .card2 .sideleft h3 {
  font-size: 1.7vh;
  font-weight: 300;
  text-align: justify;
  color: white;
}

#projects .container .bottom .card2 .sideright {
  z-index: -1;
  background-size: cover;
  width: 100%;
  position: relative;
  transition: .3s ease transform;
}

#projects .container .bottom .card2 .sideright a {
  position: absolute;
  width: 40%;
  text-align: center;
  top: 78%;
  right: 25%;
  text-decoration: none;
  color: #84cfcf;
  font-size: 20px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 3px 20px;
  background: #0e5662;
  opacity: 0.5;
  transition: .3s ease opacity;
}

#projects .container .bottom .card2 .sideright a:hover {
  color: white;
  background: #13857b;
  opacity: 1;
}

#projects .container .bottom .card2:nth-child(1) .sideright {
  background-image: url("images/ind2.jpg");
}

#projects .container .bottom .card2:nth-child(2) .sideright {
  background-image: url("images/industry05.jpeg");
}

#projects .container .bottom .card2:nth-child(3) .sideright {
  background-image: url("images/ind1.jpg");
}

#projects .container .bottom .card2:nth-child(4) .sideright {
  background-image: url("images/ind3.jpg");
}

#projects .container .bottom .card2:nth-child(5) .sideright {
  background-image: url("images/industry04.jpeg");
}

#projects .container .bottom .card2:nth-child(6) .sideright {
  background-image: url("images/industry06.jpg");
}

#projects .container .bottom .card2 .sideright:hover {
  transform: scale(1.05);
}

#projects .container .bottom .card2:nth-child(2) .sideright:hover {
  transform: scale(1.05);
}

#projects .container .bottom .card2:nth-child(3) .sideright:hover {
  transform: scale(1.05);
}

#projects .container .bottom .card2:nth-child(4) .sideright:hover {
  transform: scale(1.05);
}

#projects .container .bottom .card2:nth-child(5) .sideright:hover {
  transform: scale(1.05);
}

#projects .container .bottom .card2:nth-child(6) .sideright:hover {
  transform: scale(1.05);
}

#tutorials .container {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
}

#tutorials .container .top {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 30vh;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
}

#tutorials .container .top .right {
  background: #dfebea;
  position: absolute;
  right: 6%;
  top: 65%;
  padding: 20px 20px;
  border-radius: 7px;
  width: 40%;
  height: 7%;
  text-align: center;
}

#tutorials .container .top .right a {
  font-size: .9vw;
  font-weight: 300;
  text-decoration: none;
  color: #0e747e;
}

#tutorials .container .top .right a:nth-child(1) {
  font-size: 1.6rem;
  font-weight: 800;
  transition: .2s ease font-size;
}

#tutorials .container .top .right a:nth-child(2) {
  transition: .2s ease font-size;
}

#tutorials .container .top .right a:nth-child(3) {
  transition: .2s ease font-size;
}

#tutorials .container .top .right a:nth-child(4) {
  transition: .2s ease font-size;
}

#tutorials .container .top .right a:nth-child(5) {
  transition: .2s ease font-size;
}

#tutorials .container .top .left {
  width: 100vw;
  height: 50vh;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

#tutorials .container .top .left .text {
  position: absolute;
  top: 63%;
  left: 4%;
  width: 40vw;
  height: 10vh;
}

#tutorials .container .top .left .text .tittle {
  top: 0%;
  left: 0%;
  height: 7.5vh;
}

#tutorials .container .top .left .text .tittle img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 5vh;
  height: 5vh;
}

#tutorials .container .top .left .text .tittle h2 {
  position: absolute;
  top: 15%;
  left: 13%;
  font-size: 3vh;
  color: #19615d;
}

#tutorials .container .top .left .text hr {
  top: 0%;
  width: 95%;
  border-top: 7px solid #6e8d8f;
}

#tutorials .container .top .left .text h1 {
  width: 50%;
  margin-top: 30px;
  text-align: justify;
  font-weight: 300;
  color: #235f64;
}

#tutorials .container .bottom {
  width: 100vw;
  height: 80vh;
  max-width: 100%;
  max-height: 100%;
}

#tutorials .container .bottom .downloads {
  height: 90vh;
  width: 100vw;
  max-width: 100%;
  display: none;
}

#tutorials .container .bottom .downloads .col1 {
  width: 100vw;
  max-width: 100%;
  max-height: 67vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#tutorials .container .bottom .downloads .col1 .card {
  flex-basis: 28%;
  margin-left: 0px;
  width: 500px;
  height: 100px;
  display: flex;
  margin-left: 0px;
}

#tutorials .container .bottom .downloads .col1 .card img {
  width: 80px;
  height: 80px;
  margin-top: 10px;
}

#tutorials .container .bottom .downloads .col1 .card .text {
  margin-left: 10px;
}

#tutorials .container .bottom .downloads .col1 .card .text h3 {
  margin-top: 20px;
  color: #155d5a;
}

#tutorials .container .bottom .downloads .col1 .card .text h4 {
  margin-top: 5px;
  font-weight: 300;
}

#tutorials .container .bottom .videos {
  height: 80%;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin-left: 5vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

#tutorials .container .bottom .videos .cardt {
  flex-basis: 25vw;
}

#tutorials .container .bottom .videos .cardt iframe {
  margin: 30px 0px;
  width: 750px;
  height: 220px;
  max-width: 500px;
  max-height: 250px;
  border-radius: 20px;
}

#tutorials .container .bottom .videos .cardt h2 {
  font-size: 1.2rem;
  font-weight: 300;
  width: 500px;
  text-align: center;
}

#quotes .container {
  background: #f8f8f8;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
}

#quotes .container .left {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

#quotes .container .left .content-left {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  position: absolute;
  top: 0%;
  left: 0;
}

#quotes .container .left .content-left .banner {
  width: 90%;
  margin-top: 120px;
  margin-left: 8%;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 20px;
}

#quotes .container .left .content-left .banner img {
  width: 5vh;
  height: 5vh;
  transform: translate(50%, 0%);
}

#quotes .container .left .content-left .banner h2 {
  position: absolute;
  top: 25%;
  left: 7%;
  font-size: 3vh;
  color: #19615d;
  transform: translate(50%, 0%);
}

#quotes .container .left .content-left hr {
  margin-left: 5%;
  width: 89%;
  border: 4px solid #6e8d8f;
}

#quotes .container .left .content-left h3 {
  margin-left: 5%;
  width: 90%;
  font-size: 2.5vh;
  font-weight: 300;
  text-align: justify;
}

#quotes .container .left .content-left h3:nth-child(3) {
  margin-top: 20px;
}

#quotes .container .left .content-left img:nth-child(4) {
  position: absolute;
  top: 35%;
  left: 25%;
  width: 38vh;
  transition: .3s ease transform;
}

#quotes .container .left .content-left img:hover {
  transform: scale(1.25);
}

#quotes .container .left .content-left h2:nth-child(5) {
  position: absolute;
  width: 90%;
  text-align: center;
  top: 83%;
  left: 5%;
  font-size: 2rem;
  font-weight: 300;
  color: #1aa0b8;
}

#quotes .container .left .links {
  position: absolute;
  top: 89%;
  left: 3vw;
  width: 45vw;
  height: 3vh;
  text-align: center;
  background: #dfebea;
  padding: 20px 0px;
  border-radius: 7px;
  z-index: 10;
  transform: translate(0%, 0%);
}

#quotes .container .left .links a {
  font-size: 1.3rem;
  font-weight: 300;
  text-decoration: none;
  color: #0e747e;
}

#quotes .container .left .links a:nth-child(1) {
  font-size: 1.6rem;
  font-weight: 800;
  transition: .2s ease font-size;
}

#quotes .container .left .links a:nth-child(2) {
  transition: .2s ease font-size;
}

#quotes .container .left .links a:nth-child(3) {
  transition: .2s ease font-size;
}

#quotes .container .left .links a:nth-child(4) {
  transition: .2s ease font-size;
}

#quotes .container .left .links a:nth-child(5) {
  transition: .2s ease font-size;
}

#quotes .container .right {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

#quotes .container .right h2 {
  position: absolute;
  top: 13%;
  left: 7%;
  font-size: 4.5vh;
  font-weight: 300;
  color: #1aa0b8;
}

#quotes .container .right .form2 {
  position: absolute;
  top: 20%;
  left: 6.5%;
  background: #aaccc6;
  width: 40vw;
  height: fit-content;
  padding: 35px 30px;
  border-radius: 10px;
}

#quotes .container .right .form2 input[type='text'] {
  margin: 3px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 3px;
  height: 35px;
  width: 99%;
}

#quotes .container .right .form2 input[type='submit'] {
  margin-top: 20px;
  margin-left: 3px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form2 input[type='reset'] {
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form2 input[type='submit']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form2 input[type='reset']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form2 input:nth-child(15) {
  height: 70px;
  line-height: 3px;
}

#quotes .container .right .form3 {
  position: absolute;
  top: 20%;
  left: 6.5%;
  background: #aaccc6;
  width: 40vw;
  height: fit-content;
  padding: 35px 30px;
  border-radius: 10px;
  display: none;
}

#quotes .container .right .form3 input[type='text'] {
  margin: 3px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 3px;
  height: 35px;
  width: 99%;
}

#quotes .container .right .form3 input[type='submit'] {
  margin-top: 20px;
  margin-left: 3px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form3 input[type='reset'] {
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form3 input[type='submit']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form3 input[type='reset']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form3 input:nth-child(15) {
  height: 70px;
  line-height: 3px;
}

#quotes .container .right .form4 {
  position: absolute;
  top: 20%;
  left: 6.5%;
  background: #aaccc6;
  width: 40vw;
  height: fit-content;
  padding: 35px 30px;
  border-radius: 10px;
  display: none;
}

#quotes .container .right .form4 input[type='text'] {
  margin: 3px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 3px;
  height: 35px;
  width: 99%;
}

#quotes .container .right .form4 input[type='submit'] {
  margin-top: 20px;
  margin-left: 3px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form4 input[type='reset'] {
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form4 input[type='submit']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form4 input[type='reset']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form4 input:nth-child(15) {
  height: 70px;
  line-height: 3px;
}

#quotes .container .right .form5 {
  position: absolute;
  top: 20%;
  left: 6.5%;
  background: #aaccc6;
  width: 40vw;
  height: fit-content;
  padding: 35px 30px;
  border-radius: 10px;
  display: none;
}

#quotes .container .right .form5 input[type='text'] {
  margin: 3px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 3px;
  height: 35px;
  width: 99%;
}

#quotes .container .right .form5 input[type='submit'] {
  margin-top: 20px;
  margin-left: 3px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form5 input[type='reset'] {
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form5 input[type='submit']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form5 input[type='reset']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form5 input:nth-child(15) {
  height: 70px;
  line-height: 3px;
}

#quotes .container .right .form6 {
  position: absolute;
  top: 20%;
  left: 6.5%;
  background: #aaccc6;
  width: 40vw;
  height: fit-content;
  padding: 35px 30px;
  border-radius: 10px;
  display: none;
}

#quotes .container .right .form6 input[type='text'] {
  margin: 3px;
  font-size: 1.3rem;
  border: 0;
  border-radius: 3px;
  height: 35px;
  width: 99%;
}

#quotes .container .right .form6 input[type='submit'] {
  margin-top: 20px;
  margin-left: 3px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form6 input[type='reset'] {
  margin-top: 20px;
  margin-left: 20px;
  padding: 10px 40px;
  font-size: 1.3rem;
  border-radius: 5px;
  border: 0;
}

#quotes .container .right .form6 input[type='submit']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form6 input[type='reset']:hover {
  background: #09a093;
  color: white;
}

#quotes .container .right .form6 input:nth-child(15) {
  height: 70px;
  line-height: 3px;
}

#contact .container {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  position: relative;
}

#contact .container .left {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}

#contact .container .left .content-left {
  width: 93%;
  max-width: 100%;
  max-height: 100%;
  margin-top: 30px;
  margin-left: 100px;
  position: absolute;
  top: 8%;
}

#contact .container .left .content-left .banner {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 20px;
}

#contact .container .left .content-left .banner img {
  width: 5vh;
  height: 5vh;
}

#contact .container .left .content-left .banner h2 {
  position: absolute;
  top: 25%;
  left: 11%;
  font-size: 3vh;
  color: #19615d;
}

#contact .container .left .content-left hr {
  width: 90%;
  border-top: 7px solid #6e8d8f;
}

#contact .container .left .content-left .card1 {
  display: flex;
  flex-direction: row;
  margin-top: 3.2vh;
}

#contact .container .left .content-left .card1 .image img {
  width: 10vh;
  height: 10vh;
  border-radius: 10px;
  margin-right: 30px;
}

#contact .container .left .content-left .card1 .text h2 {
  color: #1aa0b8;
  font-size: 2vh;
}

#contact .container .left .content-left .card1 .text h3 {
  margin-top: 0.8vh;
  font-weight: 300;
  font-size: 1.8vh;
}

#contact .container .left .content-left .card1 .text h3 span {
  font-weight: 800;
}

#contact .container .left .content-left .card1 .text h3 a {
  background: #1db118;
  padding: 1px 10px;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

#contact .container .left .content-left .card1 .text .wt span {
  font-weight: 800;
}

#contact .container .left .content-left .card1 .text .wt a {
  background: none;
  padding: 1px 10px;
  color: #064853;
  text-decoration: underline;
  border-radius: 4px;
  margin-bottom: 45px;
}

#contact .container .right {
  width: 50vw;
  height: 100vh;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: columns;
  position: relative;
}

#contact .container .right h2 {
  position: absolute;
  top: 12%;
  left: 10%;
  font-size: 5vh;
  font-weight: 300;
  color: #1aa0b8;
}

#contact .container .right iframe {
  position: absolute;
  top: 22%;
  left: 10%;
  width: 70vh;
  height: 45vh;
  border-radius: 5px;
  transition: .3s ease transform;
}

#contact .container .right a {
  position: absolute;
  top: 75%;
  left: 22.3%;
  width: 48%;
  background: #0f7772;
  color: white;
  padding: 2vh 3vh;
  border-radius: 7px;
  text-decoration: none;
  font-size: 4vh;
  text-align: center;
  transition: .3s ease background;
}

#contact .container .right a:hover {
  background: #24b1aa;
}

#contact .container .footer {
  content: "gdlga";
  position: absolute;
  background: #0b595c;
  width: 100vw;
  max-width: 100%;
  height: 90px;
  bottom: 0%;
  left: 0%;
  display: flex;
  flex-direction: row;
}

#contact .container .footer .left {
  width: 50vw;
  max-width: 50%;
}

#contact .container .footer .left h3 {
  margin-top: 20px;
  margin-left: 30px;
  margin-bottom: 5px;
  color: white;
}

#contact .container .footer .left h4 {
  margin-left: 30px;
  font-weight: 300;
  color: white;
}

#contact .container .footer .left h5 {
  margin-left: 30px;
  font-weight: 300;
  color: #316479;
  font-size: 0.6rem;
}

#contact .container .footer .left h5 a {
  color: #316479;
  font-size: 0.6rem;
}

#contact .container .footer .right {
  background: #0b595c;
  width: 50vw;
  max-width: 50%;
}

@media only screen and (max-width: 1681px) {
  #tutorials .container {
    height: 1250px;
  }
  #tutorials .container .bottom .downloads {
    margin-top: -5%;
  }
  #tutorials .container .bottom .downloads .col1 .card {
    margin-top: 90px;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    margin-top: 5%;
  }
  #quotes .container .left .content-left h2:nth-child(5) {
    width: 45vw;
    font-size: 1.8rem;
  }
  #quotes .container .left .links {
    width: 58%;
  }
  #quotes .container .left .links a {
    font-size: 1.1rem;
  }
  #projects .container .top .left .text h1 {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 1400px) {
  #main .container .top .logo img {
    top: 15vh;
  }
  #main .container .bottom .bottom-left .title:nth-child(1)::after {
    font-size: 2vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(2)::after {
    content: "We are an Engineering team borned in 2003";
    font-size: 1.27vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(3)::after {
    content: "our main goals are the Industry projects";
    font-size: 1.27vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(4)::after {
    content: "development, Automation services,";
    font-size: 1.3vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(5)::after {
    content: "and an electric parts provider.";
    font-size: 1.33vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(6)::after {
    content: "";
    font-size: 1.27vw;
  }
  #main .container .bottom .bottom-left .text1:nth-child(7)::after {
    content: "";
    font-size: 1.27vw;
  }
  #about .container .left .title {
    font-size: 1.5vw;
  }
  #about .container .left .subtitle {
    font-size: 1.3vw;
  }
  #about .container .left .text3 {
    font-size: 0.9vw;
  }
  #about .container .right .top-banner {
    top: 15%;
  }
  #about .container .right .top-banner .title {
    font-size: 2.3rem;
  }
  #services .container .top .left {
    height: fit-content;
  }
  #services .container .top .right {
    margin-top: 6vh;
    height: fit-content;
  }
  #services .container .top .right .pictures .group {
    width: 40px;
    padding-top: 10px;
  }
  #services .container .top .right .pictures .group img {
    width: 40px;
    height: 40px;
    margin: 10px 0px;
  }
  #services .container .top .right .text .tittle {
    margin-top: 18%;
  }
  #services .container .top .right .text .tittle h2 {
    font-size: 1.5vw;
    left: 18%;
  }
  #services .container .top .right .text h1 {
    font-size: 1vw;
  }
  #services .container .bottom .card1 h1 {
    font-size: 1vw;
  }
  #services .container .bottom .card1 h2 {
    font-size: 1vw;
  }
  #projects .container .top .right {
    padding: 10px 35px;
    top: 40%;
  }
  #projects .container .top .right h1 {
    font-size: 2rem;
  }
  #projects .container .top .left .text {
    padding-left: 35px;
    padding-right: 35px;
  }
  #projects .container .top .left .text .tittle h2 {
    font-size: 1.6vw;
    left: 5.5%;
  }
  #projects .container .top .left .text h1 {
    margin-top: 10px;
    font-size: 0.8rem;
  }
  #projects .container .bottom .card2 {
    flex-basis: 45%;
    margin: 20px 0px;
  }
  #projects .container .bottom .card2 .sideright a {
    top: 68%;
  }
  #tutorials .container {
    margin-top: 310px;
    max-height: 1300px;
    position: relative;
    z-index: 1;
  }
  #tutorials .container .top .right a {
    font-size: 1.3rem;
  }
  #tutorials .container .top .left .text hr {
    width: 100%;
  }
  #tutorials .container .bottom {
    display: block;
  }
  #tutorials .container .bottom .videos {
    position: relative;
  }
  #tutorials .container .bottom .videos .cardt iframe {
    margin: 15px 0px;
  }
  #quotes .container {
    flex-direction: column;
    height: 1650px;
    max-height: fit-content;
  }
  #quotes .container .left {
    width: 100vw;
    height: 750px;
  }
  #quotes .container .left .content-left {
    width: 100vw;
    height: 100%;
  }
  #quotes .container .left .content-left .banner {
    margin-left: 3.5%;
  }
  #quotes .container .left .content-left .banner img {
    left: 0;
  }
  #quotes .container .left .content-left .banner h2 {
    left: 1%;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    top: 30%;
    left: 38%;
    width: 25%;
  }
  #quotes .container .left .content-left h2:nth-child(5) {
    top: 87%;
    left: 4%;
    width: 93%;
  }
  #quotes .container .left .links {
    left: 50%;
    top: 93%;
    width: 40%;
    transform: translate(-50%, 0%);
  }
  #quotes .container .right {
    width: 100vw;
    height: 850px;
    max-height: 10  0%;
  }
  #quotes .container .right h2 {
    top: 5%;
    left: 5%;
  }
  #quotes .container .right .form2 {
    top: 17%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85vw;
    margin: 0;
  }
  #quotes .container .right .form3 {
    top: 17%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85vw;
    margin: 0;
  }
  #quotes .container .right .form4 {
    top: 17%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85vw;
  }
  #quotes .container .right .form5 {
    top: 17%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85vw;
  }
  #quotes .container .right .form6 {
    top: 17%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 85vw;
  }
  #contact .container {
    flex-direction: column;
    height: 200vh;
    max-height: fit-content;
  }
  #contact .container .left {
    width: 100vw;
    height: 75vh;
  }
  #contact .container .left .content-left {
    max-width: 80vw;
    margin-left: 70px;
  }
  #contact .container .left .content-left .banner {
    margin-top: 3%;
  }
  #contact .container .left .content-left .banner h2 {
    left: 7.5%;
  }
  #contact .container .left .content-left .card1 {
    margin-top: 5vh;
  }
  #contact .container .left .content-left .card1 .image img {
    width: 14vh;
    height: 14vh;
  }
  #contact .container .left .content-left .card1 .text h2 {
    font-size: 2.5vh;
  }
  #contact .container .left .content-left .card1 .text h3 {
    font-size: 2.3vh;
  }
  #contact .container .right {
    width: 100vw;
  }
  #contact .container .right h2 {
    top: 35%;
    left: 5%;
  }
  #contact .container .right iframe {
    width: 90%;
    height: 40%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #contact .container .right a {
    top: 95%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, 0%);
  }
}

@media only screen and (max-width: 1126px) {
  #services .container .top .right .text h1 {
    font-size: 2vw;
  }
  #tutorials .container {
    height: 2020px;
    max-height: 2400px;
  }
  #tutorials .container .top {
    height: 350px;
  }
  #tutorials .container .top .right {
    top: 70%;
    height: 30px;
    width: 80vw;
  }
  #tutorials .container .top .left .text {
    width: 86.5%;
    height: 10vh;
    top: 40%;
    left: 6.5%;
  }
  #tutorials .container .top .left .text .tittle {
    height: fit-content;
  }
  #tutorials .container .top .left .text .tittle h2 {
    left: 12%;
  }
  #tutorials .container .top .left .text hr {
    position: absolute;
    top: 95%;
    left: 0%;
    width: 100%;
  }
  #tutorials .container .bottom .downloads .col1 {
    margin-top: 4%;
  }
  #tutorials .container .bottom .downloads .col1 .card {
    flex-basis: 40%;
    margin-top: 9%;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    width: 30%;
    left: 35%;
  }
  #quotes .container .left .content-left h2:nth-child(5) {
    top: 84%;
  }
  #quotes .container .left .links {
    top: 90%;
  }
}

@media only screen and (max-width: 1100px) {
  #header .header .nav-bar .nav-list ul li a {
    font-size: 1.2vw;
  }
  #main .container .top {
    height: 40vh;
    max-height: 100%;
  }
  #main .container .top .logo img {
    top: 9vh;
    width: 320px;
  }
  #main .container .top .text2:nth-child(1) {
    top: 18.5vh;
    font-size: 1.5rem;
  }
  #main .container .top .text2:nth-child(2) {
    top: 21.5vh;
    font-size: 1.5rem;
  }
  #main .container .top .title:nth-child(3) {
    top: 24.5vh;
    font-size: 2rem;
  }
  #main .container .top .button:nth-child(4) {
    top: 31vh;
    font-size: 1.4rem;
  }
  #main .container .top .banner-image {
    display: flex;
    z-index: -1;
  }
  #main .container .top .banner-image img {
    width: 100vw;
    height: 40vh;
    max-width: 100%;
    max-height: 40%;
    object-fit: cover;
  }
  #main .container .top .banner-image::after {
    height: 40vh;
    max-height: 40%;
  }
  #main .container .bottom {
    background: none;
    flex-direction: column;
    height: 60vh;
  }
  #main .container .bottom .decoration {
    border-bottom: 0vh solid transparent;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    left: 0em;
    width: 0em;
  }
  #main .container .bottom .bottom-right {
    width: 100vw;
    height: 30vh;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    background: linear-gradient(to right, #9ab7be 0%, whitesmoke 30%, #5c9096 62%, #006b73 100%);
  }
  #main .container .bottom .bottom-right .engineer {
    width: 50vw;
    max-width: 50%;
  }
  #main .container .bottom .bottom-right .engineer img {
    width: 260px;
    left: 10%;
  }
  #main .container .bottom .bottom-right .text-block {
    width: 50vw;
    max-width: 50%;
  }
  #main .container .bottom .bottom-right .text-block img {
    width: 14em;
  }
  #main .container .bottom .bottom-right .text-block .text2:nth-child(1) {
    font-size: 1.37rem;
  }
  #main .container .bottom .bottom-right .text-block .text2:nth-child(2) {
    font-size: 1.25rem;
  }
  #main .container .bottom .bottom-left {
    width: 95vw;
    height: 30vh;
    max-width: 100%;
  }
  #main .container .bottom .bottom-left .title:nth-child(1)::after {
    font-size: 2rem;
  }
  #main .container .bottom .bottom-left .text1 {
    text-align: justify;
  }
  #main .container .bottom .bottom-left .text1:nth-child(2)::after {
    content: "We are an Engineering team borned in 2003, our main goals are Industry project development, Automation services, and a full chain electric parts provider. We have a high technical counseling level, and also transparency with all our customers - collaborators.";
    font-size: 1.35rem;
  }
  #main .container .bottom .bottom-left .text1:nth-child(3)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(4)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(5)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(6)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(7)::after {
    content: "";
  }
  #about {
    height: fit-content;
  }
  #about .container {
    flex-direction: column;
  }
  #about .container .left {
    width: 100vw;
    height: fit-content;
    max-width: 100%;
  }
  #about .container .left .title {
    font-size: 2.2rem;
  }
  #about .container .left .subtitle {
    font-size: 2.5rem;
  }
  #about .container .left .text3 {
    font-size: 1.2rem;
  }
  #about .container .right {
    width: 100vw;
    height: 90vh;
  }
  #about .container .right .top-banner {
    width: 70vw;
    height: 10vh;
  }
  #about .container .right .top-banner .title {
    font-size: 2.2rem;
  }
  #about .container .right .bottom-pictures img:nth-child(1) {
    position: absolute;
    left: 0%;
    top: 35%;
    width: 60vw;
  }
  #about .container .right .bottom-pictures img:nth-child(2) {
    position: absolute;
    left: 10%;
    top: 45%;
    width: 80vw;
  }
  #services .container {
    flex-direction: column;
    height: fit-content;
    max-height: 100;
  }
  #services .container .top {
    flex-direction: column;
  }
  #services .container .top .left {
    width: 100vw;
    max-width: 100%;
    height: 30vh;
    max-height: 100%;
  }
  #services .container .top .left h2 {
    margin-top: 17vw;
  }
  #services .container .top .right {
    width: 100vw;
    max-width: 100%;
    height: 33vh;
    max-height: 500px;
  }
  #services .container .top .right .pictures {
    display: flex;
    flex-direction: column;
  }
  #services .container .top .right .pictures .group {
    left: 40%;
    width: 50px;
  }
  #services .container .top .right .pictures .group img {
    margin: 12px 0px;
    width: 60px;
    height: 60px;
  }
  #services .container .top .right .text {
    padding-left: 70px;
    padding-right: 30px;
  }
  #services .container .top .right .text .tittle h2 {
    font-size: 1.3rem;
    left: 14%;
  }
  #services .container .bottom {
    height: fit-content;
    margin-top: 25vh;
  }
  #services .container .bottom .card1 {
    flex-basis: 30%;
    margin: 20px 0px;
  }
  #services .container .bottom .card1 h1 {
    font-size: 1.2rem;
  }
  #services .container .bottom .card1 h2 {
    font-size: 0.9rem;
  }
  #projects .container {
    height: fit-content;
  }
  #projects .container .top {
    height: 50vh;
  }
  #projects .container .top .right {
    top: 20%;
    left: 3.5%;
    width: 87%;
  }
  #projects .container .top .right h1 {
    font-size: 2rem;
  }
  #projects .container .top .left .text {
    position: absolute;
    bottom: 10%;
  }
  #projects .container .top .left .text .tittle h2 {
    left: 11%;
    font-size: 1.4rem;
  }
  #projects .container .top .left .text hr {
    width: 98%;
  }
  #projects .container .top .left .text h1 {
    width: 100%;
  }
  #projects .container .bottom .card2 {
    flex-basis: 45%;
    margin: 20px 0px;
  }
  #tutorials .container {
    margin-top: 0px;
    height: 2100px;
  }
  #tutorials .container .top {
    height: 45vh;
  }
  #tutorials .container .top .right {
    top: 67%;
  }
  #tutorials .container .top .left .text {
    top: 43%;
  }
  #tutorials .container .top .left .text .tittle h2 {
    font-size: 1.4rem;
  }
  #tutorials .container .top .left .text hr {
    top: 70%;
  }
  #tutorials .container .bottom {
    height: fit-content;
  }
  #tutorials .container .bottom .downloads .col1 .card {
    margin-top: 10%;
  }
  #quotes .container .left .content-left .banner h2 {
    left: 11%;
    font-size: 1.4rem;
  }
  #quotes .container .left .content-left h3 {
    font-size: 1.3rem;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    top: 35%;
  }
  #quotes .container .left .links {
    width: 50%;
    margin-left: 0;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #contact .container {
    height: 1650px;
  }
  #contact .container .left .content-left .banner h2 {
    left: 13%;
    font-size: 1.4rem;
  }
  #contact .container .left .content-left .card1 .image img {
    width: 110px;
    height: 110px;
  }
  #contact .container .left .content-left .card1 .text h2 {
    font-size: 1.4rem;
  }
  #contact .container .left .content-left .card1 .text h3 {
    font-size: 1.2rem;
  }
  #contact .container .right h2 {
    top: 20vh;
  }
  #contact .container .right iframe {
    top: 30vh;
  }
  #contact .container .right a {
    top: 75vh;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

@media only screen and (max-width: 900px) {
  #projects .container .bottom .card2 {
    flex-basis: 60%;
    flex-direction: column;
    height: 50vh;
    overflow-y: 100vw;
  }
  #projects .container .bottom .card2 .sideleft {
    height: 15vh;
    width: 100%;
  }
  #projects .container .bottom .card2 .sideleft h3 {
    width: 88%;
  }
  #projects .container .bottom .card2 .sideright {
    height: 32vh;
  }
  #tutorials .container {
    margin-top: 0px;
    height: 2100px;
  }
  #tutorials .container .top {
    height: 45vh;
  }
  #tutorials .container .top .right {
    top: 67%;
  }
  #tutorials .container .top .left .text {
    top: 43%;
  }
  #tutorials .container .top .left .text hr {
    top: 70%;
  }
  #tutorials .container .bottom .downloads {
    height: 1700px;
  }
  #tutorials .container .bottom .downloads .col1 .card {
    margin-bottom: 30px;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    top: 41%;
  }
  #quotes .container .left .links {
    width: 90%;
    margin-left: 10vw;
    padding: 20px 0px;
    margin-left: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #quotes .container .left .links a {
    font-size: 1.5rem !important;
  }
}

@media only screen and (max-width: 600px) {
  #header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
  }
  #header .header {
    min-height: 8vh;
    background-color: rgba(4, 77, 95, 0.8);
  }
  #header .header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
  }
  #header .header .nav-bar .brand img {
    display: block;
    width: 150px;
    margin-left: 10px;
    margin-top: 5px;
    -webkit-filter: drop-shadow(0px 0px 1px #012327);
  }
  #header .header .nav-bar .nav-list .hamburger {
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(0.5);
    margin-right: 10px;
  }
  #header .header .nav-bar .nav-list .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
  }
  #header .header .nav-bar .nav-list .hamburger .bar::after,
  #header .header .nav-bar .nav-list .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top, bottom;
  }
  #header .header .nav-bar .nav-list .hamburger .bar::after {
    top: 8px;
  }
  #header .header .nav-bar .nav-list .hamburger .bar::before {
    bottom: 8px;
  }
  #header .header .nav-bar .nav-list .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburger 1.5s ease infinite;
  }
  #header .header .nav-bar .nav-list .active .bar::before {
    bottom: 0;
  }
  #header .header .nav-bar .nav-list .active .bar::after {
    top: 0;
  }
  #header .header .nav-bar .nav-list ul.active {
    left: 0;
  }
  #header .header .nav-bar .nav-list ul.active li a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    padding: 0px;
    display: block;
  }
  #header .header .nav-bar .nav-list ul.active li a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(5, 79, 102, 0.9);
    font-size: 4rem;
    letter-spacing: 20px;
    z-index: -1;
    transition: 0.3s ease letter-spacing;
  }
  #header .header .nav-bar .nav-list ul.active li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
  }
  #header .header .nav-bar .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: #044d5f;
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.3s ease left;
  }
  #main .container .top {
    height: 40vh;
    max-height: 100%;
  }
  #main .container .top .logo img {
    display: none;
    top: 7.5vh;
    width: 30vh;
    margin-left: 24px;
  }
  #main .container .top .text2:nth-child(1) {
    top: 16vh;
    font-size: 5vw;
    margin-left: 25px;
  }
  #main .container .top .text2:nth-child(2) {
    top: 19.5vh;
    font-size: 5vw;
    margin-left: 25px;
  }
  #main .container .top .title:nth-child(3) {
    top: 23vh;
    font-size: 6vw;
    margin-left: 25px;
    font-weight: 500;
  }
  #main .container .top .button:nth-child(4) {
    top: 28.5vh;
    font-size: 0.8rem;
    margin-left: 25px;
  }
  #main .container .top .banner-image {
    height: 40vh;
    max-height: 100%;
    object-fit: cover;
  }
  #main .container .bottom {
    flex-direction: column;
    height: 57vh;
  }
  #main .container .bottom .decoration {
    border-bottom: 0vh solid transparent;
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    left: 0em;
    width: 0em;
  }
  #main .container .bottom .bottom-right {
    width: 100vw;
    height: 28vh;
    max-width: 100%;
    display: flex;
    flex-direction: row;
  }
  #main .container .bottom .bottom-right .engineer {
    width: 0vw;
    max-width: 0%;
  }
  #main .container .bottom .bottom-right .engineer img {
    width: 0px;
    left: 0%;
  }
  #main .container .bottom .bottom-right .text-block {
    width: 100vw;
    max-width: 100%;
  }
  #main .container .bottom .bottom-right .text-block img {
    width: 11em;
  }
  #main .container .bottom .bottom-right .text-block .text2:nth-child(1) {
    font-size: 1.2rem;
  }
  #main .container .bottom .bottom-right .text-block .text2:nth-child(2) {
    font-size: 1.2rem;
  }
  #main .container .bottom .bottom-left {
    width: 95vw;
    height: 27vh;
    max-width: 100%;
  }
  #main .container .bottom .bottom-left .title {
    margin-left: 25px;
    margin-top: 0px;
    margin-bottom: 10px;
  }
  #main .container .bottom .bottom-left .title:nth-child(1)::after {
    font-size: 1.5rem;
    font-weight: 500;
  }
  #main .container .bottom .bottom-left .text1 {
    margin-left: 25px;
  }
  #main .container .bottom .bottom-left .text1:nth-child(2)::after {
    content: "We are an Engineering team borned in 2003, our main goals are Industry project development, Automation services, and a full chain electric parts provider. We have a high technical counseling level, and also transparency with all our customers and collaborators.";
    font-size: 0.9rem;
  }
  #main .container .bottom .bottom-left .text1:nth-child(3)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(4)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(5)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(6)::after {
    content: "";
  }
  #main .container .bottom .bottom-left .text1:nth-child(7)::after {
    content: "";
  }
  #main .container .bottom .bottom-right {
    height: 30vh;
    max-width: 100%;
  }
  #about .container .left .title {
    margin-left: 25px;
    width: 85%;
    font-size: 1.3rem;
  }
  #about .container .left .subtitle {
    margin-top: 20px;
    margin-left: 25px;
    width: 85%;
    font-size: 1.8rem;
  }
  #about .container .left .text3 {
    margin-left: 25px;
    width: 85%;
    font-size: 0.77rem;
  }
  #about .container .left hr {
    margin-left: 25px;
    width: 84%;
  }
  #about .container .right {
    width: 100vw;
    height: 70vh;
  }
  #about .container .right .top-banner {
    width: 70vw;
    height: 10vh;
  }
  #about .container .right .top-banner .title {
    font-size: 1.3rem;
  }
  #about .container .right .bottom-pictures img:nth-child(1) {
    position: absolute;
    left: 0%;
    top: 38%;
    width: 60vw;
  }
  #about .container .right .bottom-pictures img:nth-child(2) {
    position: absolute;
    left: 10%;
    top: 48%;
    width: 80vw;
  }
  #services .container .top .left {
    height: 20vh;
  }
  #services .container .top .left h2 {
    margin-top: 25%;
  }
  #services .container .top .right {
    height: 320px;
  }
  #services .container .top .right .pictures .group img {
    width: 50px;
    height: 50px;
  }
  #services .container .top .right .text {
    padding-left: 40px;
  }
  #services .container .top .right .text .tittle img {
    width: 40px;
    height: 40px;
  }
  #services .container .top .right .text .tittle h2 {
    font-size: 0.8rem;
    top: 40%;
    left: 23%;
  }
  #services .container .top .right .text h1 {
    font-size: 1rem;
  }
  #services .container .bottom .card1 {
    flex-basis: 70%;
  }
  #services .container .bottom .card1 h1 {
    font-size: 1rem;
  }
  #services .container .bottom .card1 h2 {
    font-size: 1rem;
  }
  #projects .container .more {
    z-index: 101;
  }
  #projects .container .more .content {
    width: 60%;
    height: 60%;
  }
  #projects .container .more .content img {
    height: 40px;
    width: 40px;
  }
  #projects .container .more .content h3 {
    font-size: 1rem;
  }
  #projects .container .more .content h1 {
    font-size: 1.3rem;
  }
  #projects .container .more .content h2 {
    font-size: 0.8rem;
  }
  #projects .container .top {
    height: fit-content;
    max-height: fit-content;
  }
  #projects .container .top .right {
    padding: 10px 0px;
    left: 6%;
    top: 27%;
  }
  #projects .container .top .right h1 {
    font-size: 1.5rem;
  }
  #projects .container .top .left {
    padding-bottom: 0vh;
  }
  #projects .container .top .left .text .tittle img {
    width: 30px;
    height: 30px;
  }
  #projects .container .top .left .text .tittle h2 {
    font-size: 2vh;
    left: 15%;
    top: 30%;
  }
  #projects .container .top .left .text h1 {
    font-size: 1.8vh;
  }
  #projects .container .bottom .card2 {
    flex-basis: 90%;
    height: 380px;
  }
  #projects .container .bottom .card2 .sideleft {
    height: 150px;
  }
  #projects .container .bottom .card2 .sideleft h1 {
    font-size: 1.5rem;
  }
  #projects .container .bottom .card2 .sideleft h2 {
    font-size: 1.1rem;
  }
  #projects .container .bottom .card2 .sideleft h3 {
    font-size: 0.8rem;
  }
  #tutorials .container {
    height: 2650px;
    max-height: 100%;
  }
  #tutorials .container .top .right {
    top: 63%;
    height: 17%;
    width: 70vw;
    left: 50%;
    padding-top: 15px;
    padding-bottom: 43px;
    transform: translate(-50%, 0%) scale(0.95);
  }
  #tutorials .container .top .right a {
    line-height: 40px;
  }
  #tutorials .container .top .left .text {
    top: 32%;
  }
  #tutorials .container .top .left .text .tittle img {
    width: 40px;
    height: 40px;
  }
  #tutorials .container .top .left .text .tittle h2 {
    left: 23%;
    top: 20%;
    font-size: 1.2rem;
  }
  #tutorials .container .top .left .text hr {
    margin-top: 7px;
    width: 98%;
  }
  #tutorials .container .bottom {
    height: 2300px;
  }
  #tutorials .container .bottom .downloads {
    height: 2300px;
    max-height: 100%;
  }
  #tutorials .container .bottom .downloads .col1 .card {
    flex-basis: 88%;
    margin: 24px 0px;
  }
  #tutorials .container .bottom .downloads .col1 .card .text h3 {
    font-size: 0.95rem;
  }
  #tutorials .container .bottom .downloads .col1 .card .text h4 {
    font-size: 0.8rem;
  }
  #tutorials .container .bottom .videos {
    height: 2300px;
    max-height: 100%;
    width: 100%;
    margin-left: 0%;
    margin-bottom: 0px;
  }
  #tutorials .container .bottom .videos .cardt {
    width: 100%;
    margin-bottom: 60px;
    text-align: center;
  }
  #tutorials .container .bottom .videos .cardt iframe {
    height: 230px;
    max-height: 100%;
    width: 325px;
    max-height: 100%;
  }
  #tutorials .container .bottom .videos .cardt h2 {
    width: 100%;
    font-size: 0.8rem;
  }
  #quotes .container {
    height: 1350px;
  }
  #quotes .container .left .content-left {
    height: 100%;
  }
  #quotes .container .left .content-left .banner {
    margin-top: 100px;
  }
  #quotes .container .left .content-left .banner img {
    width: 35px;
    height: 35px;
  }
  #quotes .container .left .content-left .banner h2 {
    font-size: 1.2rem;
    left: 2%;
  }
  #quotes .container .left .content-left h3 {
    font-size: 3vw;
  }
  #quotes .container .left .content-left img:nth-child(4) {
    margin-top: 5%;
    top: 39%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 20vh;
  }
  #quotes .container .left .content-left h2:nth-child(5) {
    top: 76%;
    font-size: 4.5vw;
  }
  #quotes .container .left .links {
    top: 87%;
    margin-left: 0%;
    width: 95vw;
    padding: 20px 0px;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #quotes .container .left .links a {
    width: fit-content;
    font-size: 1rem !important;
  }
  #quotes .container .left .links a:nth-child(1) {
    margin-left: 10px;
  }
  #quotes .container .right {
    height: 1000px;
  }
  #quotes .container .right h2 {
    top: 3%;
    left: 6%;
    font-size: 6vw;
  }
  #quotes .container .right .form2 {
    top: 11%;
    width: 83vw;
    padding: 15px 15px;
  }
  #quotes .container .right .form2 input[type='text'] {
    font-size: 0.95rem;
  }
  #quotes .container .right .form2 input[type='submit'] {
    font-size: 3.5vw;
  }
  #quotes .container .right .form2 input[type='reset'] {
    font-size: 3.5vw;
  }
  #quotes .container .right .form3 {
    top: 11%;
    width: 83vw;
    padding: 15px 15px;
  }
  #quotes .container .right .form3 input[type='text'] {
    font-size: 0.95rem;
  }
  #quotes .container .right .form3 input[type='submit'] {
    font-size: 1rem;
  }
  #quotes .container .right .form3 input[type='reset'] {
    font-size: 1rem;
  }
  #quotes .container .right .form4 {
    top: 11%;
    width: 83vw;
    padding: 15px 15px;
  }
  #quotes .container .right .form4 input[type='text'] {
    font-size: 0.95rem;
  }
  #quotes .container .right .form4 input[type='submit'] {
    font-size: 1rem;
  }
  #quotes .container .right .form4 input[type='reset'] {
    font-size: 1rem;
  }
  #quotes .container .right .form5 {
    top: 11%;
    width: 83vw;
    padding: 15px 15px;
  }
  #quotes .container .right .form5 input[type='text'] {
    font-size: 0.95rem;
  }
  #quotes .container .right .form5 input[type='submit'] {
    font-size: 1rem;
  }
  #quotes .container .right .form5 input[type='reset'] {
    font-size: 1rem;
  }
  #quotes .container .right .form6 {
    top: 11%;
    width: 83vw;
    padding: 15px 15px;
  }
  #quotes .container .right .form6 input[type='text'] {
    font-size: 0.95rem;
  }
  #quotes .container .right .form6 input[type='submit'] {
    font-size: 1rem;
  }
  #quotes .container .right .form6 input[type='reset'] {
    font-size: 1rem;
  }
  #contact .container {
    height: 1300px;
  }
  #contact .container .left {
    height: 600px;
  }
  #contact .container .left .content-left {
    margin-left: 5%;
    max-width: 90%;
  }
  #contact .container .left .content-left .banner img {
    width: 40px;
    height: 40px;
  }
  #contact .container .left .content-left .banner h2 {
    left: 20%;
    font-size: 1.2rem;
  }
  #contact .container .left .content-left hr {
    width: 88vw;
  }
  #contact .container .left .content-left .card1 {
    margin-top: 30px;
  }
  #contact .container .left .content-left .card1 .image img {
    width: 80px;
    height: 80px;
  }
  #contact .container .left .content-left .card1 .text {
    margin-top: 4px;
    margin-left: -2%;
  }
  #contact .container .left .content-left .card1 .text h2 {
    font-size: 0.8rem;
  }
  #contact .container .left .content-left .card1 .text h3 {
    margin-top: 4.5px;
    font-size: 0.75rem;
  }
  #contact .container .right {
    height: 700px;
  }
  #contact .container .right h2 {
    top: 5%;
  }
  #contact .container .right iframe {
    top: 15%;
    margin: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  #contact .container .right a {
    left: 50%;
    transform: translate(-50%, 0%);
    top: 60%;
    width: 80vw;
    font-size: 1.8rem;
  }
  #contact .container .footer .left h3 {
    margin-left: 10px;
    margin-top: 10px;
    font-size: 0.6rem;
  }
  #contact .container .footer .left h4 {
    margin-left: 10px;
    margin-top: 5px;
    font-size: 0.45rem;
  }
}

@keyframes FadeInOut {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes text_reveal {
  100% {
    color: white;
  }
}

@keyframes hamburger {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}
