body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.ts-side-panel-active .ts-side-panel {
    transform: translateX(0%);
}

body.ts-side-panel-active .ts-page-wrapper {
    transform: translateX(-100%);
}

body.ts-theme-light .ts-shapes-canvas:after {
    opacity: .1;
}

body.ts-theme-light p {
    color: rgba(25, 25, 25, .6);
}

body.ts-theme-light h2 {
    border-bottom-color: rgba(25, 25, 25, .1);
}

body.ts-theme-light .ts-social-icons a {
    color: #191919;
    opacity: .6;
}

body.ts-theme-light .ts-social-icons a:hover {
    opacity: 1;
}

body.ts-theme-dark {
    color: #fff;
    background-color: #191919;
}

body.ts-theme-dark p {
    color: rgba(255, 255, 255, .6);
}

body.ts-theme-dark .form-control {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .2);
}

body.ts-theme-dark .form-control:focus {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .4);
}

body.ts-theme-dark .ts-social-icons a {
    color: #fff;
    opacity: .6;
}

body.ts-theme-dark .ts-social-icons a:hover {
    opacity: 1;
}

body, html {
    height: 100%;
}

html {
    font-size: 80%;
}

h1 {
    font-weight: 400;
    font-size: 1.875rem;
}

h2 {
    font-weight: 500;
    font-size: 1.25rem;
}

h3 {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-weight: 500;
    margin-bottom: 1.875rem;
}

h5 {
    font-size: 1rem;
    font-weight: 500;
}

h6 {
    font-size: .9375rem;
}

/* NEW */

/***********************************************************************************************************************
B. Helpers
***********************************************************************************************************************/

/*-------------------------------------------
  -- Animations
-------------------------------------------*/

[data-animate] {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

/* Fade In Up */

@keyframes ts-fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInUp {
    animation-name: ts-fadeInUp;
}

/* Fade In Down */

@keyframes ts-fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -1.25rem, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInDown {
    animation-name: ts-fadeInDown;
}

/* Fade In Left */

@keyframes ts-fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInLeft {
    animation-name: ts-fadeInLeft;
}

/* Fade In Right */

@keyframes ts-fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(1.25rem, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.ts-fadeInRight {
    animation-name: ts-fadeInRight;
}

/* Zoom In */

@keyframes ts-zoomIn {
    from {
        opacity: 0;
        transform: scale(.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-zoomIn {
    animation-name: ts-zoomIn;
}

/* Zoom In Short */

@keyframes ts-zoomInShort {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ts-zoomInShort {
    animation-name: ts-zoomInShort;
}

/****** Animate Shapes ******/

.ts-animate {
    animation-iteration-count: infinite;
    animation-duration: 5s;
}

/* Bounce */

@keyframes ts-bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(2.5rem);
    }

    100% {
        transform: translateY(0);
    }
}

.ts-bounce {
    animation-name: ts-bounce;
    animation-timing-function: ease-in-out;
}

/* Scale */

@keyframes ts-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.ts-scale {
    animation-name: ts-scale;
    animation-timing-function: ease-in-out;
}



/*-------------------------------------------
  -- Background
-------------------------------------------*/

[data-bg-image] {
    background-size: cover;
    background-position: 50%;
}

.ts-background {
    bottom: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    position: absolute;
    width: 100%;
    z-index: -2;
}

.ts-background .ts-background {
    height: 100%;
    width: 100%;
}

.ts-background-image, .ts-img-into-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    height: 100%;
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ts-background-image img, .ts-img-into-bg img {
    display: none;
}

.ts-background-original-size {
    background-size: inherit;
}

.ts-background-size-cover {
    background-size: cover;
}

.ts-background-size-contain {
    background-size: contain;
}

.ts-background-repeat-x {
    background-repeat: repeat-x;
}

.ts-background-repeat-y {
    background-repeat: repeat-y;
}

.ts-background-repeat-repeat {
    background-repeat: repeat;
    background-size: inherit;
}

.ts-background-position-top {
    background-position: top;
}

.ts-background-position-center {
    background-position: center;
}

.ts-background-position-bottom {
    background-position: bottom;
}

.ts-background-particles {
    height: 120%;
    left: 0;
    margin-left: -10%;
    margin-top: -10%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 120%;
    z-index: 1;
}

.ts-background-is-dark {
    color: #fff;
}

.ts-background-is-dark .form-control {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .2);
}

.ts-background-is-dark .form-control:focus {
    box-shadow: 0 0 0 .125rem rgba(255, 255, 255, .4);
}

.ts-background-is-dark .ts-btn-border-muted {
    border-color: rgba(255, 255, 255, .1);
}



/*-------------------------------------------
  -- Page
-------------------------------------------*/

.ts-page-wrapper {
    height: 100%;
    transition: 1s cubic-bezier(.77, 0, .18, 1);
}

.ts-page-wrapper > .container {
    display: table;
    height: 100%;
}

#header, #footer {
    display: table-row;
    height: .0625rem;
}

#header {
    vertical-align: top;
}

#header .navbar {
    padding-left: 0;
    padding-right: 0;
}

#main-content {
    display: table;
    height: 100%;
    width: 100%;
}

#main-content .ts-content-wrapper {
    display: table-cell;
    vertical-align: middle;
}

#main-content .ts-content-wrapper > .row {
    width: 100%;
}

#footer {
    vertical-align: bottom;
}

/*-------------------------------------------
  -- Partners
-------------------------------------------*/

.ts-partners a {
    display: block;
    padding: .625rem .3125rem;
}

/*-------------------------------------------
  -- Plugins
-------------------------------------------*/

