* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat';
}

:root {
  --accentColor: #ffd551;
  --textColor: #FFF;
  --darkGray: #1d1e1f;
  --lightGray: #272828;
}

@font-face {
  font-family: 'Montserrat';
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-weight: 100 900;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 100px;
}

/* * {
  outline: 1px solid red;
  outline-offset: -1px;
} */

.mr-0 {
  margin-right: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

header {
  background-image: url(../images/header_photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 100px;
}

.header-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.desktop-nav {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 100px;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}

.mobile-menu {
  display: none;
}

.mobile-menu.menu-open {
  height: 100vh;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.nav-container img {
  width: 70px;
}

.nav-container ul {
  list-style: none;
  display: flex;
}

.nav-container ul li {
  margin-right: 20px;
}

.nav-container ul li:last-child {
  margin: 0;
}

.nav-container ul li a {
  color: var(--textColor);
  font-weight: 600;
  text-decoration: none;
}

.nav-container ul li:hover a {
  color: var(--accentColor);
}

.nav-container ul li a.nav-active {
  color: var(--accentColor);
}

.header-content {
  padding-left: 100px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header-left h1 {
  font-size: 80px;
  color: var(--textColor);
  font-weight: 800;
  max-width: 600px;
}


.header-left p {
  color: var(--textColor);
  max-width: 600px;
  font-size: 18px;
}

.header-right {
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  float: right;
}

.header-right .social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  text-decoration: none;
}

.header-right .social-icon i {
  color: var(--textColor);
}

.vertical-spacer-line-short {
  width: 2px;
  background: var(--textColor);
  height: 60px;
  margin: 10px 0 10px 40px;
}

.vertical-spacer-line-long {
  width: 2px;
  background: var(--textColor);
  height: 100px;
  margin: 15px 0 20px 40px;
}

.horizontal-spacer-line-long {
  display: none;
  width: 100px;
  background: var(--textColor);
  height: 2px;
  margin: 0px 20px 0px 25px;
}

.header-buttons {
  padding-left: 100px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.header-buttons img {
  width: 200px;
  margin-right: 20px;
}

.header-buttons :nth-child(2) img {
  opacity: 0.6;
}

.header-vertical-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--accentColor);
}

.fa-computer-mouse {
  color: var(--textColor);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

main {
  padding-top: 100px;
  background-color: var(--darkGray);
}

main.menu-open {
  position: relative;
  z-index: -1;
}

.main-introudction {
  padding-bottom: 50px;
  position: relative;
}

.main-introudction .introduction-section {
  position: relative;
  margin-bottom: 200px;
}

.main-introudction .introduction-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-introudction .introduction-section:nth-child(2) {
  margin-bottom: 100px;
}

.main-introudction .introduction-section .introduction-image {
  width: 550px;
  height: 380px;
  background-size: cover;
  background-position: center;
}

.main-introudction .introduction-section .introduction-image .overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.main-introudction .introduction-section .introduction-text {
  width: 48%;
}

.main-introudction .introduction-section .introduction-text p {
  color: var(--textColor);
  line-height: 25px;
  font-size: 20px;
}

.main-introudction .introduction-section h3 {
  color: var(--textColor);
  position: absolute;
  top: 15px;
  font-size: 40px;
}

.main-introudction :nth-child(1) h3 {
  right: 15%;
  display: inline;
}

.main-introudction :nth-child(3) h3 {
  right: 30%;
  display: inline;
}

.main-introudction :nth-child(2) h3 {
  left: 260px;
  display: inline;
  max-width: 700px;
  top: -25px;
}

.main-introudction h3::after {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: var(--accentColor);
}

.main-introudction :nth-child(3) h3::after {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -15px;
  right: 0;
  left: unset;
  transform: unset;
  width: 200px;
  background: var(--accentColor);
}


.main-introudction .introduction-section .line {
  height: 2px;
  width: 150px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accentColor);
}

.main-introudction .introduction-section:nth-child(2) .line {
  left: 0;
}

.instructions {
  background-color: var(--lightGray);
  padding-top: 50px;
  padding-bottom: 100px;
}

.instructions h3 {
  color: var(--textColor);
  margin: 0 auto;
  font-size: 50px;
  max-width: 700px;
  margin-bottom: 50px;
  text-align: center;
}

.instructions-row {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 100px; */
}

.instruction-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 370px;
}

.instruction-item .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
}

