* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Quicksand", sans-serif;
}

html {
  font-size: 11.5px;
  scroll-behavior: smooth;
}

section {
  width: 100%;
  padding: 8rem 0;
}

.container {
  width: 110rem;
  margin: 0 auto;
}

/*#region Header Codes*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFF;
  z-index: 100;
}
header #header-content {
  padding: 0 5rem;
  height: 8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.2rem solid #EEEEEE;
}
header #header-content #header-logo img {
  width: 13rem;
  font-size: 2rem;
  font-weight: 700;
  color: #303030;
}
header #header-content #header-menu nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #header-content #header-menu nav ul a li {
  text-transform: capitalize;
  margin: 0 1.25rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #303030;
  transition: color 0.4s ease;
}
header #header-content #header-menu nav ul a li:hover {
  color: #0092C7;
}

/*#endregion*/
/*#region Main Codes*/
main #home {
  position: relative;
  height: 90vh;
  margin-bottom: calc(10vh - 8rem);
  background-image: url(../img/home-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #home #home-content .container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main #home #home-content .container #home-logo {
  z-index: 1;
  width: 15%;
}
main #home #home-content .container #home-logo img {
  width: 100%;
}
main #home #home-content .container #home-text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
main #home #home-content .container #home-text h1 {
  font-size: 5rem;
  font-weight: 900;
  color: #FFF;
}
main #home #home-content .container #home-text p {
  width: 50%;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFF;
}
main #home #home-content .container #home-button {
  z-index: 1;
}
main #home #home-content .container #home-button a button {
  cursor: pointer;
  padding: 0.9rem 2.75rem;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  border-radius: 2rem;
  outline: none;
  border: none;
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFF;
  transition: background-color 0.3s ease;
}
main #home #home-content .container #home-button a button:hover {
  background-color: #49BDEE;
}
main #home #home-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: 0;
  background-image: url(../img/wave.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translateY(1rem);
}
main #products #products-title {
  position: relative;
  display: flex;
  align-items: center;
}
main #products #products-title .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
main #products #products-title .container h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #303030;
  margin-bottom: 1rem;
}
main #products #products-title .container p {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #a9aeb3;
}
main #products #products-title .container #products-navigation {
  width: 100%;
  padding: 1.5rem 0 5rem 0;
}
main #products #products-title .container #products-navigation ul {
  width: 87.5%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-radius: 3rem;
  background-color: #F5F7F9;
}
main #products #products-title .container #products-navigation ul li {
  cursor: pointer;
  margin: 0 1rem;
  padding: 0.9rem 1.65rem;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 800;
  transition-property: background-color, color;
  transition: 0.3s ease;
}
main #products #products-title .container #products-navigation ul li:hover, main #products #products-title .container #products-navigation ul li.active {
  background-color: #49BDEE;
  color: #FFF;
}
main #products #products-content .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
main #products #products-content .container .product {
  width: calc(25% - 2rem);
  margin: 0 1rem 3rem 1rem;
  background-color: #FFF;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main #products #products-content .container .product .product-image {
  overflow: hidden;
  border-radius: 0.25rem;
  width: 100%;
  height: 20rem;
  background-color: #EEEEEE;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
