.site-header {
  display: none;
}

/* FONTS */
body {
  font-family: 'Sofia Pro', sans-sans-serif !important;
  font-size: 18px !important;
  font-weight: normal;
}

h1.elementor-heading-title {
  font-size: 45px;
  font-weight: 600;
}

.big h2.elementor-heading-title {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2em;
}

h2.elementor-heading-title {
  font-size: 35px;
  font-weight: 600;
}

h3.elementor-heading-title {
  font-size: 22px;
  font-weight: 500;
}

h4.elementor-heading-title {
  font-size: 22px;
  font-weight: bold;
}

h6.elementor-heading-title {
  font-size: 16px;
  font-weight: bold;
}

.small-grey span {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  color: #B9BEC7;
  letter-spacing: .2em;
}

.tips-container p {
  font-size: 16px;
}

.i {
  font-style: italic;
}


/* TEXT MARGINS */
/*
h1.elementor-heading-title {
  margin-bottom: 30px;
} */

h2.elementor-heading-title {
  margin-bottom: 22px;
}

.small-text span {
  font-size: 16px;
  font-weight: normal;
}

/* SECTION PADDING */

section.section-padding-large {
  padding: 150px 100px;
}

section.section-padding-large.top {
  padding: 150px 100px 0px;
}

section.section-padding-large.bottom {
  padding: 0px 100px 150px;
}

section.section-padding-medium {
  padding: 100px 100px;
}

section.section-padding-medium.top {
  padding: 100px 100px 0px;
}

section.section-padding-medium.bottom {
  padding: 0px 100px 100px;
}

section.section-padding-small {
  padding: 50px 100px;
}

section.section-padding-small.top {
  padding: 50px 100px 0px;
}

section.section-padding-small.bottom {
  padding: 0px 100px 50px;
}

section.section-padding-left-right {
  padding: 0px 100px 0px;
}

/* COLUMN PADDING */

section .text-col.left {
  padding-right: 50px;
}

section .text-col.right {
  padding-left: 50px;
}

/* MARGINS */

.margin-large {
  margin-bottom: 40px !important;
}

.margin-medium {
  margin-bottom: 30px !important;
}

.margin-small {
  margin-bottom: 20px !important;
}

.margin-large.top {
  margin-top: 40px !important;
}

.margin-medium.top {
  margin-top: 30px !important;
}

.margin-small.top {
  margin-top: 20px !important;
}

.no-margin p {
  margin-bottom: 0 !important;
}

/* CONFETTI FADE */

.confetti-fade-out.confetti-section {
  z-index: 0;
  position: absolute;
  top: 0;
}

