/*-----------------------------------------------------------------------------------

Appy 1.0.0
Original Author: Ashekur Rahman Hridoy http://www.facebook.com/ashekur.rahman.hridoy

Modified by Roman Scott for Nofanity

-----------------------------------------------------------------------------------

CSS INDEX
===================

1. Fonts
2. Theme Default CSS
3. Button Style
4. Helper Classes
5. Main Menu Area
6. Page Title
7. Home Area
10. Feature Area
11. Service Box
14. Download Area
15. Price Area
16. Questions Area
18. Footer Area
19. ScrollUp Button

Custom

-----------------------------------------------------------------------------------*/

/*-----------------
1. Fonts
------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800');

@font-face {
    font-family: "Titillium Bold";
    src: url("/shared/fonts/Titillium-Bold.ttf");
}

@font-face {
    font-family: "Titillium";
    src: url("/shared/fonts/Titillium-Regular.ttf");
}

@font-face {
    font-family: "Titillium Light";
    src: url("/shared/fonts/Titillium-Light.ttf");
}

@font-face {
    font-family: "Titillium Semibold";
    src: url("/shared/fonts/Titillium-SemiBold.ttf");
}

.titillium {
    font-family: "Titillium Semibold";
}

/*-------------------
2. Theme Default CSS
--------------------*/

* {
    outline: none;
}

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    color: #FF9800;
}

input:focus,
button:focus,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #F4511E;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 400;
    line-height: 1.4em;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 32px;
}

html,
body {
    height: 100%
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #8790af;
}


/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*-- 3. Button Style --*/

.bttn-white {
    position: relative;
    background: #F4511E;
    background: -webkit-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: -o-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4511E', endColorstr='#FFB300', GradientType=1);
    overflow: hidden;
    z-index: 1;
    margin-right: 10px;
    border: none;
}