.instruction-item:nth-child(3) .icon {
  width: 115px;
  height: 80px;
}

.instruction-item .icon img {
  width: 100%;
}

.instruction-item .temp-img {
  width: 150px;
  height: 90px;
  border: 1px solid var(--textColor);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.instruction-item .temp-img img {
  width: 45px;
}

.instruction-item h5 {
  color: var(--textColor);
  text-align: center;
  margin-bottom: 5px;
  font-size: 22px;
}

.instruction-item p {
  color: var(--textColor);
  text-align: center;
  line-height: 35px;
  font-size: 21px;
}

.video-player {
  width: 100%;
  height: 400px;
  background-color: gray;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: rgb(86, 86, 86);
  margin-top: 50px;
}

.advantages {
  /*padding-bottom: 50px;
  padding-top: 50px;
  background-image: url(../images/header_photo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;*/
  padding-bottom: 50px;
}

.advantages-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.advantages h3 {
  color: var(--textColor);
  font-size: 50px;
  margin: 0 auto 30px auto;
  position: relative;
  width: max-content;
  z-index: 1;
}

.advantages h3::after {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -5px;
  right: 0;
  left: 0;
  transform: unset;
  width: 100%;
  background: var(--accentColor);
}

.advantage-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.advantage-items .left {
  max-width: 450px;
}

.advantage-items .right {
  max-width: 500px;
}

.advantage-items .item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.advantage-items .item h1 {
  font-size: 150px;
  color: var(--accentColor);
  width: 100px;
  margin-right: 50px;
}

.advantage-items .item div :first-child {
  font-weight: bold;
  color: var(--accentColor);
}

.advantage-items .item div p {
  color: var(--textColor);
}

.showcase {
  padding-bottom: 50px;
  background: var(--lightGray);
}

.showcase h3 {
  color: var(--textColor);
  font-size: 50px;
  margin: 0 auto 100px auto;
  padding-top: 30px;
  max-width: 600px;
  position: relative;
  text-align: center;
}

.showcase h3::after {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -5px;
  right: 0;
  left: 0;
  margin: auto;
  transform: unset;
  width: 80%;
  background: var(--accentColor);
}


.carousel h5 {
  margin-bottom: 20px;
  font-size: 30px;
  text-align: center;
  color: var(--accentColor);
}

.splide {
  width: 100%;
  margin-bottom: 20px;
}

.splide__slide {
  display: flex;
  justify-content: center;
}

.splide__slide img {
  width: 200px;
}

.splide__track {
  background-color: var(--textColor);
  padding: 30px 0px;
  border-radius: 40px;
}

.splide__arrow--prev {
  left: -3em !important;
}

.splide__arrow--next {
  right: -3em !important;
}

.splide__arrows {
    display: none;
  }

.benefits {
  padding-bottom: 100px;
}

.benefits h3 {
  color: var(--textColor);
  font-size: 50px;
  margin: 0 auto 100px auto;
  padding-top: 30px;
  width: max-content;
  position: relative;
}

.benefits h3::after {
  position: absolute;
  content: '';
  height: 2px;
  bottom: -5px;
  right: 0;
  left: 0;
  transform: unset;
  width: 100%;
  background: var(--accentColor);
}

.benefits-items {
  display: flex;
  justify-content: space-between;
}

.benefits-items .right,
.benefits-items .left {
  width: 45%;
}


.benefit-item {
  width: 100%;
  background-color: var(--lightGray);
  height: 80px;
  border-radius: 15px;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item p {
  color: var(--textColor);
  font-weight: 700;
  font-size: 20px;
}

.benefit-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #3c3d3d;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

footer {
  background-color: var(--accentColor);
  padding: 35px 0;
}

footer .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

footer .container div {
  display: flex;
}

footer .container div:nth-child(1) {
  margin-bottom: 10px;
}

footer .container div:nth-child(1) a:first-child {
  margin-right: 20px;
}

footer div p,
footer div a {
  font-size: 14px;
  font-weight: 600;
  color: var(--darkGray);
  text-decoration: none;
  text-align: center;
}


/* mobile menu */

.main-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  background: var(--darkGray);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all .375s;
}

.main-nav.is-open {
  opacity: 1;
  z-index: 100;
  visibility: visible;
  height: 100vh;
}

/* Yellow band effect */
.main-nav::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -15px;
  background: var(--accentColor);
  transform-origin: 0 0;
  transform: skew(-14deg) translateX(-120%);
  transition: all .275s .1s;
}

