:focus-visible {
  outline: 2px solid hsl(12, 93%, 61%);
  outline-offset: 2px;
}

* {
  font-family: "Montserrat", sans-serif;
}

html {
  min-width: 322px;
  height: 100%;
  position: relative;
  overscroll-behavior: none;
  font-size: 100%;
  color: #000211;
}

body {
  height: 100%;
  overflow: auto;
  position: relative;
  overscroll-behavior: none;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  font-size: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

section {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  section {
    margin-bottom: 3.5rem;
  }
}

h1, .h1 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}

h2, .h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}
a:hover {
  color: hsl(12, 53%, 52%);
}

.modal-fullscreen {
  min-width: 100%;
}

.modal-content {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}

.dropdown-menu {
  margin-top: 0.55rem;
  background-color: hsl(10, 89%, 96%);
  border-radius: 0 0 2rem 2rem;
  border-color: rgba(248, 116, 84, 0.4);
  min-width: 13rem;
}
.dropdown-menu.show {
  border-top: 0.5rem solid hsl(12, 93%, 61%);
  animation: fadeIn 0.3s alternate;
}
.dropdown-menu li .dropdown-item {
  border-radius: 0;
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.9375rem;
}
.dropdown-menu li .dropdown-item:hover {
  color: #fff;
}
.dropdown-menu li .dropdown-item.active {
  background-color: hsl(12, 53%, 52%);
}
.dropdown-menu li .dropdown-item.text-primary:hover {
  color: #fff !important;
}
.dropdown-menu li:last-child .dropdown-item {
  border-radius: 0 0 1rem 1rem;
}
.dropdown-menu[data-popper-placement^=top] {
  border-radius: 2rem 2rem 0 0;
}
.dropdown-menu[data-popper-placement^=top].show {
  border-top: 1px solid rgba(248, 116, 84, 0.4);
  border-bottom: 0.5rem solid hsl(12, 93%, 61%);
}
.dropdown-menu[data-popper-placement^=top] li:last-child .dropdown-item {
  border-radius: 0;
}
.dropdown-menu[data-popper-placement^=top] li:first-child .dropdown-item {
  border-radius: 1rem 1rem 0 0;
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__delay-200 {
  animation-delay: 200ms;
}
.animate__animated.animate__delay-450 {
  animation-delay: 450ms;
}
.animate__animated.animate__delay-700 {
  animation-delay: 700ms;
}
.animate__animated.animate__delay-950 {
  animation-delay: 950ms;
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}