.bttn-white img {
    height: 20px;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

.bttn-white:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.bttn-white.active,
.bttn-white:hover {
    color: #ffffff;
}

.bttn-white.active:before,
.bttn-white:hover:before {
    opacity: 0;
}

.bttn-default,
.bttn-white {
    padding: 12px 30px;
    background-color: #ffffff;
    display: inline-block;
    color: #FF8A65;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: none;
}

.bttn-green {
    color: #22bc66;
    background: #22bc66;
    background: -webkit-linear-gradient(90deg, rgba(41,242,113,1) 0%, rgba(34,188,102,1) 100%);
    background: -o-linear-gradient(90deg, rgba(41,242,113,1) 0%, rgba(34,188,102,1) 100%);
    background: linear-gradient(90deg, rgba(41,242,113,1) 0%, rgba(34,188,102,1) 100%);
}

.bttn-default .lnr,
.bttn-white .lnr {
    margin-right: 10px;
}


.bttn-default {
    padding: 12px 40px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #F4511E;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4511E', endColorstr='#FFB300', GradientType=1);
    color: #ffffff;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.bttn-default:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

.sq {
    border-radius: 3px !important;
}


/*-- 4. Helper Classes --*/

.section-padding-top {
    padding-top: 120px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.upper {
    text-transform: uppercase;
}

.angle,
.overlay {
    position: relative;
    z-index: 1;
}

.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #FF9800;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #ff5119 0%, #F57C00 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #ff5119 0%, #F57C00 100%);
    background: linear-gradient(45deg, #ff5119 0%, #F57C00 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64A19', endColorstr='#F57C00', GradientType=1);
    opacity: 0.8;
    /* IE6-9 fallback on horizontal gradient */
    z-index: -2;
}

.overlay-404:before {
    opacity: 0.9 !important;
}

.angle:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0) -webkit-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -webkit-gradient(linear, left bottom, right top, color-stop(50%, #ffffff), color-stop(50%, transparent)) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) -o-linear-gradient(left bottom, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    background: rgba(0, 0, 0, 0) linear-gradient(to right top, #ffffff 50%, transparent 50%) repeat scroll 0 0;
    z-index: -1;
}

.dark-color {
    color: #434345
}

.orange-color {
    color: #FF8A65;
}

.white-color {
    color: #ffffff !important;
}

.gray-bg {
    background-color: #fff8f8;
}

/*-- 5. Main Menu Area --*/

.mainmenu-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 140px 15px 0;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #F4511E;
    background: -webkit-linear-gradient(45deg, #F4511E 0%, #FFA000 100%);
    background: -o-linear-gradient(45deg, #F4511E 0%, #FFA000 100%);
    background: linear-gradient(45deg, #F4511E 0%, #FFA000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4511E', endColorstr='#FFA000', GradientType=1);
    z-index: -1;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.mainmenu-area.affix {
    position: fixed;
    top: 0;
}

.mainmenu-area.affix:before {
    opacity: 1;
}

.mainmenu-area .right-button {
    position: absolute;
    right: 15px;
    top: 16px;
}

.mainmenu-area .right-button a {
    color: #ffffff;
    padding: 10px 40px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-size: 14px;
}

.mainmenu-area .right-button a:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #FF8A65;
}

.mainmenu-area ul.mainmenu {
    text-align: center;
    float: none;
    display: block;
}

.mainmenu-area ul.mainmenu li {
    float: none;
    display: inline-block;
    text-align: center;
}

.mainmenu-area ul.nav.navbar-nav li a {
    color: #ffffff;
    padding: 10px 2px;
    text-transform: capitalize;
    background: transparent;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    margin: 0 15px;
}

.mainmenu-area ul.nav.navbar-nav li a:hover,
.mainmenu-area ul.nav.navbar-nav li.active a {
    border-bottom-color: #ffffff;
}

.mainmenu-area .navbar-brand {
    height: auto;
    padding: 0 15px;
}

.mainmenu-area .navbar-brand img {
    height: 50px;
}

/*-- 6. Page Title --*/

.page-title .title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8790af;
    font-weight: 600;
}

.text-center.page-title .title:before,
.page-title .title:after {
    content: '';
    width: 50px;
    height: 1px;
    display: inline-block;
    background-color: #e1e1e1;
    margin: 0 15px;
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
}

.page-title-large .title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8790af;
    font-weight: 600;
}

.text-center.page-title-large .title:before,
.page-title-large .title:after {
    content: '';
    width: 50px;
    height: 2px;
    display: inline-block;
    background-color: #e1e1e1;
    margin: 0 16px;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

@media (max-width: 480px){
    .text-center.page-title-large .title:before,
    .page-title-large .title:after {
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
    }
}

.page-title-large-dark .title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #434345;
    font-weight: 600;
}

.text-center.page-title-large-dark .title:before,
.page-title-large-dark .title:after {
    content: '';
    width: 50px;
    height: 2px;
    display: inline-block;
    background-color: #5b5b5d;
    margin: 0 16px;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

@media (max-width: 480px){
    .text-center.page-title-large-dark .title:before,
    .page-title-large-dark .title:after {
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
    }
}

.text-center.page-title-large-white .title:before,
.page-title-large-white .title:after {
    background-color: white !important;
}

@media (min-width: 980px) and (max-width: 1200px){
    .text-center.page-title-large-download .title:before,
    .page-title-large-download .title:after {
        width: 0 !important;
        height: 0 !important;
    }
}

@media (max-width: 520px){
    .text-center.page-title-large-download .title:before,
    .page-title-large-download .title:after {
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
    }
}

/*-- 7. Home Area --*/

.home-area {
    width: 100%;
    padding-top: 20vh;
    color: #ffffff;
    margin-bottom: -120px;
}

.home-area .mobile-image {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 250px;
}

/*-- 10. Feature Area --*/

.feature-area {
    color: #ffffff;
    background-color: #FF7043;
    background-image: url('../img/feature-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 95%;
}

.feature-area .page-title-large .title {
    color: #ffffff;
}

/*-- 11. Service Box --*/

.service-box {
    position: relative;
    padding-left: 100px;
}

.team-slide .owl-controls .owl-nav > div,
.service-box .box-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 72px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #E64A19;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #E64A19 0%, #FFB300 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #E64A19 0%, #FFB300 100%);
    background: linear-gradient(45deg, #E64A19 0%, #FFB300 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E64A19', endColorstr='#FFB300', GradientType=1);
    overflow: hidden;
    z-index: 1;
    color: #FF8A65;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

.team-slide .owl-controls .owl-nav > div:hover,
.service-box:hover .box-icon {
    color: #ffffff;
}

.team-slide .owl-controls .owl-nav > div:before,
.service-box .box-icon:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    opacity: 1;
}

.team-slide .owl-controls .owl-nav > div:hover:before,
.service-box:hover .box-icon:before {
    opacity: 0;
}

.service-box h4 {
    margin-bottom: 10px;
}

/*-- 14. Download Area --*/

.download-area {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 70px;
    padding-top: 50px;
    padding-bottom: 50px;
    color: #ffffff;
}

.download-area .mobile-image {
    margin-top: -106px;
    margin-bottom: -200px;
}

.download-area svg path {
    fill: #FF8A65 !important;
    transition: 0.3s;
}

.download-area .bttn-white:hover svg path {
    fill: white !important;
}

/*-- 15. Price Area --*/

.price-box {
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    color: #8790af;
    -webkit-box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-box:hover {
    -webkit-box-shadow: 0 0 50px -15px #FF7043;
    box-shadow: 0 0 50px -15px #FF7043;
}

.price-box .price-header {
    background-color: #fff5f5;
    padding: 40px;
    color: #FF8A65;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #F4511E;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #ff5119 0%, #FB8C00 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #ff5119 0%, #FB8C00 100%);
    background: linear-gradient(45deg, #ff5119 0%, #FB8C00 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5119', endColorstr='#FB8C00', GradientType=1);
    position: relative;
    overflow: hidden;
    z-index: 2;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* original color:  #f2f3fc  */

.price-box .price-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff5f5;
    z-index: -1;
    opacity: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.price-box:hover .price-header {
    color: #ffffff;
}

.price-box:hover .price-header:before {
    opacity: 0;
}


.price-box .price-header .price-icon {
    font-size: 60px;
    margin-bottom: 10px;
}

.price-box .price-header h4 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 3px;
}

.price-box .price-body {
    padding: 40px;
}

.price-box .price-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.price-box .price-rate {
    color: #FF8A65;
    margin-bottom: 40px;
    font-size: 20px;
}

.price-box .price-rate sup {
    top: -20px;
    font-size: 26px;
}

.price-box .price-rate .rate {
    font-size: 56px;
}

.price-box .price-footer {
    margin-bottom: 40px;
}

.price-box .price-footer .bttn-white {
    padding: 13px 50px;
}

.price-box .price-footer .bttn-white:before {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 100px;
    left: 2px;
    top: 2px;
}

/*-- 16. Questions Area --*/

.questions-area {
    background-color: #fff8f8;
}

.toggole-boxs {
    margin-top: -20px;
}

.toggole-boxs h3 {
    font-size: 18px;
    background-color: #ffffff;
    margin-bottom: 0;
    margin-top: 20px;
    outline: none;
    padding: 20px 30px 20px 60px;
    color: #434345;
    border-left: 5px solid #FF8A65;
    cursor: pointer;
    position: relative;
}

.toggole-boxs h3:before,
.toggole-boxs h3:after {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    width: 10px;
    height: 2px;
    background-color: #434345;
}

.toggole-boxs h3:before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.toggole-boxs h3.ui-state-active:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.toggole-boxs div {
    background-color: #ffffff;
    padding: 0 30px 20px 60px;
    border-left: 5px solid #FF8A65;
}

/*-- 18. Footer Area --*/

.footer-box {
    text-align: center;
}

.footer-box .box-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 30px auto;
    text-align: center;
    line-height: 75px;
    color: #ffffff;
    font-size: 20px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#482cbf+0,6ac6f0+100 */
    background: #F4511E;
    /* Old browsers */
    /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4511E', endColorstr='#FFB300', GradientType=1);
    border-radius: 100%;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.footer-box .box-icon:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border: 2px solid #ffffff;
    border-radius: 100%;
    z-index: -1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s
}

.footer-box:hover .box-icon {
    color: #FF8A65;
}

.footer-box:hover .box-icon:before {
    background-color: #ffffff;
}

.footer-bottom {
    padding: 20px 0;
    background: linear-gradient(90deg, rgba(54,54,54,1) 0%, rgba(33,33,33,1) 27%, rgba(0,0,0,1) 100%);
    border-top: 1px solid #FF8A65;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    background-color: #222222;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0; !important;
    padding: 0; !important;
    line-height: 140% !important;
    font-family: "Roboto";
}

.footer-bottom hr {
    margin-top: 0;
    opacity: 0;
}

.footer-bottom ul {
    margin-bottom: 0;
}

.footer-bottom ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom ul li a:hover, footer ul li a:focus, footer ul li a:active, footer ul li a.active {
    color: #FF9800;
    text-decoration: none;
}

.heart {
    animation: heathing 1s ease infinite;
}

@keyframes heathing {
    0% {
        transform: scale(0.75);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(0.75);
    }
    60% {
        transform: scale(1);
    }
    80% {
        transform: scale(0.75);
    }
    100% {
        transform: scale(0.75);
    }
}

/*-- 19. ScrollUp Button --*/

#scrollUp {
    right: 0;
    bottom: 0;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: #FF8A65;
}

.preloader {
    background-color: #ffffff;
    bottom: 0;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

.preloader span {
    background: #F4511E;
    background: -webkit-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: -o-linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    background: linear-gradient(45deg, #F4511E 0%, #FFB300 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F4511E', endColorstr='#FFB300', GradientType=1);
    border-radius: 100%;
    height: 60px;
    width: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    margin: auto;
    -webkit-animation: mymove 1.5s infinite linear;
    animation: mymove 1.5s infinite linear;
}

@-webkit-keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
    }
    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 20px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 20px rgba(255, 138, 101, 0.7);
    }
    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
    }
}

@keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
    }
    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 20px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 20px rgba(255, 138, 101, 0.7);
    }
    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 10px rgba(255, 138, 101, 0.7), 0 0 0 10px rgba(255, 138, 101, 0.7);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
        box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7), 0 0 0 0 rgba(255, 138, 101, 0.7);
    }
}