.main-nav.is-open::before {
  transform: skew(-14deg) translateX(0);
}

/* Skewing effect on menu links */
.main-nav ul {
  display: inline-flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(-18%) skew(-16deg);
}

.main-nav li {
  display: block;
  margin: .5rem 0;
  text-align: right;
  transform: skew(16deg);
}

/* Apparition effect on links */
.main-nav a {
  opacity: 0;
  transform: translateY(-10px);
}

.main-nav.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.main-nav li:nth-child(1) a {
  transition: all 275ms 175ms
}

.main-nav li:nth-child(2) a {
  transition: all 275ms 225ms
}

.main-nav li:nth-child(3) a {
  transition: all 275ms 275ms
}

.main-nav li:nth-child(4) a {
  transition: all 275ms 325ms
}

.main-nav li:nth-child(5) a {
  transition: all 275ms 375ms
}


/* Decoration */
.main-nav ul,
.main-nav li {
  list-style: none;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 12px 0;
  color: var(--darkGray);
  font-size: 1.4em;
  text-decoration: none;
  font-weight: bold;
}

/* Burger Style: @see: https://codepen.io/CreativeJuiz/full/oMZNXy */
.open-main-nav {
  position: absolute;
  right: 20px;
  top: 30px;
  padding-top: 20px;
  right: 30px;
  z-index: 1000;
  background: none;
  border: 0;
  cursor: pointer;
}

.open-main-nav:focus {
  outline: none;
}

.burger {
  position: relative;
  display: block;
  width: 28px;
  height: 4px;
  margin: 0 auto;
  background: var(--textColor);
  transform: skew(5deg);
  transition: all .275s;
}

.burger:after,
.burger:before {
  content: '';
  display: block;
  height: 100%;
  background: var(--textColor);
  transition: all .275s;
}

.burger:after {
  transform: translateY(-12px) translateX(-2px) skew(-20deg);
}

.burger:before {
  transform: translateY(-16px) skew(-10deg);
}

/* Toggle State part */
.is-open .burger {
  position: absolute;
  transform: skew(5deg) translateY(-8px) rotate(-45deg);
}

.is-open .burger:before {
  transform: translateY(0px) skew(-10deg) rotate(75deg);
}

.is-open .burger:after {
  transform: translateY(-12px) translateX(10px) skew(-20deg);
  opacity: 0;
}

/* MENU Text part */

.burger-text {
  display: block;
  font-size: .675rem;
  letter-spacing: .05em;
  margin-top: .5em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  color: var(--textColor);
}

.device {
  display: none;
  /*  position: relative;
  width: 345px;
  height: 600px;
  background: #FFF;
  border: 1px solid #EEE;
  border-radius: 3px;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, .1); */
}

.container-menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #eee, #ddd);
  height: 100vh;
}

