/*
    Theme Name: Hamarki theme
    Theme URI: https://maggiemitch.com
    Author: Maggie Mitchell
    Author URI: https://maggiemitch.com
    Version: 1.0 
    Description: A custom website theme 
    Tags: responsive, custom-build
*/

/*

.gruppo-regular {
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Gruppo", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  background-color: #021013;
}
html h1 {
  font-size: 75px;
}
@media (max-width: 1650px) {
  html h1 {
    font-size: 65px;
  }
}
@media (max-width: 1100px) {
  html h1 {
    font-size: 60px;
  }
}
html h2 {
  font-size: 60px;
}
@media (max-width: 1250px) {
  html h2 {
    font-size: 45px;
  }
}
@media (max-width: 650px) {
  html h2 {
    font-size: 40px;
  }
}
html h2 small {
  font-size: 0.5em;
}
html h4 {
  font-size: 35px;
}
@media (max-width: 1250px) {
  html h4 {
    font-size: 30px;
  }
}
@media (max-width: 650px) {
  html h4 {
    font-size: 25px;
  }
}
html p {
  font-size: 25px;
  line-height: 125%;
}
@media (max-width: 650px) {
  html p {
    font-size: 20px;
  }
}
html p.sm {
  font-size: 16px;
}
html a {
  transition: 0.3s;
}

header {
  padding: 25px 50px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media (max-width: 1000px) {
  header {
    padding-inline: 5vw;
  }
}
header .hdr-bar {
  min-width: 100%;
  justify-content: space-between;
}
@media (max-width: 650px) {
  header .hdr-bar {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
header .hdr-bar a:hover,
header .hdr-bar a:active,
header .hdr-bar a:focus {
  filter: brightness(0) saturate(100%) invert(92%) sepia(40%) saturate(907%) hue-rotate(66deg) brightness(89%) contrast(112%);
}
@media (max-width: 650px) {
  header a.home-link {
    margin-inline: auto;
    margin-bottom: 15px;
  }
}
header a.home-link h4 {
  display: flex;
  flex-direction: row;
}
header a.home-link span.logo {
  color: transparent;
  background-image: url("img/hamarki.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  width: 40px;
  height: 45px;
  display: block;
}
@media (max-width: 1250px) {
  header a.home-link span.logo {
    width: 30px;
    height: 35px;
  }
}
header a.home-link span.text {
  margin-top: auto;
  display: block;
  margin-bottom: 0;
  transform: translateY(5px);
}
header nav.hdr-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 50px;
  transform: translateY(5px);
}
@media (max-width: 800px) {
  header nav.hdr-menu {
    gap: 25px;
  }
}
@media (max-width: 650px) {
  header nav.hdr-menu {
    justify-content: center;
  }
}
header nav.hdr-menu a {
  display: block;
  margin-top: auto;
}

footer .ftr-content,
footer .btm-bar {
  padding-inline: 50px;
}
footer .ftr-content {
  padding-block: 25px;
}
footer .btm-bar {
  padding-block: 10px;
  background-color: #000;
}

section {
  padding-block: 100px;
}
@media (max-width: 1500px) {
  section {
    padding-block: 75px;
  }
}
@media (max-width: 1000px) {
  section {
    padding-block: 50px;
  }
}
section.hero {
  padding-top: 150px;
}

.blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200vw;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
.blob.gb {
  background: radial-gradient(rgba(47, 239, 127, 0.15), rgba(47, 239, 127, 0), rgba(47, 239, 127, 0));
}
.blob.pb {
  background: radial-gradient(rgba(82, 0, 95, 0.25), rgba(82, 0, 95, 0), rgba(82, 0, 95, 0));
}

.container {
  width: 75%;
  margin: auto;
}
@media (max-width: 1250px) {
  .container {
    width: 85%;
  }
}
.container.wide {
  width: 85%;
}
@media (max-width: 1250px) {
  .container.wide {
    width: 90%;
  }
}

.row {
  display: flex;
  flex-direction: row;
}

main {
  overflow: hidden;
}

main.home {
  position: relative;
}
main.home .blob.b1 {
  top: 50vh;
  left: 0;
}
main.home .blob.b2 {
  top: 0;
  left: 100%;
}
main.home .blob.b3 {
  top: 100%;
  left: 80%;
}
main.home section.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  main.home section.hero .row {
    justify-content: space-between;
  }
}
@media (max-width: 800px) {
  main.home section.hero .row {
    flex-direction: column;
    gap: 25px;
  }
}
main.home section.hero .row .col {
  width: 33%;
}
@media (max-width: 1000px) {
  main.home section.hero .row .col {
    width: 45%;
  }
}
@media (max-width: 800px) {
  main.home section.hero .row .col {
    width: 100%;
  }
}
main.home section.hero .row .col.c1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.home section.hero .row .col.c1 .floating {
  width: 225px;
  margin-left: auto;
  margin-top: 50px;
}
@media (max-width: 800px) {
  main.home section.hero .row .col.c1 .floating {
    margin-left: 0;
  }
}
main.home section.hero .row .col.c2 {
  position: relative;
}
@media (max-width: 1000px) {
  main.home section.hero .row .col.c2 {
    display: none;
  }
}
main.home section.hero .row .col.c2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main.home section.hero .row .col.c2 img.hero-logo {
  width: 100px;
}
@media (max-width: 1250px) {
  main.home section.hero .row .col.c2 img.hero-logo {
    width: 50px;
  }
}
main.home section.hero .row .col.c2 img.circle-txt {
  width: 300px;
  animation-name: spin;
  animation-timing-function: linear;
  animation-duration: 30s;
  animation-iteration-count: infinite;
}
@media (max-width: 1250px) {
  main.home section.hero .row .col.c2 img.circle-txt {
    width: 200px;
  }
}
main.home section.hero .row .col.c3 .accordion {
  cursor: pointer;
}
main.home section.hero .row .col.c3 .accordion .service {
  padding-block: 25px;
  border-bottom: 1px solid #fff;
  transition: 0.3s;
}
main.home section.hero .row .col.c3 .accordion .service p {
  height: 0;
  transition: 0.3s;
  padding: 0;
  opacity: 0;
}
main.home section.hero .row .col.c3 .accordion .service.open {
  border-color: #2fef7f;
}
main.home section.hero .row .col.c3 .accordion .service.open h4,
main.home section.hero .row .col.c3 .accordion .service.open p {
  color: #2fef7f;
}
main.home section.hero .row .col.c3 .accordion .service.open p {
  height: auto;
  opacity: 1;
  padding-top: 5px;
}
main.home section.hero .row .col.c3 .accordion .service:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
main.home .mission .container h4 {
  max-width: 1000px;
}
main.home .home-cta .row {
  justify-content: space-between;
}
@media (max-width: 800px) {
  main.home .home-cta .row {
    flex-direction: column;
    gap: 25px;
  }
}
main.home .home-cta .row .col {
  width: 45%;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 50px;
}
@media (max-width: 1000px) {
  main.home .home-cta .row .col {
    padding: 35px;
    width: 47.5%;
  }
}
@media (max-width: 800px) {
  main.home .home-cta .row .col {
    width: 100%;
  }
}
main.home .home-cta .row a {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.home .home-cta .row a h2 {
  transition: 0.3s;
  margin-block: auto;
}
main.home .home-cta .row a:hover, main.home .home-cta .row a:focus, main.home .home-cta .row a:active {
  border-color: #2fef7f;
}
main.home .home-cta .row a:hover h2, main.home .home-cta .row a:focus h2, main.home .home-cta .row a:active h2 {
  color: #2fef7f;
}

main.services {
  position: relative;
}
main.services .blob.b1 {
  top: 50vh;
  left: 0;
}
main.services .blob.b2 {
  top: 0;
  left: 100%;
}
main.services .blob.b3 {
  top: 50%;
  left: 20%;
}
main.services .blob.b4 {
  top: 100%;
  left: 80%;
}
main.services section.service {
  padding-top: 0;
  padding-bottom: 50px;
}
main.services section.service .container.row {
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 50px;
}
@media (max-width: 1000px) {
  main.services section.service .container.row {
    flex-direction: column;
  }
}
main.services section.service .container.row .col {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1000px) {
  main.services section.service .container.row .col {
    width: 100%;
  }
}
main.services section.service .container.row .col img {
  max-width: 100%;
}
main.services section.service .container.row .col h2 {
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  main.services section.service .container.row .col h2 {
    margin-top: 25px;
  }
}
main.services section.service.last {
  padding-bottom: 100px;
}
main.services section.service.last .container.row {
  border-bottom: 0;
  padding-bottom: 0;
}

main.contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
main.contact .blob.b1 {
  top: 50vh;
  left: 0;
}
main.contact .blob.b2 {
  top: 0;
  left: 100%;
}
main.contact .blob.b3 {
  top: 100%;
  left: 80%;
}
main.contact section.hero h1 {
  margin-bottom: 25px;
}
main.contact section.hero p {
  max-width: 700px;
}
main.contact section.hero .contact-card {
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 35px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  margin-top: 35px;
}
main.contact section.hero .contact-card a {
  border-bottom: 1px solid #fff;
}
main.contact section.hero .contact-card a:hover, main.contact section.hero .contact-card a:focus, main.contact section.hero .contact-card a:active {
  border-color: #2fef7f;
  color: #2fef7f;
}/*# sourceMappingURL=style.css.map */