.confetti-fade-out {
  animation: fadeOut normal forwards ease 7s;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


/* GENERAL */

.shadow {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
}

.big-shadow {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
}

.br-10 {
  border-radius: 10px;
}

:root {
  --stripe-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  /* Some other shadow variables to play with  */
  --cardShadowXSmall: 0 2px 5px -1px rgba(50, 50, 93, 0.25), 0 1px 3px -1px rgba(0, 0, 0, 0.3);
  --cardShadowSmall: 0 6px 12px -2px rgba(50, 50, 93, 0.25), 0 3px 7px -3px rgba(0, 0, 0, 0.3);
  --cardShadowMedium: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
  --cardShadowLarge: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px
}

.fancy-shadow {
  box-shadow: var(--stripe-shadow);
}

.fancy-img-shadow img {
  box-shadow: var(--stripe-shadow) !important;
}

.mobile-br {
  display: none;
}

.header-para-width h3 {
  width: 400px;
}


/* BUTTONS */

.btn a {
  background-color: #E40046;
  border-radius: 5px;
  box-shadow: 0px 3px 10px rgba(228, 1, 70, .2) !important;
}

.btn a:hover {
  box-shadow: 0px 5px 20px rgba(228, 1, 70, .4) !important;
}

.btn a:hover i.fas.fa-arrow-right {
  transform: translateX(5px);
}

.btn a i.fas.fa-arrow-right {
  transition: all .3s;
}

.btn.white a {
  background-color: #fff;
  border-radius: 5px;
  color: #E40046;
  box-shadow: none;
}


/* SHADOW GROW ON HOVER */

.shadow-grow {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 5px;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-grow::after {
  content: "";
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow-grow:hover {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.shadow-grow:hover::after {
  opacity: 1;
}


/* FUN FACT */
.fun-fact.elementor-section.elementor-element {
  width: 380px;
}

/* TOGGLES / FAQ */
.elementor-toggle-item {
  margin-bottom: 30px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, .16);
  border-radius: 10px;
  padding: 15px;
}

.elementor-toggle .elementor-tab-content,
.elementor-toggle .elementor-tab-title {
  border-bottom: none !important;
}

.elementor-toggle-item .elementor-toggle-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3
}

/* TOP BAR SLIDE IN */
section.top-bar.red {
  background-color: #E40046;
}

section.top-bar {
  background-color: transparent;
  transform: translateY(-40px);
  transition: transform 1.5s ease,
    background-color 1s ease,
    color 1s ease;
}

section.top-bar.slidein {
  transform: translateY(0px)
}

section.top-bar.red .elementor-heading-title,
section.top-bar.red .start-here .elementor-heading-title {
  color: #fff;
}

section.top-bar .start-here .elementor-heading-title {
  color: #E40046;
}

/* PRICE CALCULATOR */




/* IPAD PORTRAIT */
@media (max-width: 1024px) {


  /* SECTION PADDING */
  section.section-padding-large {
    padding: 100px 50px;
  }

  section.section-padding-large.top {
    padding: 100px 50px 0px;
  }

  section.section-padding-large.bottom {
    padding: 0px 50px 100px;
  }

  section.section-padding-medium {
    padding: 70px 50px;
  }

  section.section-padding-medium.top {
    padding: 70px 50px 0px;
  }

  section.section-padding-medium.bottom {
    padding: 0px 50px 70px;
  }

  section.section-padding-small {
    padding: 40px 50px;
  }

  section.section-padding-small.top {
    padding: 40px 50px 0px;
  }

  section.section-padding-small.bottom {
    padding: 0px 50px 40px;
  }

  section.section-padding-left-right {
    padding: 0px 50px 0px;
  }

  /* COLUMN PADDING */
  section .text-col.left {
    padding-right: 0px;
  }

  section .text-col.right {
    padding-left: 0px;
  }


/* IPAD TEXT */

  body {
    font-family: 'Sofia Pro', sans-sans-serif !important;
    font-size: 18px !important;
    font-weight: normal;
  }

  h1.elementor-heading-title {
    font-size: 35px;
    font-weight: 600;
  }

  .big h2.elementor-heading-title {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2em;
  }

  h2.elementor-heading-title {
    font-size: 25px;
    font-weight: 600;
  }

  h3.elementor-heading-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
  }

  h4.elementor-heading-title {
    font-size: 20px;
    font-weight: bold;
  }

  h6.elementor-heading-title {
    font-size: 16px;
    font-weight: 600;
  }

  .i {
    font-style: italic;
  }


  /* TEXT MARGINS */

  h1.elementor-heading-title {
    margin-bottom: 30px;
  }

  h2.elementor-heading-title {
    margin-bottom: 22px;
  }

  .small-text span {
    font-size: 16px;
    font-weight: normal;
  }

  /* SECTION PADDING */
  section.section-padding-large {
    padding: 50px 30px;
  }

  section.section-padding-large.top {
    padding: 50px 30px 0px;
  }

  section.section-padding-large.bottom {
    padding: 0px 30px 50px;
  }

  section.section-padding-medium {
    padding: 40px 30px;
  }

  section.section-padding-medium.top {
    padding: 40px 30px 0px;
  }

  section.section-padding-medium.cta {
    padding: 0;
  }

  section.section-padding-medium.bottom {
    padding: 0px 30px 40px;
  }

  section.section-padding-small {
    padding: 20px 30px;
  }

  section.section-padding-small.top {
    padding: 20px 30px 0px;
  }

  section.section-padding-small.bottom {
    padding: 0px 30px 20px;
  }

  section.section-padding-left-right {
    padding-left: 30px;
    padding-right: 30px;
  }

  /* MARGINS */
  .margin-large {
    margin-bottom: 30px !important;
  }

  .margin-medium {
    margin-bottom: 20px !important;
  }

  .margin-small {
    margin-bottom: 10px !important;
  }

  /* GENERAL */

  .bubble-wrap {
    zoom: 0.6 !important;
    -moz-transform: scale(0.6) !important;
  }

.big-tom,
.tom-box {
  display: none !important;
}

}

@media (max-width: 767px) {

  .hide-mobile {
    display: none !important;
  }

  section.section-padding-medium {
    padding: 20px 20px;
  }

  section.section-padding-medium.top {
    padding: 20px 20px 0px;
  }

  section.section-padding-medium.cta {
    padding: 0;
  }

  section.section-padding-medium.bottom {
    padding: 0px 20px 20px;
  }

}
