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

body {
  margin: 0 auto;
  font-family: sans-serif;
  background: #333333;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  grid-template-areas: "aside header header header header header header header header header header header" "aside main main main main main main main main main main main" "aside footer footer footer footer footer footer footer footer footer footer footer";
}
@media (max-width: 1200px) {
  body {
    grid-template-areas: "header header header header header header header header header header header header" "main main main main main main main main main main main main" "footer footer footer footer footer footer footer footer footer footer footer footer";
  }
}

h1 {
  color: #fff;
  font-size: 42px;
  text-align: center;
}
@media (max-width: 320px) {
  h1 {
    margin: auto 10px;
  }
}

h2 {
  color: #fff;
  font-size: 34px;
}

h3 {
  color: #fff;
  font-size: 24px;
}

p, li {
  font-size: 16px;
  margin-top: 10px;
  color: #9b9b9b;
}

a {
  outline: none;
  color: #fff;
  text-decoration: none;
}

.btn {
  border: none;
  color: #fff;
  outline: none;
  font-size: 18px;
  border-radius: 1px;
  padding: 15px 20px;
  background: #FFCE00;
  transition: all 250ms ease;
}
.btn:hover, .btn:focus {
  color: #FFCE00;
  background: #272727;
  box-shadow: 0px 0px 18px -6px rgba(0, 0, 0, 0.75);
}

