/* Variables */

:root {
    --main-color: #10042c;
    --action-color: red;
    --action-color-secondary: #fe434b;
    --regular-color: #898989;
    --regular-color-secondary: #8e8e8e;
    --text-max-width-large: 700px;

    --light-gray: #fcfcfc;

    --spacing-large: 96px;
    --spacing-medium: 64px;
    --spacing-small: 32px;
    --spacing-x-small: 16px;
}

.text-white { /* Useful when links should be white on dark backgrounds */
    color: white;
}
.top-buffer {
    margin-top: var(--spacing-medium);
}
.bottom-buffer {
    margin-bottom: var(--spacing-medium);
}

/***********/
/* Widgets */
/***********/

/* app-showcase */
.app-showcase {
    background-color: white;
    padding-bottom: var(--spacing-large);
    text-align: center;
}
.app-showcase .row {
    padding: var(--spacing-medium) 0;
}
.app-showcase a {
    margin-bottom: var(--spacing-medium);
}

/* colored-columns */
.colored-columns {
    padding: var(--spacing-medium) 0;
    text-align: center;
}
.colored-columns i {
    margin-top: var(--spacing-small);
    margin-bottom: var(--spacing-x-small);
    color: white;
}
.colored-columns p {
    margin: calc(-1 * var(--spacing-medium)) auto var(--spacing-medium) auto;
}
.colored-columns .row p {
    margin-top: var(--spacing-x-small);
    margin-bottom: var(--spacing-small);
}
.colored-columns h2 {
    padding-bottom: var(--spacing-medium);
    text-align: center;
}
.colored-columns a {
    margin: var(--spacing-medium) auto var(--spacing-small) auto;
}

/* parallax */
.parallax-container {
  clear: both;
  position: relative;
  width:100%;
  overflow: hidden;
  transition: 0.5s ease;
  z-index: 9000; height: 800px;
}
.parallax-container img {
  max-width: 100%;
}
.parallax-container .appear {
    background: rgba(0, 0, 0, 0.5);
}
.parallax-container .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    /* top property could be set programmatically */
    top: 100px;
    left: 0;
    z-index: 1;
    opacity: 0;
    /*background: rgba(0, 0, 0, 0.5);*/
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: 0.5s ease;
}
.parallax-container[data-mask="on"]:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    background: transparent;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
}
.parallax-container[data-mask="on"].appear:before {
    background: rgba(0, 0, 0, 0.5);
}
.parallax-container[data-mask="on"] .mask {
    color: white;
}
.parallax-container[data-mask="off"] .mask {
    background: transparent;
}
.scroll-action:visited,
.scroll-action:active
{
    color: var(--action-color);
}
.scroll-action:hover {
     color: var(--action-color-secondary);
}
.scroll-action {
    display: inline-block;
    padding: 0 15px;
}

/* Common */
body {
    font-family: "Avenir Next", "Arial" !important;
    color: var(--main-color);
    overflow-x: hidden;
}
h1 {
    font-size: 44px;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}
h2 {
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}
h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}
h4 {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
}
sup {
    font-weight: 100;
    font-size: 10px;
}
a {
    color: var(--action-color);
    font-size: 21px;
    font-weight: 600;
}
p a {
    font-size: 18px;
}
p a:hover {
    color: #f3807b;
}
ul, ol, li, p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
}
p {
    margin-bottom: 25px;
}
a.white {
    color: white;
    border-color: white;
}
a:hover.white {
    color: white;
    border-color: white;
}
a:hover {
    color: var(--action-color-secondary);
    text-decoration: none;
}
.vertical-align {
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(100px, 1fr));
  grid-gap: 40px;
}
.dev {
    height: auto;
    text-align: center;
    flex-direction: column-reverse;
    padding: 40px 20px;
    min-height: 0;
    position: relative;
    padding-bottom: 90px;
    padding-top: 90px;
}

.modal-content iframe {
    margin: 0 auto;
    display: block;
}

