body {
  overflow: overlay;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: none;
  border-radius: 0px;
  background: rgba(222, 222, 222, .01);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 550px) {
  body {
    overflow-x: hidden;
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__container {
  position: relative;
  box-sizing: border-box;
}
.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform;
}
.splide.is-active .splide__list {
  display: flex;
}
.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}
.splide {
  visibility: hidden;
}
.splide,
.splide__slide {
  position: relative;
  outline: none;
}
.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__slider {
  position: relative;
}
.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite;
}
.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  user-select: none;
}
.splide--fade > .splide__track > .splide__list {
  display: block;
}
.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide--ttb > .splide__track > .splide__list {
  display: block;
}
.splide--ttb > .splide__pagination {
  width: auto;
}
.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  opacity: 0.7;
  background: #ccc;
}
.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}
.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__arrow:focus {
  outline: none;
}
.splide__arrow--prev {
  left: 1em;
}
.splide__arrow--prev svg {
  transform: scaleX(-1);
}
.splide__arrow--next {
  right: 1em;
}
.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}
.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform 0.2s linear;
  border: none;
  opacity: 0.7;
}
.splide__pagination__page.is-active {
  transform: scale(1.4);
  background: #fff;
}
.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}
.splide__pagination__page:focus {
  outline: none;
}
.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}
.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
}
.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000;
}
.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}
.splide--rtl > .splide__arrows .splide__arrow--prev,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}
.splide--rtl > .splide__arrows .splide__arrow--prev svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}
.splide--rtl > .splide__arrows .splide__arrow--next,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide--rtl > .splide__arrows .splide__arrow--next svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}
.splide--ttb > .splide__arrows .splide__arrow,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}
.splide--ttb > .splide__arrows .splide__arrow--prev,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}
.splide--ttb > .splide__arrows .splide__arrow--prev svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}
.splide--ttb > .splide__arrows .splide__arrow--next,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}
.splide--ttb > .splide__arrows .splide__arrow--next svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}
.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: 0.5em;
  transform: translateY(50%);
}
body[data-ef-duration="50"] [data-ef],
[data-ef][data-ef][data-ef-duration="50"] {
  transition-duration: 50ms;
}
body[data-ef-delay="50"] [data-ef],
[data-ef][data-ef][data-ef-delay="50"] {
  transition-delay: 0s;
}
body[data-ef-delay="50"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="50"].ef-animate {
  transition-delay: 50ms;
}
body[data-ef-duration="100"] [data-ef],
[data-ef][data-ef][data-ef-duration="100"] {
  transition-duration: 100ms;
}
body[data-ef-delay="100"] [data-ef],
[data-ef][data-ef][data-ef-delay="100"] {
  transition-delay: 0s;
}
body[data-ef-delay="100"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="100"].ef-animate {
  transition-delay: 100ms;
}
body[data-ef-duration="150"] [data-ef],
[data-ef][data-ef][data-ef-duration="150"] {
  transition-duration: 150ms;
}
body[data-ef-delay="150"] [data-ef],
[data-ef][data-ef][data-ef-delay="150"] {
  transition-delay: 0s;
}
body[data-ef-delay="150"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="150"].ef-animate {
  transition-delay: 150ms;
}
body[data-ef-duration="200"] [data-ef],
[data-ef][data-ef][data-ef-duration="200"] {
  transition-duration: 200ms;
}
body[data-ef-delay="200"] [data-ef],
[data-ef][data-ef][data-ef-delay="200"] {
  transition-delay: 0s;
}
body[data-ef-delay="200"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="200"].ef-animate {
  transition-delay: 200ms;
}
body[data-ef-duration="250"] [data-ef],
[data-ef][data-ef][data-ef-duration="250"] {
  transition-duration: 250ms;
}
body[data-ef-delay="250"] [data-ef],
[data-ef][data-ef][data-ef-delay="250"] {
  transition-delay: 0s;
}
body[data-ef-delay="250"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="250"].ef-animate {
  transition-delay: 250ms;
}
body[data-ef-duration="300"] [data-ef],
[data-ef][data-ef][data-ef-duration="300"] {
  transition-duration: 300ms;
}
body[data-ef-delay="300"] [data-ef],
[data-ef][data-ef][data-ef-delay="300"] {
  transition-delay: 0s;
}
body[data-ef-delay="300"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="300"].ef-animate {
  transition-delay: 300ms;
}
body[data-ef-duration="350"] [data-ef],
[data-ef][data-ef][data-ef-duration="350"] {
  transition-duration: 350ms;
}
body[data-ef-delay="350"] [data-ef],
[data-ef][data-ef][data-ef-delay="350"] {
  transition-delay: 0s;
}
body[data-ef-delay="350"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="350"].ef-animate {
  transition-delay: 350ms;
}
body[data-ef-duration="400"] [data-ef],
[data-ef][data-ef][data-ef-duration="400"] {
  transition-duration: 400ms;
}
body[data-ef-delay="400"] [data-ef],
[data-ef][data-ef][data-ef-delay="400"] {
  transition-delay: 0s;
}
body[data-ef-delay="400"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="400"].ef-animate {
  transition-delay: 400ms;
}
body[data-ef-duration="450"] [data-ef],
[data-ef][data-ef][data-ef-duration="450"] {
  transition-duration: 450ms;
}
body[data-ef-delay="450"] [data-ef],
[data-ef][data-ef][data-ef-delay="450"] {
  transition-delay: 0s;
}
body[data-ef-delay="450"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="450"].ef-animate {
  transition-delay: 450ms;
}
body[data-ef-duration="500"] [data-ef],
[data-ef][data-ef][data-ef-duration="500"] {
  transition-duration: 500ms;
}
body[data-ef-delay="500"] [data-ef],
[data-ef][data-ef][data-ef-delay="500"] {
  transition-delay: 0s;
}
body[data-ef-delay="500"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="500"].ef-animate {
  transition-delay: 500ms;
}
body[data-ef-duration="550"] [data-ef],
[data-ef][data-ef][data-ef-duration="550"] {
  transition-duration: 550ms;
}
body[data-ef-delay="550"] [data-ef],
[data-ef][data-ef][data-ef-delay="550"] {
  transition-delay: 0s;
}
body[data-ef-delay="550"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="550"].ef-animate {
  transition-delay: 550ms;
}
body[data-ef-duration="600"] [data-ef],
[data-ef][data-ef][data-ef-duration="600"] {
  transition-duration: 600ms;
}
body[data-ef-delay="600"] [data-ef],
[data-ef][data-ef][data-ef-delay="600"] {
  transition-delay: 0s;
}
body[data-ef-delay="600"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="600"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="650"] [data-ef],
[data-ef][data-ef][data-ef-duration="650"] {
  transition-duration: 600ms;
}
body[data-ef-delay="650"] [data-ef],
[data-ef][data-ef][data-ef-delay="650"] {
  transition-delay: 0s;
}
body[data-ef-delay="650"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="650"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="700"] [data-ef],
[data-ef][data-ef][data-ef-duration="700"] {
  transition-duration: 600ms;
}
body[data-ef-delay="700"] [data-ef],
[data-ef][data-ef][data-ef-delay="700"] {
  transition-delay: 0s;
}
body[data-ef-delay="700"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="700"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="750"] [data-ef],
[data-ef][data-ef][data-ef-duration="750"] {
  transition-duration: 600ms;
}
body[data-ef-delay="750"] [data-ef],
[data-ef][data-ef][data-ef-delay="750"] {
  transition-delay: 0s;
}
body[data-ef-delay="750"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="750"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="800"] [data-ef],
[data-ef][data-ef][data-ef-duration="800"] {
  transition-duration: 600ms;
}
body[data-ef-delay="800"] [data-ef],
[data-ef][data-ef][data-ef-delay="800"] {
  transition-delay: 0s;
}
body[data-ef-delay="800"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="800"].ef-animate {
  transition-delay: 800ms;
}
body[data-ef-duration="850"] [data-ef],
[data-ef][data-ef][data-ef-duration="850"] {
  transition-duration: 850ms;
}
body[data-ef-delay="850"] [data-ef],
[data-ef][data-ef][data-ef-delay="850"] {
  transition-delay: 0s;
}
body[data-ef-delay="850"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="850"].ef-animate {
  transition-delay: 850ms;
}
body[data-ef-duration="900"] [data-ef],
[data-ef][data-ef][data-ef-duration="900"] {
  transition-duration: 900ms;
}
body[data-ef-delay="900"] [data-ef],
[data-ef][data-ef][data-ef-delay="900"] {
  transition-delay: 0s;
}
body[data-ef-delay="900"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="900"].ef-animate {
  transition-delay: 900ms;
}
body[data-ef-duration="950"] [data-ef],
[data-ef][data-ef][data-ef-duration="950"] {
  transition-duration: 950ms;
}
body[data-ef-delay="950"] [data-ef],
[data-ef][data-ef][data-ef-delay="950"] {
  transition-delay: 0s;
}
body[data-ef-delay="950"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="950"].ef-animate {
  transition-delay: 950ms;
}
body[data-ef-duration="1000"] [data-ef],
[data-ef][data-ef][data-ef-duration="1000"] {
  transition-duration: 1000ms;
}
body[data-ef-delay="1000"] [data-ef],
[data-ef][data-ef][data-ef-delay="1000"] {
  transition-delay: 0s;
}
body[data-ef-delay="1000"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1000"].ef-animate {
  transition-delay: 1000ms;
}
body[data-ef-duration="1050"] [data-ef],
[data-ef][data-ef][data-ef-duration="1050"] {
  transition-duration: 1050ms;
}
body[data-ef-delay="1050"] [data-ef],
[data-ef][data-ef][data-ef-delay="1050"] {
  transition-delay: 0s;
}
body[data-ef-delay="1050"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1050"].ef-animate {
  transition-delay: 1050ms;
}
body[data-ef-duration="1100"] [data-ef],
[data-ef][data-ef][data-ef-duration="1100"] {
  transition-duration: 1100ms;
}
body[data-ef-delay="1100"] [data-ef],
[data-ef][data-ef][data-ef-delay="1100"] {
  transition-delay: 0s;
}
body[data-ef-delay="1100"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1100"].ef-animate {
  transition-delay: 1100ms;
}
body[data-ef-duration="1150"] [data-ef],
[data-ef][data-ef][data-ef-duration="1150"] {
  transition-duration: 1150ms;
}
body[data-ef-delay="1150"] [data-ef],
[data-ef][data-ef][data-ef-delay="1150"] {
  transition-delay: 0s;
}
body[data-ef-delay="1150"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1150"].ef-animate {
  transition-delay: 1150ms;
}
body[data-ef-duration="1200"] [data-ef],
[data-ef][data-ef][data-ef-duration="1200"] {
  transition-duration: 1200ms;
}
body[data-ef-delay="1200"] [data-ef],
[data-ef][data-ef][data-ef-delay="1200"] {
  transition-delay: 0s;
}
body[data-ef-delay="1200"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1200"].ef-animate {
  transition-delay: 1200ms;
}
body[data-ef-duration="1250"] [data-ef],
[data-ef][data-ef][data-ef-duration="1250"] {
  transition-duration: 1250ms;
}
body[data-ef-delay="1250"] [data-ef],
[data-ef][data-ef][data-ef-delay="1250"] {
  transition-delay: 0s;
}
body[data-ef-delay="1250"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1250"].ef-animate {
  transition-delay: 1250ms;
}
body[data-ef-duration="1300"] [data-ef],
[data-ef][data-ef][data-ef-duration="1300"] {
  transition-duration: 1300ms;
}
body[data-ef-delay="1300"] [data-ef],
[data-ef][data-ef][data-ef-delay="1300"] {
  transition-delay: 0s;
}
body[data-ef-delay="1300"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1300"].ef-animate {
  transition-delay: 1300ms;
}
body[data-ef-duration="1350"] [data-ef],
[data-ef][data-ef][data-ef-duration="1350"] {
  transition-duration: 1350ms;
}
body[data-ef-delay="1350"] [data-ef],
[data-ef][data-ef][data-ef-delay="1350"] {
  transition-delay: 0s;
}
body[data-ef-delay="1350"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1350"].ef-animate {
  transition-delay: 1350ms;
}
body[data-ef-duration="1400"] [data-ef],
[data-ef][data-ef][data-ef-duration="1400"] {
  transition-duration: 1400ms;
}
body[data-ef-delay="1400"] [data-ef],
[data-ef][data-ef][data-ef-delay="1400"] {
  transition-delay: 0s;
}
body[data-ef-delay="1400"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1400"].ef-animate {
  transition-delay: 1400ms;
}
body[data-ef-duration="1450"] [data-ef],
[data-ef][data-ef][data-ef-duration="1450"] {
  transition-duration: 1450ms;
}
body[data-ef-delay="1450"] [data-ef],
[data-ef][data-ef][data-ef-delay="1450"] {
  transition-delay: 0s;
}
body[data-ef-delay="1450"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1450"].ef-animate {
  transition-delay: 1450ms;
}
body[data-ef-duration="1500"] [data-ef],
[data-ef][data-ef][data-ef-duration="1500"] {
  transition-duration: 1500ms;
}
body[data-ef-delay="1500"] [data-ef],
[data-ef][data-ef][data-ef-delay="1500"] {
  transition-delay: 0s;
}
body[data-ef-delay="1500"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1500"].ef-animate {
  transition-delay: 1500ms;
}
body[data-ef-duration="1550"] [data-ef],
[data-ef][data-ef][data-ef-duration="1550"] {
  transition-duration: 1550ms;
}
body[data-ef-delay="1550"] [data-ef],
[data-ef][data-ef][data-ef-delay="1550"] {
  transition-delay: 0s;
}
body[data-ef-delay="1550"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1550"].ef-animate {
  transition-delay: 1550ms;
}
body[data-ef-duration="1600"] [data-ef],
[data-ef][data-ef][data-ef-duration="1600"] {
  transition-duration: 1600ms;
}
body[data-ef-delay="1600"] [data-ef],
[data-ef][data-ef][data-ef-delay="1600"] {
  transition-delay: 0s;
}
body[data-ef-delay="1600"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1600"].ef-animate {
  transition-delay: 1600ms;
}
body[data-ef-duration="1650"] [data-ef],
[data-ef][data-ef][data-ef-duration="1650"] {
  transition-duration: 1650ms;
}
body[data-ef-delay="1650"] [data-ef],
[data-ef][data-ef][data-ef-delay="1650"] {
  transition-delay: 0s;
}
body[data-ef-delay="1650"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1650"].ef-animate {
  transition-delay: 1650ms;
}
body[data-ef-duration="1700"] [data-ef],
[data-ef][data-ef][data-ef-duration="1700"] {
  transition-duration: 1700ms;
}
body[data-ef-delay="1700"] [data-ef],
[data-ef][data-ef][data-ef-delay="1700"] {
  transition-delay: 0s;
}
body[data-ef-delay="1700"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1700"].ef-animate {
  transition-delay: 1700ms;
}
body[data-ef-duration="1750"] [data-ef],
[data-ef][data-ef][data-ef-duration="1750"] {
  transition-duration: 1750ms;
}
body[data-ef-delay="1750"] [data-ef],
[data-ef][data-ef][data-ef-delay="1750"] {
  transition-delay: 0s;
}
body[data-ef-delay="1750"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1750"].ef-animate {
  transition-delay: 1750ms;
}
body[data-ef-duration="1800"] [data-ef],
[data-ef][data-ef][data-ef-duration="1800"] {
  transition-duration: 1800ms;
}
body[data-ef-delay="1800"] [data-ef],
[data-ef][data-ef][data-ef-delay="1800"] {
  transition-delay: 0s;
}
body[data-ef-delay="1800"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1800"].ef-animate {
  transition-delay: 1800ms;
}
body[data-ef-duration="1850"] [data-ef],
[data-ef][data-ef][data-ef-duration="1850"] {
  transition-duration: 1850ms;
}
body[data-ef-delay="1850"] [data-ef],
[data-ef][data-ef][data-ef-delay="1850"] {
  transition-delay: 0s;
}
body[data-ef-delay="1850"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1850"].ef-animate {
  transition-delay: 1850ms;
}
body[data-ef-duration="1900"] [data-ef],
[data-ef][data-ef][data-ef-duration="1900"] {
  transition-duration: 1900ms;
}
body[data-ef-delay="1900"] [data-ef],
[data-ef][data-ef][data-ef-delay="1900"] {
  transition-delay: 0s;
}
body[data-ef-delay="1900"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1900"].ef-animate {
  transition-delay: 1900ms;
}
body[data-ef-duration="1950"] [data-ef],
[data-ef][data-ef][data-ef-duration="1950"] {
  transition-duration: 1950ms;
}
body[data-ef-delay="1950"] [data-ef],
[data-ef][data-ef][data-ef-delay="1950"] {
  transition-delay: 0s;
}
body[data-ef-delay="1950"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="1950"].ef-animate {
  transition-delay: 1950ms;
}
body[data-ef-duration="2000"] [data-ef],
[data-ef][data-ef][data-ef-duration="2000"] {
  transition-duration: 2000ms;
}
body[data-ef-delay="2000"] [data-ef],
[data-ef][data-ef][data-ef-delay="2000"] {
  transition-delay: 0s;
}
body[data-ef-delay="2000"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2000"].ef-animate {
  transition-delay: 2000ms;
}
body[data-ef-duration="2050"] [data-ef],
[data-ef][data-ef][data-ef-duration="2050"] {
  transition-duration: 2050ms;
}
body[data-ef-delay="2050"] [data-ef],
[data-ef][data-ef][data-ef-delay="2050"] {
  transition-delay: 0s;
}
body[data-ef-delay="2050"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2050"].ef-animate {
  transition-delay: 2050ms;
}
body[data-ef-duration="2100"] [data-ef],
[data-ef][data-ef][data-ef-duration="2100"] {
  transition-duration: 2100ms;
}
body[data-ef-delay="2100"] [data-ef],
[data-ef][data-ef][data-ef-delay="2100"] {
  transition-delay: 0s;
}
body[data-ef-delay="2100"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2100"].ef-animate {
  transition-delay: 2100ms;
}
body[data-ef-duration="2150"] [data-ef],
[data-ef][data-ef][data-ef-duration="2150"] {
  transition-duration: 2150ms;
}
body[data-ef-delay="2150"] [data-ef],
[data-ef][data-ef][data-ef-delay="2150"] {
  transition-delay: 0s;
}
body[data-ef-delay="2150"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2150"].ef-animate {
  transition-delay: 2150ms;
}
body[data-ef-duration="2200"] [data-ef],
[data-ef][data-ef][data-ef-duration="2200"] {
  transition-duration: 2200ms;
}
body[data-ef-delay="2200"] [data-ef],
[data-ef][data-ef][data-ef-delay="2200"] {
  transition-delay: 0s;
}
body[data-ef-delay="2200"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2200"].ef-animate {
  transition-delay: 2200ms;
}
body[data-ef-duration="2250"] [data-ef],
[data-ef][data-ef][data-ef-duration="2250"] {
  transition-duration: 2250ms;
}
body[data-ef-delay="2250"] [data-ef],
[data-ef][data-ef][data-ef-delay="2250"] {
  transition-delay: 0s;
}
body[data-ef-delay="2250"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2250"].ef-animate {
  transition-delay: 2250ms;
}
body[data-ef-duration="2300"] [data-ef],
[data-ef][data-ef][data-ef-duration="2300"] {
  transition-duration: 2300ms;
}
body[data-ef-delay="2300"] [data-ef],
[data-ef][data-ef][data-ef-delay="2300"] {
  transition-delay: 0s;
}
body[data-ef-delay="2300"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2300"].ef-animate {
  transition-delay: 2300ms;
}
body[data-ef-duration="2350"] [data-ef],
[data-ef][data-ef][data-ef-duration="2350"] {
  transition-duration: 2350ms;
}
body[data-ef-delay="2350"] [data-ef],
[data-ef][data-ef][data-ef-delay="2350"] {
  transition-delay: 0s;
}
body[data-ef-delay="2350"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2350"].ef-animate {
  transition-delay: 2350ms;
}
body[data-ef-duration="2400"] [data-ef],
[data-ef][data-ef][data-ef-duration="2400"] {
  transition-duration: 2400ms;
}
body[data-ef-delay="2400"] [data-ef],
[data-ef][data-ef][data-ef-delay="2400"] {
  transition-delay: 0s;
}
body[data-ef-delay="2400"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2400"].ef-animate {
  transition-delay: 2400ms;
}
body[data-ef-duration="2450"] [data-ef],
[data-ef][data-ef][data-ef-duration="2450"] {
  transition-duration: 2450ms;
}
body[data-ef-delay="2450"] [data-ef],
[data-ef][data-ef][data-ef-delay="2450"] {
  transition-delay: 0s;
}
body[data-ef-delay="2450"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2450"].ef-animate {
  transition-delay: 2450ms;
}
body[data-ef-duration="2500"] [data-ef],
[data-ef][data-ef][data-ef-duration="2500"] {
  transition-duration: 2500ms;
}
body[data-ef-delay="2500"] [data-ef],
[data-ef][data-ef][data-ef-delay="2500"] {
  transition-delay: 0s;
}
body[data-ef-delay="2500"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2500"].ef-animate {
  transition-delay: 2500ms;
}
body[data-ef-duration="2550"] [data-ef],
[data-ef][data-ef][data-ef-duration="2550"] {
  transition-duration: 2550ms;
}
body[data-ef-delay="2550"] [data-ef],
[data-ef][data-ef][data-ef-delay="2550"] {
  transition-delay: 0s;
}
body[data-ef-delay="2550"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2550"].ef-animate {
  transition-delay: 2550ms;
}
body[data-ef-duration="2600"] [data-ef],
[data-ef][data-ef][data-ef-duration="2600"] {
  transition-duration: 2600ms;
}
body[data-ef-delay="2600"] [data-ef],
[data-ef][data-ef][data-ef-delay="2600"] {
  transition-delay: 0s;
}
body[data-ef-delay="2600"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2600"].ef-animate {
  transition-delay: 2600ms;
}
body[data-ef-duration="2650"] [data-ef],
[data-ef][data-ef][data-ef-duration="2650"] {
  transition-duration: 2650ms;
}
body[data-ef-delay="2650"] [data-ef],
[data-ef][data-ef][data-ef-delay="2650"] {
  transition-delay: 0s;
}
body[data-ef-delay="2650"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2650"].ef-animate {
  transition-delay: 2650ms;
}
body[data-ef-duration="2700"] [data-ef],
[data-ef][data-ef][data-ef-duration="2700"] {
  transition-duration: 2700ms;
}
body[data-ef-delay="2700"] [data-ef],
[data-ef][data-ef][data-ef-delay="2700"] {
  transition-delay: 0s;
}
body[data-ef-delay="2700"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2700"].ef-animate {
  transition-delay: 2700ms;
}
body[data-ef-duration="2750"] [data-ef],
[data-ef][data-ef][data-ef-duration="2750"] {
  transition-duration: 2750ms;
}
body[data-ef-delay="2750"] [data-ef],
[data-ef][data-ef][data-ef-delay="2750"] {
  transition-delay: 0s;
}
body[data-ef-delay="2750"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2750"].ef-animate {
  transition-delay: 2750ms;
}
body[data-ef-duration="2800"] [data-ef],
[data-ef][data-ef][data-ef-duration="2800"] {
  transition-duration: 2800ms;
}
body[data-ef-delay="2800"] [data-ef],
[data-ef][data-ef][data-ef-delay="2800"] {
  transition-delay: 0s;
}
body[data-ef-delay="2800"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2800"].ef-animate {
  transition-delay: 2800ms;
}
body[data-ef-duration="2850"] [data-ef],
[data-ef][data-ef][data-ef-duration="2850"] {
  transition-duration: 2850ms;
}
body[data-ef-delay="2850"] [data-ef],
[data-ef][data-ef][data-ef-delay="2850"] {
  transition-delay: 0s;
}
body[data-ef-delay="2850"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2850"].ef-animate {
  transition-delay: 2850ms;
}
body[data-ef-duration="2900"] [data-ef],
[data-ef][data-ef][data-ef-duration="2900"] {
  transition-duration: 2900ms;
}
body[data-ef-delay="2900"] [data-ef],
[data-ef][data-ef][data-ef-delay="2900"] {
  transition-delay: 0s;
}
body[data-ef-delay="2900"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2900"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="2950"] [data-ef],
[data-ef][data-ef][data-ef-duration="2950"] {
  transition-duration: 600ms;
}
body[data-ef-delay="2950"] [data-ef],
[data-ef][data-ef][data-ef-delay="2950"] {
  transition-delay: 0s;
}
body[data-ef-delay="2950"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="2950"].ef-animate {
  transition-delay: 0ms;
}
body[data-ef-duration="3000"] [data-ef],
[data-ef][data-ef][data-ef-duration="3000"] {
  transition-duration: 600ms;
}
body[data-ef-delay="3000"] [data-ef],
[data-ef][data-ef][data-ef-delay="3000"] {
  transition-delay: 0s;
}
body[data-ef-delay="3000"] [data-ef].ef-animate,
[data-ef][data-ef][data-ef-delay="3000"].ef-animate {
  transition-delay: 0ms;
}
[data-ef] {
  pointer-events: none;
}
[data-ef].ef-animate {
  pointer-events: auto;
}
body[data-ef-easing="linear"] [data-ef],
[data-ef][data-ef][data-ef-easing="linear"] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body[data-ef-easing="ease"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-in"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-out"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-in-out"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-in-back"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-back"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-out-back"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out-back"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-in-out-back"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out-back"] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-ef-easing="ease-in-sine"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-sine"] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
body[data-ef-easing="ease-out-sine"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out-sine"] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
body[data-ef-easing="ease-in-out-sine"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out-sine"] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body[data-ef-easing="ease-in-quad"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-quad"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-ef-easing="ease-out-quad"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out-quad"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-ef-easing="ease-in-out-quad"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out-quad"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-ef-easing="ease-in-cubic"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-cubic"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-ef-easing="ease-out-cubic"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out-cubic"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-ef-easing="ease-in-out-cubic"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out-cubic"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-ef-easing="ease-in-quart"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-quart"] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-ef-easing="ease-out-quart"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-out-quart"] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-ef-easing="ease-in-out-quart"] [data-ef],
[data-ef][data-ef][data-ef-easing="ease-in-out-quart"] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media screen {
  html:not(.no-js) [data-ef^="fade"][data-ef^="fade"] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-ef^="fade"][data-ef^="fade"].ef-animate {
    opacity: 1;
    transform: none;
  }
  html:not(.no-js) [data-ef="fade-up"] {
    transform: translate3d(0, 40px, 0);
  }
  html:not(.no-js) [data-ef="fade-down"] {
    transform: translate3d(0, 40px, 0);
  }
  html:not(.no-js) [data-ef="fade-right"] {
    transform: translate3d(0px, 40px, 0);
  }
  html:not(.no-js) [data-ef="fade-left"] {
    transform: translate3d(0px, 40px, 0);
  }
  html:not(.no-js) [data-ef="fade-up-right"] {
    transform: translate3d(-100px, 100px, 0);
  }
  html:not(.no-js) [data-ef="fade-up-left"] {
    transform: translate3d(100px, 100px, 0);
  }
  html:not(.no-js) [data-ef="fade-down-right"] {
    transform: translate3d(-100px, -100px, 0);
  }
  html:not(.no-js) [data-ef="fade-down-left"] {
    transform: translate3d(100px, -100px, 0);
  }
  html:not(.no-js) [data-ef^="zoom"][data-ef^="zoom"] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-ef^="zoom"][data-ef^="zoom"].ef-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  html:not(.no-js) [data-ef="zoom-in"] {
    transform: scale(0.6);
  }
  html:not(.no-js) [data-ef="zoom-in-up"] {
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-ef="zoom-in-down"] {
    transform: translate3d(0, -100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-ef="zoom-in-right"] {
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-ef="zoom-in-left"] {
    transform: translate3d(100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-ef="zoom-out"] {
    transform: scale(1.2);
  }
  html:not(.no-js) [data-ef="zoom-out-up"] {
    transform: translate3d(0, 100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-ef="zoom-out-down"] {
    transform: translate3d(0, -100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-ef="zoom-out-right"] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-ef="zoom-out-left"] {
    transform: translate3d(100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-ef^="slide"][data-ef^="slide"] {
    transition-property: transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-ef^="slide"][data-ef^="slide"].ef-animate {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  html:not(.no-js) [data-ef="slide-up"] {
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-ef="slide-down"] {
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-ef="slide-right"] {
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-ef="slide-left"] {
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-ef^="flip"][data-ef^="flip"] {
    backface-visibility: hidden;
    transition-property: transform;
  }
  html:not(.no-js) [data-ef="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-ef="flip-left"].ef-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-ef="flip-right"] {
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-ef="flip-right"].ef-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-ef="flip-up"] {
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-ef="flip-up"].ef-animate {
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-ef="flip-down"] {
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-ef="flip-down"].ef-animate {
    transform: perspective(2500px) rotateX(0);
  }
} /*!
 * Bootstrap v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1,
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.5rem;
  }
}
h2,
.h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}
h3,
.h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 1.75rem;
  }
}
h4,
.h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.5rem;
  }
}
h5,
.h5 {
  font-size: 1.25rem;
}
h6,
.h6 {
  font-size: 1rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul {
  padding-left: 2rem;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small,
.small {
  font-size: 0.875em;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
figure {
  margin: 0 0 1rem;
}
img,
svg {
  vertical-align: middle;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}
.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}
.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}
.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}
.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}
.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}
.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\00A0";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: 700;
}

.color-pink {
  color: #f63d7e;
  font-weight: 400 !important;
}

.b-icon
{
	display: inline-block;
	-webkit-background-size : 100%;
	background-size         : 100%;
	background-repeat : no-repeat;
	margin-top : -3px;
}

/* @media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
} */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: rgba(0, 0, 0, 0);
  --bs-table-accent-bg: rgba(0, 0, 0, 0);
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: currentColor;
}
.caption-top {
  caption-side: top;
}
.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}
.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}
.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}
.table-hover > tbody > tr:hover {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}
.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}
.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}
.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}
.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}
.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}
.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}
.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}
.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}
.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type="file"] {
  overflow: hidden;
}
.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}
.form-control-color {
  max-width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}
