@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --main-bg: #ffffff;
  --color-primary: #00ccff;
  --color-secondary: #fdf8f2;
  --color-thirdary: #c2c2c2;
  --color-grey: #636363;
  --color-black-title: #1c1c1c;
  --color-black: #262626;
  --color-white: #ffffff;
  --color-white-transparant: rgba(255, 255, 255, 0.85);
  --color-black-transparant: rgba(99, 99, 99, 0.35);
  --shadow-light: 0px 0px 30px rgba(0, 0, 0, 0.05);
  --shadow-hard: 0px 0px 30px rgba(0, 0, 0, 0.15);
  --font-heading-1: "Arsenal", sans-serif;
  --font-heading-2: "Marcellus", serif;
  --font-paragraf: "Inter", sans-serif;
  --font-menu: "DM Mono", monospace;
  --font-x-small: 0.7rem;
  --font-small: 0.8rem;
  --font-normal: 0.85rem;
  --font-medium: 1rem;
  --font-medium-1: 1.8rem;
  --font-medium-2: 1.6rem;
  --font-medium-3: 1.4rem;
  --font-medium-4: 1.2rem;
  --font-large: 2.5rem;
  --font-xslarge: 2rem;
}

h1 {
  font-family: var(--font-menu);
  line-height: 1.5;
  font-size: 2.5rem;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

h2 {
  font-family: var(--font-menu);
  line-height: 1.5;
  font-size: 2rem;
  margin: 0;
  padding: 0;
}

h3 {
  font-family: var(--font-menu);
  line-height: 1.5;
  font-size: 1.3rem;
  margin: 0;
  padding: 0;
}

body {
  background: var(--main-bg);
  font-family: var(--font-paragraf);
  font-weight: 300;
  color: var(--color-black);
}

header {
  position: fixed;
  width: 100%;
  padding: 0 2rem;
  transition: all 0.5s;
  font-family: var(--font-menu);
  color: var(--color-white);
  font-size: var(--font-normal);
}
header .logo img {
  max-width: 186px;
  transition: all 0.5s;
}
header .menu-btn {
  display: none;
}
header .menu-icon {
  width: 8rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
header .menu-icon .line-color {
  fill: var(--color-white);
}
header .menu-icon .stroke {
  stroke: var(--color-white);
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 0 0;
}
header nav > div {
  display: flex;
  align-items: center;
  width: 130px;
  justify-content: space-between;
}
header nav .logo-w {
  display: block;
}
header nav > ul {
  position: absolute;
  background: var(--color-white-transparant);
  width: 80%;
  padding: 0;
  margin: 0;
  top: 0;
  height: 100vh;
  padding: 3rem 3rem 2rem 3rem;
  opacity: 0;
  transition: all 0.5s ease-out;
  left: -80%;
}
header nav > ul .spacer {
  width: 50px;
  background-color: var(--color-primary);
  height: 4px;
}
header nav > ul li {
  list-style: none;
  padding: 0.9rem 0;
}
header nav > ul li img {
  max-width: 186px;
}
header nav > ul li > ul {
  display: flex;
  padding: 0;
}
header nav > ul li > ul li:nth-child(2) {
  padding-left: 1rem;
}
header nav > ul li a {
  text-decoration: none;
  color: var(--color-black);
  font-family: var(--font-menu);
  font-weight: 300;
  font-size: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding-left: 0.15rem;
}
header nav .menu-btn:checked ~ ul {
  opacity: 1;
  left: 0;
}

.page-header {
  top: 0;
  color: var(--color-black);
}
.page-header .menu-icon svg {
  fill: var(--color-black) !important;
}
.page-header .menu-icon path {
  fill: var(--color-black) !important;
}
.page-header nav {
  border-bottom: 1px solid var(--color-thirdary);
  padding-bottom: 1rem;
}

.is-sticky {
  width: 100%;
  padding-top: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid;
  border-color: var(--color-white-transparant);
  z-index: 11;
  color: var(--color-black);
}
.is-sticky .menu-icon svg {
  fill: var(--color-black) !important;
}
.is-sticky .menu-icon path {
  fill: var(--color-black) !important;
}
.is-sticky .logo img {
  max-width: 150px;
}
.is-sticky nav {
  padding: 1rem 0rem;
  border: none;
}
.is-sticky nav .logo-b {
  display: block;
}

.home-hero {
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 100vh;
  color: var(--color-white);
  text-align: left;
  display: flex;
  align-items: end;
  justify-content: center;
  font-family: var(--font-menu);
  line-height: 2;
  font-size: var(--font-normal);
}
.home-hero > div {
  width: calc(100% - 4rem);
  margin-bottom: 11rem;
}
.home-hero > div svg {
  margin-top: 3rem;
}

.page-hero {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  height: 90vh;
}
.page-hero div {
  text-align: center;
  margin: 0;
}
.page-hero div h1 {
  font-size: 4rem;
}
.page-hero div img {
  margin-bottom: 2rem;
}

.grey {
  background-color: var(--color-secondary);
}

.link-default {
  background-color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-black-title);
  padding: 0.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: -moz-max-content;
  width: max-content;
  font-family: var(--font-menu);
}
.link-default svg {
  margin-right: 1rem;
}

.content {
  padding: 5rem 2.05rem;
}
.content h1 {
  margin-bottom: 2rem;
}
.content p {
  font-size: var(--font-normal);
  line-height: 2.5rem;
  display: block;
  margin-bottom: 3rem;
  font-family: var(--font-paragraf);
}
.content .spacer {
  width: 80px;
  background-color: var(--color-primary);
  height: 10px;
  margin: 4rem 0;
}
.content .area-co-footer {
  display: flex;
  flex-direction: column;
}
.content .area-co-footer .co-footer {
  margin-bottom: 3rem;
}
.content .area-co-footer .co-footer:nth-child(3) {
  margin-bottom: 0;
}
.content .co-footer {
  position: relative;
  color: var(--color-white);
}
.content .co-footer > div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
  width: calc(100% - 3rem);
  text-align: center;
}
.content .co-footer > div p {
  margin-bottom: 1rem;
  text-align: center;
}
.content .co-footer > div div {
  text-align: right;
}
.content .co-footer > div a {
  border: 1px solid var(--color-white);
  padding: 0.5rem;
}
.content .page-content-1 {
  border-left: 1px solid var(--color-thirdary);
  padding-left: 3rem;
}
.content .page-content-1 h1 {
  margin-bottom: 0.5rem;
}
.content .page-content-1 h2 {
  font-size: var(--font-medium);
}
.content .contact-us h1 {
  margin-bottom: 0.5rem;
  margin-top: 4rem;
}
.content .contact-us h2 {
  font-size: var(--font-medium);
}
.content .contact-us ul {
  margin-top: 3rem;
}
.content .contact-us ul li {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 2rem;
}
.content .contact-us ul li div:nth-child(1) {
  width: 10%;
}
.content .contact-us ul li div:nth-child(1) svg {
  margin-top: 0.5rem;
}
.content .contact-us ul li div:nth-child(2) {
  width: 90%;
  line-height: 2;
}