/* html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* Slow motion button */
[id="slowmo"] {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px;
  border: 0;
  font-size: 1rem;
  background: #FEDC2A;
  color: #5A3B5D;
  font-weight: bold;
  cursor: pointer;
  transition: all .275s;
}

[id="slowmo"] span {
  display: block;
  font-weight: normal;
}

[id="slowmo"]:hover,
[id="slowmo"]:focus {
  background: #5A3B5D;
  color: #FEDC2A;
}

[id="slowmo"].is-slowmo span:after {
  content: 'Activated';
  display: block;
  font-weight: bold;
}

/* When slowmotion is activated */

.is-slowmo+.device .open-main-nav .burger,
.is-slowmo+.device .open-main-nav .burger:before,
.is-slowmo+.device .open-main-nav .burger:after,
.is-slowmo+.device .main-nav,
.is-slowmo+.device .main-nav::before,
.is-slowmo+.device .main-nav a {
  transition-duration: 3s;
}

.is-slowmo+.device .main-nav li:nth-child(1) a {
  transition-delay: 1750ms
}

.is-slowmo+.device .main-nav li:nth-child(2) a {
  transition-delay: 2250ms
}

.is-slowmo+.device .main-nav li:nth-child(3) a {
  transition-delay: 2750ms
}

.is-slowmo+.device .main-nav li:nth-child(4) a {
  transition-delay: 3250ms
}

.is-slowmo+.device .main-nav li:nth-child(5) a {
  transition-delay: 3750ms
}

/* Notice */
.notice {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  padding: 20px;
  background: #F2F2F2;
  color: #5A3B5D;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  z-index: 100;
  text-align: center;
}

.notice strong {
  font-weight: 700;
}

.notice a {
  padding: 2px 3px;
  background: #FEDC2A;
  text-decoration: none;

}

@media only screen and (max-width: 1320px) {
  .instructions-row {
    flex-direction: column;
    align-items: center;
  }

  .instruction-item {
    margin-bottom: 80px;
  }

  .instruction-item:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 1280px) {

  main {
    padding-top: 40px;
  }

  .main-introudction .introduction-section {
    margin-bottom: 100px;
  }

  .introduction-row {
    flex-direction: column;
  }

  .main-introudction .introduction-section:nth-child(2) .introduction-row {
    flex-direction: column-reverse;
  }


  .main-introudction .introduction-section .introduction-image {
    margin-bottom: 30px;
    width: 100%;
  }

  .main-introudction .introduction-section .introduction-text {
    max-width: 800px !important;
    text-align: center;
    width: unset;
    margin-bottom: 20px;
  }

  .main-introudction .introduction-section .line {
    width: 100%;
  }

  .main-introudction h3 {
    position: static !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    max-width: unset !important;
    margin-bottom: 40px;
  }

  /*  .main-introudction .introduction-section:nth-child(2) h3 {
    bottom: 100% !important;
  } */

  .main-introudction h3::after {
    position: static !important;
    display: block !important;
    margin: 0 auto !important;
    transform: unset !important;
    margin-top: 10px !important;
  }

  .benefits-items {
    flex-direction: column;
    align-items: center;
  }

  .benefits-items .right,
  .benefits-items .left {
    width: 100%;
    max-width: 800px;
  }
}

@media only screen and (max-width: 1170px) {
  .advantages h3 {
    margin-bottom: 100px;
  }

  .advantage-items {
    flex-direction: column;
    align-items: center;
  }

  .advantage-items .left,
  .advantage-items .right {
    max-width: 500px;
  }
}

@media only screen and (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .device {
    display: block;
  }

  .mobile-menu {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 30px;
    margin-bottom: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
  }

  .logo-mobile {
    width: 50px;
  }
}