.main-col.row .col-md-4 {
    background-color: var(--main-color);
    border: 5px solid white;
}
.main-col.row .col-md-4 p {
    font-size: 14px;
    color: white;
}
.main-col.row .col-md-4 img {
    max-width: 64px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.main-col.row .col-md-4 h3 {
    color: white;
}

.rounded-img {
    border-radius: 8px;
}

/* Buttons */
/* Form button: button.subscribe Foobar */
/* Link:
    a(href="...")
        button.button-regular Foobar
*/
.button-regular {
    line-height: 55px;
    background-color: var(--action-color);
    font-size: 22px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    display: inline-block;
    padding: 0px 20px;
    margin: 10px;
    outline: none;
    border: none;
    height: 58px;
}
.button-regular span {
     font-size: 14px;
}
.button-regular.buy {
    background-color: #03e085;
    margin: 0px;
    height: 54px;
    border-radius: 10px;
}

/* Filters */
.img-white {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.static .row {
    padding-bottom: 100px;
}

/* Menu */
.navbar-brand {
    margin-right: 64px;
}
.navbar-light .navbar-nav .nav-link {
    color: red;
}
.nav-item a {
    font-size: 18px;
    margin-right: 20px;
    font-weight: 400;
    color: red;
}
.nav-item a:hover {
    color: var(--action-color-secondary);
}

img.media-img {
    width: 48px;
    height: 48px;
    margin: 0px 20px;
    filter: opacity(40%);
    filter: sepia(1);
    filter: saturate(80%);
    filter: hue-rotate(320deg);
    -webkit-filter: opacity(40%) sepia() saturate(80%) hue-rotate(320deg);
}
img.media-img:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
}
.row .text-block {
    padding-top: 75px;
    padding-bottom: 150px;
}

.main-image {
    max-width: 402px;
    max-height: 605px;
    object-fit: cover;
}
.main-image-left {
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
}

/* Footer */
.footer {
    padding-bottom: 32px;
    background-color: #10042c;
    padding-top: 96px;
    color: white;
}
.footer h2 {
    color: white;
    margin-top: 0px;
    margin-bottom: 24px;
}
.footer h5 {
    font-size: 1.05rem;
}
.footer p {
    max-width: var(--text-max-width-large);
    text-align: center;
    width: 100%;
    color: white;
    margin-bottom: 24px;
}
.footer p.disclaimer {
    font-size: 12px;
    color: #7a748c;
}
.footer p.newsletter {
    font-size: 16px;
    color: #7a748c;
    margin: 15px 0px 55px 0px;
}
.footer a {
    font-size: 14px;
    color: white;
    font-weight: 300;
}
.page-footer-social-links a {
    color: white;
    font-size: 16px;
    margin: 0px 16px;
    border: none;
}
.absolute-image-right {
    width: 600px;
} 
#tlemail {
    line-height: 23px;
    border: 3px solid #ff050d;
    font-size: 15px;
    color: #ff050d;
    text-align: center;
    border-radius: 9px;
    display: inline-block;
    width: 295px;
    margin: 10px;
    vertical-align: top;
    height: 58px;
    font-weight: 500;
    /*-webkit-text-fill-color: red;*/
    outline: none;
}

input {
    background-color: var(--main-color);
}
::-webkit-input-placeholder {color:white;}
::-moz-placeholder          {color:white;}/* Firefox 19+ */
:-moz-placeholder           {color:white;}/* Firefox 18- */
:-ms-input-placeholder      {color:white;}
:focus::-webkit-input-placeholder {color: transparent}
:focus::-moz-placeholder          {color: transparent}
:focus:-moz-placeholder           {color: transparent}
:focus:-ms-input-placeholder      {color: transparent}

.desktop {
    display: block;
}
.mobile {
    display: none;
}

/* Left-right margins on large desktop */
@media (min-width: 1200px) {
    .container {
        width: 75%;
        max-width: 970px;
    }
    .nav-item a {
        margin-right: 3.3333333333333335vw;
    }
}

/* Live Chat Widget */
/* #livechat-compact-container {
    bottom: 0%!important;
} */

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) {
    .flex-start {
        justify-content: flex-start;
    }
    .static .row.fixed-img {
        padding-bottom: 0;
        position: relative;
        padding-top: 96px;
    }
    .absolute-image-right {
        max-height: 100%;
        position: absolute;
        max-width: 55%;
        right: 0;
        bottom: 0;
    }
}
.features .col-md-4 {
    margin: 35px 0px;
}

/* Landscape phone to portrait tablet and down */
@media (max-width: 767px) {
    .col-md-4 {
        margin-bottom: 32px;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    p {
        font-weight: 500;
    }
    .page-footer-social-links a {
        margin: 0 16px;
    }
    .menu a {
        margin: 0px 25px;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .static .row.fixed-img {
        padding-top: 50px;
    }
    .row .text-block {
        padding-top: 0px;
        padding-bottom: 50px;
    }
    h2 {
        max-width: none;
        font-weight: 400;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .static .row {
        padding: 50px 0;
    }
    .mobile-menu {
        display: none;
        padding-bottom: 30px;
    }
    .menu a {
        font-size: 16px;
        line-height: 40px;
        width: 100%;
        float: left;
        margin: 0;
        text-align: left;
        box-sizing: border-box;
        padding: 0 40px;
    }
    .menu {
        flex-direction: column;
        padding: 0;
        height: auto;
        left: 0;
        top: 0;
        bottom: inherit;
    }
    .main-image {
        max-width: 100%;
        margin: 0px;
    }
    img.media-img {
        margin: 20px;
    }
    .footer h5 {
        font-size: 18px;
    }
    .footer a {
        font-weight: 400;
    }
    .footer p {
        margin-right: auto;
        margin-left: auto;
    }
    .nav-item a {
        font-size: 20px;
        margin: 0;
        font-weight: 500;
    }
}