.tv-site-widget {
    border: none !important;
}

iframe div {
    border: none;
}

/*-------------------------------------------
  -- Other
-------------------------------------------*/

.ts-hero-slider {
    height: 100% !important;
}

.ts-hero-slider div {
    height: 100% !important;
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-80%);
    }

    html {
        font-size: 85%;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.375rem;
    }

    .ts-column-count-sm-1 {
        column-count: 1;
    }

    .ts-column-count-sm-2 {
        column-count: 2;
    }

    .ts-column-count-sm-3 {
        column-count: 3;
    }

    .ts-column-count-sm-4 {
        column-count: 4;
    }

    .ts-promo-numbers h2 {
        font-size: 2.375rem;
    }

    .ts-count-down {
        font-size: 3.125rem;
    }

    .ts-count-down .ts-cc-description {
        font-size: .625rem;
    }

    .ts-side-panel {
        padding: 1.25rem;
        width: 80%;
    }
}

@media (min-width: 48rem) and (max-width: 61.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-70%);
    }

    html {
        font-size: 90%;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .ts-column-count-md-1 {
        column-count: 1;
    }

    .ts-column-count-md-2 {
        column-count: 2;
    }

    .ts-column-count-md-3 {
        column-count: 3;
    }

    .ts-column-count-md-4 {
        column-count: 4;
    }

    .ts-promo-numbers h2 {
        font-size: 2.5rem;
    }

    .ts-count-down {
        font-size: 3.125rem;
    }

    .ts-count-down .ts-cc-description {
        font-size: .75rem;
    }

    .ts-side-panel {
        padding: 1.5rem;
        width: 70%;
    }
}

@media (min-width: 62rem) and (max-width: 74.9375rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-60%);
    }

    html {
        font-size: 95%;
    }

    h1 {
        font-size: 2.375rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .ts-column-count-lg-1 {
        column-count: 1;
    }

    .ts-column-count-lg-2 {
        column-count: 2;
    }

    .ts-column-count-lg-3 {
        column-count: 3;
    }

    .ts-column-count-lg-4 {
        column-count: 4;
    }

    .ts-block {
        padding-bottom: 6.25rem;
        padding-top: 6.25rem;
    }

    .ts-card__image {
        height: 12.5rem;
    }

    .ts-promo-numbers h2 {
        font-size: 2.75rem;
    }

    .ts-count-down {
        font-size: 3.75rem;
    }

    .ts-count-down .ts-cc-description {
        font-size: 1.125rem;
    }

    .ts-side-panel {
        padding: 1.75rem;
        width: 60%;
    }
}

@media (min-width: 75rem) {
    body.ts-side-panel-active .ts-page-wrapper {
        transform: translateX(-50%);
    }

    html {
        font-size: 100%;
    }

    h1 {
        font-size: 2.625rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.1875rem;
    }

    .ts-column-count-xl-1 {
        column-count: 1;
    }

    .ts-column-count-xl-2 {
        column-count: 2;
    }

    .ts-column-count-xl-3 {
        column-count: 3;
    }

    .ts-column-count-xl-4 {
        column-count: 4;
    }

    .ts-block {
        padding-bottom: 8.125rem;
        padding-top: 8.125rem;
    }

    .ts-card__image {
        height: 15.625rem;
    }

    .navbar.navbar-expand-xl .ts-background {
        opacity: 0;
    }

    .ts-promo-numbers h2 {
        font-size: 3rem;
    }

    .ts-count-down {
        font-size: 4.375rem;
    }

    .ts-count-down .ts-cc-description {
        font-size: 1.125rem;
    }

    .ts-carousel-centered .owl-nav .owl-next {
        right: 5rem;
    }

    .ts-carousel-centered .owl-nav .owl-prev {
        left: 5rem;
    }

    .floated form {
        padding: 2.5rem 5rem;
    }

    .ts-side-panel {
        padding: 2rem;
        width: 50%;
    }
}

@media (max-width: 35.9375rem) {
    h1 {
        margin-bottom: 1.25rem;
    }

    [class*="ts-column-count-"] {
        column-count: 1;
    }

    .ts-xs-text-center {
        text-align: center !important;
    }

    .ts-promo-numbers h2 {
        font-size: 2.25rem;
    }

    .ts-promo-number {
        margin-bottom: 1.875rem;
    }
}

@media (min-width: 36rem) and (max-width: 61.9375rem) {
    h1 {
        margin-bottom: 1.25rem;
    }

    .ts-title {
        margin-bottom: 1.875rem;
    }

    .ts-block-inside {
        padding: 2.5rem;
    }
}

@media (min-width: 62rem) {
    h1 {
        margin-bottom: 1.875rem;
    }

    .ts-title {
        margin-bottom: 2.5rem;
    }

    .ts-block-inside {
        padding: 3.75rem;
    }

    .navbar.navbar-expand-lg .ts-background {
        opacity: 0;
    }

    .floated {
        position: absolute;
    }
}

@media (min-width: 48rem) {
    h4 {
        font-size: 1.0625rem;
    }

    .navbar.navbar-expand-md .ts-background {
        opacity: 0;
    }
}

@media (max-width: 61.9375rem) {
    .ts-card__image {
        height: 15.625rem;
    }
}

@media (min-width: 36rem) {
    .navbar.navbar-expand-sm .ts-background {
        opacity: 0;
    }

    .ts-carousel-centered .owl-nav .owl-next {
        right: 2.5rem;
    }

    .ts-carousel-centered .owl-nav .owl-prev {
        left: 2.5rem;
    }

    .ts-side-panel .ts-close-side-panel {
        top: 1.25rem;
    }
}