.social-icons-sidebar {
  width: 45px;
  height: 115px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  right: 0;
  bottom: 50%;
  position: fixed;
  transform: translateY(50%);
  background-color: rgba(39, 39, 39, 0.9);
}
.social-icons-sidebar a {
  color: #fff;
  padding: 6px;
  font-size: 18px;
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

header {
  z-index: 100;
  grid-area: header;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .logo-link {
  padding: 10px;
  display: none;
}
header .logo-link .logo {
  width: 90px;
  height: 90px;
}
@media (max-width: 1200px) {
  header .logo-link {
    display: initial;
  }
}
@media (max-width: 1200px) {
  header {
    justify-content: space-between;
  }
}
header nav .checkbox {
  display: none;
}
header nav .checkbox:checked ~ ul.menu {
  height: 420px;
}
header nav .checkbox:checked ~ ul.menu li a {
  display: block;
}
header nav .checkbox:checked ~ .nav-icon .icon {
  background: transparent;
}
header nav .checkbox:checked ~ .nav-icon .icon:before {
  transform: rotate(-45deg);
  top: 0;
}
header nav .checkbox:checked ~ .nav-icon .icon:after {
  transform: rotate(45deg);
  top: 0;
}
header nav .nav-icon {
  display: none;
}
@media (max-width: 1024px) {
  header nav .nav-icon {
    display: block;
    cursor: pointer;
    margin-bottom: 0;
    margin-right: 30px;
    padding: 28px 20px;
    position: relative;
    align-self: center;
  }
}
header nav .nav-icon .icon {
  height: 2px;
  width: 20px;
  display: block;
  position: relative;
  background: #FFCE00;
  transition: background 250ms ease;
}
header nav .nav-icon .icon:before, header nav .nav-icon .icon:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background: #FFCE00;
  transition: all 250ms ease;
}
header nav .nav-icon .icon:before {
  top: 5px;
  width: 20px;
}
header nav .nav-icon .icon:after {
  top: -5px;
  width: 20px;
}
header nav ul.menu {
  display: flex;
  margin-bottom: 0;
  align-self: center;
}
@media (max-width: 1024px) {
  header nav ul.menu {
    width: 100%;
    display: block;
    text-align: center;
    background: #FFCE00;
    top: 110px;
    left: 0;
    right: 0;
    position: fixed;
    transition: height 250ms ease;
    height: 0;
  }
}
header nav ul.menu li {
  list-style: none;
}
header nav ul.menu li a {
  display: block;
  margin-right: 40px;
  text-decoration: none;
  color: #fff;
  transition: all 250ms ease;
}
header nav ul.menu li a:hover, header nav ul.menu li a:focus {
  outline: none;
  color: #FFCE00;
}
@media (max-width: 1024px) {
  header nav ul.menu li a {
    display: none;
    padding: 20px;
    margin: 0;
  }
}

aside {
  grid-area: aside;
  padding: 20px 10px;
  background-color: #272727;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
aside img.logo {
  width: 80px;
  height: 80px;
}
aside .socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 500px;
}
aside .socials a i {
  font-size: 18px;
  color: #AC967F;
  margin: 5px 0;
}
@media (max-width: 1200px) {
  aside {
    display: none;
  }
}

main {
  grid-area: main;
}
main .hero {
  width: 91.7%;
  height: 657px;
  background-size: cover;
  background-position: center;
  top: 0;
  position: absolute;
}
@media (max-width: 1200px) {
  main .hero {
    width: 100%;
  }
}
main .home-about {
  margin-top: 585px;
  padding-top: 50px;
}
main .home-about h1 {
  color: #fff;
  text-align: center;
}
main .home-about .row-about {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  main .home-about .row-about {
    flex-direction: column;
    margin-top: 0;
  }
}
main .home-about .row-about .col-1-about, main .home-about .row-about .col-2-about {
  width: 500px;
  height: 300px;
  padding: 50px;
  margin: 0 50px;
}
@media (max-width: 1024px) {
  main .home-about .row-about .col-1-about, main .home-about .row-about .col-2-about {
    width: auto;
    margin: 10px;
  }
}
@media (max-width: 1024px) {
  main .home-about .row-about .col-1-about {
    height: auto;
  }
}
@media (max-width: 456px) {
  main .home-about .row-about .col-1-about {
    padding: 50px 10px;
  }
}
main .home-about .row-about .col-1-about h2 {
  color: #fff;
}
main .home-about .row-about .col-1-about p {
  margin-bottom: 10px;
}
main .home-about .row-about .col-1-about a {
  color: #FFCE00;
}
main .home-about .row-about .col-2-about {
  text-align: center;
  border-radius: 1px;
  box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.75);
  background-size: cover;
  background-position: center;
}
@media (max-width: 375px) {
  main .home-about .row-about .col-2-about {
    height: 250px;
  }
}
main .home-services {
  padding-top: 80px;
}
main .home-services .row-services {
  display: flex;
  margin-top: 50px;
  justify-content: center;
}
@media (max-width: 1200px) {
  main .home-services .row-services {
    flex-wrap: wrap;
  }
}
main .home-services .row-services .col-1-services, main .home-services .row-services .col-2-services, main .home-services .row-services .col-3-services,
main .home-services .row-services .col-4-services {
  width: 300px;
  height: 400px;
  padding: 50px;
  margin: 10px;
  border-radius: 1px;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 0px 18px -6px rgba(0, 0, 0, 0.75);
}
@media (max-width: 1200px) {
  main .home-services .row-services .col-1-services, main .home-services .row-services .col-2-services, main .home-services .row-services .col-3-services,
main .home-services .row-services .col-4-services {
    margin: 20px 10px;
  }
}
main .home-services .row-services h3, main .home-services .row-services a {
  color: #fff;
}
main .home-services .row-services p {
  margin-bottom: 10px;
  color: #fff;
}
main .home-services .row-services a {
  color: #FFCE00;
}
main .home-clients {
  padding-top: 70px;
}
main .home-clients .owl-carousel {
  margin-top: 30px;
}
main .home-clients .owl-carousel .owl-stage-outer {
  height: 180px;
}
@media (max-width: 1024px) {
  main .home-clients .owl-carousel .owl-stage-outer {
    height: 150px;
  }
}
@media (max-width: 768px) {
  main .home-clients .owl-carousel .owl-stage-outer {
    height: 110px;
  }
}
main .home-clients .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  margin: 0 25px;
}
@media (max-width: 425px) {
  main .home-clients .owl-carousel .owl-stage-outer .owl-stage .owl-item {
    margin: 0 15px;
  }
}
@media (max-width: 425px) {
  main .home-clients .owl-carousel .owl-stage-outer .owl-stage .owl-item img {
    height: 110px;
  }
}
main .home-clients .owl-carousel .owl-nav [class*=owl-] {
  background: none;
  font-size: 23px;
  font-weight: 300;
  color: #fff;
  padding: 0;
}
main .home-quote {
  margin-top: 70px;
  margin-bottom: 80px;
}
main .home-quote .row-quote {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
main .home-quote .row-quote .col-1-quote {
  text-align: center;
}
main .home-quote .row-quote .col-1-quote h1 {
  color: #fff;
  margin-bottom: 30px;
}

footer {
  grid-area: footer;
}
footer .row-footer {
  display: flex;
  justify-content: center;
  background-color: #2e2e2e;
}
@media (max-width: 660px) {
  footer .row-footer {
    flex-wrap: wrap;
  }
}
footer .row-footer .col-1-footer, footer .row-footer .col-2-footer {
  padding: 50px;
  padding-top: 65px;
  align-self: center;
}
footer .row-footer .col-1-footer .socials-footer {
  margin-top: 15px;
  display: none;
}
@media (max-width: 1200px) {
  footer .row-footer .col-1-footer .socials-footer {
    display: block;
  }
}
footer .row-footer .col-1-footer .socials-footer a {
  font-size: 18px;
  color: #AC967F;
  margin: 0 5px;
}
footer .row-footer .col-1-footer .socials-footer a:first-child {
  margin-left: 0;
}
@media (max-width: 375px) {
  footer .row-footer .col-1-footer {
    padding: 50px 30px;
  }
}
@media (max-width: 660px) {
  footer .row-footer .col-2-footer {
    padding: 10px;
    margin-bottom: 50px;
  }
}
@media (max-width: 1055px) {
  footer .row-footer iframe {
    width: 500px;
  }
}
@media (max-width: 955px) {
  footer .row-footer iframe {
    width: 300px;
  }
}
@media (max-width: 660px) {
  footer .row-footer iframe {
    width: 90vw;
  }
}
footer .row-footer h2 {
  margin-bottom: 20px;
}
footer .row-footer p strong {
  color: #FFCE00;
}

.about-row {
  width: 800px;
  margin: 50px;
}
@media (max-width: 856px) {
  .about-row {
    width: auto;
  }
}
@media (max-width: 425px) {
  .about-row {
    margin: 50px 30px;
  }
}
.about-row .about-col {
  padding: 30px 0;
}
.about-row .about-col:first-child {
  padding-top: 0;
}

.service-section {
  margin: 50px;
}
@media (max-width: 425px) {
  .service-section {
    margin: 50px 30px;
  }
}
.service-section .service-row {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .service-section .service-row {
    flex-direction: column;
  }
}
.service-section .service-row .service-col-1, .service-section .service-row .service-col-2 {
  padding: 0 50px;
  margin-bottom: 50px;
}
.service-section .service-row .service-col-1 {
  width: 500px;
  height: 300px;
}
@media (max-width: 768px) {
  .service-section .service-row .service-col-1 {
    width: auto;
    height: auto;
    margin-bottom: 80px;
  }
}
@media (max-width: 425px) {
  .service-section .service-row .service-col-1 {
    padding: 0 10px;
  }
}
.service-section .service-row .service-col-2 {
  width: 500px;
  height: 300px;
  text-align: center;
  border-radius: 1px;
  box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.75);
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .service-section .service-row .service-col-2 {
    width: auto;
  }
}
.service-section h2 {
  margin-bottom: 20px;
}
.service-section p {
  margin-bottom: 50px;
}

