@import 'bootstrap.min.css';
@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Long+Cang&family=Teko:wght@300;400;500;600;700&display=swap');

html {
    font-size: 15px;
    height: 100%;
    background: #010101;
}

body {
    font-family: 'Teko', sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    color: #999;
    height: 100%;
    background: #010101;
}



/* selection */

::selection {
    background-color: #010101;
    color: #fff
}

-webkit-::selection {
    background-color: #010101;
    color: #fff
}

::-moz-selection {
    background-color: #010101;
    color: #fff
}

h3,
.h3 {
    font-family: 'Teko', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h3 a,
.h3 a {
    color: inherit
}

.h3 a:hover {
    text-decoration: none
}

p {
    margin-bottom: 20px;
    font-family: 'Teko', sans-serif;
    font-weight: 400;
}

a {
    color: #fff;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out
}

a:hover,
a:focus {
    color: #fff;
    outline: none
}

a:focus {
    text-decoration: none
}


.div-logo h2 {
    font-family: 'Teko', sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: #e52e71;
    line-height: 0.85em;
    margin-top: 0;
}

.div-logo span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 4px;
    margin-left: 15px;
    line-height: 1em;
}

.div-logo p {
        font-family: 'Teko', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #ccc;
    text-align: center;
    margin-top: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2em;
}

.div-logo img {
    max-width: 180px;
}

.js .animate-box {
    opacity: 0;
}

.btn {
    font-family: 'Teko', sans-serif;
    position: relative;
    display: inline-block;
    padding: 11px 20px 5px 20px;
    line-height: 1.5em;
    color: #fff;
    background: #e52e71;
    border: 1px solid #e52e71;
    border-radius: 0;
    text-decoration: none;
    -webkit-transition: all .3s ease-out!important;
    transition: all .3s ease-out!important;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn:hover,
.btn:focus {
    color: #fff;
    border: 1px solid #e52e71;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none!important
}


.layout {
    background: #010101 url("../img/bg.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.brand {
    display: inline-block;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: #fff
}

.brand:hover,
.brand:focus {
    color: #fff;
    text-decoration: none
}

.text-primary {
    color: #010101
}

.main {
    padding: 90px 0;
    text-align: center
}

.description {
    margin-top: 3.6em
}

.ovon-version {
    margin: 60px 0 0 0;
}

.ovon-version h3 {
    margin-bottom: 20px
}

.ovon-version figure {
    position: relative
}

.ovon-version figure img {
    display: block;
    border: 7px solid rgba(255,255,255, 0.075);
}


.ovon-version figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.ovon-version figcaption .inner {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.ovon-version figure:hover figcaption {
    opacity: 1
}

@media(min-width:768px) {
    html {
        font-size: 85%
    }
}

@media(min-width:992px) {
    html {
        font-size: 92%
    }
}

@media(min-width:1200px) {
    html {
        font-size: 100%
    }
}



/* pricing */

.pricing-info,
.pulse {
    font-family: 'Teko', sans-serif;
    display: inline-block;
    background: #e52e71;
    font-weight: 300;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 35px;
    text-align: center;
    z-index: 99;
    border-radius: 90%;
    height: 70px;
    width: 70px;
    line-height: 80px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s
}

.pricing-info:hover,
.pricing-info:focus,
.pricing-info:active,
.pulse:hover,
.pulse:focus,
.pulse:active {
    text-decoration: none;
}

.pricing-info a,
.pulse a {
    color: #fff;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(.1);
        transform: scale(.1);
        opacity: 0
    }
    50% {
        opacity: .3
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

.pulse:nth-child(1) {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite
}

.pulse:nth-child(2) {
    -webkit-animation: pulse 2s infinite .3s;
    animation: pulse 2s infinite .3s
}

.pulse:nth-child(3) {
    -webkit-animation: pulse 2s infinite .6s;
    animation: pulse 2s infinite .6s
}
