html,
body {
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  font-size: 16px;
}

p {
  line-height: 1.6;
  max-width: 50em;
}

button,
input {
  font-family: Hind, sans-serif;
  font-size: 1rem;
  outline: none;
}

.wrap,
.row,
.tab-row {
  margin: 0 auto;
  max-width: 1000px;
}

.nav {
  position: fixed;
  z-index: 3;
  height: 60px;
  width: 100%;
  transition: 300ms ease;
  background-color: rgba(255, 255, 255, 0);
}

.brand {
  float: left;
  line-height: 60px;
  color: white;
  font-weight: 500;
  padding-left: 1rem;
  font-size: 20px;
}
.brand span {
  font-size: 0.9em;
  font-weight: 700;
  color: white;
}
.brand img {
  vertical-align: middle;
  height: calc(60px - 1rem);
  margin-right: 0.5rem;
}

.top-menu {
  display: none;
  position: relative;
  float: right;
  transition: 200ms ease;
  font-weight: 300;
  height: 60px;
}
@media screen and (min-width: 640px) {
  .top-menu {
    display: block;
  }
}
.top-menu li {
  display: block;
  float: left;
  height: 60px;
}
.top-menu li a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-decoration: none;
  color: #fff;
  padding: 0 1em;
}
.top-menu li a:hover {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.mobile-open {
  display: block;
}

.hamburger-btn {
  float: right;
  display: block;
  border: none;
  background: transparent;
  color: #fff;
  height: calc(60px - 1rem);
  width: calc(60px - 1rem);
  margin: 0.5rem 0.5rem 0 0;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 640px) {
  .hamburger-btn {
    display: none;
  }
}
.hamburger-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.hamburger-btn .hamburger-line {
  height: 2px;
  width: calc(60px - 2rem);
  background: #fff;
  display: block;
  position: absolute;
  left: calc(0.5rem - 1px);
  transition: transform 150ms ease-in, top 150ms ease-out 150ms, bottom 150ms ease-out 150ms, opacity 150ms ease 75ms;
}
.hamburger-btn .hamburger-line:first-child {
  top: 0.75rem;
}
.hamburger-btn .hamburger-line:nth-child(2) {
  top: calc(50% - 1px);
}
.hamburger-btn .hamburger-line:last-child {
  bottom: 0.75rem;
}

.hamburger-cross .hamburger-line {
  transition: transform 150ms ease-out 150ms, top 150ms ease-in, bottom 150ms ease-in, opacity 150ms ease 75ms;
}
.hamburger-cross .hamburger-line:first-child {
  transform: rotate(45deg);
  top: calc(50% - 1px);
}
.hamburger-cross .hamburger-line:nth-child(2) {
  top: calc(50% - 1px);
  opacity: 0;
}
.hamburger-cross .hamburger-line:last-child {
  transform: rotate(-45deg);
  bottom: calc(50% - 1px);
}

.scroll {
  background: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.scroll .top-menu li a,
.scroll .brand {
  color: black;
}
.scroll .hamburger-line {
  background: #000;
}

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  /* max-height: 1080px; */
  /* background-image: url(http://unsplash.it/g/1280/721); */
  background-image: url(https://images.unsplash.com/photo-1592853625511-ad0edcc69c07?q=80&w=3538&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: #fff;
  display: table;
  width: 100%;
  text-align: center;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgb(49, 116, 80), rgb(51, 79, 100));
  opacity: 0.9;
  z-index: -1;
}
.hero h1 {
  font-size: 4em;
  margin-bottom: 1rem;
}
/* .hero p {
  font-size: 2em;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
} */
/* .hero .content {
  display: table-cell;
  vertical-align: middle;
} */

h1,
h2,
p {
  margin: 1em 0;
}

h2 {
  font-size: 2rem;
  line-height: 0.5;
}

a {
  /* color: #e14; */
  text-decoration: none;
}
/* a:hover {
  text-decoration: underline;
} */

.row:after,
.tab-row:after {
  content: "";
  display: table;
  clear: both;
}

.row,
.tab-row {
  display: block;
}

.tab-row {
  display: table;
  height: 100%;
  vertical-align: middle;
}

.main {
  background: #f8f8f8;
}
.main .row,
.main .tab-row {
  min-height: 200px;
}
.main .row:before,
.main .row:after,
.main .tab-row:before,
.main .tab-row:after {
  content: "";
  display: table;
}
.main section {
  padding: 0 1rem;
  min-height: 400px;
  height: 62vh;
}

.feature {
  background-image: url(http://unsplash.it/g/1280/722);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.feature:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, #ee8822, #11eebb);
  opacity: 0.9;
  z-index: -1;
}

.footer {
  background: #75889b;
  color: #ddd;
  padding: 2rem;
}
.footer li {
  line-height: 1.5;
}
.footer a {
  color: #aaa;
}
.footer hr {
  max-width: 1000px;
  border: 0;
  height: 1px;
  background: #a2aebb;
}

.col-12,
.col-6,
.col-4 {
  width: 100%;
}
@media screen and (min-width: 640px) {
  .col-12,
  .col-6,
  .col-4 {
    float: left;
  }
}
.tab-row > .col-12,
.tab-row > .col-6,
.tab-row > .col-4 {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
  float: none;
}

@media screen and (min-width: 640px) {
  .col-4 {
    width: 33%;
  }
}

@media screen and (min-width: 640px) {
  .col-6 {
    width: 50%;
  }
}

button.cta {
  padding: 0.75em 1.5em;
  background: rgba(255, 255, 255, 0);
  color: black;
  border: none;
  cursor: pointer;
  transition: 200ms ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
  border-radius: 2px;
}
button.cta:hover {
  color: #e14;
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}

/* Social Icons */

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.social-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  width: 64px;
  height: 64px;
  text-decoration: none;
  border-radius: 100%;
  background: #fff;
  text-align: center;
}
.social-button::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-radius: 100%;
  transition: 0.3s;
}
.social-button:focus,
.social-button:hover {
  color: #fff;
}
.social-button:focus::after,
.social-button:hover::after {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: calc(-50% - 1px);
}
.social-button i,
.social-button svg {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
.social-button i {
  font-size: 25.6px;
}
.social-button svg {
  height: 40%;
  width: 40%;
}
.social-button--tiktok {
  color: #000000;
}
.social-button--tiktok::after {
  background: #000000;
}
.social-button--snapchat {
  color: #eec900;
}
.social-button--snapchat::after {
  background: #eec900;
}
.social-button--instagram {
  color: #e4405f;
}
.social-button--instagram::after {
  background: #e4405f;
}
.social-button--youtube {
  color: rgb(237, 0, 43);
}
.social-button--youtube::after {
  background: rgb(237, 0, 43);
}

.no-bg {
  background: none;
}

button.cta--instagram:hover {
  color: #e4405f;
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}

button.cta--tiktok:hover {
  color: rgb(76, 85, 186);
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}

button.cta--snapchat:hover {
  color: #eec900;
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}

button.cta--youtube:hover {
  color: rgb(237, 0, 43);
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}

button.cta--white {
  color: rgb(255, 255, 255);
  box-shadow: 0 0.25em 10px rgba(0, 0, 0, 0.2);
}
.social-icons {
  padding: 0;
  list-style: none;
  margin: 1em;
}
.social-icons li {
  display: inline-block;
  margin: 0.15em;
  position: relative;
  font-size: 1.2em;
}
.social-icons i {
  color: #fff;
  position: absolute;
  top: 21px;
  left: 21px;
  transition: all 265ms ease-out;
}
.social-icons a {
  display: inline-block;
}
.social-icons a:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: block;
  background: linear-gradient(45deg, #66ff0081, #5948c8);
  transition: all 265ms ease-out;
}
.social-icons a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}
.social-icons a:hover i {
  transform: scale(2.2);
  -ms-transform: scale(2.2);
  -webkit-transform: scale(2.2);
  color: #ffffff;
  background: -webkit-linear-gradient(45deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 265ms ease-in;
}