.location {
  align-items: center;
  flex-direction: column;
  justify-content: start;
  height: auto;
  margin-bottom: 5rem;
  margin-top: 9rem;
}
.location > div:nth-child(1) {
  color: var(--color-black);
  margin-bottom: 0 !important;
}
.location > div:nth-child(1) h1 {
  font-size: 3rem;
}
.location > div:nth-child(2) {
  margin-top: 4rem;
  margin-bottom: 0 !important;
}
.location > div:nth-child(2) iframe {
  width: 100%;
}

.product {
  padding-top: 1rem;
  padding-bottom: 0;
}
.product .link-horizontal {
  overflow: auto;
  white-space: nowrap;
}
.product .link-horizontal a {
  background-color: var(--color-white);
  border: 1px solid;
  border-color: var(--color-black-title);
  padding: 0.5rem 3rem;
  display: inline-block;
  align-items: center;
  justify-content: space-around;
  width: -moz-max-content;
  width: max-content;
  font-family: var(--font-menu);
  color: var(--color-black);
  font-size: var(--font-medium);
  margin-right: 1.5rem;
}
.product .link-horizontal a.act {
  background-color: var(--color-black);
  color: var(--color-white);
}
.product .link-horizontal a:nth-child(4) {
  margin-right: 0;
}
.product .list-product {
  color: var(--color-black);
}
.product .list-product h1 {
  margin-bottom: 0;
  text-align: center;
}
.product .list-product h2 {
  margin: 0;
  text-align: center;
  font-size: var(--font-medium);
}
.product .list-product .spacer {
  height: 5px;
  margin: 0 auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.product .list-product p {
  text-align: center;
}
.product .list-product .item {
  margin-bottom: 4rem;
}
.product .list-product .item > div:nth-child(1) {
  text-align: center;
  margin-bottom: 2.5rem;
}
.product .list-product .item > div {
  margin-top: 1.5rem;
}

.gal-about {
  margin-top: 5rem;
}
.gal-about img {
  margin-bottom: 2rem;
}

.home-bottom {
  padding: 0;
}
.home-bottom > div > div {
  padding: 3rem 2.05rem 5rem 2.05rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial {
  padding: 0rem;
  background-position: center bottom !important;
  background-size: cover !important;
  margin-top: 1px;
}
.testimonial .feed-area .feed {
  margin-bottom: 3rem;
  text-align: left;
}
.testimonial .feed-area .feed:nth-child(3) {
  margin-bottom: 0;
}
.testimonial .overlay {
  padding: 5rem 2.05rem;
  background-color: rgba(38, 38, 38, 0.8);
}
.testimonial .overlay .feed {
  background-color: var(--color-white);
  padding: 2rem;
  border: 1px solid #c2c2c2;
}
.testimonial .overlay .feed p {
  margin-bottom: 0;
}
.testimonial .overlay .feed .spacer {
  height: 3px;
  margin: 2rem 0;
}
.testimonial .overlay .feed span {
  font-size: var(--font-small);
  font-style: italic;
}
.testimonial h1 {
  color: var(--color-white);
}

footer {
  padding: 5rem 2.05rem 7rem 2.05rem;
}
footer h4 {
  margin: 2rem 0 3rem 0;
  line-height: 2;
  font-size: var(--font-normal);
}
footer .left svg {
  margin-bottom: 2rem;
}
footer .left .links ul li {
  margin-bottom: 2rem;
}
footer .left .links ul li a {
  font-family: var(--font-menu);
  text-decoration: underline;
  font-size: 0.9rem;
}
footer .right h3 {
  font-size: 1.8rem;
}
footer .right ul {
  margin: 2rem 0;
  display: flex;
  width: 150px;
  justify-content: space-between;
}
footer .right .copyright {
  font-size: var(--font-small);
}

.whatsapp-fly {
  position: fixed;
  z-index: 100;
  background-color: var(--color-white);
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  font-family: var(--font-menu);
  padding: 0.5rem 1rem;
  border: 1px solid;
  border-color: var(--color-primary);
}
.whatsapp-fly svg {
  margin-right: 0.8rem;
}

@media only screen and (min-width: 768px) {
  .co-footer img {
    width: 100%;
  }
  .page-hero div img {
    max-width: 500px;
  }
  .gal-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .gal-about img {
    width: calc(50% - 1rem);
  }
  .contact-us ul li div:nth-child(1) {
    width: 5% !important;
  }
  .contact-us ul li div:nth-child(2) {
    width: 90%;
  }
  .list-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .list-product .item {
    width: calc(50% - 2.5rem);
  }
  .list-product .item h1,
  .list-product .item h2,
  .list-product .item p {
    text-align: left;
  }
  .list-product .item .spacer {
    margin-left: 0px;
  }
  .list-product .item img {
    max-width: 300px;
  }
}
@media only screen and (min-width: 992px) {
  .home-top {
    display: flex;
    justify-content: space-between;
  }
  .home-top img {
    width: 50%;
  }
  .home-top > div {
    width: calc(50% - 2rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .area-co-footer {
    flex-direction: row !important;
    justify-content: space-between;
  }
  .area-co-footer .co-footer {
    width: calc(33.33% - 1.5rem);
    margin-bottom: 0 !important;
  }
  .contact-us h1 {
    margin-top: 0 !important;
  }
  .contact-us ul li div:nth-child(1) {
    width: 7% !important;
  }
  .contact-us ul li div:nth-child(2) {
    width: 90%;
  }
  .home-bottom > div {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between;
  }
  .home-bottom > div > div {
    width: 50%;
  }
  .home-bottom > div img {
    width: 50%;
  }
  .testimonial {
    text-align: center;
  }
  .testimonial .spacer {
    margin: 0px auto;
    margin-bottom: 3rem;
  }
  .testimonial .feed-area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .testimonial .feed-area .feed {
    margin-bottom: 0 !important;
    width: calc(33.33% - 1.5rem);
  }
  footer .top {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0rem;
  }
  footer .area {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .area .left .links {
    display: flex;
    flex-direction: row;
    margin-top: 1.5rem;
  }
  footer .area .left .links ul {
    margin-right: 5rem;
  }
  footer .area .right {
    text-align: right;
  }
  footer .area .right .followus {
    width: 100%;
    justify-content: right;
    margin-top: 1rem;
  }
  footer .area .right .followus li {
    margin-left: 1.5rem;
  }
  footer .area .right .copyright {
    display: block;
  }
  .whatsapp-fly {
    right: 2rem !important;
    left: auto;
    bottom: 3rem;
  }
  .home-hero > div {
    margin-bottom: 6rem !important;
  }
  .product {
    margin-bottom: 2rem;
  }
  .list-product .item {
    width: calc(50% - 3rem);
  }
  .list-product .item img {
    max-width: 500px;
  }
}
@media only screen and (min-width: 1200px) {
  .big {
    display: flex;
    flex-direction: row-reverse;
    width: 100% !important;
    justify-content: space-between;
    align-items: end;
  }
  .big > div {
    width: calc(50% - 3rem);
  }
  .big-reverse {
    flex-direction: row !important;
  }
}
@media only screen and (min-width: 1440px) {
  header {
    padding: 0 4rem;
  }
  header nav ul {
    padding-left: 4rem;
  }
  .contact-us ul li div:nth-child(1) {
    width: 5% !important;
  }
  .contact-us ul li div:nth-child(2) {
    width: 90%;
  }
  .home-hero > div {
    width: calc(100% - 8rem);
  }
  .content {
    padding: 6rem 4rem;
  }
  .home-bottom {
    padding: 0 !important;
  }
  .home-bottom > div img {
    width: calc(50% - 2rem);
  }
  .home-bottom > div div {
    padding-left: 4rem;
  }
  .testimonial {
    padding: 0 !important;
  }
  .testimonial .overlay {
    padding: 6rem 4rem;
  }
  footer {
    padding: 6rem 4rem 7rem 4rem;
  }
  .whatsapp-fly {
    right: 4rem !important;
  }
  .home-top img {
    width: calc(50% - 2rem);
  }
}
@media only screen and (min-width: 1920px) {
  section,
  footer {
    width: 1920px;
    margin: 0 auto;
  }
  .home-hero {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */