body,
html {
    color: #000000;
    font-family: "Roboto", sans-serif;
    height: 100%;
    letter-spacing: 0.025rem;
}

.video-background-holder {
    padding: 0;
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

.video-background-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-background-holder-small video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-background-content {
  position: relative;
  z-index: 2;
}

.video-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(45, 49, 66, 0.98);
  opacity: 0.5;
  z-index: 1;
}

.card-title-slab {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    line-height: 2rem;
}


/*
* Button size
*/

.btn-extra-small {
    font-size: 0.625rem;
    padding: 0.625rem 0.75rem 0.5rem;
    margin-right: 0.75rem;
}
.btn-extra-small.btn-icon {
    height: 30px;
    line-height: 31px;
    width: 30px;
}
.btn-small {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    margin-right: 0.75rem;
    border-radius: 1.2rem;
}
.btn-small.btn-icon {
    height: 35px;
    line-height: 36px;
    width: 35px;
}
.btn-medium {
    font-size: 0.875rem;
    padding: 0.75rem 1.375rem;
    border-radius: 1.5rem;
}
.btn-medium.btn-icon {
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.btn-large {
    font-size: 1rem;
    padding: 1.125rem 1.875rem;
    border-radius: 2rem;
}
.btn-large.btn-icon {
    height: 56px;
    line-height: 57px;
    width: 56px;
}
.btn-extra-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.188rem;
}
.btn-extra-large.btn-icon {
    height: 62px;
    line-height: 64px;
    width: 62px;
}

/*
* Button color - Hover
*/

.btn-hover-magenta:hover {
    background-color: #c90060 !important;
}

header .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
    position: relative;
    text-transform: uppercase;
}

/*
* Header & Navigation
*/

header,
header .navbar-header,
header .navbar-brand img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
header .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    position: relative;
    text-transform: uppercase;
}
header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    height: 80px;
    position: relative;
    width: 100%;
    z-index: 1020;
}
header .navbar {
    padding: 0;
}
header .navbar-header {
    height: 80px;
    width: 100%;
}
header .navbar-brand {
    display: block;
    height: 100%;
    position: relative;
}
header .navbar-brand img {
    position: absolute;
    left: 0;
    height: 46px;
    top: 17px;
}
header .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    position: absolute;
    right: 15px;
    top: 20px;
}
header .navbar-toggler-icon {
    background-image: url("../img/navbar-toggler-dark.svg");
}
header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}
header .navbar-nav .nav-link:hover {
    color: white;
}
header.header-dark {
    background-color: rgba(45, 49, 66);
}
header.header-dark .navbar-wrapper {
    background-color: rgba(45, 49, 66);
}
header.header-light {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
header.header-light .navbar-wrapper {
    background-color: rgba(255, 255, 255, 0.98);
}
header.header-light .navbar-brand .logo-text-dark {
    opacity: 1;
}
header.header-light .navbar-brand .logo-text-light {
    opacity: 0;
}
header.header-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.5);
}
header.header-light .navbar-toggler-icon {
    background-image: url("../img/navbar-toggler-light.svg");
}
header.header-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.9);
}

header .navbar-nav .nav-link.active:before {
    background-color: white !important;
}

header .navbar-nav .nav-link:hover {
    color: #ff006c !important;
}


.text-medium {
    font-size: 1.4rem !important;
    line-height: 1.8rem !important;
}

/*
* Section
*/

section {
    padding: 40px 0;
}

.courier-para {
    font-size: 1.55rem;
    line-height: 2.2rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}
.courierParaBold {
    font-size: 1.55rem;
    line-height: 2.2rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 700;
}
.courier-para-big {
    font-size: 3rem;
    line-height: 3.6rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}

.grey-life-logo {
    color: #a0a0a0;
    font-size: 3em;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}

.text-base-color {
    color: #ff006c;
}

#terms {
    margin-top: 60px;

}

.bc-light: {
    background-color: #c6d8d3 !important;
}

.card {
    border: 1px solid rgba(0,0,0,.125);
}

.card {
    border-radius: 0;
}
.card-img-top {
    border-radius: 0;
}
.card-img-top {
    border: 0;
}

.modal-content {
    border-radius: 0;
}

.modal-header {
    padding: 0;
    margin: 0;
}

/*
* Responsive
*/

@media (max-width: 575px) {

/*
* Text size
*/

.text-lg-extra-small {
    font-size: 0.625rem !important;
    line-height: 0.9375rem !important;
}
.text-lg-small {
    font-size: 0.75rem !important;
    line-height: 1.125rem !important;
}
.text-lg-medium {
    font-size: 0.875rem !important;
    line-height: 1.313rem !important;
}
.text-lg-large {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-lg-extra-large {
    font-size: 1.125rem !important;
    line-height: 1.688rem !important;
}
.title-lg-small {
    font-size: 1.25rem !important;
    line-height: 1.875rem !important;
}
.title-lg-medium {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
}
.title-lg-large {
    font-size: 1.75rem !important;
    line-height: 2.275rem !important;
}
.title-lg-extra-large {
    font-size: 2.25rem !important;
    line-height: 2.925rem !important;
}
.title-lg-extra-large-2 {
    font-size: 2.75rem !important;
    line-height: 3.575rem !important;
}
.title-lg-extra-large-3 {
    font-size: 3.125rem !important;
    line-height: 4.062rem !important;
}
.title-lg-extra-large-4 {
    font-size: 4.375rem !important;
    line-height: 5.687rem !important;
}
.title-lg-extra-large-5 {
    font-size: 5rem !important;
    line-height: 6.5rem !important;
}
.title-lg-big {
    font-size: 6.25rem !important;
    line-height: 8.125rem !important;
}
.title-lg-big-2 {
    font-size: 7.75rem !important;
    line-height: 10.07rem !important;
}
.title-lg-big-3 {
    font-size: 9.375rem !important;
    line-height: 12.18rem !important;
}
.courier-xs {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}
.courier-B-xs {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 700;
}
.courier-para-big {
    font-size: 1.75rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}

.smaller-icons {
    font-size: 1.2rem !important;
    line-height: 1.4rem !important;
}

/*
* Width and height
*/

.w-lg-25 {
    width: 25% !important;
}
.w-lg-50 {
    width: 50% !important;
}
.w-lg-75 {
    width: 75% !important;
}
.w-lg-100 {
    width: 100% !important;
}
.h-lg-25 {
    height: 25% !important;
}
.h-lg-50 {
    height: 50% !important;
}
.h-lg-75 {
    height: 75% !important;
}
.h-lg-100 {
    height: 100% !important;
}
}


@media (max-width: 767px) {
    
/*
* Button size
*/

.btn-sm-extra-small {
    font-size: 0.625rem;
    padding: 0.625rem 0.75rem 0.5rem;
    margin-right: 0.75rem;
}
.btn-sm-extra-small.btn-icon {
    height: 30px;
    line-height: 31px;
    width: 30px;
}
.btn-sm-small {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    margin-right: 0.75rem;
}
.btn-sm-small.btn-icon {
    height: 35px;
    line-height: 36px;
    width: 35px;
}
.btn-sm-medium {
    font-size: 0.875rem;
    padding: 0.75rem 1.375rem;
}
.btn-sm-medium.btn-icon {
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.btn-sm-large {
    font-size: 1rem;
    padding: 1.125rem 1.875rem;
}
.btn-sm-large.btn-icon {
    height: 56px;
    line-height: 57px;
    width: 56px;
}
.btn-sm-extra-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.188rem;
}
.btn-sm-extra-large.btn-icon {
    height: 62px;
    line-height: 64px;
    width: 62px;
}


/*
* Border
*/

.border-sm {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-sm-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-sm-right {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.border-sm-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-sm-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.border-sm-thick {
    border-width: 2px !important;
}
.border-sm-medium-thick {
    border-width: 3px !important;
}
.border-sm-extra-thick {
    border-width: 4px !important;
}
.border-sm-top-0 {
    border-top: 0 !important;
}
.border-sm-right-0 {
    border-right: 0 !important;
}
.border-sm-bottom-0 {
    border-bottom: 0 !important;
}
.border-sm-left-0 {
    border-left: 0 !important;
}
.border-sm-x-0 {
    border-left: 0 !important;
    border-right: 0 !important;
}
.border-sm-y-0 {
    border-bottom: 0 !important;
    border-top: 0 !important;
}
.border-sm-0 {
    border: 0 !important;
}


/*
* Gallery - Grid & gutter
*/

.gallery-grid {
    margin-left: -11px !important;
}
.gallery-grid .item {
    padding: 0 0 11px 11px !important;
}


/*
* Position
*/

.position-sm-absolute {
    position: absolute !important;
}
.position-sm-fixed {
    position: fixed !important;
}
.position-sm-relative {
    position: relative !important;
}


/*
* Text size
*/

.text-sm-extra-small {
    font-size: 0.625rem !important;
    line-height: 0.9375rem !important;
}
.text-sm-small {
    font-size: 0.75rem !important;
    line-height: 1.125rem !important;
}
.text-sm-medium {
    font-size: 0.875rem !important;
    line-height: 1.313rem !important;
}
.text-sm-large {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-sm-extra-large {
    font-size: 1.125rem !important;
    line-height: 1.688rem !important;
}
.title-sm-small {
    font-size: 1.25rem !important;
    line-height: 1.875rem !important;
}
.title-sm-medium {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
}
.title-sm-large {
    font-size: 1.75rem !important;
    line-height: 2.275rem !important;
}
.title-sm-extra-large {
    font-size: 2.25rem !important;
    line-height: 2.925rem !important;
}
.title-sm-extra-large-2 {
    font-size: 2.75rem !important;
    line-height: 3.575rem !important;
}
.title-sm-extra-large-3 {
    font-size: 3.125rem !important;
    line-height: 4.062rem !important;
}
.title-sm-extra-large-4 {
    font-size: 4.375rem !important;
    line-height: 5.687rem !important;
}
.title-sm-extra-large-5 {
    font-size: 5rem !important;
    line-height: 6.5rem !important;
}
.title-sm-big {
    font-size: 6.25rem !important;
    line-height: 8.125rem !important;
}
.title-sm-big-2 {
    font-size: 7.75rem !important;
    line-height: 10.07rem !important;
}
.title-sm-big-3 {
    font-size: 9.375rem !important;
    line-height: 12.18rem !important;
}
.courier-m {
    font-size: 1.35rem;
    line-height: 1.8rem
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}
.courier-B-m {
    font-size: 1.35rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 700;
}

/*
* Width and height
*/

.w-sm-25 {
    width: 25% !important;
}
.w-sm-50 {
    width: 50% !important;
}
.w-sm-75 {
    width: 75% !important;
}
.w-sm-100 {
    width: 100% !important;
}
.h-sm-25 {
    height: 25% !important;
}
.h-sm-50 {
    height: 50% !important;
}
.h-sm-75 {
    height: 75% !important;
}
.h-sm-100 {
    height: 100% !important;
}
}


@media (max-width: 991px) {
    
/*
* Button size
*/

.btn-md-extra-small {
    font-size: 0.625rem;
    padding: 0.625rem 0.75rem 0.5rem;
    margin-right: 0.75rem;
}
.btn-md-extra-small.btn-icon {
    height: 30px;
    line-height: 31px;
    width: 30px;
}
.btn-md-small {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    margin-right: 0.75rem;
}
.btn-md-small.btn-icon {
    height: 35px;
    line-height: 36px;
    width: 35px;
}
.btn-md-medium {
    font-size: 0.875rem;
    padding: 0.75rem 1.375rem;
}
.btn-md-medium.btn-icon {
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.btn-md-large {
    font-size: 1rem;
    padding: 1.125rem 1.875rem;
}
.btn-md-large.btn-icon {
    height: 56px;
    line-height: 57px;
    width: 56px;
}
.btn-md-extra-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.188rem;
}
.btn-md-extra-large.btn-icon {
    height: 62px;
    line-height: 64px;
    width: 62px;
}


/*
* Border
*/

.border-md {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-md-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-md-right {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.border-md-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-md-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.border-md-thick {
    border-width: 2px !important;
}
.border-md-medium-thick {
    border-width: 3px !important;
}
.border-md-extra-thick {
    border-width: 4px !important;
}
.border-md-top-0 {
    border-top: 0 !important;
}
.border-md-right-0 {
    border-right: 0 !important;
}
.border-md-bottom-0 {
    border-bottom: 0 !important;
}
.border-md-left-0 {
    border-left: 0 !important;
}
.border-md-x-0 {
    border-left: 0 !important;
    border-right: 0 !important;
}
.border-md-y-0 {
    border-bottom: 0 !important;
    border-top: 0 !important;
}
.border-md-0 {
    border: 0 !important;
}


/*
* Features Block
*/

.features-block:before {
    display: none;
}


/*
* Gallery - Grid & gutter
*/

.gallery-grid {
    margin-left: -22px !important;
}
.gallery-grid .item {
    padding: 0 0 22px 22px !important;
    width: 50% !important;
}


/*
* Header & Navigation
*/

header .container {
    max-width: none;
}
header .navbar {
    width: 100%;
}
header .navbar-wrapper {
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
}
header .navbar-collapse {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}
header .navbar-nav .nav-link {
    padding: 0.625rem 0.9375rem;
}


/*
* Position
*/

.position-md-absolute {
    position: absolute !important;
}
.position-md-fixed {
    position: fixed !important;
}
.position-md-relative {
    position: relative !important;
}


/*
* Text size
*/

.text-md-extra-small {
    font-size: 0.625rem !important;
    line-height: 0.9375rem !important;
}
.text-md-small {
    font-size: 0.75rem !important;
    line-height: 1.125rem !important;
}
.text-md-medium {
    font-size: 0.875rem !important;
    line-height: 1.313rem !important;
}
.text-md-large {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-md-extra-large {
    font-size: 1.125rem !important;
    line-height: 1.688rem !important;
}
.title-md-small {
    font-size: 1.25rem !important;
    line-height: 1.875rem !important;
}
.title-md-medium {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
}
.title-md-large {
    font-size: 1.75rem !important;
    line-height: 2.275rem !important;
}
.title-md-extra-large {
    font-size: 2.25rem !important;
    line-height: 2.925rem !important;
}
.title-md-extra-large-2 {
    font-size: 2.75rem !important;
    line-height: 3.575rem !important;
}
.title-md-extra-large-3 {
    font-size: 3.125rem !important;
    line-height: 4.062rem !important;
}
.title-md-extra-large-4 {
    font-size: 4.375rem !important;
    line-height: 5.687rem !important;
}
.title-md-extra-large-5 {
    font-size: 5rem !important;
    line-height: 6.5rem !important;
}
.title-md-big {
    font-size: 6.25rem !important;
    line-height: 8.125rem !important;
}
.title-md-big-2 {
    font-size: 7.75rem !important;
    line-height: 10.07rem !important;
}
.title-md-big-3 {
    font-size: 9.375rem !important;
    line-height: 12.18rem !important;
}
.courier-m2 {
    font-size: 1.45rem;
    line-height: 1.9rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}
.courier-B-m2 {
    font-size: 1.45rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 700;
}

/*
* Width and height
*/

.w-md-25 {
    width: 25% !important;
}
.w-md-50 {
    width: 50% !important;
}
.w-md-75 {
    width: 75% !important;
}
.w-md-100 {
    width: 100% !important;
}
.h-md-25 {
    height: 25% !important;
}
.h-md-50 {
    height: 50% !important;
}
.h-md-75 {
    height: 75% !important;
}
.h-md-100 {
    height: 100% !important;
}
}


@media (min-width: 768px) {
    
/*
* Section
*/

section {
    padding: 25px 0;
}
}


@media (max-width: 1199px) {
    
/*
* Button size
*/

.btn-lg-extra-small {
    font-size: 0.625rem;
    padding: 0.625rem 0.75rem 0.5rem;
    margin-right: 0.75rem;
}
.btn-lg-extra-small.btn-icon {
    height: 30px;
    line-height: 31px;
    width: 30px;
}
.btn-lg-small {
    font-size: 0.75rem;
    padding: 0.625rem 0.875rem;
    margin-right: 0.75rem;
}
.btn-lg-small.btn-icon {
    height: 35px;
    line-height: 36px;
    width: 35px;
}
.btn-lg-medium {
    font-size: 0.875rem;
    padding: 0.75rem 1.375rem;
}
.btn-lg-medium.btn-icon {
    height: 41px;
    line-height: 42px;
    width: 41px;
}
.btn-lg-large {
    font-size: 1rem;
    padding: 1.125rem 1.875rem;
}
.btn-lg-large.btn-icon {
    height: 56px;
    line-height: 57px;
    width: 56px;
}
.btn-lg-extra-large {
    font-size: 1.125rem;
    padding: 1.25rem 2.188rem;
}
.btn-lg-extra-large.btn-icon {
    height: 62px;
    line-height: 64px;
    width: 62px;
}


/*
* Border
*/

.border-lg {
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.border-lg-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border-lg-right {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.border-lg-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border-lg-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.border-lg-thick {
    border-width: 2px !important;
}
.border-lg-medium-thick {
    border-width: 3px !important;
}
.border-lg-extra-thick {
    border-width: 4px !important;
}
.border-lg-top-0 {
    border-top: 0 !important;
}
.border-lg-right-0 {
    border-right: 0 !important;
}
.border-lg-bottom-0 {
    border-bottom: 0 !important;
}
.border-lg-left-0 {
    border-left: 0 !important;
}
.border-lg-x-0 {
    border-left: 0 !important;
    border-right: 0 !important;
}
.border-lg-y-0 {
    border-bottom: 0 !important;
    border-top: 0 !important;
}
.border-lg-0 {
    border: 0 !important;
}


/*
* Position
*/

.position-lg-absolute {
    position: absolute !important;
}
.position-lg-fixed {
    position: fixed !important;
}
.position-lg-relative {
    position: relative !important;
}


/*
* Text size
*/

.text-lg-extra-small {
    font-size: 0.625rem !important;
    line-height: 0.9375rem !important;
}
.text-lg-small {
    font-size: 0.75rem !important;
    line-height: 1.125rem !important;
}
.text-lg-medium {
    font-size: 0.875rem !important;
    line-height: 1.313rem !important;
}
.text-lg-large {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}
.text-lg-extra-large {
    font-size: 1.125rem !important;
    line-height: 1.688rem !important;
}
.title-lg-small {
    font-size: 1.25rem !important;
    line-height: 1.875rem !important;
}
.title-lg-medium {
    font-size: 1.5rem !important;
    line-height: 2.25rem !important;
}
.title-lg-large {
    font-size: 1.75rem !important;
    line-height: 2.275rem !important;
}
.title-lg-extra-large {
    font-size: 2.25rem !important;
    line-height: 2.925rem !important;
}
.title-lg-extra-large-2 {
    font-size: 2.75rem !important;
    line-height: 3.575rem !important;
}
.title-lg-extra-large-3 {
    font-size: 3.125rem !important;
    line-height: 4.062rem !important;
}
.title-lg-extra-large-4 {
    font-size: 4.375rem !important;
    line-height: 5.687rem !important;
}
.title-lg-extra-large-5 {
    font-size: 5rem !important;
    line-height: 6.5rem !important;
}
.title-lg-big {
    font-size: 6.25rem !important;
    line-height: 8.125rem !important;
}
.title-lg-big-2 {
    font-size: 7.75rem !important;
    line-height: 10.07rem !important;
}
.title-lg-big-3 {
    font-size: 9.375rem !important;
    line-height: 12.18rem !important;
}
.courier-l {
    font-size: 1.55rem;
    line-height: 2rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 400;
}
.courier-B-l {
    font-size: 1.55rem;
    font-family: 'Courier Prime', monospace;
    font-style: normal;
    font-weight: 700;
}

/*
* Width and height
*/

.w-lg-25 {
    width: 25% !important;
}
.w-lg-50 {
    width: 50% !important;
}
.w-lg-75 {
    width: 75% !important;
}
.w-lg-100 {
    width: 100% !important;
}
.h-lg-25 {
    height: 25% !important;
}
.h-lg-50 {
    height: 50% !important;
}
.h-lg-75 {
    height: 75% !important;
}
.h-lg-100 {
    height: 100% !important;
}
}
