html {
  scroll-behavior: smooth;
}

body,
html {
  background-color: #2d2e32;
}

.logo-name {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  margin-right: 5rem;
}

.logo-name span {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.navbar {
  width: 100%;
  background-color: #2d2e32;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
  min-height: 20px;
  padding: 2rem 0;
}

.navbar .email-button {
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.navbar .email-button::before {
  content: " ";
  position: absolute;
  top: -62%;
  left: -67%;
  z-index: -1;
  background-color: #444548;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 100%;
}

.navbar .email-button:hover:before {
  -webkit-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.3);
}

.navbar-dark .navbar-nav .nav-link {
  font-size: 14px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  content: " ";
  height: 3px;
  background-color: #fff;
  transition: all 400ms ease-out;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fd8e32;
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active::after {
  background-color: #fd8e32;
  width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
  width: 100%;
  transition-delay: 5ms;
  transition: all 300ms ease-out;
}

.navbar-dark .navbar-toggler {
  border-color: transparent;
  color: transparent;
  padding: 0;
  outline: none;
}

.navbar-dark .navbar-toggler .navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
}

nav {
  transition: all 400ms ease-out;
}

nav.fixed-to-top {
  transition: all 400ms ease-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

nav.fixed-to-top.navbar {
  padding: 0.6rem 0;
}

@media (max-width: 576px) {
  .navbar {
    text-align: center;
    padding: 1rem 0;
  }
  .navbar-brand {
    width: 100%;
    text-align: center;
  }
  .logo-name {
    width: 100%;
    width: 100%;
    margin-right: 0;
  }
}

#title {
  margin-top: 2rem;
  text-align: center;
}

h2 {
  color: #ffffff;
}

/* Wrapper */
section.social-icons-section {
  font-size: 2.5em;
  padding: 2rem;
  text-align: center;
}
section.social-icons-section a {
  font-size: 1.5em;
}
.icon-button {
  background-color: #2d2e32;
  border-radius: 2.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.3rem;
  height: 5rem;
  line-height: 5rem;
  margin: 0 10px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 5rem;
}

/* Circle */
.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
}
.icon-button:hover span {
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  margin: -2.6rem;
}

/* Icons */
.icon-button i {
  background: none;
  color: white;
  height: 5rem;
  left: 0;
  line-height: 5rem;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 5rem;
  z-index: 10;
}

.twitter span {
  background-color: #4099ff;
}
.facebook span {
  background-color: #3b5998;
}
.google-plus span {
  background-color: #0072b1;
}
.tumblr span {
  background-color: #34526f;
}
/* .instagram span {
  background-color: #517fa4;
} */
.instagram span {
  background-color: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.site span {
  background-color: #666;
}

.icon-button .icon-twitter {
  color: #4099ff;
}
.icon-button .icon-facebook {
  color: #3b5998;
}
.icon-button .fa-tumblr {
  color: #34526f;
}
.icon-button .icon-google-plus {
  color: #0072b1;
}
.icon-button .fa-linkedin {
  color: #0072b1;
}
.icon-button .fa-instagram {
  color: #ffffff;
}
/* .icon-button .fa-youtube {
  color: #bb0000;
} */
.icon-button .fa-pinterest {
  color: #cb2027;
}

.icon-button:hover .icon-twitter,
.icon-button:hover .fa-linkedin,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-google-plus,
.icon-button:hover .fa-tumblr,
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-youtube,
.icon-button:hover .fa-pinterest {
  color: white;
}

@media all and (max-width: 680px) {
  .icon-button {
    border-radius: 5rem;
    font-size: 0.8rem;
    height: 5rem;
    line-height: 5rem;
    width: 5rem;
  }

  .icon-button:hover span {
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
  }

  /* Icons */
  .icon-button i {
    height: 5rem;
    line-height: 5rem;
    width: 5rem;
  }
}
