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

html {
  font-size: 11.5px;
}

.container {
  width: 85%;
  margin: 0 auto;
}

section {
  padding: 12rem 0;
  overflow: hidden;
}

/*#region Main Codes*/
main section#home {
  padding: 0;
  background-image: url(../img/home-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
main section#home #home-content {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
main section#home #home-content #home-logo {
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
}
main section#home #home-content #home-logo img {
  width: 60rem;
}
main section#contact {
  position: relative;
}
main section#contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.025;
}
main section#contact .container #contact-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 5rem;
}
main section#contact .container #contact-title h3 {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 600;
  color: #F05388;
}
main section#contact .container #contact-title h2 {
  font-size: 7rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 0.5rem;
}
main section#contact .container #contact-title p {
  max-width: 50rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  color: #8f8f8f;
}
main section#contact .container #contact-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
main section#contact .container #contact-content .contact {
  padding: 3rem;
  background-color: #FFF;
  border: 0.125rem solid #e6e6e6;
  z-index: 1;
}
main section#contact .container #contact-content .contact:hover a .contact-icon {
  transform: scale(0.9);
}
main section#contact .container #contact-content .contact a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
main section#contact .container #contact-content .contact a .contact-icon {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #31C3E8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease;
}
main section#contact .container #contact-content .contact a .contact-icon i {
  font-size: 3.5rem;
  color: #FFF;
}
main section#contact .container #contact-content .contact a .contact-text p {
  text-transform: uppercase;
  max-width: 50rem;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  color: #333;
}

/*#endregion*/
/*#region Footer Codes*/
footer {
  background-color: #101010;
}
footer .container #footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
footer .container #footer-content #footer-logo {
  padding: 7.5rem 0 2.5rem 0;
  margin-bottom: 2rem;
}
footer .container #footer-content #footer-logo img {
  width: 15rem;
  filter: brightness(0) invert(1);
}
footer .container #footer-content #footer-copyright {
  width: 100%;
  padding: 2rem 0;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
}
footer .container #footer-content #footer-copyright p {
  font-size: 1.6rem;
  font-weight: 300;
  color: #8f8f8f;
}
footer .container #footer-content #footer-copyright p b {
  color: #FFF;
  font-weight: 500;
}

/*#endregion*/
/*#region Responsive Codes*/
@media screen and (max-width: 1740px) {
  html {
    font-size: 11.25px;
  }
}
@media screen and (max-width: 1690px) {
  html {
    font-size: 11px;
  }
}
@media screen and (max-width: 1640px) {
  html {
    font-size: 10.8px;
  }
}
@media screen and (max-width: 1590px) {
  html {
    font-size: 10.6px;
  }
}
@media screen and (max-width: 1540px) {
  html {
    font-size: 10.4px;
  }
}
@media screen and (max-width: 1490px) {
  html {
    font-size: 10.2px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 10px;
  }
}
@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.4px;
  }
}
@media screen and (max-width: 1240px) {
  html {
    font-size: 9.2px;
  }
}
@media screen and (max-width: 1190px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 1140px) {
  html {
    font-size: 8.8px;
  }
}
@media screen and (max-width: 1090px) {
  html {
    font-size: 8.6px;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 768px) {
  main section#home #home-content #home-logo img {
    width: 40rem;
  }
}
@media screen and (max-width: 468px) {
  html {
    font-size: 10px;
  }
  main section#home {
    height: 94vh;
  }
  main section#home #home-content #home-logo img {
    width: 90%;
  }
  footer .container #footer-content #footer-copyright p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 425px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 400px) {
  html {
    font-size: 9.25px;
  }
  footer .container #footer-content #footer-copyright p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 8.75px;
  }
}
@media screen and (max-width: 325px) {
  html {
    font-size: 8.5px;
  }
}
/*#endregion*//*# sourceMappingURL=style.css.map */