body {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background: linear-gradient(90deg, rgba(254,215,112), rgba(242,159,143),rgba(7,106,103) );
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100vw;
    height: auto;
    overflow: hidden;
}
img {
    opacity: .8;
    width: 100vw;
    height: fit-content;
}
.header-title {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 3rem;
    font-weight: bold;
    padding: .5rem 1rem;
    background-color: rgba(7,106,103, .5);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.55);
    border-radius: 20px;
    color: #FED770;
}
.header-number {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 3rem;
  font-weight: bold;
  padding: .5rem 1.5rem;
  background-color: rgba(7,106,103, .5);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  color: #FED770;
  text-shadow: 0 5px 5px rgba(0,0,0,.5);
  display: flex;
  justify-content: space-between;
}
.header-number i {
  margin-right: 1.5rem;
}
nav { 
    z-index: 10000;
}
.navbar {
    background-color: rgba(7,106,103, .5) !important;
}

/* BUTTON INTRO */
.btn-intro {
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(rgba(254,215,112), rgba(242,159,143));
	color: #000;
	position: absolute;
	top: 60%;
	right: 5%;
}

@media (max-width: 1024px) {
	.btn-intro {
		top: 10%;
		right: 50%;
		transform: translate(50%, 0);
}
}

/* CIRCLE SECTION */
.circle-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.circle {
    width: 500px;
    height: 500px;
    animation: move 8s ease-in-out infinite;
  }
  .circle:hover {
    animation-play-state: paused;
  }
  @keyframes move {
    from{transform: rotate(0)}
    to{transform: rotate(-360deg)}
  }
 @keyframes moveClockwise {
    from{transform: rotate(0)}
    to{transform: rotate(360deg)}
  }
  .top-left-quarter {
    width: 250px;
    height: 250px;
    background: linear-gradient(rgba(255,255,255), rgba(254,215,112));
    border: 3px solid white;
    border-radius: 250px 0 0 0;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all .5s ease-in-out;
  }
  .top-left-quarter p {
    transform: rotate(-45deg);
    font-size: 1.5rem;
    width: 105px;
    padding-bottom: 1.5rem;
  }

  .top-left-quarter:hover,
  .top-right-quarter:hover,
  .bottom-left-quarter:hover,
  .bottom-right-quarter:hover{
    transform: scale(1.2);
    z-index: 10;
    box-shadow: 0 5px 5px rgba(0,0,0,.5);
  }
  .top-right-quarter {
    width: 250px;
    height: 250px;
    background: linear-gradient(rgba(254,215,112), rgba(242,159,143));
    border: 3px solid white;
    border-radius: 0 250px 0 0;
    position: absolute;
    top: 0;
    right: 0; 
    z-index: 0;
    display: flex;
    justify-content: flex-start;
    align-items:flex-end;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all .5s ease-in-out;
  }
  .top-right-quarter p {
    transform: rotate(45deg);
    font-size: 1.5rem;
    width: 150px;
    padding-bottom: 1.5rem;
  }

  .bottom-left-quarter {
    width: 250px;
    height: 250px;
    background: linear-gradient(rgba(251,117,82), rgba(7,106,103));
    border: 3px solid white;
    border-radius: 0 0 0 250px;
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: flex-end;
    align-items:flex-start;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all .5s ease-in-out;
  }
  .bottom-left-quarter p {
    transform: rotate(225deg);
    font-size: 1.5rem;
    width: 150px;
    padding-bottom: 1.5rem;
  }

  .bottom-right-quarter {
    width: 250px;
    height: 250px;
    background: linear-gradient(rgba(242,159,143), rgba(251,117,82));
    border: 3px solid white;
    border-radius: 0 0 250px 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    display: flex;
    justify-content: flex-start;
    align-items:flex-start;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all .5s ease-in-out;
  }
  .bottom-right-quarter p {
    transform: rotate(135deg);
    font-size: 1.5rem;
    width: 75px;
    padding-bottom: 1.5rem;
  }

/* SMALL CIRCLES */
  .small-circles {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
  }
  .small-circle-top-left {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    margin: 1rem;
    background: linear-gradient(rgba(255,255,255), rgba(254,215,112));
    border: 3px solid white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    animation: moveClockwise 8s ease-in-out infinite;
    transition: all .2s ease-in-out;
  }