main #products #products-content .container .product .product-image:hover {
  transform: scale(0.9);
}
main #products #products-content .container .product .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main #products #products-content .container .product .product-content {
  border-radius: 0 0 0.5rem 0.5rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main #products #products-content .container .product .product-content p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #a9aeb3;
  margin-bottom: 0.25rem;
}
main #products #products-content .container .product .product-content h4 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #303030;
  margin-bottom: 1rem;
}
main #contact {
  background-color: #F5F7F9;
}
main #contact .container {
  display: flex;
  justify-content: space-between;
}
main #contact .container #contact-content {
  width: 42%;
}
main #contact .container #contact-content #contact-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
main #contact .container #contact-content #contact-title p {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 700;
  color: #a9aeb3;
}
main #contact .container #contact-content #contact-title h2 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #303030;
}
main #contact .container #contact-content #contact-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
main #contact .container #contact-content #contact-info .contact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}
main #contact .container #contact-content #contact-info .contact:hover {
  transform: translateX(1.5rem);
}
main #contact .container #contact-content #contact-info .contact:hover .contact-icon {
  background-color: #49BDEE;
}
main #contact .container #contact-content #contact-info .contact:hover .contact-text h5 {
  color: #49BDEE;
}
main #contact .container #contact-content #contact-info .contact .contact-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-color: #303030;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  transition: background-color 0.35s ease;
}
main #contact .container #contact-content #contact-info .contact .contact-icon i {
  font-size: 1.8rem;
  color: #FFF;
}
main #contact .container #contact-content #contact-info .contact .contact-text {
  display: flex;
  flex-direction: column;
}
main #contact .container #contact-content #contact-info .contact .contact-text p {
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
  font-weight: 700;
  color: #a9aeb3;
  margin-bottom: 0.25rem;
}
main #contact .container #contact-content #contact-info .contact .contact-text h5 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #303030;
  transition: color 0.35s ease;
}
main #contact .container #contact-map {
  width: 58%;
  height: 30rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 0.3rem solid #303030;
}
main #contact .container #contact-map iframe {
  width: 100%;
  height: 100%;
}

/*#endregion*/
/*#region Footer Codes*/
footer {
  position: relative;
  background-color: #31373F;
}
footer #footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  z-index: 0;
}
footer #footer-content {
  padding: 7rem 0 4rem 0;
}
footer #footer-content .container {
  display: flex;
  justify-content: space-between;
}
footer #footer-content .container p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #95999e;
  transition: color 0.3s ease;
}
footer #footer-content .container p:hover {
  color: #FFF;
}
footer #footer-content .container i {
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFF;
  margin-right: 1rem;
}
footer #footer-content .container h6 {
  display: inline-block;
  line-height: 1.5;
  border-bottom: 0.15rem solid #FFF;
  font-size: 1.9rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 1.5rem;
}
footer #footer-content .container #footer-business {
  width: 33%;
  z-index: 1;
  text-align: center;
}
footer #footer-content .container #footer-business img {
  width: 50%;
  min-width: 10rem;
  margin-bottom: 2rem;
}
footer #footer-content .container #footer-business ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer #footer-content .container #footer-business ul li {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5rem;
  transition: background-color 0.3s ease;
}
footer #footer-content .container #footer-business ul li:hover {
  background-color: #49BDEE;
}
footer #footer-content .container #footer-business ul li:hover i {
  color: #303030;
}
footer #footer-content .container #footer-business ul li i {
  font-size: 1.4rem;
  color: #FFF;
  margin: 0;
  transition: color 0.3s ease;
}
footer #footer-content .container #footer-address {
  width: 25%;
  z-index: 1;
}
footer #footer-content .container #footer-contact {
  width: 25%;
  z-index: 1;
  text-align: right;
}
footer #footer-bottom {
  padding: 3.5rem 0;
  border-top: 0.15rem solid #4c4f54;
}
footer #footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer #footer-bottom .container #footer-author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}
footer #footer-bottom .container #footer-author p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFF;
  opacity: 0.5;
  margin-right: 0.5rem;
}
footer #footer-bottom .container #footer-author a {
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFF;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
footer #footer-bottom .container #footer-author a:hover {
  opacity: 1;
}
footer #footer-bottom .container #footer-menu {
  z-index: 1;
}
footer #footer-bottom .container #footer-menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer #footer-bottom .container #footer-menu ul a li {
  margin: 0 0.9rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFF;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
footer #footer-bottom .container #footer-menu ul a li:hover {
  opacity: 1;
}

