/*
  Colours:
    Dark Purple #402D6B
    Pink #FF325D

*/

html {
  scroll-padding-top: 96px;
}

html, body {
  /* Fix an issue with AOS animations causing white space down the right side of the page, see https://github.com/michalsnik/aos/issues/234 */
  /* Tried overflow-x:hidden but that caused the sticky menu to not be sticky, so used clip instead */
  overflow-x: clip;
}

p, li {
  font-size: 18px;
}

p, h1, h2, h3, h4, h5, h6, li {
  color: #4B5B6A;
}

.btn-weweb {
  color: #FFFFFF;
  background-color: #FF325D;
  border: 2px solid #FF325D;
  border-radius: 0;
}

.btn-weweb:hover {
  color: #FF325D;
  background-color: #FFFFFF;
  border: 2px solid #FF325D;
}

.nav-link.active {
  border-bottom: 4px solid #FF325D;
}

.highlight {
  color: #FF325D;
}

.underline {
  border-bottom: 4px solid #FF325D;
}

.navbar-nav .nav-link {
  font-size: 20px;
}

/* Footer */
footer {
  color: #FFFFFF;
  background-color: #402D6B;
  font-size: 16px;
}

footer .section {
  margin-bottom: 20px;
}

footer .section .bi{
  font-size: 50px;
  margin-right: 20px;
}

footer .section:last-of-type {
  margin-bottom: 0;
}

footer a {
  color: #FFFFFF;
  text-decoration: none;
}

.copyright {
  color: #FFFFFF;
  background-color: #1D0F3E;
  font-size: 80%;
}

/* Page header */
.page-header {
  display: inline-block;
}

.page-header div {
  color: #FFFFFF;
  font-size: 46px;
  margin-bottom: 5px;
}

.page-header div span {
  background-color: #FF325D;
  padding: 5px 10px;
  font-weight: bold;
}

.page-header p {
  color: #FFFFFF;
}

/* Typewriter */
.typewriter-container {
  font-size: 46px;
  color: #FF325D;
}

.txt-rotate::after {
  content: "|";
  display: inline;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Price cards */
.price-top {
  background-color: #FF325D;
  height:10px;
}

.price1 {
  font-size: 22px;
}

.price1 i {
  color: #FF325D
}

.price2 {
  font-size: 30px;
  font-weight: bold;
  color: #FF325D;
}

.price3 {
  font-size: 14px;
  border-bottom: 2px solid #FF325D;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.price-items {
  display: inline-block;
}

.card-footer {
  background-color: #FFFFFF;
  border-top: none;
}

/* Tabbable panes */
.nav-tabs {
  border-bottom: 1px solid #FF325D;
}

.nav-tabs .nav-link, .nav-tabs .nav-link.active {
  font-size: 18px;
  color: #4B5B6A;
  border-bottom: 1px solid #FF325D;
}

.nav-tabs .nav-link.active {
  font-weight: 400;
  border-bottom: 4px solid #FF325D !important;
}

/* Sections */
.dark-section {
  color: #FFFFFF;
  background-color: #402D6B;
}

.mid-section {
  background-color: #F1F4FF;
}

.light-section {
  background-color: #F9F9F9;
}

.section-header {
  display: inline-block;
}

.section-header .stars {
  color: #FF325D;
  font-size: 40px;
}

/* Forms */
.form-error, .form-success {
  color: #FFFFFF;
  background-color: #4FB932;
  padding: 10px;
}

.form-error {
  background-color: #CE3838;
}

.attempted-submit .field-error {
  outline: 1px solid #CE3838;
}

/* Templates */
.template {
  padding: 32px;
  background-color: #F9F9F9;
}

/* AOS */
@media screen and (max-width: 480px) {
  /* We don't want to do AOS animation on phones, so the below stops that */
  .disable-aos-mobile [data-aos], .disable-aos-mobile[data-aos] {
    /* Turn off CSS transitions */
    opacity: 1 !important;
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -o-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}