.small-circle-top-left:hover,
.small-circle-top-right:hover,
.small-circle-bottom-left:hover,
.small-circle-bottom-right:hover {
    transform: scale(1.4);
    box-shadow: 0 0px 15px rgba(0,0,0,.4);
}
  .small-circle-top-right {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    margin: 1rem;
    background: linear-gradient(rgba(254,215,112), rgba(242,159,143));
    border: 3px solid white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    animation: moveClockwise 8s ease-in-out infinite;
    transition: all .2s ease-in-out;
  }
  .small-circle-bottom-left {
    background: linear-gradient(rgba(251,117,82), rgba(7,106,103));
    transition: all .2s ease-in-out;
  }
  .small-circle-bottom-right {
    background: linear-gradient(rgba(242,159,143), rgba(251,117,82));
    transition: all .2s ease-in-out;
  }

  /* ICONS - circle section */
  .icon {
    width: 5rem;
    padding-bottom: 2rem;
  }
  .music,
  .heart,
  .planning,
  .gavel {
    position: absolute;
    top: 30%;
    right: 30%;
  }

  .links {
    text-decoration: none;
    color: black;
  }

  /* CARDS */
  .one-cards {
    display: flex;
    justify-content: space-between;
  }

  /* FOOTER */
  .site-footer {
    background-color: rgba(7,106,103, .5);
  } 

  #footer-sidebar2 {
    width: 15%;
  }
  .widget_wp_statsmechanic {
    width: 50%;
  }
  #mvccount {
    display: flex;
  }

  /* MEDIA QUERIES */
@media only screen and (min-width: 1080px) and (max-width: 1920px) {
    .header-number {
      bottom: 30%;
      left: 50%;
      transform: translate(-50%, 0);
      font-size: 5rem;
    }  
  }
@media only screen and (min-width: 965px) and (max-width: 1079px) {
    .header-title {
      font-size: 2rem;
    }
    .header-number {
      bottom: 40%;
    }
    .one-cards {
      display: flex;
      flex-direction: column;
    }  
.circle {
        width: 300px;
        height: 300px;
      }
      .top-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 150px 0 0 0;
      }
      .top-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 150px 0 0;
      }
      .bottom-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 0 150px;
      }
      .bottom-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 150px 0;
      } 
  }

  @media only screen and (max-width: 964px) and (min-width: 601px) {
    .header-number {
      bottom: 50%;
    }    
    #footer-sidebar {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    /* .circle {
        width: 300px;
        height: 300px;
      }
      .top-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 150px 0 0 0;
      }
      .top-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 150px 0 0;
      }
      .bottom-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 0 150px;
      }
      .bottom-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 150px 0;
      } */
     .one-cards {
      display: flex;
      flex-direction: column;
    } 
   .small-circles {
      flex-direction: column;
  }
.small-circles .icon {
        display: block;
      }
  }

  @media only screen and (max-width: 600px) and (min-wight: 436px) {
    .header-title {
      top: 15%;
      font-size: 1rem;
    }
    .header-number {
      bottom: 70%;
      font-size: 1rem;
    }
    .circle-section {
      height: 400px;
    }
    .circle {
        width: 300px;
        height: 300px;
      }
      .top-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 150px 0 0 0;
      }
      .top-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 150px 0 0;
      }
      .bottom-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 0 150px;
      }
      .bottom-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 150px 0;
      }
      .icon {
        display: none;
      }
      p a {
        font-size: 20px;
      }
    .one-cards {
      display: flex;
      flex-direction: column;
    }  
   .small-circles {
      flex-direction: column;
  }
   .small-circles .icon {
        display: block;
      }
  }
  @media only screen and (max-width: 435px) {            
    .icon {
      display: none;
    }
    .circle {
        width: 300px;
        height: 300px;
      }
      .top-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 150px 0 0 0;
      }
      .top-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 150px 0 0;
      }
      .bottom-left-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 0 150px;
      }
      .bottom-right-quarter {
        width: 150px;
        height: 150px;
        border-radius: 0 0 150px 0;
      }
     .one-cards {
      display: flex;
      flex-direction: column;
    } 
     .small-circles {
      flex-direction: column;
  }
    .small-circles .icon {
        display: block;
      }
  .footer-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  }
  