.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}
.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}
.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
}
.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}
.form-check-input[type="radio"] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type="checkbox"]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}
.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280,0,0,0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}
.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}
.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}
.input-group:not(.has-validation)
  > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation
  > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}
.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}
.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}
.was-validated .form-select:valid,
.form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid,
.form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}
.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group .form-control:valid,
.input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus,
.input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}
.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right
    calc(0.375em + 0.1875rem);
}
.was-validated .form-select:invalid,
.form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}
.was-validated .input-group .form-control:invalid,
.input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus,
.input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}
.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success,
.btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled,
.btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled,
.btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled,
.btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}
.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled,
.btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}
.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled,
.btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}
.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.btn-sm,
.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}
.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}
.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto /* rtl:ignore */;
  left: 0; /* rtl:ignore */
}
.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0 /* rtl:ignore */;
  left: auto; /* rtl:ignore */
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0; /* rtl:ignore */
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto; /* rtl:ignore */
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0; /* rtl:ignore */
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto; /* rtl:ignore */
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0; /* rtl:ignore */
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto; /* rtl:ignore */
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0; /* rtl:ignore */
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto; /* rtl:ignore */
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto /* rtl:ignore */;
    left: 0; /* rtl:ignore */
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0 /* rtl:ignore */;
    left: auto; /* rtl:ignore */
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}
.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}
.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover,
.nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}
.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}
.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}
.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}
.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-body {
  padding: 1rem 1.25rem;
}
.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(
    --bs-breadcrumb-divider,
    "/"
  ); /* rtl: var(--bs-breadcrumb-divider, "/") */
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}
.page-link {
  padding: 0.375rem 0.75rem;
}
.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}
.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}
.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}
.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}
.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}
.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}
.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}
.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}
.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}
@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 1rem 1rem;
}
.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}
.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover,
.list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}
.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}
@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}
.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}
.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}
.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}
.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}
.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}
.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}
.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}
.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}
.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled,
.btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}
.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}
.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.showing):not(.show) {
  opacity: 0;
}
.toast.hide {
  display: none;
}
.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}
.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}
.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.carousel {
  position: relative;
}
.carousel.pointer-event {
  touch-action: pan-y;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}
