:root {
  font-size: 16px;
}
html,
body {
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  background-color: white;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
h1,
h2,
h3,
h4,
h5,
p,
a,
span {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  margin: 0;
  color: #4F535A;
  text-decoration: none;
  line-height: 1.5;
}
div {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  line-height: 1.5;
  font-size: 1.25rem;
}
h1 {
  width: 100%;
  max-width: 600px;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem auto;
}
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
p {
  font-size: 1.25rem;
  font-weight: 400;
}
label,
input,
select {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  color: #4F535A;
}
section {
  width: 100%;
  padding: 0 0.5rem;
}
img {
  width: 100%;
}
.section-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.blue {
  color: #2B7FFA;
}
.card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.25));
  -webkit-filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.25));
  border-radius: 0.5rem;
  background-color: white;
}
.button {
  display: block;
  width: fit-content;
  font-size: 1.25rem;
  padding: 0.75rem 4rem;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  background-color: #2B7FFA;
  color: white;
}
.outline-button {
  background-color: white;
  border: #2B7FFA 3px solid;
  color: #2B7FFA;
  text-align: center;
}
.line {
  background-color: #BDC2C9;
  width: 100%;
  height: 2px;
  margin: 0.625rem 0;
}
input {
  border-radius: 0.75rem;
  border: 1.5px solid #BDC2C9;
  background-color: white;
  outline: none;
  height: 3rem;
  padding: 0 1rem;
}
input:focus {
  border-color: #2B7FFA;
  outline: none;
}
input::placeholder {
  color: #7A7E84;
}
.lg {
  display: none;
}
.mb {
  display: block;
}
#logo {
  font-family: 'Poppins', sans-serif;
  padding: 0;
  color: #4F535A;
  text-decoration: none;
  line-height: 1.5;
  width: fit-content;
  max-width: 600px;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1rem auto;
  position: absolute;
  left: 1rem;
  margin-top: 0.5rem;
  font-size: 2rem;
}
#logo img {
  max-width: 170px;
}
.popup {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  z-index: 100;
  position: fixed;
  backdrop-filter: blur(10px);
}
.popup .button {
  max-width: 100%;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.75rem 3rem;
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background-color: #2B7FFA;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 5rem;
  margin: 0;
  max-width: 600px;
}
.popup .transparent-button {
  padding-top: 0px;
  font-size: 1.25rem;
  background-color: transparent;
  text-decoration: underline;
  color: #4F535A;
  width: 100%;
}
.popup h2 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #4F535A;
}
.popup h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2B7FFA;
  text-align: center;
}
.popup p {
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  color: #4F535A;
}
.popup .exit-button {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem 0.5rem 0 0;
}
.popup .exit-button img {
  color: #4F535A;
  width: 35px;
  height: 35px;
}
.mini-popup {
  width: calc(100vw - 2rem);
  padding: 1.5rem;
  margin: 1rem;
  position: fixed;
  top: 0%;
  left: auto;
  background-color: white;
  z-index: 3;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
  border: 1.5px solid #BDC2C9;
}
.mini-popup button {
  position: absolute;
  width: 1rem;
  top: 0.5rem;
  right: 0.5rem;
}
.mini-popup p {
  text-align: center;
  font-size: 1.25rem;
}
.popup-card {
  padding: 2rem;
  margin: 1rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1rem;
  max-width: min(800px, 95vw);
  aspect-ratio: 4 / 3;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
h3 {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
}
h4 {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
}
h5 {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}
p {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
}
#intro-top {
  margin-top: 8rem;
}
#intro-top .line {
  max-width: 350px;
  margin: 1rem auto;
}
#intro-top .button {
  margin-top: 1rem;
}
#profiles {
  width: 100%;
  max-width: 600px;
  gap: 8rem;
  display: flex;
  flex-flow: row nowrap;
  overflow: scroll;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 1rem 1rem;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#profiles::-webkit-scrollbar {
  display: none;
}
.profile {
  min-width: 100%;
  scroll-snap-align: center;
  display: flex;
  flex-flow: column;
  margin-bottom: 0;
}
.profile .link-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.profile .link-wrapper a {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  border-radius: 9999px;
  border: 2px #BDC2C9 solid;
}
.profile-scroll-flexer {
  min-width: 10px;
  scroll-snap-align: none;
}
.top-section .line {
  width: calc(100% + 3rem);
  margin: 1.5rem -1.5rem 0 -1.5rem;
}
.profile-content {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  flex-grow: 2;
}
.profile-content .text-wrapper {
  margin: 1rem 0;
}
.profile-content .profile-photo {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  margin: 0 auto;
}
#profile-two {
  padding: 0;
}
#profile-two .top-section {
  padding: 1.5rem 1.5rem 0 1.5rem;
}
#profile-two .profile-content {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  gap: 0;
}
#profile-two .profile-content img {
  width: 50%;
  height: 100%;
  margin: 0;
  border-radius: 0 0 0 0.5rem;
  object-fit: cover;
}
#profile-two .content-wrapper {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  width: 50%;
  height: 100%;
}
#profile-two .content-wrapper .link-wrapper {
  display: flex;
  flex-flow: row wrap;
  gap: 0;
  justify-content: space-around;
  width: 100%;
  max-width: 200px;
}
#profile-two .content-wrapper .link-wrapper a {
  margin-bottom: 0.5rem;
}
#profile-two .text-wrapper {
  margin-top: 0;
}
#profile-three .profile-content {
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
#profile-three .profile-content img {
  min-width: 100px;
  width: 30%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0;
}
#profile-three .content-wrapper .link-wrapper {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.5rem;
  justify-content: space-between;
  margin: 0 auto;
}
#profile-three .text-wrapper {
  margin-top: 0;
}
.svg-icon {
  width: 35px;
  height: 35px;
  position: relative;
}
.svg-icon svg {
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#intro-bottom {
  margin-bottom: 1rem;
}
#intro-bottom img {
  width: 24px;
  margin: 1rem auto;
}
#intro-bottom svg {
  width: 64px;
  height: 64px;
}
.info-section {
  background-color: #F3F4F6;
  padding: 6rem 0;
}
.info-section img {
  max-width: 250px;
  margin: 0 auto;
}
.info-section .section-wrapper {
  display: flex;
  flex-flow: column;
  gap: 3rem;
  padding: 0 2rem;
}
.info-section .outline-button {
  width: 100%;
  margin: 1rem 0 0 0;
}
#linked-in-info .button {
  text-align: center;
  padding-right: 0;
  padding-left: 0;
}
#linkedInProfiles {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#linkedInProfiles #top-person {
  border-radius: 1rem;
  padding: 1rem;
}
#linkedInProfiles #top-person img {
  width: 4rem;
  height: 4rem;
}
#linkedInProfiles #others-users {
  border-radius: 1rem 1rem 0 0;
  display: flex;
  flex-flow: column;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem;
}
#linkedInProfiles .user {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0.5rem;
}
#linkedInProfiles .user img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 9999px;
  margin: 0;
}
#linkedInProfiles h3 {
  text-align: left;
}
#linkedInProfiles h4 {
  text-align: left;
}
#linkedInProfiles h5 {
  text-align: left;
}
#linkedInProfiles::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 10rem;
  bottom: -2rem;
  background-image: linear-gradient(rgba(243, 244, 246, 0) 0%, #f3f4f6 80%);
}
#only-one-section .section-wrapper {
  padding: 0 0.75rem;
}
#only-one-section h2 {
  font-size: 1.5rem;
}
#only-one-section h2 span {
  max-width: calc(100vw - 1.5rem);
  overflow-wrap: break-word;
}
#email-widget .section-wrapper {
  gap: 1.5rem;
  padding: 0 1rem;
  align-items: center;
}
#email-widget .card {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 5rem;
  margin-bottom: 0;
  padding: 0.75rem 1.5rem;
  width: fit-content;
}
#email-widget .card svg {
  display: none;
  align-items: center;
  min-width: 30px;
  width: 30px;
  height: 100%;
}
#email-widget .card p {
  max-width: 100%;
  font-size: 1rem;
  text-align: left;
  overflow-wrap: break-word;
}
#email-widget .card #email-card-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
}
#final-info h4 {
  color: white;
}
#final-info h5 {
  color: white;
}
#final-info .button {
  margin: 1.5rem auto 0 auto;
}
#final-info .domain {
  border-radius: 9999px;
  background-color: white;
  margin-bottom: 1.5rem;
}
#final-info .domain h4 {
  color: #4F535A;
}
#final-info .card {
  margin-bottom: 0;
  background-color: #2B7FFA;
  border-radius: 2rem;
  max-width: 400px;
}
#final-info .card img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 9999px;
}
#final-info .white-button {
  background-color: white;
  color: #2B7FFA;
}
#support a {
  text-decoration: underline;
  color: #2B7FFA;
}
#exit-stitial-pop-up {
  background-color: rgba(0, 0, 0, 0.7);
}
#exit-stitial-pop-up .popup-card {
  aspect-ratio: auto;
  width: min(800px, 95vw);
  justify-content: flex-start;
  padding: 2rem;
}
#exit-stitial-pop-up .exit-button img {
  width: 25px;
  height: 25px;
}
#mc_embed_signup {
  width: 100%;
}
#mc_embed_signup h2 {
  margin: 0;
}
#mc_embed_signup .mc-field-group {
  width: 100%;
  margin: 0;
}
#mc_embed_signup div #mce-responses {
  float: none;
  margin: 1.5rem 0 0 0;
  padding: 0;
  width: 100%;
}
#mc_embed_signup div #mce-responses .response {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
#mc_embed_signup div #mce-responses #mce-error-response {
  color: #F83B3B;
}
#mc_embed_signup div #mce-responses #mce-success-response {
  color: #3BC140;
}
#mc_embed_signup #submit-wrapper {
  display: flex;
  justify-content: center;
}
#mc_embed_signup .button {
  padding: 0.75rem 3rem;
  border-radius: 9999px;
  line-height: 1.5;
  height: fit-content;
  font-size: 1.25rem;
  text-align: center;
  width: 80%;
  max-width: none;
  background-color: #2B7FFA;
  margin: 0;
}
@media (min-width: 600px) {
  .mini-popup {
    width: fit-content;
    left: auto;
    right: 0;
  }
  #exit-stitial-pop-up .popup-card {
    padding: 6rem;
  }
}
footer {
  background-color: #F3F4F6;
}
footer li,
footer p,
footer a {
  color: #4F535A;
}
footer .footer-wrapper {
  width: 100%;
  max-width: 1280px;
  padding: 1.5rem;
  margin: 0 auto;
}
footer ol {
  width: 100%;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1rem;
  row-gap: 0.5rem;
}
@media (min-width: 1280px) {
  .mb {
    display: none;
  }
  .lg {
    display: block;
  }
  h3 {
    font-size: 1.5rem;
  }
  .button {
    max-width: 400px;
  }
  #intro-top {
    margin-top: 4rem;
  }
  #profiles {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 1rem 0;
  }
  #profiles::before {
    display: block;
    content: "";
    background-image: linear-gradient(0.25turn, #ffffff calc((100vw - 650px - 10rem)/2), rgba(255, 255, 255, 0));
    position: absolute;
    left: 0;
    margin-top: -1rem;
    width: calc((100vw - 650px)/2);
    height: calc(389px + 2rem);
    z-index: 1;
  }
  #profiles::after {
    display: block;
    content: "";
    background-image: linear-gradient(0.75turn, #ffffff calc((100vw - 650px - 10rem)/2), rgba(255, 255, 255, 0));
    position: absolute;
    right: 0;
    margin-top: -1rem;
    width: calc((100vw - 650px)/2);
    height: calc(389px + 2rem);
    z-index: 1;
  }
  .profile {
    min-width: 600px;
  }
  .profile-scroll-flexer {
    min-width: calc((100vw / 2) - 8rem);
  }
  #profile-two .text-wrapper h3 {
    font-size: 2rem;
  }
  #profile-two .text-wrapper h4 {
    font-size: 1.5rem;
  }
  #profile-two .content-wrapper .link-wrapper {
    max-width: 250px;
    justify-content: center;
    gap: 0.5rem;
  }
  #profile-three .profile-content {
    flex-flow: row nowrap;
    gap: 2rem;
  }
  #profile-three .text-wrapper h3 {
    font-size: 2rem;
  }
  #profile-three .text-wrapper h4 {
    font-size: 1.5rem;
  }
  #profile-three .content-wrapper .link-wrapper {
    max-width: 250px;
    justify-content: center;
    gap: 0.5rem;
  }
  .svg-icon {
    width: 40px;
    height: 40px;
  }
  .svg-icon svg {
    width: 50%;
    height: 50%;
  }
  #intro-bottom .button {
    margin: 1rem auto;
    padding-left: 6rem;
    padding-right: 6rem;
  }
  #gallery-control {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    margin-bottom: 1rem;
  }
  #gallery-control li {
    cursor: pointer;
    color: #BDC2C9;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 2;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #gallery-control p {
    font-size: 2rem;
    line-height: 0.8;
    width: 25px;
    height: 25px;
    color: #BDC2C9;
  }
  #gallery-control #control-slider {
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
  }
  .info-section {
    padding: 8rem 0;
  }
  .info-section h2 {
    text-align: left;
  }
  .info-section h3 {
    text-align: left;
  }
  .info-section p {
    text-align: left;
  }
  .info-section .section-wrapper {
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    padding: 0 6rem;
  }
  .info-section .section-wrapper img {
    margin: 0;
  }
  .info-section .reverse-row {
    flex-flow: row-reverse nowrap;
  }
  #launch-your-site img {
    max-width: 350px;
  }
  #linked-in-info .button {
    max-width: 400px;
  }
  #only-one-section h2 {
    font-size: 3rem;
    text-align: center;
  }
  #only-one-section h3 {
    font-size: 2.5rem;
    text-align: center;
  }
  #email-widget .section-wrapper {
    flex-flow: column;
  }
  #email-widget h2,
  #email-widget h3 {
    text-align: center;
  }
  #email-widget img {
    max-width: 500px;
  }
  #email-widget .card {
    padding: 1.5rem 3rem;
  }
  #email-widget .card p {
    font-size: 1.25rem;
  }
  #email-widget .card svg {
    display: flex;
  }
  #final-info .section-wrapper {
    display: flex;
    flex-flow: row nowrap;
  }
  #final-info .text-wrapper {
    width: 400px;
  }
  #final-info .text-wrapper .button {
    margin: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  #final-info .profile {
    min-width: 100px;
  }
  #final-info .card {
    max-width: 400px;
    flex-shrink: 2;
    flex-basis: 40%;
  }
  #support h3 {
    font-size: 2rem;
    text-align: center;
  }
}
