html {
  scroll-behavior: smooth;
}


.font-heading {
  font-family: 'Roboto Flex', 'Open Sans';
}

.font-text {
  font-family: 'Open Sans';
}

.font-poppins {
  font-family: 'Poppins', 'Open Sans';
}

.pink {
  color: #9F2D58;
}

.navy {
  color: #192F6D;
}

.border-navy {
  border-color: #192F6D; 
}

.bg-navy {
  background-color: #192F6D; 
}

a {
  text-decoration: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#construction {
  overflow: hidden;
}

.cursor {
    position: absolute;
    z-index: 1;
    transition: 0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
        0.2s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0.8);
}

.cursor::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
}

.cursor.active {
    opacity: 1;
    transform: scale(1);
}

.cursor.active::before {
    opacity: 1;
}

.cursor-follower {
    position: absolute;
    background-image: url("../assets/cursorleft.svg"); 
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100px;
    height: 100px;
    z-index: 1;
    transition: 0.4s cubic-bezier(.69,-0.04,.28,1.57) transform,
        0.2s cubic-bezier(.69,-0.04,.28,1.57) opacity;
    user-select: none;
    pointer-events: none;
    transform: scale(0);
    opacity: 0;
}

.cursor-follower.left {
  background-image: url("../assets/cursorleft.svg") !important; 
}

.cursor-follower.right {
  background-image: url("../assets/cursorright.svg") !important; 
}

.cursor-follower.clicked {
  transition: 0.1s cubic-bezier(.69,-0.04,.28,1.57) transform !important;
  transform: scale(0.85) !important;
}

.cursor-follower.active {
    opacity: 1;
    transform: scale(1);
}