.product-section {
  margin: 50px;
}
.product-section .product-row {
  display: flex;
  justify-content: center;
}
@media (max-width: 938px) {
  .product-section .product-row {
    flex-direction: column;
  }
}
.product-section .product-row .product-col-1, .product-section .product-row .product-col-2 {
  padding: 0 50px;
  margin-bottom: 50px;
}
@media (max-width: 1200px) {
  .product-section .product-row .product-col-1, .product-section .product-row .product-col-2 {
    padding: 0;
  }
}
.product-section .product-row .product-col-1 {
  width: 800px;
  align-self: center;
  padding-right: 100px;
}
@media (max-width: 938px) {
  .product-section .product-row .product-col-1 {
    padding: 0;
    width: auto;
    align-self: flex-start;
  }
}
.product-section .product-row .product-col-2 {
  width: 300px;
  height: 300px;
  text-align: center;
  border-radius: 1px;
  box-shadow: 0px 0px 25px -5px rgba(0, 0, 0, 0.75);
  background-position: center;
  background-size: cover;
}
@media (max-width: 938px) {
  .product-section .product-row .product-col-2 {
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  .product-section .product-row .product-col-2 {
    width: auto;
  }
}
.product-section h2 {
  margin-bottom: 20px;
}

#main-contact,
#main-request-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 50px;
  margin-top: 10px;
}
#main-contact h1,
#main-request-demo h1 {
  margin-bottom: 30px;
}
#main-contact .contact-form,
#main-request-demo .contact-form {
  text-align: center;
}
#main-contact .contact-form input, #main-contact .contact-form textarea,
#main-request-demo .contact-form input,
#main-request-demo .contact-form textarea {
  padding: 8px;
  margin-bottom: 10px;
  width: 300px;
  border: none;
  outline: none;
  font-size: 14px;
  border-radius: 1px;
  color: #fff;
  background-color: #272727;
  display: block;
}
#main-contact .contact-form .btn-send,
#main-request-demo .contact-form .btn-send {
  padding: 10px 30px;
  margin-top: 10px;
}

.demo {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 938px) {
  .demo {
    margin: 80px 0px;
  }
}

/************/
.success {
  color: #FFCE00;
}

.error {
  color: red;
}/*# sourceMappingURL=styles.css.map */