html, body, div, span, applet, object, iframe,
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height         : 1;
    -webkit-user-select : none;
    -ms-user-select     : none;
    user-select         : none;
}
.selectable {
    -webkit-user-select : text;
    -ms-user-select     : text;
    user-select         : text;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html, body {
    height: 100%;
    width:  100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 2em;
}

a:link {
    color: inherit;
    cursor: pointer;
}
a:visited {
    color: inherit;
    cursor: pointer;
}

a.red-link:link {
    color: #CC0000;
    cursor: pointer;
}
a.red-link:visited {
    color: #CC0000;
    cursor: pointer;
}
a.red-link:hover {
    color: #990000;
}

a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}
a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    cursor: pointer;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.pl-6 {
    padding-left: 6rem!important;
}
.pr-6 {
    padding-right: 6rem!important;
}
.pl-7 {
    padding-left: 12rem!important;
}
.pr-7 {
    padding-right: 12rem!important;
}
.pl-8 {
    padding-left: 24rem!important;
}
.pr-8 {
    padding-right: 24rem!important;
}
.rounded-4 {
    border-radius: 1rem!important;
}
.cursor-pointer {
    cursor: pointer;
}
.text-justify {
    text-align : justify;
}

.social-mr {
    margin-right: 0.5em;
}

@media screen and (max-width: 1280px) {
    
    .social-link {
        font-size: 40px;
    }
}

/* Jumbotron */
.jumbotron {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.jumbotron-text-container {
    position: relative;
    top: 35%;
}
/* END Jumbotron */

/* Buttons */
.btn-cta-fill {
    border-radius: 0.5em;
    border: none;
    background-color: #CC0000;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding:  0.6em;
}
.btn-cta-outline {
    border-radius: 0.5em;
    border: 1px solid #CC0000;
    background-color: #FFFFFF;
    color: #CC0000;
    padding:  0.6em;
    transition: background-size .4s, color .4s, box-shadow .4s;
}
.btn-cta-outline:hover {
    background-color: #CC0000;
    color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
/* END Buttons */

/* Validation */
.invalid-input-text {
    border: 1px solid #CC0000;
}
.feedback {
    font-size: 0.8em;
    visibility: hidden;
}
.feedback-invalid {
    visibility: visible;
    color:  #CC0000;
}
.feedback-valid {
    visibility: visible;
    color: #00CC00;
}
/* END Validation */

/* Glyphs */
.btn-glyphicon {
  position: relative;
  padding: 3px;
  /*background: #ffffff;*/
  margin-right: 4px;
  border-radius: 50px;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  vertical-align: middle !important;
  align-items: center;
}

.btn-glyphicon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* END Glyphs */

/* Form */
.icon-input {
    padding-left: 35px!important;
 }
 
.icon-inside {
    position:relative;
}

.icon-inside i {
    position: absolute;
    left: 0;
    top: 1px;
    padding: 10px 10px;
}
/* END Form */

.text-justify {
    text-align : justify;
}

/* Hide body initially */
body {
    opacity    : 0;
    transition : opacity 0.5s ease-in;
}
body.fade-in {
    opacity : 1;
}

/* Overlay scrollbar to nate take page space */
body {
    overflow-y      : scroll;
    scrollbar-width : thin; /* Firefox */
    /*padding-right : 10px;    Compensate for scrollbar overlaying content */
}

/* WebKit browsers */
body::-webkit-scrollbar {
    width    : 8px;
    position : absolute; /* Doesn’t actually affect layout */
}

body::-webkit-scrollbar-track {
    background    : transparent;
    border-radius : 10px;
}

body::-webkit-scrollbar-thumb {
    background-color : rgba(0, 0, 0, 0.4);
    border-radius    : 4px;
}