html {
  background-color: #f4f4f4;
}

body {
  font-family: "Barlow", sans-serif;
  height: 300px;
  overflow: hidden;
  margin: 0px;
}

*:focus {
  outline: none;
}

.load,
.load::before,
.load::after {
  opacity: 1 !important;
  visibility: visible !important;
}

#mmf_logo {
  position: absolute;
  top: 30px;
  left: 30px;
  margin: 0;
}

#mmf_logo img {
  height: 120px;
}

.main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main_content {
  width: 430px;
}

.main_content h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: #2b2b2b;
  margin: 15px auto;
}

#add_to_chrome {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 75vw;
  max-width: 280px;
  height: 64px;
  padding: 0 15px;
  color: #2b2b2b;
  background-color: #fbfbfb;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#add_to_chrome:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

#add_to_chrome h3 {
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

#add_to_chrome img {
  width: 42px;
}

.computer_gif {
  position: relative;
}

#gif {
  text-align: center;
}
#gif ul {
  list-style: none;
  padding: 0;
}
#gif li {
  display: none;
}

#gif li img {
  max-width: 90vw;
}

.signup_mobile {
  max-width: 95vw;
  margin: 0 auto;
}

@media screen and (min-width: 500px) {
  #mmf_logo img {
    height: 160px;
  }

  #gif li img {
    max-height: 33vh;
  }

  .main_content h2 {
    font-size: 44px;
  }
}

@media screen and (min-width: 1025px) {
  #gif li img {
    max-height: 48vh;
  }

  #add_to_chrome {
    display: flex;
  }
}
.signup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(16, 16, 16, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#mc_embed_signup {
  width: 65%;
  min-width: 340px;
  max-width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  padding: 30px 0;
  background-color: #fbfbfb;
}

#mc_embed_signup h2 {
  width: 100%;
  margin: 0 auto 10px;
  color: #1f1f1f;
  font-size: 40px;
  text-align: center;
}

#mc_embed_signup_scroll {
  text-align: center;
}

input#mce-EMAIL {
  width: 40%;
  min-width: 235px;
  max-width: 400px;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  padding: 10px 15px;
  border-radius: 2px;
  border: inset 1px black;
  margin: 15px auto;
}

input#mc-embedded-subscribe {
  height: 46px;
  background-color: #309d5c;
  border: none;
  border-radius: 2px;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Barlow", sans-serif;
  color: #fbfbfb;
  padding: 0 20px;
}

#mce-responses {
  margin-top: 10px;
}

.response {
  color: black;
  font-size: 20px;
}

@media screen and (min-width: 500px) {
  #mc_embed_signup h2 {
    margin: 0 auto 30px;
  }

  input#mce-EMAIL {
    font-size: 25px;
  }

  input#mc-embedded-subscribe {
    height: 50px;
    font-size: 25px;
    padding: 0 25px;
  }
}

.close {
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: fixed;
  right: 12px;
  top: 12px;
  z-index: 4;
}

.close.load {
  cursor: pointer;
}

.close:hover::before,
.close:hover::after {
  background: #b34a4a;
}

.close::before,
.close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #e8e8e8;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.built_by {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.built_by h2 {
  font-family: "Catamaran-Medium";
  font-size: 25px;
  font-weight: 400;
  line-height: 1.7;
  margin: auto;
  color: rgba(4, 4, 4, 0.5);
}

.built_by h2 a {
  text-decoration: underline;
  color: rgba(4, 4, 4, 0.5);
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.built_by h2 a:hover {
  color: rgba(4, 4, 4, 0.3);
}

@media screen and (min-width: 1201px) and (max-width: 1201px) and (min-height: 652px) and (max-height: 652px) {
  .built_by {
    display: none;
  }
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}

#mc_embed_signup_insta {
  width: 65%;
  min-width: 340px;
  max-width: 900px;
  border-radius: 4px;
  padding: 30px 0;
  margin: 0 auto;
}

#mc_embed_signup_insta h2 {
  width: 100%;
  margin-bottom: 15px;
  color: #fbfbfb;
}

#mc_embed_signup_insta #mc-embedded-subscribe {
  padding: 0 15px;
  background-color: #309d5c;
}

#mc_embed_signup_insta .response {
  color: #fbfbfb;
}

#cat7 {
  position: fixed;
  height: 230px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/* .responsers {
  color: #f1f1f1;
  font-size: 18px;
  font-style: italic;
  position: fixed;
  bottom: 245px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
  max-width: 300px;
}

.responsers_home {
  color: #1f1f1f;
  position: relative;
  margin: 10px auto 0;
  bottom: inherit;
  left: inherit;
  transform: none;
} */

#successers,
#successerss,
#failers {
  display: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
