body{
  font-family: sans-serif;
}

.cd__main{
   display: block !important;
}

.fab-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  user-select: none;
  position: fixed;
  bottom: 10%;
  right: 10px;
}
.fab-container {
  height: 100%;
}
.fab-container .sub-button:nth-child(1) {
  transform: translateY(-20px);
}
.fab-container .sub-button:nth-child(2) {
  transform: translateY(-80px);
}
.fab-container .sub-button:nth-child(3) {
  transform: translateY(-140px);
}
.fab-container .sub-button:nth-child(4) {
  transform: translateY(-200px);
}
.fab-container .sub-button:nth-child(5) {
  transform: translateY(-260px);
}

.fab-container .sub-button:hover a{
  transform: scale(1.3);
}
.fab-container .sub-button.active{
  background-color: white;
}
.fab-container .sub-button.active a{
  transform: scale(1.3);
}
.fab-container .sub-button.active a span{
  color: rgb(0, 110, 117);
}
.fab-container .fab::before {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 35px;
  width: 35px;
  background-color: inherit;
  border-radius: 0 0 10px 0;
  z-index: -1;
}
.fab-container .fab .fab-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.fab-container .fab .fab-content .material-icons {
  color: white;
  font-size: 48px;
}
.fab-container .sub-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  background-color: rgb(0, 110, 117);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.fab-container .sub-button:hover {
  cursor: pointer;
}
.fab-container .sub-button .material-icons {
  color: white;
  padding-top: 6px;
}

.footer{
  background-color: rgb(0, 110, 117);
  color: white !important;
}

.social-links a{
  color: white !important;
  border-color: white !important;
  border: none !important;
  
}

#scroll-top{
  background-color: rgb(0, 110, 117);
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 10px;
}
.article {
  font-family: "EB Garamond",  sans-serif !important;
  color: white !important;
}
.layer {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1 !important;
  height: 100%;
}

.content{
  position: relative;
  z-index: 99;
}
.link:hover{
  text-decoration: underline;
}
.instagram-media.instagram-media-rendered{
  width: 100% !important;
}
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  }

  .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  }

  .background-overlay.active {
  opacity: 1;
  }


  #preloader::before{
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: rgb(0, 110, 117) transparent rgb(0, 110, 117) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}