.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}
.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg); /* rtl:ignore */
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}
.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto")
    url(/wp-content/themes/mightycall2021/fonts/Roboto-Regular.ttf);
}
/* @font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 200;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-ExtraLight.ttf);
}
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 300;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-Light.ttf);
}
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-Regular.ttf);
}
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 600;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-SemiBold.ttf);
}
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 700;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-Bold.ttf);
}
@font-face {
  font-family: "Source Serif Pro";
  font-style: normal;
  font-weight: 900;
  src: url(/wp-content/themes/mightycall2021/fonts/SourceSerifPro-Black.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-Light.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-Medium.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-SemiBold.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-Bold.ttf);
}
@font-face {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  src: url(/wp-content/themes/mightycall2021/fonts/OpenSans-ExtraBold.ttf);
} */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }
  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }
  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes hvr-wobble-horizontal-left {
  16.65% {
    -webkit-transform: translateX(8px) rotate(180deg);
    transform: translateX(8px) rotate(180deg);
  }
  33.3% {
    -webkit-transform: translateX(-6px) rotate(180deg);
    transform: translateX(-6px) rotate(180deg);
  }
  49.95% {
    -webkit-transform: translateX(4px) rotate(180deg);
    transform: translateX(4px) rotate(180deg);
  }
  66.6% {
    -webkit-transform: translateX(-2px) rotate(180deg);
    transform: translateX(-2px) rotate(180deg);
  }
  83.25% {
    -webkit-transform: translateX(1px) rotate(180deg);
    transform: translateX(1px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }
}
@keyframes hvr-wobble-horizontal-left {
  16.65% {
    -webkit-transform: translateX(8px) rotate(180deg);
    transform: translateX(8px) rotate(180deg);
  }
  33.3% {
    -webkit-transform: translateX(-6px) rotate(180deg);
    transform: translateX(-6px) rotate(180deg);
  }
  49.95% {
    -webkit-transform: translateX(4px) rotate(180deg);
    transform: translateX(4px) rotate(180deg);
  }
  66.6% {
    -webkit-transform: translateX(-2px) rotate(180deg);
    transform: translateX(-2px) rotate(180deg);
  }
  83.25% {
    -webkit-transform: translateX(1px) rotate(180deg);
    transform: translateX(1px) rotate(180deg);
  }
  100% {
    -webkit-transform: translateX(0) rotate(180deg);
    transform: translateX(0) rotate(180deg);
  }
}
:root {
  --border-size: 0.1rem;
  --border-size-double: 0.2rem;
  font-size: 62.5%;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
}
body #logo {
  width: 10rem;
}
body .container {
  /* font-family: "Source Serif Pro", serif; */
  /* font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem; */
  /* letter-spacing: 0.04em; */
  margin: 0 auto;
}
body .container img {
  /* width: 20rem; */
}
body.freezed {
  overflow: hidden;
}
.base__block,
.main {
  height: 100vh;
}
.base__content,
.b-supportSection,
.faq,
.page-header,
.sales-sup,
.mail-contacts,
.tariffs,
.sales-team,
.difference,
.reviews,
.trial-lion {
  padding-top: 20rem;
}
.features {
  margin-top: 20rem;
}
.b-supportSection {
	padding-top: 20rem !important;
  padding-bottom: 5rem !important;
}
#main-scrollbar {
  /* background: #4c75e6; */
}
.base__btn,
.base__btn--green-grey,
.tariffs__tariff-btn,
.tariffs__tariff-btn--pink,
.base__btn--pink-grey,
.sales-sup__action--sales,
.sales-sup__action--sales--contacts,
.sales-sup__action--support,
.sales-sup__action--support--contacts,
.trial-lion__button--trial,
.base__btn--blue-grey,
.trial-lion__button--demo,
.base__btn--bordered,
.header__button {
  text-align: center;
  vertical-align: middle;
  padding: 1.8rem 3.2rem;
  border-radius: 1.6rem;
  box-sizing: border-box;
  font-family: "Source Serif Pro", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0em;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease 0.05s;
  text-decoration: none;
}
.base__btn:hover,
.base__btn--green-grey:hover,
.tariffs__tariff-btn:hover,
.tariffs__tariff-btn--pink:hover,
.base__btn--pink-grey:hover,
.sales-sup__action--sales:hover,
.sales-sup__action--sales--contacts:hover,
.sales-sup__action--support:hover,
.sales-sup__action--support--contacts:hover,
.trial-lion__button--trial:hover,
.base__btn--blue-grey:hover,
.trial-lion__button--demo:hover,
.base__btn--bordered:hover,
.header__button:hover {
  transition: transform 0.2s ease 0.05s;
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: 0 2.5rem 2rem -1rem rgba(101, 110, 135, 0.3);
}
.sales-sup__action--sales:hover,
.sales-sup__action--sales--contacts:hover,
.trial-lion__button--demo:hover,
.trial-lion__button--trial:hover {
  color: #fff;
}
.base__btn:active,
.base__btn--green-grey:active,
.tariffs__tariff-btn:active,
.tariffs__tariff-btn--pink:active,
.base__btn--pink-grey:active,
.sales-sup__action--sales:active,
.sales-sup__action--sales--contacts:active,
.sales-sup__action--support:active,
.sales-sup__action--support--contacts:active,
.trial-lion__button--trial:active,
.base__btn--blue-grey:active,
.trial-lion__button--demo:active,
.base__btn--bordered:active,
.header__button:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0.5rem 0.5rem rgba(101, 110, 135, 0.6);
}
.base__btn--green,
.main__button--demo,
.promo__button--demo {
  text-align: center;
  vertical-align: middle;
  padding: 1.8rem 3.2rem;
  border-radius: 1.6rem;
  box-sizing: border-box;
  font-family: "Source Serif Pro", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0em;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease 0.05s;
  color: #4c75e6;
  background: linear-gradient(360deg, #cdfb3e 0%, #c6ffdd 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(22, 75, 225, 0.6);
  text-decoration: none;
}
.base__btn--green:hover,
.main__button--demo:hover,
.promo__button--demo:hover {
  transition: transform 0.2s ease 0.05s;
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: 0 2.5rem 2rem -1rem rgba(22, 75, 225, 0.3);
  color: #4c75e6;
}
.base__btn--green:active,
.main__button--demo:active,
.promo__button--demo:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0.5rem 0.5rem rgba(22, 75, 225, 0.6);
}
.base__btn--green:after,
.main__button--demo:after,
.promo__button--demo:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.base__btn--green-grey,
.tariffs__tariff-btn,
.tariffs__tariff-btn--pink {
  color: #4c75e6;
  background: linear-gradient(360deg, #cdfb3e 0%, #c6ffdd 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
}
.base__btn--green-grey:after,
.tariffs__tariff-btn:after,
.tariffs__tariff-btn--pink:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.base__btn--pink,
.player__btn,
.main__button--trial,
.promo__button--trial {
  text-align: center;
  vertical-align: middle;
  padding: 1.8rem 3.2rem;
  border-radius: 1.6rem;
  box-sizing: border-box;
  font-family: "Source Serif Pro", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0em;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease 0.05s;
  color: #fff;
  background: linear-gradient(180deg, #ef8dff 0%, #f63d7e 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(22, 75, 225, 0.6);
  text-decoration: none;
}
.base__btn--pink:hover,
.player__btn:hover,
.main__button--trial:hover,
.promo__button--trial:hover {
  color: #fff;
  transition: transform 0.2s ease 0.05s;
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: 0 2.5rem 2rem -1rem rgba(22, 75, 225, 0.3);
}
.base__btn--pink:active,
.player__btn:active,
.main__button--trial:active,
.promo__button--trial:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0.5rem 0.5rem rgba(22, 75, 225, 0.6);
}
.base__btn--pink:after,
.player__btn:after,
.main__button--trial:after,
.promo__button--trial:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.base__btn--pink-grey,
.sales-sup__action--sales,
.sales-sup__action--sales--contacts,
.sales-sup__action--support,
.sales-sup__action--support--contacts,
.tariffs__tariff-btn--pink,
.trial-lion__button--trial {
  color: #fff;
  background: linear-gradient(180deg, #ef8dff 0%, #f63d7e 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
}
.base__btn--pink-grey:after,
.sales-sup__action--sales:after,
.sales-sup__action--sales--contacts:after,
.sales-sup__action--support:after,
.sales-sup__action--support--contacts:after,
.tariffs__tariff-btn--pink:after,
.trial-lion__button--trial:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.base__btn--blue {
  text-align: center;
  vertical-align: middle;
  padding: 1.8rem 3.2rem;
  border-radius: 1.6rem;
  box-sizing: border-box;
  font-family: "Source Serif Pro", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6rem;
  letter-spacing: 0em;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease 0.05s;
  color: #fff;
  background: linear-gradient(180deg, #b1afff 0%, #4c75e6 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(22, 75, 225, 0.6);
}
.base__btn--blue:hover {
  transition: transform 0.2s ease 0.05s;
  transform: translate3d(0, -0.5rem, 0);
  box-shadow: 0 2.5rem 2rem -1rem rgba(22, 75, 225, 0.3);
}
.base__btn--blue:active {
  transform: translate3d(0, 0, 0);
  box-shadow: 0 0.5rem 0.5rem rgba(22, 75, 225, 0.6);
}
.base__btn--blue:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.base__btn--blue-grey,
.trial-lion__button--demo {
  color: #fff;
  background: linear-gradient(180deg, #b1afff 0%, #4c75e6 100%);
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
}
.base__btn--blue-grey:after,
.trial-lion__button--demo:after {
  display: block;
  content: "";
  height: 2rem;
  width: 100%;
  margin-bottom: -2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.base__btn--bordered,
.header__button {
  color: #fff;
  position: relative;
  overflow: hidden;
  border: var(--border-size) solid #cdfb3e;
  -webkit-transition: box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
}
.base__btn--bordered:hover,
.header__button:hover {
  transform: none;
  box-shadow: 0 0 4rem 4rem #cdfb3e inset;
  color: #4c75e6;
}
.base__btn--bordered:active,
.header__button:active {
  transform: none;
  box-shadow: 0 0 4rem 4rem #cdfb3e inset;
  color: #4c75e6;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .base__content,
  .b-supportSection,
  .faq,
  .page-header,
  .sales-sup,
  .mail-contacts,
  .tariffs,
  .sales-team,
  .difference,
  .reviews,
  .trial-lion {
    padding-top: 15rem;
  }
  .features {
    margin-top: 15rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .base__content,
  .b-supportSection,
  .faq,
  .page-header,
  .sales-sup,
  .mail-contacts,
  .tariffs,
  .sales-team,
  .difference,
  .reviews,
  .trial-lion {
    padding-top: 10rem;
  }
  .features {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 799px) {
  .base__content,
  .b-supportSection,
  .faq,
  .page-header,
  .sales-sup,
  .mail-contacts,
  .tariffs,
  .sales-team,
  .difference,
  .reviews,
  .trial-lion {
    padding-top: 7rem;
  }
  .features {
    margin-top: 7rem;
  }
}

/*Player Styles*/
.player {
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.player__header,
.player__block {
  display: none;
}
.player__header {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #fff;
}
.player__link {
  font-family: "Source Serif Pro", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
}
.player__link .contrast {
  transition: 0.7s;
  color: inherited;
}
.player__link:hover {
  color: #333;
  text-decoration: none;
  background: #cdfb3e;
}
.player__link:hover .contrast {
  color: inherited;
}
.player__close {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.player__close:before {
  content: "";
  background: url("/wp-content/themes/mightycall2021/img/icons/arrow-right-green.svg")
    no-repeat 0 center;
  width: 5rem;
  height: 3.2rem;
  margin-right: 2.4rem;
  -webkit-transform: perspective(1px) translateZ(0) rotate(180deg);
  transform: perspective(1px) translateZ(0) rotate(180deg);
}
.player__close:hover:before {
  -webkit-animation-name: hvr-wobble-horizontal-left;
  animation-name: hvr-wobble-horizontal-left;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.player__btn {
  margin: -2.6rem auto 0;
  width: fit-content;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  background: linear-gradient(180deg, #b1afff 0%, #4c75e6 100%);
}
.player--open {
  opacity: 1;
  background: #4c75e6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100vw;
  height: 100vh;
  padding: 6.5rem 36.8rem 12.5rem;
}
.player--open .player__block {
  display: initial;
  width: 100%;
  height: calc(100% + 3.4rem);
  min-height: calc(100% - 19rem);
}
.player--open .player__block--wrapper {
  position: relative;
}
.player--open .player__block iframe {
  width: 100%;
  height: 100%;
  margin-top: 2.4rem;
  filter: drop-shadow(0 0 0.9rem rgba(25, 58, 150, 0.6));
}
.player--open .player__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 2.8rem;
  flex-wrap: wrap;
}
.player--open .player__cover {
  width: 100%;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .player--open {
    padding: 6.5rem 15.8rem 12.5rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .player--open {
    padding: 6.5rem 7.8rem 12.5rem;
  }
}
@media screen and (max-width: 799px) {
  .player--open {
    padding: 3.5rem 1.8rem 6.5rem;
  }
  .player__btn {
    font-size: 16px;
    padding: 1.2rem 2.4rem;
  }
  .player__header {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.spinner--hidden {
  display: none;
}
.spinner__container {
  height: 1.5rem;
  width: 10.5rem;
  display: flex;
  position: relative;
}
.spinner__container .spinner__circle {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #dafd6e;
  animation: move 500ms linear 0ms infinite;
  margin-right: 3rem;
}
.spinner__container .spinner__circle:first-child {
  position: absolute;
  top: 0;
  left: 0;
  animation: grow 500ms linear 0ms infinite;
}
.spinner__container .spinner__circle:last-child {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 0;
  animation: grow 500ms linear 0s infinite reverse;
}
@keyframes grow {
  from {
    transform: scale(0, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes move {
  from {
    transform: translateX(0rem);
  }
  to {
    transform: translateX(4.5rem);
  }
}
.main {
  background-color: #4c75e6;
  padding: 2rem 7.3rem 8rem;
  min-height: 93.2rem;
}
.main__wrapper {
  padding: 2.4rem 7.8rem 0 3.8rem;
  position: relative;
}
.main__phone-system {
  font-family: "Source Serif Pro", serif;
  font-size: 20rem;
  font-weight: 700;
  line-height: 10rem;
  letter-spacing: 0em;
  color: #7999f3;
  text-align: center;
  margin: 0;
}
.main__virtual {
  font-family: "Open Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7999f3;
  margin: 0 auto;
  width: 21.8rem;
  transform: translate3d(-16.3rem, 0, 0);
}
.main__empower {
  font-family: "Source Serif Pro", serif;
  font-size: 11rem;
  font-weight: 700;
  line-height: 10rem;
  letter-spacing: 0em;
  color: #dafd6e;
  margin-top: -4.3rem;
}
.main__mightycall {
  font-family: "Source Serif Pro", serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 4.8rem;
  letter-spacing: 0em;
  color: #fff;
  margin-top: 1.6rem;
}
.main__mightycall--with {
  font-family: "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 4.8rem;
  letter-spacing: 0em;
  color: #fff;
}
.main__your-business {
  font-family: "Source Serif Pro", serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0em;
  color: #7999f3;
  text-align: center;
  margin-top: 4.7rem;
}
.main__your-business--for {
  font-family: "Open Sans", sans-serif;
  font-size: 9rem;
  font-weight: 400;
  line-height: 8rem;
  letter-spacing: 0.2em;
  color: #7999f3;
}
.main__lion {
  position: absolute;
  width: 78.8rem;
  height: 62.5rem;
  right: 0;
  top: 0;
}
.main__player-btn {
  background: url("/wp-content/themes/mightycall2021/img/icons/play.svg")
    no-repeat 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 28.3rem;
  height: 8rem;
  padding-left: 10.4rem;
  margin: -8rem 0 0 3.8rem;
  position: relative;
  z-index: 1;
}
.main__player-btn--link {
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
}
.main__player-btn--link .contrast {
  transition: 0.7s;
  color: inherited;
}
.main__player-btn--link:hover {
  color: #333;
  text-decoration: none;
  background: #cdfb3e;
}
.main__player-btn--link:hover .contrast {
  color: inherited;
}
.main__learn {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #fff;
}
.main__buttons {
  display: flex;
  justify-content: center;
  padding-top: 10.9rem;
}
.main__button--demo {
  margin: 0 1.6rem;
  width: 16.8rem;
}
.main__button--trial {
  margin: 0 1.6rem;
  width: 16.8rem;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .main {
    min-height: 50rem;
  }
  .main__phone-system {
    font-family: "Source Serif Pro", serif;
    font-size: 14rem;
    font-weight: 700;
    line-height: 10rem;
    letter-spacing: 0em;
  }
  .main__virtual {
    font-family: "Open Sans", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.2em;
    width: 15.3rem;
    transform: translate3d(-11rem, 0, 0);
    margin-bottom: -1rem;
  }
  .main__empower {
    font-family: "Source Serif Pro", serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 8.5rem;
    letter-spacing: 0em;
    margin-top: -2.3rem;
  }
  .main__your-business {
    font-family: "Source Serif Pro", serif;
    font-size: 7rem;
    font-weight: 700;
    line-height: 8rem;
    letter-spacing: 0em;
    padding-left: 43%;
  }
  .main__your-business--for {
    font-family: "Open Sans", sans-serif;
    font-size: 6rem;
    font-weight: 400;
    line-height: 8rem;
    letter-spacing: 0.2em;
  }
  .main__lion {
    width: 61.8rem;
    height: 39.8rem;
    top: 5rem;
  }
  .main__buttons {
    padding-top: 1.9rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .main {
    height: auto;
    padding: 9.4rem 4.7rem 10rem;
    text-align: center;
  }
  .main__wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .main__empower {
    order: 1;
    margin-top: 0;
    font-family: "Source Serif Pro", serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 8.5rem;
    letter-spacing: 0em;
  }
  .main__mightycall {
    order: 2;
  }
  .main__virtual {
    order: 3;
    font-family: "Open Sans", sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.2em;
    transform: translate3d(-9rem, 0, 0);
    margin: 1.8rem auto -2.3rem;
  }
  .main__phone-system {
    font-family: "Source Serif Pro", serif;
    font-size: 11rem;
    font-weight: 700;
    line-height: 10rem;
    letter-spacing: 0em;
    order: 4;
  }
  .main__your-business {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 8rem;
    letter-spacing: 0em;
    order: 5;
    margin-top: 24.9rem;
  }
  .main__your-business--for {
    font-family: "Open Sans", sans-serif;
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 8rem;
    letter-spacing: 0.2em;
  }
  .main__player-btn {
    order: 6;
    background-position: center 0;
    flex-direction: column;
    width: 17.9rem;
    height: 16.2rem;
    margin: 3.2rem auto 0;
    padding: 9.6rem 0 0 0;
  }
  .main__player-btn--link {
    transition: 0.7s;
    color: #cdfb3e;
    text-decoration: none;
  }
  .main__player-btn--link .contrast {
    transition: 0.7s;
    color: inherited;
  }
  .main__player-btn--link:hover {
    color: #333;
    text-decoration: none;
    background: #cdfb3e;
  }
  .main__player-btn--link:hover .contrast {
    color: inherited;
  }
  .main__learn {
    text-align: center;
  }
  .main__buttons {
    order: 7;
    padding-top: 6.4rem;
  }
  .main__lion {
    height: 41.9rem;
    right: auto;
    width: 100%;
    top: 22.5rem;
  }
}
@media screen and (max-width: 799px) {
  .main {
    height: auto;
    padding: 5rem 0 ;
    text-align: center;
  }
  .main__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .main__empower {
    order: 1;
    margin-top: 0;
    width: 17.7rem;
    font-family: "Source Serif Pro", serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0em;
  }
  .main__mightycall {
    order: 2;
    font-family: "Source Serif Pro", serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 4.8rem;
    letter-spacing: 0em;
    margin-top: 1.6rem;
  }
  .main__mightycall--with {
    font-family: "Open Sans", sans-serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .main__virtual,
  .main__phone-system,
  .main__your-business {
    display: none;
  }
  .main__lion {
    order: 3;
    position: static;
    height: 44.2rem;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .main__player-btn {
    order: 4;
    background-position: center 0;
    flex-direction: column;
    width: 17.9rem;
    height: 16.2rem;
    padding: 9.6rem 0 0 0;
    margin: 3.2rem auto 0;
  }
  .main__player-btn--link {
    transition: 0.7s;
    color: #cdfb3e;
    text-decoration: none;
  }
  .main__player-btn--link .contrast {
    transition: 0.7s;
    color: inherited;
  }
  .main__player-btn--link:hover {
    color: #333;
    text-decoration: none;
    background: #cdfb3e;
  }
  .main__player-btn--link:hover .contrast {
    color: inherited;
  }
  .main__learn {
    text-align: center;
  }
  .main__buttons {
    order: 5;
    padding-top: 7rem;
    flex-direction: column;
    align-items: center;
  }
  .main__button--demo,
  .main__button--trial {
    width: fit-content;
    padding: 1.2rem 2.4rem;
    font-size: 16px;
    line-height: 16px;
  }
  .main__button--trial {
    margin-top: 3.2rem;
  }
}
#main-slider .main-slider__arrow {
  box-sizing: border-box;
  display: flex;
  justify-content: start;
  width: 25.7rem;
  height: 6.4rem;
  padding: 1.2rem 1.6rem;
  position: absolute;
  right: 5.3rem;
  top: 0;
  z-index: 1;
}
#main-slider .main-slider__arrow--left,
#main-slider .main-slider__arrow--right {
  background: url("/wp-content/themes/mightycall2021/img/icons/arrow-right-green.svg")
    no-repeat 0 center;
  width: 5rem;
  height: 4rem;
  cursor: pointer;
  margin-right: 1.6rem;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
#main-slider .main-slider__arrow--left {
  transform: perspective(1px) translateZ(0) rotate(180deg);
}
#main-slider .main-slider__arrow--left:hover,
#main-slider .main-slider__arrow--right:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
#main-slider .main-slider__arrow--left:hover {
  -webkit-animation-name: hvr-wobble-horizontal-left;
  animation-name: hvr-wobble-horizontal-left;
}
#main-slider .main-slider__arrow--right:hover {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
}
#main-slider .main-slider__counter {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
  margin-left: 1.4rem;
}
#main-slider .splide__slide {
  height: 62.5rem;
}
#main-slider .splide__slide .main__lion {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
#main-slider .splide__slide .main__slide-message {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/message.webp")
    no-repeat center center;
  position: absolute;
  left: -1.26904%;
  top: 17.12%;
  width: 38.32487%;
  height: 32.32%;
}
#main-slider .splide__slide .main__slide-mini-player {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/player-mini.webp")
    no-repeat center center;
  position: absolute;
  left: 12.69036%;
  top: 2.4%;
  width: 46.19289%;
  height: 15.36%;
}
#main-slider .splide__slide .main__slide-request {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/request-call.webp")
    no-repeat center center;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75.76142%;
  height: 21.12%;
}
#main-slider .splide__slide .main__slide-journal {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/journal-mob.webp")
    no-repeat center center;
  position: absolute;
  top: 6.72%;
  right: 5.32995%;
  width: 26.64975%;
  height: 52.48%;
}
#main-slider .splide__slide .main__slide-chair {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/chair.webp")
      no-repeat 47% bottom,
    url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/flower-right.webp")
      no-repeat right 97%,
    url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/table-left.webp")
      no-repeat left 98.5%;
  position: absolute;
  bottom: 15.84%;
  right: 16.49746%;
  width: 64.3401%;
  height: 52.32%;
}
#main-slider .splide__slide .main__slide-lion {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/lion-01/lion.webp")
    no-repeat 47% bottom;
  position: absolute;
  left: 34.26396%;
  bottom: 4.8%;
  width: 38.4264%;
  height: 72.96%;
}
#main-slider .splide__slide .main__slide-mob {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/mob-03/phone.webp")
    no-repeat center center;
  position: absolute;
  left: 29.31472%;
  top: 17.12%;
  width: 26.14213%;
  height: 65.92%;
  filter: drop-shadow(0 0 0.9rem rgba(25, 58, 150, 0.6));
}
#main-slider .splide__slide .main__slide-apple {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/mob-03/app-store.png")
    no-repeat center center;
  position: absolute;
  right: 29.56853%;
  top: 36.64%;
  width: 7.61421%;
  height: 9.6%;
  filter: drop-shadow(0 0 0.9rem rgba(25, 58, 150, 0.6));
}
#main-slider .splide__slide .main__slide-google {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/mob-03/google-play.webp")
    no-repeat center center;
  position: absolute;
  right: 29.56853%;
  top: 56.32%;
  width: 7.61421%;
  height: 9.6%;
  filter: drop-shadow(0 0 0.9rem rgba(25, 58, 150, 0.6));
}
#main-slider .splide__slide .main__desk {
  background: url("/wp-content/themes/mightycall2021/img/slides-main/desk.webp")
    no-repeat 70% center;
  height: inherit;
}
#main-slider .splide__slide .main__mob {
  height: inherit;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  #main-slider .main-slider__arrow {
    padding: 0.5rem 1.6rem;
    right: 2.6rem;
    top: -4rem;
  }
  #main-slider .splide__slide {
    height: 40.8rem;
  }
  #main-slider .splide__slide .main__slide-message {
    left: 11.7rem;
    top: 9.1rem;
    width: 19.4rem;
    height: 12.5rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mini-player {
    left: 0.1rem;
    top: 3.2rem;
    height: 6.2rem;
    width: 22.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-request {
    bottom: -0.8rem;
    height: 9.2rem;
    right: 0;
    width: 36.7rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-journal {
    top: 5.1rem;
    right: 2.6rem;
    height: 20.3rem;
    width: 13.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-chair {
    bottom: 5.9rem;
    height: 32.7rem;
    right: 7.8rem;
    width: 31.7rem;
    background-position-y: bottom;
    background-size: 19.2rem, 8.8rem, 6.7rem;
  }
  #main-slider .splide__slide .main__slide-lion {
    bottom: 1.6rem;
    height: 28.2rem;
    left: 29.2rem;
    width: 19.28rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mob {
    height: 28.5rem;
    left: 19.6rem;
    top: 2.1rem;
    width: 14.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-apple {
    height: 4.1rem;
    right: 19.8rem;
    top: 10.4rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-google {
    height: 4.1rem;
    right: 19.8rem;
    top: 19rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__desk {
    height: 80%;
    background-position: 84% center;
    background-size: contain;
    margin: 5% 0;
  }
  #main-slider .splide__slide .main__mob {
    height: 80%;
    background-size: contain;
    margin: 5% 0;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  #main-slider {
    width: 49.6rem;
    min-width: 49.6rem;
    margin: 0 auto;
  }
  #main-slider .main-slider__arrow {
    padding: 0.5rem 1.6rem;
    right: 2.6rem;
    top: -4rem;
  }
  #main-slider .splide__slide {
    height: 40.8rem;
  }
  #main-slider .splide__slide .main__slide-message {
    left: 11.7rem;
    top: 9.1rem;
    width: 19.4rem;
    height: 12.5rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mini-player {
    left: 0.1rem;
    top: 3.2rem;
    height: 6.2rem;
    width: 22.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-request {
    bottom: -0.8rem;
    height: 9.2rem;
    right: 0;
    width: 36.7rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-journal {
    top: 5.1rem;
    right: 2.6rem;
    height: 20.3rem;
    width: 13.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-chair {
    bottom: 5.9rem;
    height: 32.7rem;
    right: 7.8rem;
    width: 31.7rem;
    background-position-y: bottom;
    background-size: 19.2rem, 8.8rem, 6.7rem;
  }
  #main-slider .splide__slide .main__slide-lion {
    bottom: 1.6rem;
    height: 28.2rem;
    left: 29.2rem;
    width: 19.28rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mob {
    height: 28.5rem;
    left: 19.6rem;
    top: 2.1rem;
    width: 14.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-apple {
    height: 4.1rem;
    right: 19.8rem;
    top: 10.4rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-google {
    height: 4.1rem;
    right: 19.8rem;
    top: 19rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__desk {
    height: 80%;
    background-position: 84% center;
    background-size: contain;
    margin: 5% 0;
  }
  #main-slider .splide__slide .main__mob {
    height: 80%;
    background-size: contain;
    margin: 5% 0;
  }
  #main-slider .main-slider__arrow {
    padding: 0.5rem 0;
    margin: 0 -6.3rem;
    right: auto;
    top: 21.8rem;
    width: calc(100% + 12.6rem);
    display: flex;
    justify-content: space-between;
  }
  #main-slider .main-slider__arrow--left,
  #main-slider .main-slider__arrow--right {
    margin: 0;
  }
  #main-slider .main-slider__counter {
    display: none;
  }
  #main-slider .splide__slide {
    height: 41.8rem;
  }
  #main-slider .splide__slide .main__slide-message {
    top: 10.1rem;
    left: -0.3rem;
  }
  #main-slider .splide__slide .main__slide-mini-player {
    left: 14.1rem;
  }
  #main-slider .splide__slide .main__slide-journal {
    top: 6.1rem;
  }
  #main-slider .splide__slide .main__slide-chair {
    bottom: 4.9rem;
  }
  #main-slider .splide__slide .main__slide-lion {
    left: 17.2rem;
  }
  #main-slider .splide__slide .main__slide-mob {
    left: 17.5rem;
  }
  #main-slider .splide__slide .main__slide-apple {
    top: 15.4rem;
    left: 9.5rem;
  }
  #main-slider .splide__slide .main__slide-google {
    top: 15.4rem;
    right: 9.5rem;
  }
  #main-slider .splide__slide .main__desk {
    background-position: center center;
    height: 70%;
    margin: 10% 0;
  }
}
@media screen and (max-width: 799px) {
  #main-slider {
    width: 49.6rem;
    min-width: 49.6rem;
    margin: 0 auto;
  }
  #main-slider .main-slider__arrow {
    padding: 0.5rem 1.6rem;
    right: 2.6rem;
    top: -4rem;
  }
  #main-slider .splide__slide {
    height: 40.8rem;
  }
  #main-slider .splide__slide .main__slide-message {
    left: 11.7rem;
    top: 9.1rem;
    width: 19.4rem;
    height: 12.5rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mini-player {
    left: 0.1rem;
    top: 3.2rem;
    height: 6.2rem;
    width: 22.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-request {
    bottom: -0.8rem;
    height: 9.2rem;
    right: 0;
    width: 36.7rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-journal {
    top: 5.1rem;
    right: 2.6rem;
    height: 20.3rem;
    width: 13.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-chair {
    bottom: 5.9rem;
    height: 32.7rem;
    right: 7.8rem;
    width: 31.7rem;
    background-position-y: bottom;
    background-size: 19.2rem, 8.8rem, 6.7rem;
  }
  #main-slider .splide__slide .main__slide-lion {
    bottom: 1.6rem;
    height: 28.2rem;
    left: 29.2rem;
    width: 19.28rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-mob {
    height: 28.5rem;
    left: 19.6rem;
    top: 2.1rem;
    width: 14.6rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-apple {
    height: 4.1rem;
    right: 19.8rem;
    top: 10.4rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__slide-google {
    height: 4.1rem;
    right: 19.8rem;
    top: 19rem;
    width: 4.1rem;
    background-size: contain;
  }
  #main-slider .splide__slide .main__desk {
    height: 80%;
    background-position: 84% center;
    background-size: contain;
    margin: 5% 0;
  }
  #main-slider .splide__slide .main__mob {
    height: 80%;
    background-size: contain;
    margin: 5% 0;
  }
  #main-slider .main-slider__arrow {
    padding: 0.5rem 0;
    margin: 0 -6.3rem;
    right: auto;
    top: 21.8rem;
    width: calc(100% + 12.6rem);
    display: flex;
    justify-content: space-between;
  }
  #main-slider .main-slider__arrow--left,
  #main-slider .main-slider__arrow--right {
    margin: 0;
  }
  #main-slider .main-slider__counter {
    display: none;
  }
  #main-slider .splide__slide {
    height: 41.8rem;
  }
  #main-slider .splide__slide .main__slide-message {
    top: 10.1rem;
    left: -0.3rem;
  }
  #main-slider .splide__slide .main__slide-mini-player {
    left: 14.1rem;
  }
  #main-slider .splide__slide .main__slide-journal {
    top: 6.1rem;
  }
  #main-slider .splide__slide .main__slide-chair {
    bottom: 4.9rem;
  }
  #main-slider .splide__slide .main__slide-lion {
    left: 17.2rem;
  }
  #main-slider .splide__slide .main__slide-mob {
    left: 17.5rem;
  }
  #main-slider .splide__slide .main__slide-apple {
    top: 15.4rem;
    left: 9.5rem;
  }
  #main-slider .splide__slide .main__slide-google {
    top: 15.4rem;
    right: 9.5rem;
  }
  #main-slider .splide__slide .main__desk {
    background-position: center center;
    height: 70%;
    margin: 10% 0;
  }
  #main-slider .main-slider__arrow {
    justify-content: space-around;
    margin: 0;
    padding: 0.5rem 0;
    right: auto;
    top: auto;
    width: 100%;
    height: 2.3rem;
    bottom: 0;
  }
  #main-slider .main-slider__arrow--left,
  #main-slider .main-slider__arrow--right {
    width: 2rem;
    height: 2rem;
    background-position-x: right;
  }
  #main-slider .splide__slide .main__desk {
    background-size: 76%;
  }
}
.first-animation-end #main-slider .splide__slide .main__slide-message {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-mini-player {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.1s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-request {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-journal {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.3s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-chair {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-lion {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-mob {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-apple {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.1s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__slide-google {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.2s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__desk {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide .main__mob {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.first-animation-end #main-slider .splide__slide.is-active > * {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.first-animation-end #main-slider .splide__slide.is-active.is-active-out > * {
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0.85);
  transform: translate3d(0, 0, 0) scale(0.85);
}
.main:not(.first-animation) [data-main-phone-1],
.main:not(.first-animation) [data-main-phone-2],
.main:not(.first-animation) [data-main-virtual],
.main:not(.first-animation) [data-main-for],
.main:not(.first-animation) [data-main-your],
.main:not(.first-animation) [data-main-business],
.main:not(.first-animation) [data-main-mightycall],
.main:not(.first-animation) [data-main-player-btn] {
  opacity: 0;
  -webkit-transform: none;
  transform: none;
}
.main:not(.first-animation) [data-main-phone-zoom] {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.main:not(.first-animation) [data-main-business-zoom] {
  -webkit-transform: translate3d(-18rem, -25rem, 0rem) scale(0.6);
  transform: translate3d(-18rem, -25rem, 0rem) scale(0.6);
}
.main:not(.first-animation) [data-main-empower] {
  opacity: 0;
  -webkit-transform: none;
  transform: none;
  transition-property: opacity, letter-spacing, -webkit-transform;
  transition-property: opacity, letter-spacing, transform;
  transition-property: opacity, letter-spacing, transform, -webkit-transform;
  letter-spacing: 0.4rem;
  -webkit-transform: translate3d(0, 0, -10rem) scale(1) scaleX(0.7);
  transform: translate3d(0, 0, -10rem) scale(1) scaleX(0.7);
}
.main:not(.first-animation) [data-main-lion] {
  opacity: 0;
  -webkit-transform: none;
  transform: none;
}
.main:not(.first-animation) [data-main-lion-player] {
  opacity: 0;
  -webkit-transform: translate3d(0, -10rem, 0) scale(1);
  transform: translate3d(0, -10rem, 0) scale(1);
}
.main:not(.first-animation) [data-main-lion-message] {
  opacity: 0;
  -webkit-transform: translate3d(-10rem, 0, 0) scale(1);
  transform: translate3d(-10rem, 0, 0) scale(1);
}
.main:not(.first-animation) [data-main-lion-request] {
  opacity: 0;
  -webkit-transform: translate3d(0, 10rem, 0) scale(1);
  transform: translate3d(0, 10rem, 0) scale(1);
}
.main:not(.first-animation) [data-main-journal] {
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
.main:not(.first-animation) [data-main-lion-chair] {
  opacity: 0;
  -webkit-transform: translate3d(0, -10rem, 0) scale(1);
  transform: translate3d(0, -10rem, 0) scale(1);
}
.main:not(.first-animation) [data-main-lion-lion] {
  opacity: 0;
  -webkit-transform: translate3d(0, -10rem, 0) scale(1);
  transform: translate3d(0, -10rem, 0) scale(1);
}
.main:not(.first-animation) [data-main-buttons] {
  opacity: 0;
  -webkit-transform: none;
  transform: none;
  -webkit-transform: translate3d(0, 20rem, 0) scale(1);
  transform: translate3d(0, 20rem, 0) scale(1);
}
.first-animation.main [data-main-phone-zoom] {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  transition-delay: 1.3s;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}
.first-animation.main [data-main-phone-1] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
}
.first-animation.main [data-main-phone-2] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 0.4s;
}
.first-animation.main [data-main-virtual],
.first-animation.main [data-main-for] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
.first-animation.main [data-main-your] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
.first-animation.main [data-main-business] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 1s;
}
.first-animation.main [data-main-business-zoom] {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in-out;
  transition-delay: 1.4s;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}
