/* ============================================================================ 
  DEFAULT CSS
============================================================================ */
/*
  DEBUG
*/
pre {
  display: block;
  font-size: 87.5%;
  color: #fff;
}

/*
  Top styles
*/
body, html {
  margin: 0%;
  padding: 0%;
}
body {
  color: #333333;
}

/* a tags, links, urls */
a, a:visited {
  color: #333333;;
  transition: all .3s ease-in;
}

/*
  Buttons
*/
.btn {
  border-radius: 2rem;
}

.btn-primary {
  background-color: #3D6CFE;
  border-color: #3D6CFE;
  color: #fff;
  transition: all .5s ease-in;
}

.btn-primary:hover {
  background-color: #B10DC9;
  border-color: #B10DC9;
}

.btn-primary:active {
  background-color: #B10DC9;
  border-color: #B10DC9;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  border-color: #B10DC9;
  background-color: #B10DC9;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 43, 139, 0.3);
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(13, 43, 139, 0.3);
}

.btn-primary:focus {
  border-color: #B10DC9;
    background-color: #B10DC9;
}

.btn-cookie {
  font-size: .9em;
  line-height: inherit;
  padding: 0.275rem 0.55rem;
}

/* ============================================================================ 
  WordPress classes
============================================================================ */
.page__main .page-content {
  padding-top: 2em;
  padding-bottom: 3em;
  max-width: 1050px;
  margin: auto;
}

@media only screen and (min-width: 769px) {
  .page__main .page-content {
    padding-top: 3em;
    padding-bottom: 15em;
  }
}



/* ============================================================================ 
  SPAN TEXT STYLES
============================================================================ */
.span-violet-text {
  color: #FF11E9;
}
.span-orange-text {
  color: #FF4C33;
}
.span-yellow-text {
  color: #FFC011;
}
.span-blue-text {
  color: #88D8FF;
}


/* ============================================================================ 
  J-BOOTSTRAP
============================================================================ */
/*
  Mobile Queries
*/
@media only screen and (min-width: 768px) {
  .hide-in__desktop {
    display: none!important;
  }
}

@media only screen and (max-width: 768px) {
  .hide-in__phone {
    display: none!important;
  }
}
/* 
  Smartphones, touchscreens Queries
*/
/* Touch screen */
@media (pointer: coarse) {
  .hide-in__touchable-screen {
    display: none!important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .hide-in__touchable-screen {
    display: none!important;
  }
}

/* Not touchable screen */
@media (hover: hover) and (pointer: fine) {
  .hide-in__click-screen {
    display: none!important;
  }
}



/* ============================================================================ 
  Media queries
============================================================================ */
/* 
  Desktop
*/
@media only screen and (min-width: 769px) {
  section, .section-bg {
    min-height: 750px;
  }
}