@media only screen and (max-width: 850px) {
  /*  header {
    height: 1200px;
  } */

  .container {
    padding: 0px 30px;
  }

  .mobile-menu {
    margin-bottom: 100px;
  }

  .header-content {
    flex-direction: column;
    align-content: flex-start;
    padding-left: 30px;
  }

  .header-right {
    width: max-content;
    padding-right: 0;
    padding-left: 17px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 30px;
  }

  .header-right .vertical-spacer-line-long {
    display: none;
  }

  .header-right .horizontal-spacer-line-long {
    display: block;
  }

  .header-right .social-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }

  .header-right .social-icon:last-child {
    margin: 0;
  }

  .header-buttons {
    padding-left: 30px;
  }

  .splide__slide img {
    width: 300px;
  }

  .splide {
    width: 90%;
    margin: 0 auto 30px auto;
  }
}


@media only screen and (max-width: 630px) {

  .header-left h1 {
    font-size: 50px;
    max-width: 300px;
  }

  .header-left p {
    font-size: 14px;
  }

  .main-introudction .introduction-section h3 {
    font-size: 25px !important;
  }

  .main-introudction .introduction-section p {
    font-size: 15px !important;
  }

  .instructions h3,
  .advantages h3,
  .showcase h3,
  .benefits h3 {
    font-size: 27px;
  }

  .advantages h3 {
    margin-bottom: 40px;
  }

  .instruction-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
  }

  .instruction-item h5 {
    font-size: 18px;
  }

  .instruction-item p {
    font-size: 16px;
    line-height: 22px;
  }

  .instruction-item:first-child .temp-img {
    width: 80px;
    height: 50px;
  }

  .instruction-item:first-child .temp-img img {
    width: 20px;
  }

  .instruction-item:last-child .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
  }

  .advantage-items .item h1 {
    font-size: 100px;
    width: 55px;
  }
}

@media only screen and (max-width: 550px) {
  .benefit-item p {
    font-size: 15px;
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {

  footer div p,
  footer div a {
    font-size: 10px;
    text-align: center;
  }

  .header-buttons img {
    width: 120px;
  }
}

@media only screen and (max-width: 350px) {
  .instructions h3 {
    font-size: 23px;
  }

  .header-left h1 {
    margin: 0;
    font-size: 45px;
  }
}

.main-second-page {
  padding: 50px 0;
}

.main-second-page h1 {
  text-align: center;
  color: var(--accentColor);
  margin-bottom: 50px;
  font-size: 50px;
}

.main-second-page p {
  font-size: 20px;
  color: var(--textColor);
  margin-bottom: 40px;
}

.main-second-page p a {
  color: var(--textColor);
}

.header-second-page {
  background-image: none;
  padding-bottom: 0px;
}

.header-second-page .desktop-nav {
  margin-bottom: 0px;
}

.price-box {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.old-price {
  color: #666;
  display: inline-block;
  font-size: 18px;
  padding-left: 5px;
}

.regular-price {
  color: var(--accentColor);
}

.contact {
  padding:10px 0px;
  /*background: var(--lightGray);*/
  text-align: center;
  color: var(--textColor);
  font-size: 14px;
}

.contact a {
  color: var(--accentColor);
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.splide__list img {
  border-radius: 13px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
}

.btn {
  display: inline-block;
  font-weight: 600;
  color: #7E7E7E;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.625rem 1.875rem;
  font-size: 1rem;
  line-height: 1.65;
  border-radius: 3px;
  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;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, .1);
}

.btn-secondary {
  color: #000;
  background-color: #fed652;
  border-color: #fed652;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 2.1875rem;
  font-size: 1.25rem;
  line-height: 2;
  border-radius: 0.7rem;
}

.fs-22 {
  font-size: 22px !important;
}

.border-0 {
  border: none !important;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.bg-hover-primary:hover {
  background-color: #000 !important;
  color: #fed652;
}

.part-with-btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.toTopButton{
    background-color: #ffd551;
    color: #1d1e1f;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
}

.toTopButton:hover{
    font-size: 25px;
}

#toTopButton {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
  }

  #toTopButton.visible {
    display: block;
    transform: translateY(0);
  }

  #toTopButton.hidden {
    transform: translateY(100%);
  }