/*-- Custom --*/
.levitate {
    animation: levitate 1s alternate ease-in-out infinite;
}

.levitate-delay {
    animation-delay: 0.2s;
}

@keyframes levitate {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 10px);
    }
}

@media (min-width: 1600px){
    #videoContainer {
        margin-top: 4em;
        margin-left: -12em;
        margin-right: 8em;
        padding: 0;
        width: 66%;
    }
}

@media (min-width: 1550px) and (max-width: 1599px){
    #videoContainer {
        margin-top: 5em;
        margin-left: -8em;
        margin-right: 8em;
        padding: 0;
        width: 60%;
    }
}

@media (min-width: 1350px) and (max-width: 1550px){
    #videoContainer {
        margin-top: 5em;
        margin-left: -6em;
        margin-right: 6em;
        padding: 0;
        width: 60%;
    }
}

@media (min-width: 1200px) and (max-width: 1350px){
    #videoContainer {
        margin-top: 6em;
        margin-left: -2em;
        margin-right: 2em;
        padding: 0;
        width: 55%;
    }
}

@media (min-width: 992px) and (max-width: 1200px){
    #videoContainer {
        margin-top: 9em;
        margin-left: -3em;
        margin-right: 3em;
        padding: 0;
        width: 55%;
    }
}

@media (min-width: 992px){
    #downloadVideoContainer {
        margin-right: -10em;
    }
}

#videoContainerText {
    margin-top: 2em;
    text-align: center;
}