/*#endregion*/
/*#region Responsive Codes*/
@media screen and (max-width: 1690px) {
  html {
    font-size: 11.25px;
  }
}
@media screen and (max-width: 1640px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 1590px) {
  html {
    font-size: 10.75px;
  }
}
@media screen and (max-width: 1540px) {
  html {
    font-size: 10.5px;
  }
}
@media screen and (max-width: 1490px) {
  html {
    font-size: 10.25px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 10px;
  }
  .container {
    width: 100rem;
  }
}
@media screen and (max-width: 1390px) {
  html {
    font-size: 9.8px;
  }
}
@media screen and (max-width: 1340px) {
  html {
    font-size: 9.6px;
  }
}
@media screen and (max-width: 1290px) {
  html {
    font-size: 9.6px;
  }
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 9.4px;
  }
}
@media screen and (max-width: 1190px) {
  html {
    font-size: 9.2px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 10px;
  }
  .container {
    width: 90%;
  }
  main #products #products-title .container #products-navigation ul {
    width: 100%;
  }
}
@media screen and (max-width: 974px) {
  html {
    font-size: 9.75px;
  }
}
@media screen and (max-width: 924px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 874px) {
  html {
    font-size: 9.25px;
  }
}
@media screen and (max-width: 824px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  main #home #home-wave {
    transform: translateY(2rem);
  }
  main #home #home-content .container #home-text p {
    width: 75%;
  }
  main #products #products-title .container #products-navigation ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  main #products #products-title .container #products-navigation ul li {
    width: calc(25% - 2rem);
    text-align: center;
    margin-bottom: 1rem;
  }
  main #products #products-content .container .product {
    width: calc(33.333% - 2rem);
  }
  main #contact .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contact .container #contact-content {
    width: 100%;
    margin-bottom: 2rem;
  }
  main #contact .container #contact-content #contact-title {
    width: 100%;
    text-align: center;
  }
  main #contact .container #contact-content #contact-info .contact {
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  main #contact .container #contact-content #contact-info .contact:hover {
    transform: translateX(0);
  }
  main #contact .container #contact-content #contact-info .contact .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  main #contact .container #contact-map {
    width: 90%;
  }
  footer #footer-content .container {
    justify-content: center;
  }
  footer #footer-content .container #footer-address, footer #footer-content .container #footer-contact {
    display: none;
  }
  footer #footer-content .container #footer-business {
    width: 45%;
  }
  footer #footer-bottom .container {
    justify-content: center;
  }
  footer #footer-bottom .container #footer-menu {
    display: none;
  }
}
@media screen and (max-width: 718px) {
  html {
    font-size: 8.8px;
  }
}
@media screen and (max-width: 668px) {
  html {
    font-size: 8.6px;
  }
}
@media screen and (max-width: 618px) {
  html {
    font-size: 8.4px;
  }
}
@media screen and (max-width: 568px) {
  html {
    font-size: 8.2px;
  }
  main #home #home-content .container {
    text-align: center;
    align-items: center;
  }
  main #home #home-content .container #home-text p {
    width: 100%;
  }
  main #products #products-content .container .product {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 518px) {
  html {
    font-size: 8px;
  }
}
@media screen and (max-width: 468px) {
  html {
    font-size: 7.8px;
  }
}
@media screen and (max-width: 425px) {
  .container {
    width: 95%;
  }
  header #header-content {
    justify-content: center;
  }
  header #header-content #header-menu {
    display: none;
  }
  main #home #home-wave {
    transform: translateY(3rem);
  }
  main #products #products-title .container #products-navigation ul li {
    width: calc(33% - 2rem);
  }
}
@media screen and (max-width: 400px) {
  html {
    font-size: 7.5px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 7.25px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 7px;
  }
}
@media screen and (max-width: 325px) {
  html {
    font-size: 6.75px;
  }
  main #products #products-content .container .product {
    width: calc(80% - 2rem);
    margin-left: auto;
    margin-right: auto;
  }
}
/*#endregion*//*# sourceMappingURL=style.css.map */