.first-animation.main [data-main-empower] {
  letter-spacing: initial;
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  transition-delay: 2.4s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.first-animation.main [data-main-mightycall] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
  transition-delay: 2.6s;
}
.first-animation.main [data-main-player-btn] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  transition-delay: 2.9s;
}
.first-animation.main [data-main-lion] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.1s;
  transition-timing-function: ease-in-out;
  transition-delay: 2.9s;
}
.first-animation.main [data-main-lion-player] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.4s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-lion-message] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.5s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-lion-request] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.4s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-journal] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.5s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-lion-chair] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.6s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-lion-lion] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.7s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.main [data-main-buttons] {
  opacity: 1;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 0.7s;
  transition-timing-function: ease-in-out;
  transition-delay: 3.9s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.first-animation.first-animation-end-timeout.main [data-main-phone-zoom],
.first-animation.first-animation-end-timeout.main [data-main-phone-1],
.first-animation.first-animation-end-timeout.main [data-main-phone-2],
.first-animation.first-animation-end-timeout.main [data-main-virtual],
.first-animation.first-animation-end-timeout.main [data-main-for],
.first-animation.first-animation-end-timeout.main [data-main-your],
.first-animation.first-animation-end-timeout.main [data-main-business],
.first-animation.first-animation-end-timeout.main [data-main-business-zoom],
.first-animation.first-animation-end-timeout.main [data-main-empower],
.first-animation.first-animation-end-timeout.main [data-main-mightycall],
.first-animation.first-animation-end-timeout.main [data-main-player-btn],
.first-animation.first-animation-end-timeout.main [data-main-lion],
.first-animation.first-animation-end-timeout.main [data-main-lion-player],
.first-animation.first-animation-end-timeout.main [data-main-lion-message],
.first-animation.first-animation-end-timeout.main [data-main-lion-request],
.first-animation.first-animation-end-timeout.main [data-main-journal],
.first-animation.first-animation-end-timeout.main [data-main-lion-chair],
.first-animation.first-animation-end-timeout.main [data-main-lion-lion],
.first-animation.first-animation-end-timeout.main [data-main-buttons] {
  transition: none;
  transition-property: none;
  transition-duration: 0ms;
  transition-delay: 0ms;
}
@media screen and (max-width: 799px) {
  .first-animation.main [data-main-empower] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
    transition-delay: 1s;
  }
  .first-animation.main [data-main-mightycall] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
    transition-delay: 1.5s;
  }
  .first-animation.main [data-main-player-btn] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 1.3s;
    transition-timing-function: ease-in-out;
    transition-delay: 2s;
  }
  .first-animation.main [data-main-lion] {
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.1s;
    transition-timing-function: ease-in-out;
    transition-delay: 2.5s;
  }
  .first-animation.main [data-main-lion-player] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-lion-message] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3.1s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-lion-request] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-journal] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3.1s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-lion-chair] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3.3s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-lion-lion] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    transition-delay: 3.4s;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
  .first-animation.main [data-main-buttons] {
    opacity: 1;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-duration: 0.7s;
    transition-timing-function: ease-in-out;
    transition-delay: 3.5s;
  }
  .first-animation.first-animation-end-timeout.main [data-main-empower],
  .first-animation.first-animation-end-timeout.main [data-main-mightycall],
  .first-animation.first-animation-end-timeout.main [data-main-player-btn],
  .first-animation.first-animation-end-timeout.main [data-main-lion],
  .first-animation.first-animation-end-timeout.main [data-main-lion-player],
  .first-animation.first-animation-end-timeout.main [data-main-lion-message],
  .first-animation.first-animation-end-timeout.main [data-main-lion-request],
  .first-animation.first-animation-end-timeout.main [data-main-journal],
  .first-animation.first-animation-end-timeout.main [data-main-lion-chair],
  .first-animation.first-animation-end-timeout.main [data-main-lion-lion],
  .first-animation.first-animation-end-timeout.main [data-main-buttons] {
    transition: none;
    transition-property: none;
    transition-duration: 0ms;
    transition-delay: 0ms;
  }
}
.benefits {
  padding: 13rem 0;
  background-color: #f1f3f6;
}
.benefits__list {
  display: flex;
  justify-content: space-around;
  max-width: 138.4rem;
  margin: 0 auto;
  padding: 0;
}
.benefits__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.benefits__number {
  font-family: "Source Serif Pro", serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 4.8rem;
  letter-spacing: 0em;
  color: #99b1f3;
}
.benefits__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .benefits__list {
    max-width: 119.2rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .benefits {
    padding: 7rem 4.5rem;
  }
  .benefits__list {
    max-width: 71rem;
  }
  .benefits__item {
    flex-basis: 16.5rem;
  }
  .benefits__number {
    font-family: "Source Serif Pro", serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 3.2rem;
    letter-spacing: 0em;
    padding-bottom: 2.4rem;
  }
  .benefits__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .benefits {
    padding: 5rem 2rem 2.5rem;
  }
  .benefits__list {
    max-width: 32rem;
    flex-wrap: wrap;
  }
  .benefits__item {
    flex-basis: 15.2rem;
    margin-bottom: 2.5rem;
  }
  .benefits__number {
    font-family: "Source Serif Pro", serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 3.2rem;
    letter-spacing: 0em;
    padding-bottom: 2.4rem;
  }
  .benefits__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
.features {
  padding-bottom: 20rem;
  background-color: #fff;
}
.features__footer {
  height: 2rem;
  border-bottom: var(--border-size-double) solid #f1f3f6;
}
.features__sign {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #333;
  width: 43.3rem;
  margin: 25rem auto -2rem;
  background-color: #fff;
}
.features__sign--link {
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #f63d7e;
  text-decoration: none;
}
.features__sign--link .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.features__sign--link:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.features__sign--link:hover .contrast {
  color: #fff;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .features {
    padding-bottom: 10rem;
  }
  .features__sign {
    margin-top: 10rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .features {
    padding-bottom: 10rem;
  }
  .features__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-top: 14.2rem;
    width: 37rem;
  }
  .features__sign--link {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .features {
    padding-bottom: 6rem;
  }
  .features__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-top: 8rem;
    width: 21.7rem;
  }
  .features__sign--link {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
.slider {
  overflow: hidden;
}
.slider__header {
  display: flex;
  justify-content: space-between;
  margin: 9.1rem 13.75% 0;
  border-top: var(--border-size-double) solid #f1f3f6;
}
.slider__header-text {
  width: 71%;
  margin-top: -9.1rem;
}
.slider__header-top {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #f63d7e;
}
.slider__header-bottom {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #333;
}
.slider__header--sub {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
}
.slider__arrow {
  border: var(--border-size) solid #f63d7e;
  box-sizing: border-box;
  border-radius: 1.6rem;
  display: flex;
  justify-content: start;
  width: 25.7rem;
  height: 6.4rem;
  padding: 1.2rem 1.6rem;
  position: absolute;
  top: 1rem;
  right: 13.75%;
  z-index: 1;
}
.slider__arrow--left,
.slider__arrow--right {
  background: url("/wp-content/themes/mightycall2021/img/icons/arrow-right-pink.svg")
    no-repeat 0 center;
  width: 5rem;
  height: 4rem;
  cursor: pointer;
  margin-right: 1.6rem;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.slider__arrow--left {
  transform: perspective(1px) translateZ(0) rotate(180deg);
}
.slider__arrow--left:hover,
.slider__arrow--right:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.slider__arrow--left:hover {
  -webkit-animation-name: hvr-wobble-horizontal-left;
  animation-name: hvr-wobble-horizontal-left;
}
.slider__arrow--right:hover {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
}
.slider__counter {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
  margin-left: 1.4rem;
}
.slider__wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
  padding-left: 13.35%;
  position: relative;
}
.slider__pre-text {
  font-family: "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 4.8rem;
  letter-spacing: 0em;
  color: #333;
  width: 55.8rem;
}
.slider__photo {
  width: 32.2rem;
  border-radius: 1.6rem;
  margin-top: 4.8rem;
}
.slider__desc {
  background-color: #fff;
  padding: 1.6rem 2.4rem;
  margin: -11.2rem 0 0 10.3rem;
  position: relative;
  width: 45.4rem;
  border-radius: 1.6rem;
}
.slider__text {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  font-style: italic;
  color: #333;
  padding: 5.2rem 0;
  position: relative;
}
.slider__text:before,
.slider__text:after {
  content: "";
  display: block;
  background: url("/wp-content/themes/mightycall2021/img/quote.svg") 0 0
    no-repeat;
  position: absolute;
  width: 5.6rem;
  height: 4.2rem;
  left: 0;
  top: 0;
}
.slider__text:after {
  transform: rotate(180deg);
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
}
.slider__sign {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #333;
}
.slider__link {
  font-family: "Source Serif Pro", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #f63d7e;
  text-decoration: none;
}
.slider__link .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.slider__link:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.slider__link:hover .contrast {
  color: #fff;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .slider__header {
    margin: 9.1rem 10.35% 0;
  }
  .slider__arrow {
    height: 4.8rem;
    top: 2rem;
    right: 10.25%;
  }
  .slider__arrow--left,
  .slider__arrow--right {
    height: 2.4rem;
  }
  .slider__counter {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-left: 1.6rem;
  }
  .slider__wrapper {
    margin-top: 5.5rem;
    padding-left: 10.35%;
  }
  .slider__photo {
    width: 27rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .slider__header {
    margin: 9.1rem 5.62% 0;
  }
  .slider__header-text {
    width: 61.72%;
    margin-top: -9.1rem;
  }
  .slider__header-top {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    padding-bottom: 1.7rem;
  }
  .slider__header-bottom {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    left: 5.62%;
  }
  .slider__arrow {
    height: 4.8rem;
    top: 1.2rem;
    right: 5.5%;
  }
  .slider__arrow--left,
  .slider__arrow--right {
    height: 2.4rem;
  }
  .slider__counter {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-left: 1.6rem;
  }
  .slider__wrapper {
    padding-left: 5.62%;
    margin-top: 5.5rem;
    flex-direction: column;
    align-items: center;
  }
  .slider__pre-text {
    text-align: center;
    margin: 0 auto 83.8rem;
  }
  .slider__photo {
    margin-top: 4.8rem;
    width: 27.8rem;
  }
  .slider__media {
    position: absolute;
    left: 0;
    top: 17.6rem;
    width: 100%;
    padding-left: 1.8rem;
    text-align: right;
  }
  .slider__desc {
    margin: -6.8rem 0 0 18.6rem;
    width: 46.3rem;
    height: 24.8rem;
  }
  .slider__text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .slider__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .slider__link {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .slider {
    position: relative;
  }
  .slider__header {
    margin: 4.8rem 5.62% 0;
  }
  .slider__header-text {
    margin-top: -4.8rem;
    width: 100%;
  }
  .slider__header-top {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .slider__header-bottom {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
    left: 5.62%;
  }
  .slider__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .slider__arrow {
    width: 8.8rem;
    height: 3.2rem;
    padding: 0.7rem 1.6rem;
    position: absolute;
    left: 50%;
    top: 19rem;
    z-index: 1;
    transform: translate3d(-50%, 0, 0);
    background: #fff;
  }
  .slider__arrow--left,
  .slider__arrow--right {
    width: 2rem;
    height: 1.8rem;
    background-position: 100% center;
  }
  .slider__arrow--right {
    margin-right: 0;
  }
  .slider__counter {
    display: none;
  }
  .slider__wrapper {
    padding-left: 5.62%;
    margin-top: 5rem;
    flex-direction: column;
    align-items: center;
  }
  .slider__pre-text {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin: 0 auto 45.2rem;
    width: 34rem;
  }
  .slider__photo {
    margin-top: 4.8rem;
    width: 18rem;
  }
  .slider__media {
    position: absolute;
    left: 0;
    top: 10.9rem;
    width: 100%;
    height: 39.2rem;
    text-align: right;
  }
  .slider__media img {
    height: 100%;
    max-width: initial;
  }
  .slider__desc {
    margin: -5rem 0 0 5.6rem;
    width: 28.5rem;
    height: 27.7rem;
  }
  .slider__text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    padding: 2.2rem 0;
  }
  .slider__text:before,
  .slider__text:after {
    width: 3rem;
    height: 2.2rem;
    background-size: contain;
  }
  .slider__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .slider__link {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  html:not(.no-js)
    .slider__arrow[data-ef="fade-up"][data-ef="fade-up"].ef-animate {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    transition-property: opacity, transform, top;
  }
}
@media screen and (max-width: 380px) {
  .slider__arrow {
    top: 240px;
  }
}
#features-slider .splide__slide [data-ef].ef-animate {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
#features-slider .splide__slide.is-active [data-ef].ef-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
#features-slider .splide__slide.is-active.is-active-out [data-ef].ef-animate {
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0.85);
  transform: translate3d(0, 0, 0) scale(0.85);
}
.support {
  background-color: #4c75e6;
}
.support__wrapper {
  width: 140rem;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "hd  hd  .   cb1 cb2 cb3" "ct  .   cb4 cb5 cb6 cb7" "fb  fb  fb  fb  fb  cb8";
  grid-template-rows: repeat(3, 20.4rem);
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 3.2rem;
}
.support__header {
  grid-area: hd;
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #cdfb3e;
  margin-right: -1rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.support__header--sub {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
}
.support__cube,
.support__cube--green,
.support__cube--green-2,
.support__cube--blue,
.support__cube--blue-2 {
  width: 20.4rem;
  height: 20.4rem;
  border-radius: 1.6rem;
}
.support__cube--green,
.support__cube--green-2 {
  background: #e3fd94;
}
.support__cube--green-2 {
  display: none;
}
.support__cube--blue,
.support__cube--blue-2 {
  display: none;
  background-color: #99b1f3;
}
.support__cube--tika {
  grid-area: cb1;
}
.support__cube--anna {
  grid-area: cb2;
}
.support__cube--collins {
  grid-area: cb3;
}
.support__cube--green {
  grid-area: cb4;
}
.support__cube--alvi {
  grid-area: cb5;
}
.support__cube--dasha {
  grid-area: cb6;
}
.support__cube--olga {
  grid-area: cb7;
}
.support__cube--sam {
  grid-area: cb8;
}
.support__contacts {
  grid-area: ct;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20.4rem;
  height: 20.4rem;
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
}
.support__contacts--sub {
  margin: 1.2rem 0;
  width: fit-content;
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
  cursor: pointer;
}
.support__contacts--sub .contrast {
  transition: 0.7s;
  color: inherited;
}
.support__contacts--sub:hover {
  color: #333;
  text-decoration: none;
  background: #cdfb3e;
}
.support__contacts--sub:hover .contrast {
  color: inherited;
}
.support__feedback {
  grid-area: fb;
  width: 115.8rem;
  height: 20.4rem;
  text-align: center;
  padding-top: 1.4rem;
  background: #fff;
  border-radius: 1.6rem;
}
.support__feedback--140 {
  display: none;
}
.support__feedback--170 {
  display: initial;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .support__wrapper {
    width: 119.1rem;
    grid-template-rows: repeat(3, 17.2rem);
  }
  .support__cube,
  .support__cube--green,
  .support__cube--green-2,
  .support__cube--blue,
  .support__cube--blue-2 {
    width: 17.2rem;
    height: 17.2rem;
  }
  .support__contacts {
    width: 17.2rem;
    height: 17.2rem;
  }
  .support__contacts--sub {
    margin-right: -2.3rem;
  }
  .support__feedback {
    width: 98.7rem;
    height: 17.2rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .support__wrapper {
    width: 71.2rem;
    grid-template-areas: "hd  hd  cb1 cb2" "ct  .   cb4 cb3" "cb5 cb6 cb7 cb8" "fb  fb  fb  fb ";
    grid-template-rows: repeat(4, 15.4rem);
    grid-template-columns: repeat(4, 1fr);
  }
  .support__cube,
  .support__cube--green,
  .support__cube--green-2,
  .support__cube--blue,
  .support__cube--blue-2 {
    width: 15.4rem;
    height: 15.4rem;
  }
  .support__contacts {
    width: 15.4rem;
    height: 15.4rem;
  }
  .support__contacts--sub {
    margin-right: -4.3rem;
  }
  .support__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .support__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .support__feedback {
    width: 71.2rem;
    height: 15.4rem;
    padding-top: 0;
  }
  .support__feedback--140 {
    display: initial;
  }
  .support__feedback--170 {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  .support {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .support__wrapper {
    width: 50.4rem;
    grid-template-areas: ".   hd  ." ".   ct  ." ".   .   ." ".   cb1 cb2" ".   cb3 cb5" ".   cb6 cb7" "cb4 cb8 ce1" "ce2 fb  ce3";
    grid-template-rows: repeat(2, 15.2rem) 5.1rem repeat(5, 15.2rem);
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.6rem;
    transform: translate3d(-9.6rem, 0, 0);
  }
  .support__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    width: 29.4rem;
    margin-right: -30.5rem;
    margin-left: 3.3rem;
  }
  .support__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .support__header :last-child {
    display: block;
    text-align: right;
  }
  .support__cube,
  .support__cube--green,
  .support__cube--green-2,
  .support__cube--blue,
  .support__cube--blue-2 {
    width: 15.2rem;
    height: 15.2rem;
  }
  .support__cube--tika {
    margin-left: 4.8rem;
  }
  .support__cube--anna {
    grid-area: cb2;
  }
  .support__cube--collins {
    grid-area: cb3;
  }
  .support__cube--green {
    grid-area: cb4;
    margin-left: 12.4rem;
    margin-right: -12.4rem;
  }
  .support__cube--alvi {
    grid-area: cb5;
    margin-left: -4.8rem;
  }
  .support__cube--dasha {
    grid-area: cb6;
    margin-left: 4.8rem;
  }
  .support__cube--olga {
    grid-area: cb7;
  }
  .support__cube--sam {
    grid-area: cb8;
    margin-left: 12.4rem;
    margin-right: -12.4rem;
  }
  .support__cube--green-2 {
    display: initial;
    grid-area: ce3;
    margin-left: 9.6rem;
  }
  .support__cube--blue {
    display: initial;
    grid-area: ce1;
    margin-left: 7.6rem;
  }
  .support__cube--blue-2 {
    display: initial;
    grid-area: ce2;
  }
  .support__contacts {
    width: 16.8rem;
    height: 15.2rem;
    margin: 1.3rem -5rem -1.3rem 8.3rem;
    text-align: center;
  }
  .support__contacts--sub {
    margin-right: -5.3rem;
  }
  .support__feedback {
    width: 29.6rem;
    height: 15.2rem;
    padding-top: 0;
    margin-right: -15rem;
  }
  .support__feedback--140 {
    display: initial;
  }
  .support__feedback--170 {
    display: none;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  html:not(.no-js)
    .support__cube--sam[data-ef][data-ef][data-ef-delay="700"].ef-animate {
    transition-delay: 1s;
  }
}
@media screen and (max-width: 799px) {
  html:not(.no-js)
    .support__cube--collins[data-ef][data-ef][data-ef-delay="850"].ef-animate {
    transition-delay: 0.6s;
  }
  html:not(.no-js)
    .support__cube--alvi[data-ef][data-ef][data-ef-delay="700"].ef-animate {
    transition-delay: 0.7s;
  }
  html:not(.no-js) .support__cube--blue[data-ef][data-ef].ef-animate {
    transition-delay: 0.8s;
  }
  html:not(.no-js)
    .support__cube--blue-2[data-ef][data-ef][data-ef-delay="700"].ef-animate {
    transition-delay: 0.6s;
  }
  html:not(.no-js) .support__feedback[data-ef][data-ef].ef-animate {
    transition-delay: 0.7s;
  }
}
.faq {
  padding-bottom: 22rem;
  background-color: #4c75e6;
  overflow-x: hidden;
}
.faq__wrapper {
  width: 140rem;
  margin: 0 auto;
}
.faq__header {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #cdfb3e;
}
.faq__header--sub {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
}
.faq__accordion {
  margin: 9.8rem 0 0;
}
.faq__accordion-item {
  border: 0.1rem solid #fff;
  box-sizing: border-box;
  border-radius: 0.8rem;
  padding: 0.8rem 2.4rem;
  margin-bottom: 0.8rem;
}
.faq__accordion-item:before {
  content: "";
  display: block;
  height: 0;
  transition: height 0.6s ease-in-out;
}
.faq__accordion-item:hover {
  background: #7999f3;
  border-color: #7999f3;
  box-shadow: 0 2rem 2rem -1rem rgba(24, 63, 168, 0.3);
}
.faq__accordion-item:hover .faq__accordion-header {
  color: #cdfb3e;
}
.faq__accordion-item:hover .faq__accordion-header:after {
  background-image: url("/wp-content/themes/mightycall2021/img/icons/plus-green.svg");
}
.faq__accordion-header {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__accordion-header:after {
  content: "";
  background: url("/wp-content/themes/mightycall2021/img/icons/plus.svg")
    no-repeat;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  transform: rotate(0);
  transition: transform 0.8s ease-in-out;
}
.faq__accordion-header[aria-expanded="true"]:after {
  transform: rotate(45deg);
}
.faq__accordion-body {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
}
.faq__accordion-body:before {
  content: "";
  display: block;
  height: 3rem;
}
.faq__accordion-body:after {
  content: "";
  display: block;
  height: 1.6rem;
}
.faq__accordion-body a {
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
}
.faq__accordion-body a .contrast {
  transition: 0.7s;
  color: inherited;
}
.faq__accordion-body a:hover {
  color: #333;
  text-decoration: none;
  background: #cdfb3e;
}
.faq__accordion-body a:hover .contrast {
  color: inherited;
}
.faq__accordion-body h3,
.faq__accordion-body .h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #cdfb3e;
}
.faq__accordion [aria-expanded="true"].faq__accordion-item {
  background: #7999f3;
  border-color: #7999f3;
  box-shadow: 0 2rem 2rem -1rem rgba(24, 63, 168, 0.3);
}
.faq__accordion [aria-expanded="true"].faq__accordion-item:before {
  content: "";
  display: block;
  height: 1.6rem;
}
.faq__accordion [aria-expanded="true"] .faq__accordion-header {
  color: #cdfb3e;
}
.faq__accordion [aria-expanded="true"] .faq__accordion-header:after {
  transform: rotate(45deg);
}
.faq__footer {
  height: 2rem;
  border-bottom: var(--border-size-double) solid #f1f3f6;
}
.faq__sign {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #fff;
  width: 33.2rem;
  margin: 12.2rem 0 -2rem auto;
  background-color: #4c75e6;
}
.faq__sign--link {
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
}
.faq__sign--link .contrast {
  transition: 0.7s;
  color: inherited;
}
.faq__sign--link:hover {
  color: #333;
  text-decoration: none;
  /* background: #cdfb3e; */
}
.faq__sign--link:hover .contrast {
  color: inherited;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .faq {
    padding-bottom: 10rem;
  }
  .faq__wrapper {
    width: 119.1rem;
  }
  .faq__accordion {
    margin-top: 6.4rem;
  }
  .faq__footer {
    margin-top: -3rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .faq {
    padding: 16.5rem 0 10rem;
  }
  .faq__wrapper {
    width: 71.2rem;
  }
  .faq__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .faq__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion {
    margin-top: 6.4rem;
  }
  .faq__accordion-header {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body a {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body h3,
  .faq__accordion-body .h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__footer {
    height: 1.2rem;
  }
  .faq__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    width: 28.6rem;
    margin: 10rem 0 -1.2rem auto;
  }
  .faq__sign--link {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .faq {
    padding: 14rem 0 10rem;
  }
  .faq__wrapper {
    width: 32rem;
  }
  .faq__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    width: 25.5rem;
    text-align: center;
    margin: 0 auto;
  }
  .faq__header--main {
    width: 14.5rem;
  }
  .faq__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: center;
  }
  .faq__accordion {
    margin-top: 8rem;
  }
  .faq__accordion-header {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    white-space: break-spaces;
  }
  .faq__accordion-header:after {
    display: flex;
    align-self: flex-start;
    margin-right: -5.8rem;
  }
  .faq__accordion-header > span {
    display: flex;
    width: 100%;
  }
  .faq__accordion-body {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body a {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body h3,
  .faq__accordion-body .h3 {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .faq__accordion-body:after {
    height: 0.7rem;
  }
  .faq__accordion-body:before {
    height: 2.7rem;
  }
  .faq__accordion-item {
    padding: 0.9rem 7.4rem 0.9rem 1.6rem;
  }
  .faq__accordion [aria-expanded="true"].faq__accordion-item:before {
    height: 0.7rem;
  }
  .faq__footer {
    display: none;
  }
}

.promo {
  padding-top: 15rem;
  background-color: #99b1f3;
  overflow: hidden;
}
.promo__wrapper {
  width: 111rem;
  margin: 0 auto;
  position: relative;
  padding-bottom: 20.7rem;
}
.promo__header {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #cdfb3e;
  text-align: center;
}
.promo__header--highlite {
  color: #fff;
}
.promo__header--sub {
  font-family: "Source Serif Pro", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.6rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.promo__be-the-king {
  font-family: "Source Serif Pro", serif;
  font-size: 20rem;
  font-weight: 700;
  line-height: 10rem;
  letter-spacing: 0em;
  color: #b6c7f5;
  text-align: center;
  margin-top: 10.7rem;
}
.promo__buttons {
	position : relative;
	z-index : 1;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 11.6rem;
}
.promo__buttons-block {
  width: 21.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 0 7.6rem;
}
.promo__button--demo {
  box-shadow: 0 2rem 2rem -1rem rgba(24, 63, 168, 0.3);
  margin: 0 1.6rem;
}
.promo__button--trial {
  box-shadow: 0 2rem 2rem -1rem rgba(24, 63, 168, 0.3);
  margin: 0 1.6rem;
}
.promo__desc-demo {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #e3fd94;
  margin-top: 3.2rem;
}
.promo__desc-trial {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #f63d7e;
  margin-top: 3.2rem;
}
.promo__lion {
  background: url("/wp-content/themes/mightycall2021/img/promo_lion.webp")
    no-repeat;
  width: 47.7rem;
  height: 64.3rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate3d(-25.8rem, 0, 0);
}
.promo__lion-wrapper {
  height: 60.7rem;
  margin-bottom: -20.7rem;
  margin-top: -40rem;
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .promo__wrapper {
    width: 68rem;
    padding-bottom: 24.3rem;
  }
  .promo__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .promo__header--sub {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .promo__be-the-king {
    font-family: "Source Serif Pro", serif;
    font-size: 12rem;
    font-weight: 700;
    line-height: 10rem;
    letter-spacing: 0em;
  }
  .promo__buttons {
    position: relative;
    z-index: 1;
    padding-top: 12.3rem;
    margin-left: -2rem;
  }
  .promo__buttons-block {
    margin: 0;
  }
  .promo__button--demo,
  .promo__button--trial {
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
    margin: 0 auto;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
  }
  .promo__button--demo {
    width: 13.1rem;
  }
  .promo__button--trial {
    width: 11.7rem;
  }
  .promo__lion {
    height: 72.4rem;
    transform: translate3d(-50%, 0, 0);
  }
  .promo__lion-wrapper {
    height: 64.3rem;
    margin-bottom: -24.3rem;
    margin-top: -40rem;
  }
}
@media screen and (max-width: 799px) {
  .promo {
    padding-top: 7rem;
  }
  .promo__wrapper {
    width: auto;
    padding-bottom: 0;
  }
  .promo__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    width: 24.3rem;
    margin: 0 auto;
  }
  .promo__header--sub {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .promo__be-the-king {
    display: none;
  }
  .promo__buttons {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 5.6rem;
  }
  .promo__buttons-block {
    margin: 3.2rem 0 0;
  }
  .promo__buttons-block:first-child {
    margin-top: 0;
  }
  .promo__button--demo,
  .promo__button--trial {
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
    margin: 0 auto;
    padding: 1.2rem 2.4rem;
    width: fit-content;
  }
  .promo__desc-demo,
  .promo__desc-trial {
    display: none;
  }
  .promo__lion {
    position: relative;
    height: 70rem;
    margin-top: 3.4rem;
    transform: translate3d(-50%, 0, 0);
    width: 100%;
    background-position-x: center;
  }
  .promo__lion-wrapper {
    height: 70rem;
    margin-bottom: -0.1rem;
    margin-top: 0;
  }
}


.page-header {
  background-color: #4c75e6;
  padding: 7.5rem 0 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-header__header {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #cdfb3e;
  white-space: nowrap;
}
.page-header__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
  max-width: 114.8rem;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .page-header__desc {
    max-width: 78.4rem;
    margin-top: 3.2rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .page-header {
    padding: 10.2rem 0 4rem;
  }
  .page-header__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .page-header__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    max-width: 58.8rem;
    margin-top: 2.4rem;
  }
}
@media screen and (max-width: 799px) {
  .page-header {
    padding: 2.4rem 2rem 3.2rem;
  }
  .page-header__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    /* width: 100vw; */
    white-space: break-spaces;
    text-align: center;
  }
  .page-header__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    max-width: 26.4rem;
    margin-top: 2.4rem;
  }
}
.sales-sup {
  padding: 15rem 0 11.7rem;
  background-color: #fff;
}
.sales-sup__wrapper {
  margin: 0 13.8rem;
}
.sales-sup__team--sales,
.sales-sup__team--support {
  width: 67.7rem;
  position: relative;
  margin-top: -4.7rem;
  top: 0;
  display: grid;
  grid-template-rows: repeat(2, 20.4rem);
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.2rem;
}
.sales-sup__team--sales {
  right: 0;
  grid-template-areas: "cb1 cb2 ." "cb3 cb4 cb5";
}
.sales-sup__team--support {
  left: 0;
  grid-template-areas: ".   cb1 cb2" "cb3 cb4 cb5";
}
.sales-sup__header--sales,
.sales-sup__header--support {
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #f63d7e;
  white-space: nowrap;
  border-bottom: var(--border-size-double) solid #f1f3f6;
  width: calc(100% - 44rem);
  height: 9.2rem;
}
.sales-sup__header--sales {
  margin-right: 44rem;
}
.sales-sup__header--support {
  margin-left: 44rem;
  text-align: right;
}
.sales-sup__body--sales,
.sales-sup__body--support {
  display: flex;
  justify-content: space-between;
}
.sales-sup__body--support {
  flex-direction: row-reverse;
}
.sales-sup__descr--sales {
  padding-right: 3.3rem;
}
.sales-sup__descr--support {
  text-align: right;
  padding-left: 3.3rem;
}
.sales-sup__text--sales,
.sales-sup__text--support {
  font-family: "Open Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 4.8rem;
  letter-spacing: 0em;
  padding: 6rem 0 7rem;
}
.sales-sup__text--sales span,
.sales-sup__text--support span {
  display: block;
}
.sales-sup__contacts--sales,
.sales-sup__contacts--support {
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sales-sup__contacts--sales li,
.sales-sup__contacts--support li {
  padding-bottom: 2.4rem;
}
.sales-sup__contacts--sales--email-us,
.sales-sup__contacts--sales--call-us,
.sales-sup__contacts--support a,
.sales-sup__contacts--livechat {
  cursor: pointer;
  transition: 0.7s;
  color: #f63d7e;
  text-decoration: none;
}
.sales-sup__contacts--sales a .contrast,
.sales-sup__contacts--support a .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.sales-sup__contacts--sales--email-us:hover,
.sales-sup__contacts--sales--call-us:hover,
.sales-sup__contacts--support a:hover,
.sales-sup__contacts--livechat:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.sales-sup__contacts--sales a:hover .contrast,
.sales-sup__contacts--support a:hover .contrast {
  color: #fff;
}
.sales-sup__contacts--gray {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
}
.sales-sup__sales {
  padding-left: 12rem;
}
.sales-sup__support {
  padding-right: 12rem;
  margin-top: 9.1rem;
}
.sales-sup__cube,
.sales-sup__cube--sales--vishal,
.sales-sup__cube--sales--harry,
.sales-sup__cube--sales--ali,
.sales-sup__cube--sales--green,
.sales-sup__cube--support--tika,
.sales-sup__cube--support--olga,
.sales-sup__cube--support--alvi,
.sales-sup__cube--support--green {
  width: 20.4rem;
  height: 20.4rem;
  border-radius: 1.6rem;
}
.sales-sup__cube--sales--vishal {
  grid-area: cb1;
}
.sales-sup__cube--sales--harry {
  grid-area: cb2;
}
.sales-sup__cube--sales--ali {
  grid-area: cb4;
}
.sales-sup__cube--sales--green {
  grid-area: cb5;
  background: #e3fd94;
}
.sales-sup__cube--support--tika {
  grid-area: cb1;
}
.sales-sup__cube--support--olga {
  grid-area: cb2;
}
.sales-sup__cube--support--alvi {
  grid-area: cb4;
}
.sales-sup__cube--support--green {
  grid-area: cb3;
  background: #e3fd94;
}
.sales-sup__action--sales,
.sales-sup__action--sales--contacts,
.sales-sup__action--support,
.sales-sup__action--support--contacts {
  height: 5.2rem;
  width: fit-content;
  align-self: center;
  justify-self: center;
}
.sales-sup__action--sales--grid,
.sales-sup__action--support--grid {
  display: flex;
}
.sales-sup__action--sales,
.sales-sup__action--sales--contacts {
  grid-area: cb3;
}
.sales-sup__action--sales--grid {
  grid-area: cb3;
}
.sales-sup__action--support,
.sales-sup__action--support--contacts {
  grid-area: cb5;
}
.sales-sup__action--support--grid {
  grid-area: cb5;
}
.sales-sup__action-block {
  display: none;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .sales-sup {
    padding-bottom: 19.7rem;
  }
  .sales-sup__wrapper {
    margin: 0 4.4rem;
  }
  .sales-sup__sales {
    padding-left: 0;
  }
  .sales-sup__support {
    padding-right: 0;
  }
  .sales-sup__team--sales,
  .sales-sup__team--support {
    width: 37.6rem;
    grid-template-rows: repeat(2, 17.2rem);
    grid-template-columns: repeat(2, 17.2rem);
  }
  .sales-sup__team--sales {
    grid-template-areas: "cb1 cb2" "cb3 cb4";
  }
  .sales-sup__team--support {
    grid-template-areas: "cb1 cb2" "cb4 cb5";
  }
  .sales-sup__cube,
  .sales-sup__cube--sales--vishal,
  .sales-sup__cube--sales--harry,
  .sales-sup__cube--sales--ali,
  .sales-sup__cube--sales--green,
  .sales-sup__cube--support--tika,
  .sales-sup__cube--support--olga,
  .sales-sup__cube--support--alvi,
  .sales-sup__cube--support--green {
    width: 17.2rem;
    height: 17.2rem;
  }
  .sales-sup__cube--sales--vishal {
    grid-area: cb1;
  }
  .sales-sup__cube--sales--harry {
    grid-area: cb2;
  }
  .sales-sup__cube--sales--ali {
    grid-area: cb4;
  }
  .sales-sup__cube--sales--green {
    display: none;
  }
  .sales-sup__cube--support--tika {
    grid-area: cb1;
  }
  .sales-sup__cube--support--olga {
    grid-area: cb2;
  }
  .sales-sup__cube--support--alvi {
    grid-area: cb4;
  }
  .sales-sup__cube--support--green {
    display: none;
  }
  .sales-sup__header--sales,
  .sales-sup__header--support {
    width: calc(100% - 17.2rem);
  }
  .sales-sup__header--sales {
    margin-right: 17.2rem;
  }
  .sales-sup__header--support {
    margin-left: 17.2rem;
  }
  .sales-sup__text--sales,
  .sales-sup__text--support {
    padding: 4rem 0 5rem;
  }
  .sales-sup__contacts--sales li,
  .sales-sup__contacts--support li {
    padding-bottom: 1.6rem;
  }
  .sales-sup__action--support,
  .sales-sup__action--support--contacts {
    min-width: 20.2rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .sales-sup {
    padding: 10rem 0 15rem;
  }
  .sales-sup__wrapper {
    margin: 0 4.4rem;
  }
  .sales-sup__sales,
  .sales-sup__support {
    padding-left: 0;
    padding-bottom: 5.7rem;
  }
  .sales-sup__support {
    margin-top: 14rem;
    padding-right: 0;
  }
  .sales-sup__team--sales,
  .sales-sup__team--support {
    width: 34rem;
    grid-template-rows: repeat(2, 15.4rem);
    grid-template-columns: repeat(2, 15.4rem);
    top: 18.6rem;
    margin-top: 0;
  }
  .sales-sup__team--sales {
    grid-template-areas: "cb1 cb2" "cb3 cb4";
  }
  .sales-sup__team--support {
    grid-template-areas: "cb1 cb2" "cb4 cb5";
  }
  .sales-sup__cube,
  .sales-sup__cube--sales--vishal,
  .sales-sup__cube--sales--harry,
  .sales-sup__cube--sales--ali,
  .sales-sup__cube--sales--green,
  .sales-sup__cube--support--tika,
  .sales-sup__cube--support--olga,
  .sales-sup__cube--support--alvi,
  .sales-sup__cube--support--green {
    width: 15.4rem;
    height: 15.4rem;
  }
  .sales-sup__cube--sales--vishal {
    grid-area: cb1;
  }
  .sales-sup__cube--sales--harry {
    grid-area: cb2;
  }
  .sales-sup__cube--sales--ali {
    grid-area: cb4;
  }
  .sales-sup__cube--sales--green {
    display: none;
  }
  .sales-sup__cube--support--tika {
    grid-area: cb1;
  }
  .sales-sup__cube--support--olga {
    grid-area: cb2;
  }
  .sales-sup__cube--support--alvi {
    grid-area: cb4;
  }
  .sales-sup__cube--support--green {
    display: none;
  }
  .sales-sup__header--sales,
  .sales-sup__header--support {
    width: 100%;
    margin: 0;
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__descr--sales {
    padding-right: 3.3rem;
    width: 100%;
  }
  .sales-sup__descr--support {
    text-align: right;
    padding-left: 3.3rem;
    width: 100%;
  }
  .sales-sup__text--sales,
  .sales-sup__text--support {
    padding: 4rem 0 5rem;
    width: calc(100% + 40.9rem);
  }
  .sales-sup__text--support {
    margin-left: -40.9rem;
  }
  .sales-sup__contacts--sales,
  .sales-sup__contacts--support {
    width: 34rem;
    text-align: center;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__contacts--sales li,
  .sales-sup__contacts--support li {
    padding-bottom: 1.6rem;
  }
  .sales-sup__contacts--support {
    margin: 0 0 0 auto;
  }
  .sales-sup__contacts--gray {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__action--sales,
  .sales-sup__action--sales--contacts,
  .sales-sup__action--support,
  .sales-sup__action--support--contacts {
    height: 4rem;
    display: none;
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
    padding: 1.2rem 2.4rem;
  }
  .sales-sup__action--sales--contacts,
  .sales-sup__action--support--contacts {
    display: block;
    margin: 10.6rem auto 0;
  }
  .sales-sup__action-block {
    display: block;
  }
}
@media screen and (max-width: 799px) {
  .sales-sup {
    padding: 10rem 0 8.4rem;
  }
  .sales-sup__wrapper {
    margin: 0 2rem;
  }
  .sales-sup__sales,
  .sales-sup__support {
    padding-left: 0;
    text-align: center;
  }
  .sales-sup__support {
    margin-top: 14rem;
    padding-right: 0;
  }
  .sales-sup__team--sales,
  .sales-sup__team--support {
    display: none;
  }
  .sales-sup__header--sales,
  .sales-sup__header--support {
    width: calc(100% + 2rem);
    margin: 0;
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__header--sales {
    margin-right: -2rem;
    text-indent: -2rem;
  }
  .sales-sup__header--support {
    margin-left: -2rem;
    text-indent: 2rem;
    text-align: center;
  }
  .sales-sup__descr--sales {
    padding-right: 0;
    width: 100%;
  }
  .sales-sup__descr--support {
    text-align: center;
    padding-left: 0;
    width: 100%;
  }
  .sales-sup__text--sales,
  .sales-sup__text--support {
    padding: 4rem 0 4.8rem;
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) and (max-width: 470px) {
  .sales-sup__text--sales span,
  .sales-sup__text--support span {
    display: inline;
  }
}
@media screen and (max-width: 799px) {
  .sales-sup__contacts--sales,
  .sales-sup__contacts--support {
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__contacts--sales li,
  .sales-sup__contacts--support li {
    padding-bottom: 1.6rem;
  }
  .sales-sup__contacts--gray {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .sales-sup__action--sales,
  .sales-sup__action--sales--contacts,
  .sales-sup__action--support,
  .sales-sup__action--support--contacts {
    height: 4rem;
    display: none;
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
    padding: 1.2rem 2.4rem;
  }
  .sales-sup__action--sales--contacts,
  .sales-sup__action--support--contacts {
    display: block;
    margin: 4rem auto 0;
  }
  .sales-sup__action-block {
    display: block;
  }
}
html:not(.no-js) [data-ef^="fade"].ef-animate.sales-sup__cube--hidden {
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.4s;
}
.map {
  background: #fff;
}
.map__contact {
  width: 67.6rem;
  height: fit-content;
  margin: -4rem auto -16.4rem;
  padding: 2rem 7.9rem 3.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #4c75e6;
  border-radius: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
}
.map__contact-map {
  width: 5.6rem;
  height: 5.6rem;
  margin-bottom: 1.6rem;
  background: url("/wp-content/themes/mightycall2021/img/icons/map.svg")
    no-repeat 0 0;
}
.map__contact-address {
  text-align: center;
}
.map__block {
  position: relative;
}
.map__block:before {
  content: "";
  position: absolute;
  box-shadow: inset 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
  height: 3rem;
  width: 100%;
}
.map__block--iframemap {
  display: block;
}
.map__block--locked .map__block--iframemap {
  pointer-events: none;
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .map__contact {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .map__contact {
    width: 100%;
    height: 20.4rem;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    border-radius: 0;
    box-shadow: none;
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    text-align: center;
  }
}
.mail-contacts {
  padding: 6rem 0 17.8rem;
  background: #f1f3f6;
}
.mail-contacts__wrapper {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mail-contacts__wrapper li {
  width: 44rem;
  height: 31.2rem;
  position: relative;
  margin: 0 1.6rem;
}
.mail-contacts__header {
  font-family: "Source Serif Pro", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.6rem;
  letter-spacing: 0em;
  color: #333;
  padding-bottom: 4.8rem;
  white-space: nowrap;
}
.mail-contacts__header--highlite {
  color: #f63d7e;
}
.mail-contacts__desc {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
  padding-bottom: 4.8rem;
}
.mail-contacts__contacts {
  position: absolute;
  bottom: 0;
}
.mail-contacts__contacts a {
  transition: 0.7s;
  color: #f63d7e;
  text-decoration: none;
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
}
.mail-contacts__contacts a .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.mail-contacts__contacts a:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.mail-contacts__contacts a:hover .contrast {
  color: #fff;
}
.mail-contacts__contacts--gray {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .mail-contacts__wrapper {
    justify-content: space-around;
    padding: 0 4.3rem;
  }
  .mail-contacts__wrapper li {
    width: 37.6rem;
    height: 35.2rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .mail-contacts {
    padding: 8rem 0 2.6rem;
  }
  .mail-contacts__wrapper {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 4.3rem;
  }
  .mail-contacts__wrapper li {
    width: 34rem;
    height: 21rem;
    text-align: center;
    margin-bottom: 7rem;
  }
  .mail-contacts__header {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .mail-contacts__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts {
    width: 100%;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts a {
    transition: 0.7s;
    color: #f63d7e;
    text-decoration: none;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts a .contrast {
    transition: 0.7s;
    color: #4c75e6;
  }
  .mail-contacts__contacts a:hover {
    color: #fff;
    text-decoration: none;
    background: #f63d7e;
  }
  .mail-contacts__contacts a:hover .contrast {
    color: #fff;
  }
  .mail-contacts__contacts--gray {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .mail-contacts {
    padding: 8rem 0 4.2rem;
  }
  .mail-contacts__wrapper {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2rem;
  }
  .mail-contacts__wrapper li {
    width: 32rem;
    height: 21rem;
    text-align: center;
    margin-bottom: 5.4rem;
  }
  .mail-contacts__header {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .mail-contacts__desc {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts {
    width: 100%;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts a {
    transition: 0.7s;
    color: #f63d7e;
    text-decoration: none;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .mail-contacts__contacts a .contrast {
    transition: 0.7s;
    color: #4c75e6;
  }
  .mail-contacts__contacts a:hover {
    color: #fff;
    text-decoration: none;
    background: #f63d7e;
  }
  .mail-contacts__contacts a:hover .contrast {
    color: #fff;
  }
  .mail-contacts__contacts--gray {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
/*Sales team block styles*/
.sales-team {
  background-color: #4c75e6;
}
.sales-team__wrapper {
  width: 140rem;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "hd  hd  .   .   cb1 cb2" "ct  .   cb3 cb4 cb5 cb6";
  grid-template-rows: repeat(2, 20.4rem);
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 3.2rem;
}
.sales-team__header {
  grid-area: hd;
  font-family: "Source Serif Pro", serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 8rem;
  letter-spacing: 0.04em;
  color: #cdfb3e;
  margin-right: -1rem;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.sales-team__header--sub {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #fff;
}
.sales-team__cube,
.sales-team__cube--green,
.sales-team__cube--green-2 {
  width: 20.4rem;
  height: 20.4rem;
  border-radius: 1.6rem;
}
.sales-team__cube--green,
.sales-team__cube--green-2 {
  background: #e3fd94;
}
.sales-team__cube--green {
  grid-area: cb1;
}
.sales-team__cube--tamara {
  grid-area: cb2;
}
.sales-team__cube--green-2 {
  grid-area: cb3;
}
.sales-team__cube--harry {
  grid-area: cb4;
}
.sales-team__cube--vishal {
  grid-area: cb5;
}
.sales-team__cube--ali {
  grid-area: cb6;
}
.sales-team__contacts {
  grid-area: ct;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 20.4rem;
  height: 20.4rem;
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
}
.sales-team__contacts--sub {
  margin: 1.2rem 0;
  width: fit-content;
  transition: 0.7s;
  color: #cdfb3e;
  text-decoration: none;
  cursor: pointer;
}
.sales-team__contacts--sub .contrast {
  transition: 0.7s;
  color: inherited;
}
.sales-team__contacts--sub:hover {
  color: #333;
  text-decoration: none;
  background: #cdfb3e;
}
.sales-team__contacts--sub:hover .contrast {
  color: inherited;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .sales-team__wrapper {
    width: 119.1rem;
    grid-template-rows: repeat(2, 17.2rem);
  }
  .sales-team__cube,
  .sales-team__cube--green,
  .sales-team__cube--green-2 {
    width: 17.2rem;
    height: 17.2rem;
  }
  .sales-team__contacts {
    width: 17.2rem;
    height: 17.2rem;
  }
  .sales-team__contacts--sub {
    margin-right: -2.3rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .sales-team__wrapper {
    width: 71.2rem;
    grid-template-areas: "hd  hd  cb6 cb2" "ct  .   cb4 cb5";
    grid-template-rows: repeat(2, 15.4rem);
    grid-template-columns: repeat(4, 1fr);
  }
  .sales-team__cube,
  .sales-team__cube--green,
  .sales-team__cube--green-2 {
    width: 15.4rem;
    height: 15.4rem;
  }
  .sales-team__cube--green,
  .sales-team__cube--green-2 {
    display: none;
  }
  .sales-team__contacts {
    width: 15.4rem;
    height: 15.4rem;
  }
  .sales-team__contacts--sub {
    margin-right: -4.3rem;
  }
  .sales-team__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
  }
  .sales-team__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .sales-team {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  .sales-team__wrapper {
    width: 32rem;
    grid-template-areas: "hd  ." "ct  ." ".   ." "cb6 cb2" "cb4 cb5";
    grid-template-rows: repeat(2, 15.2rem) 5.1rem repeat(2, 15.2rem);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.6rem;
  }
  .sales-team__header {
    font-family: "Source Serif Pro", serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 6.4rem;
    letter-spacing: 0em;
    width: 29.4rem;
    margin-right: -30.5rem;
    margin-left: 1.7rem;
    text-align: center;
  }
  .sales-team__header--sub {
    font-family: "Open Sans", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .sales-team__header :last-child {
    display: block;
  }
  .sales-team__cube,
  .sales-team__cube--green,
  .sales-team__cube--green-2 {
    width: 15.2rem;
    height: 15.2rem;
  }
  .sales-team__cube--green,
  .sales-team__cube--green-2 {
    display: none;
  }
  .sales-team__cube--harry {
    margin-left: -3.1rem;
  }
  .sales-team__cube--vishal {
    margin-left: -4.8rem;
  }
  .sales-team__cube--ali {
    justify-self: flex-end;
  }
  .sales-team__contacts {
    width: 15.2rem;
    height: 15.2rem;
    margin: 1.3rem -5rem -1.3rem 6.7rem;
    text-align: center;
    align-items: center;
  }
  .sales-team__contacts--sub {
    margin-right: -5.3rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  html:not(.no-js)
    .sales-team__cube--sam[data-ef][data-ef][data-ef-delay="700"].ef-animate {
    transition-delay: 1s;
  }
}
@media screen and (max-width: 799px) {
  html:not(.no-js)
    .sales-team__cube--vishal[data-ef][data-ef][data-ef-delay="850"].ef-animate {
    transition-delay: 0.6s;
  }
  html:not(.no-js)
    .sales-team__cube--ali[data-ef][data-ef][data-ef-delay="700"].ef-animate {
    transition-delay: 0.7s;
  }
}
.difference {
  background-color: #fff;
  padding-top: 6.2rem;
  padding-bottom: 10rem;
}
.difference__wrapper {
  width: 138.5rem;
  margin: 0 auto;
}
.difference__grid {
  width: 100%;
  padding: 0;
  margin: 0;
  border-spacing: 0 0.8rem;
  border-collapse: separate;
}
.difference__grid > tbody > tr {
  height: 6.3rem;
  position: relative;
}
.difference__grid > tbody > tr:before,
.difference__grid > tbody > tr:after {
  content: "";
  display: block;
  height: 6.3rem;
  width: 2.4rem;
  position: absolute;
  top: 0;
}
.difference__grid > tbody > tr:before {
  border-radius: 1.6rem 0 0 1.6rem;
}
.difference__grid > tbody > tr:after {
  border-radius: 0 1.6rem 1.6rem 0;
}
.difference__grid > tbody > tr:nth-child(2n + 2) > td {
  background: #f5f6f8;
}
.difference__grid
  > tbody
  > tr:nth-child(2n + 2)
  > td.difference__table-wrapper {
  position: relative;
  background: repeating-linear-gradient(
    180deg,
    #f5f6f8,
    #f5f6f8 6.3rem,
    #fff 6.3rem,
    #fff 14.2rem
  );
}
.difference__grid > tbody > tr:nth-child(2n + 2):before {
  background: #f5f6f8;
  border-radius: 1.6rem 0 0 1.6rem;
}
.difference__grid > tbody > tr:nth-child(2n + 2):after {
  background: #f5f6f8;
  border-radius: 0 1.6rem 1.6rem 0;
}
.difference__grid > tbody > tr.difference__grid-firstrow {
  height: 10rem;
}
.difference__grid > tbody > tr.difference__grid-firstrow td {
  padding-bottom: 4.5rem;
}
.difference__grid td {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #4c75e6;
  padding: 0;
}
.difference__grid td .difference__grid-small {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0em;
  color: #333;
}
.difference__grid-subheader {
  position: relative;
}
.difference td.difference__column-header {
  width: 44.8rem;
}
.difference td.difference__column-main {
  width: 32.2rem;
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #4c75e6;
  text-align: center;
}
.difference td.difference__column-empty-left {
  width: 15rem;
  text-align: right;
}
.difference td.difference__column-empty-right {
  width: 9.5rem;
}
.difference td.difference__column-diff {
  width: 32.2rem;
  font-family: "Source Serif Pro", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
  text-align: center;
}
.difference__table-wrapper {
  position: relative;
}
.difference__table-wrapper .splide {
  height: calc(100% + 2 * 3.2rem);
  width: 100%;
  margin: -3.3rem 0 -3.2rem;
  overflow: visible;
  z-index: 2;
}
.difference__table-wrapper .splide__track {
  height: 100%;
  overflow: visible;
}
.difference__table-wrapper .splide__list {
  height: 100%;
}
.difference__table-wrapper .splide__slide {
  height: 100%;
}
.difference__table-main {
  background: #4c75e6;
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
  border-radius: 1.6rem;
  height: calc(100% + 2 * 3.2rem);
  width: 100%;
  margin: -3.3rem 0 -3.2rem;
  padding: 2.3rem 0;
}
.difference__table-diff {
  border: 0.3rem solid #f1f3f6;
  background: #fff;
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
  border-radius: 1.6rem;
  height: calc(100% + 2 * 3.2rem);
  width: 100%;
  margin: -3.3rem 0 -3.2rem;
  padding: 2.3rem 0;
  height: 100%;
  position: relative;
  top: 0;
  bottom: 0;
  padding: 2rem 0;
}
.difference__table--left,
.difference__table--right {
  background: url("/wp-content/themes/mightycall2021/img/icons/arrow-right-pink.svg")
    no-repeat 0 center;
  width: 5rem;
  height: 4rem;
  cursor: pointer;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.difference__table--right {
  margin-left: 2.8rem;
}
.difference__table--left {
  transform: perspective(1px) translateZ(0) rotate(180deg);
  margin-right: 2.8rem;
}
.difference__table--left:hover,
.difference__table--right:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.difference__table--left:hover {
  -webkit-animation-name: hvr-wobble-horizontal-left;
  animation-name: hvr-wobble-horizontal-left;
}
.difference__table--right:hover {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
}
.difference__hint {
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 40px;
  color: #4c75e6;
  position: absolute;
  left: 3.2rem;
  top: 5.5rem;
  z-index: 2;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.7s ease-in-out;
  padding: 2.4rem;
  width: 21.8rem;
  background: #f1f3f6;
  box-shadow: 0 2rem 2rem -1rem rgba(101, 110, 135, 0.4);
  border-radius: 1.6rem;
}
.difference__hint--link {
  transition: 0.7s;
  text-decoration: none;
  color: #4c75e6;
  border-bottom: dashed var(--border-size) #f63d7e;
}
.difference__hint--link .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.difference__hint--link:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.difference__hint--link:hover .contrast {
  color: #fff;
}
.difference__hint--link:hover {
  border: 0;
}
.difference__hint--link:hover + span {
  opacity: 1;
  visibility: visible;
}
.difference__hint--active .tariffs__hint {
  opacity: 1;
  visibility: visible;
}
.difference__active > td,
.difference__active:before,
.difference__active:after {
  border-top: 0.1rem solid #99b1f3;
  border-bottom: 0.1rem solid #99b1f3;
}
.difference__active:before {
  border-left: 0.1rem solid #99b1f3;
}
.difference__active:after {
  border-right: 0.1rem solid #99b1f3;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .difference__wrapper {
    width: 119.2rem;
    margin: 0 auto;
  }
  .difference td.difference__column-header {
    width: 38.4rem;
  }
  .difference td.difference__column-main {
    width: 27.4rem;
  }
  .difference td.difference__column-empty-left {
    width: 13.4rem;
  }
  .difference td.difference__column-empty-right {
    width: 7.8rem;
  }
  .difference td.difference__column-diff {
    width: 27.4rem;
  }
  .difference__table--right {
    margin-left: 3.6rem;
  }
  .difference__table--left {
    margin-right: 3.6rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .difference {
    padding-bottom: 6.4rem;
  }
  .difference__wrapper {
    width: 71.2rem;
    margin: 0 auto;
  }
  .difference__grid td {
    font-family: "Source Serif Pro", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference__grid td .difference__grid-small {
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  .difference__grid td.difference__grid-subheader {
    padding-right: 3.2rem;
  }
  .difference td.difference__column-header {
    width: 22.4rem;
  }
  .difference td.difference__column-main {
    width: 15.3rem;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference td.difference__column-empty-left {
    width: 9.5rem;
    vertical-align: bottom;
  }
  .difference td.difference__column-empty-right {
    width: 3.8rem;
    vertical-align: bottom;
  }
  .difference td.difference__column-diff {
    width: 15.4rem;
    font-family: "Source Serif Pro", serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference__table--right {
    margin: 0 -0.6rem;
    margin-right: -0.6rem;
  }
  .difference__table--left {
    margin-right: -0.6rem;
  }
  .difference__hint {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 799px) {
  .difference {
    padding-bottom: 6.4rem;
    overflow-x: hidden;
  }
  .difference__wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .difference__grid > tbody > tr {
    height: 5rem;
  }
  .difference__grid > tbody > tr:before,
  .difference__grid > tbody > tr:after {
    height: 5rem;
    width: auto;
    min-width: 2rem;
    position: static;
    top: 0;
  }
  .difference__grid
    > tbody
    > tr:nth-child(2n + 2)
    > td.difference__table-wrapper {
    position: relative;
    background: repeating-linear-gradient(
      180deg,
      #f5f6f8,
      #f5f6f8 5rem,
      #fff 5rem,
      #fff 11.6rem
    );
  }
  .difference__grid > tbody > tr:nth-child(2n + 2):before,
  .difference__grid > tbody > tr:nth-child(2n + 2):after {
    border-radius: 0;
  }
  .difference__grid td {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference__grid td .difference__grid-small {
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  .difference__grid td.difference__grid-subheader {
    padding-right: 0.6rem;
  }
  .difference td.difference__column-header {
    width: 14.9rem;
  }
  .difference td.difference__column-main {
    width: 9.6rem;
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference td.difference__column-empty-left,
  .difference td.difference__column-empty-right {
    width: 0;
    vertical-align: bottom;
    position: relative;
  }
  .difference td.difference__column-diff {
    width: 9.6rem;
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference__table-wrapper .splide {
    z-index: 2;
  }
  .difference__table--left,
  .difference__table--right {
    position: absolute;
    width: 2.5rem;
    background-position-x: right;
    height: 2rem;
    top: 4.5rem;
  }
  .difference__table--right {
    margin: 0 -0.6rem;
    margin-right: -0.6rem;
    left: -2rem;
  }
  .difference__table--left {
    margin-right: -0.6rem;
  }
  .difference__active > td,
  .difference__active:before,
  .difference__active:after {
    border: none;
  }
}
#difference-slider .splide__slide [data-ef].ef-animate {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
#difference-slider .splide__slide.is-active [data-ef].ef-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
#difference-slider .splide__slide.is-active.is-active-out [data-ef].ef-animate {
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
.difference-main,
.difference-diff {
  width: 100%;
  padding: 0;
  margin: 0;
  border-spacing: 0 0.8rem;
  border-collapse: separate;
}
.difference-main tr,
.difference-diff tr {
  height: 6.3rem;
}
.difference-main td,
.difference-diff td {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #fff;
  padding: 0;
  height: 6.3rem;
  text-align: center;
}
.difference-main td .difference-main__small,
.difference-main td .difference-diff__small,
.difference-diff td .difference-main__small,
.difference-diff td .difference-diff__small {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0em;
  color: #99b1f3;
}
.difference-main__dollar,
.difference-diff__dollar {
  position: relative;
}
.difference-main__dollar:before,
.difference-diff__dollar:before {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  content: "$";
  display: inline;
  margin-right: 0.6rem;
}
.difference-main__icon--no,
.difference-main__icon--yes,
.difference-diff__icon--no,
.difference-diff__icon--yes {
  width: 3.2rem;
  height: 3.2rem;
  display: inline-block;
  margin-top: 0.7rem;
}
.difference-main__icon--no,
.difference-diff__icon--no {
  background: url("/wp-content/themes/mightycall2021/img/icons/no.svg")
    no-repeat 0 0 / contain;
}
.difference-main__icon--yes,
.difference-diff__icon--yes {
  background: url("/wp-content/themes/mightycall2021/img/icons/yes-green.svg")
    no-repeat 0 0 / contain;
}
.difference-main__active > td,
.difference-diff__active > td {
  border-top: 0.1rem solid #99b1f3;
  border-bottom: 0.1rem solid #99b1f3;
}
.difference-diff td {
  color: #333;
}
.difference-diff td .difference-diff__small {
  color: #333;
}
.difference-diff__active td {
  position: relative;
}
.difference-diff__active td:before,
.difference-diff__active td:after {
  content: "";
  display: block;
  height: 6.3rem;
  width: 0.3rem;
  position: absolute;
  top: -0.1rem;
  border-top: 0.1rem solid #99b1f3;
  border-bottom: 0.1rem solid #99b1f3;
}
.difference-diff__active td:before {
  left: -0.3rem;
}
.difference-diff__active td:after {
  right: -0.3rem;
}
.difference-diff__icon--yes {
  background: url("/wp-content/themes/mightycall2021/img/icons/yes.svg")
    no-repeat 0 0 / contain;
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .difference-main td,
  .difference-diff td {
    font-family: "Source Serif Pro", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference-main td .difference-main__small,
  .difference-main td .difference-diff__small,
  .difference-diff td .difference-main__small,
  .difference-diff td .difference-diff__small {
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  .difference-main__dollar:before,
  .difference-diff__dollar:before {
    font-family: "Source Serif Pro", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .difference-diff__dollar:before {
    font-family: "Source Serif Pro", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.4rem;
    letter-spacing: 0em;
    color: #a0a0a0;
  }
}
@media screen and (max-width: 799px) {
  .difference-main tr,
  .difference-diff tr {
    height: 5rem;
  }
  .difference-main td,
  .difference-diff td {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
    height: 5rem;
  }
  .difference-main td .difference-main__small,
  .difference-main td .difference-diff__small,
  .difference-diff td .difference-main__small,
  .difference-diff td .difference-diff__small {
    font-family: "Open Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2rem;
    letter-spacing: 0em;
  }
  .difference-main__active > td,
  .difference-diff__active > td {
    border-top: none;
    border-bottom: none;
  }
  .difference-main__dollar:before,
  .difference-diff__dollar:before {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
    margin-right: 0.3rem;
  }
  .difference-main__icon--no,
  .difference-main__icon--yes,
  .difference-diff__icon--no,
  .difference-diff__icon--yes {
    width: 2.4rem;
    height: 2.4rem;
  }
  .difference-diff__active td:before,
  .difference-diff__active td:after {
    display: none;
  }
  .difference-diff__dollar:before {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
    color: #a0a0a0;
    margin-right: 0.3rem;
  }
  .difference__hint {
    font-size: 14px;
    line-height: 24px;
  }
}
.reviews {
  background-color: #f1f3f6;
  padding-top: 15rem;
  padding-bottom: 5rem;
}
.reviews__wrapper {
  width: 103.4rem;
  margin: 0 auto;
  position: relative;
}
.reviews__wrapper .splide {
  height: 60.6rem;
  overflow: visible;
}
.reviews__wrapper .splide__track {
  height: 100%;
  overflow: visible;
}
.reviews__wrapper .splide__list {
  height: 100%;
}
.reviews__wrapper .splide__slide {
  height: 100%;
}
.reviews__header {
  font-family: "Source Serif Pro", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.6rem;
  letter-spacing: 0em;
  color: #333;
  position: absolute;
  right: 1rem;
}
.reviews__header--small {
  font-family: "Source Serif Pro", serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
}
.reviews__header--medium {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
}
.reviews__header--pink {
  color: #f63d7e;
}
.reviews__arrow {
  position: absolute;
  z-index: 2;
  top: 12.9rem;
  right: 13.5rem;
  width: 22.5rem;
  display: flex;
}
.reviews__arrow--left,
.reviews__arrow--right {
  background: url("/wp-content/themes/mightycall2021/img/icons/arrow-right-pink.svg")
    no-repeat 0 center;
  width: 5rem;
  height: 4rem;
  cursor: pointer;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
.reviews__arrow--left {
  transform: perspective(1px) translateZ(0) rotate(180deg);
  margin-right: 1.6rem;
}
.reviews__arrow--left:hover,
.reviews__arrow--right:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.reviews__arrow--left:hover {
  -webkit-animation-name: hvr-wobble-horizontal-left;
  animation-name: hvr-wobble-horizontal-left;
}
.reviews__arrow--right:hover {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
}
.reviews__counter {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  color: #333;
  margin-left: 3.2rem;
}
.reviews__slide {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.reviews__photo {
  width: 44rem;
  height: fit-content;
  border-radius: 1.6rem;
}
.reviews__desc {
  background-color: #fff;
  padding: 1.6rem 2.4rem;
  margin: 24.2rem 0 0 -10.3rem;
  position: relative;
  width: 55.8rem;
  min-height: 26.6rem;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews__text {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  font-style: italic;
  color: #333;
  padding: 5.2rem 0;
  position: relative;
}
.reviews__text:before,
.reviews__text:after {
  content: "";
  display: block;
  background: url("/wp-content/themes/mightycall2021/img/quote.svg") 0 0
    no-repeat;
  position: absolute;
  width: 5.6rem;
  height: 4.2rem;
  left: 0;
  top: 0;
}
.reviews__text:after {
  transform: rotate(180deg);
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
}
.reviews__sign {
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 3.2rem;
  letter-spacing: 0em;
  color: #333;
}
.reviews__link {
  font-family: "Source Serif Pro", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 3.2rem;
  letter-spacing: 0em;
  transition: 0.7s;
  color: #f63d7e;
  text-decoration: none;
}
.reviews__link .contrast {
  transition: 0.7s;
  color: #4c75e6;
}
.reviews__link:hover {
  color: #fff;
  text-decoration: none;
  background: #f63d7e;
}
.reviews__link:hover .contrast {
  color: #fff;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .reviews__wrapper {
    width: 78.4rem;
  }
  .reviews__photo {
    width: 37.6rem;
  }
  .reviews__header {
    right: 0;
    width: 25.7rem;
    text-align: right;
  }
  .reviews__arrow {
    right: 0;
  }
  .reviews__desc {
    width: 47.8rem;
    margin-left: -7rem;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .reviews__wrapper {
    width: 58.8rem;
  }
  .reviews__wrapper .splide {
    height: 58.6rem;
  }
  .reviews__photo {
    width: 27.8rem;
  }
  .reviews__header {
    right: 0;
    width: 25.7rem;
    text-align: right;
  }
  .reviews__arrow {
    right: 0;
    top: 14.5rem;
  }
  .reviews__desc {
    width: 40.2rem;
    margin-left: -9.2rem;
    margin-top: 21.1rem;
  }
  .reviews__text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .reviews__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .reviews__link {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 799px) {
  .reviews {
    overflow: hidden;
    padding: 6rem 2rem 5rem;
  }
  .reviews__wrapper {
    width: 32.7rem;
    margin: 0 auto;
  }
  .reviews__wrapper .splide {
    height: 40.3rem;
  }
  .reviews__photo {
    width: 18rem;
    height: 100%;
  }
  .reviews__header {
    right: 0;
    width: 32.7rem;
    text-align: right;
    position: relative;
    margin-bottom: -4.7rem;
  }
  .reviews__arrow {
    top: 18.1rem;
    right: 0.8rem;
    justify-content: flex-end;
  }
  .reviews__arrow--left,
  .reviews__arrow--right {
    width: 2rem;
    height: 2rem;
    background-position-x: right;
  }
  .reviews__counter {
    display: none;
  }
  .reviews__desc {
    width: 26.4rem;
    margin-left: -12.5rem;
    margin-top: 12.6rem;
    min-height: 10rem;
  }
  .reviews__text {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
    padding: 2.2rem 0;
  }
  .reviews__text:before,
  .reviews__text:after {
    width: 3rem;
    height: 2.2rem;
    background-size: contain;
  }
  .reviews__sign {
    font-family: "Open Sans", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
  .reviews__link {
    font-family: "Source Serif Pro", serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2.4rem;
    letter-spacing: 0em;
  }
}
#reviews-slider .splide__slide [data-ef].ef-animate {
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  opacity: 0;
  -webkit-transform: translate3d(10rem, 0, 0) scale(1);
  transform: translate3d(10rem, 0, 0) scale(1);
}
#reviews-slider .splide__slide.is-active [data-ef].ef-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}
#reviews-slider .splide__slide.is-active.is-active-out [data-ef].ef-animate {
  transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) scale(0.85);
  transform: translate3d(0, 0, 0) scale(0.85);
}
.trial-lion {
  background-color: #fff;
  padding-top: 0;
}
.trial-lion__wrapper {
  width: 138.5rem;
  height: 54.3rem;
  display: flex;
  justify-content: space-between;
  max-width: 1472px;
  padding-left: 44px;
  padding-right: 44px;
  padding-top: 20px;
  margin: 0 auto;
  border: 1px solid #cccccc;
  border-radius: 16px;
}
.trial-lion__header {
  width: 85.8rem;
  margin: 18.7rem 13.75% 0;
  border-top: var(--border-size) solid #ccc;
}
.trial-lion__header-top {
  margin-top: -5.6rem;
}
.trial-lion__header-bottom,
.trial-lion__header-top {
  font-family: "Source Serif Pro", serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 5.6rem;
  letter-spacing: 0em;
  color: #333;
}
.trial-lion__header--highlite {
  color: #f63d7e;
}
.trial-lion__button {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5.6rem 0 0 13.75%;
}
.trial-lion__button--demo {
  margin: 0 1.6rem;
  width: 16.8rem;
}
.trial-lion__button--trial {
  margin: 0 1.6rem 0 0;
  width: 16.8rem;
}
.trial-lion__lion {
  background: url("/wp-content/themes/mightycall2021/img/promo_lion.webp")
    no-repeat;
  width: 47.7rem;
  height: 52.1rem;
}
.trial-lion__lion-wrapper {
  height: 54.3rem;
}
@media screen and (min-width: 1279px) and (max-width: 1750px) {
  .trial-lion__wrapper {
    width: 119.5rem;
  }
  .trial-lion__header {
    width: 82.8rem;
    margin-left: 0;
    margin-right: -11rem;
  }
  .trial-lion__button {
    margin-left: 0;
  }
}
@media screen and (min-width: 799px) and (max-width: 1279px) {
  .trial-lion {
    overflow: hidden;
  }
  .trial-lion__wrapper {
    max-width: 93%;
    width: 100%;
    height: 44.3rem;
  }
  .trial-lion__header {
    width: 38.8rem;
    margin: 17.9rem 0 -11rem;
  }
  .trial-lion__header-top {
    margin-top: -4.8rem;
  }
  .trial-lion__header-bottom,
  .trial-lion__header-top {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .trial-lion__button {
    margin: 16.4rem 0 0 0;
  }
  .trial-lion__button--demo,
  .trial-lion__button--trial {
    width: auto;
    padding: 1.2rem 2.4rem;
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
  }
  .trial-lion__lion {
    height: 42.2rem;
    background-size: 80%;
  }
  .trial-lion__lion-wrapper {
    height: 55.2rem;
    margin-left: -7rem;
  }
}
@media screen and (max-width: 799px) {
  .trial-lion__wrapper {
    width: auto;
    height: 94.1rem;
    flex-direction: column;
    align-items: center;
    margin: 0 2rem;
  }
  .trial-lion__header {
    width: 100%;
    margin: 9.2rem 0 0;
    border: none;
    text-align: center;
  }
  .trial-lion__header-top {
    margin-top: -4.8rem;
  }
  .trial-lion__header-bottom,
  .trial-lion__header-top {
    font-family: "Source Serif Pro", serif;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 4.8rem;
    letter-spacing: 0em;
  }
  .trial-lion__button {
    margin: 5.6rem 0 0 0;
    flex-direction: column;
  }
  .trial-lion__button--demo,
  .trial-lion__button--trial {
    width: auto;
    padding: 1.2rem 2.4rem;
    font-family: "Source Serif Pro", serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6rem;
    letter-spacing: 0em;
  }
  .trial-lion__button--demo {
    margin: 1.6rem 0;
  }
  .trial-lion__button--trial {
    margin: 0 0 1.6rem 0;
  }
  .trial-lion__lion {
    width: 47.7rem;
    height: 51.3rem;
  }
  .trial-lion__lion-wrapper {
    height: 51.3rem;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    overflow-x: hidden;
  }
}
