/* General */
html,
body {
    min-height: 100vh;
}

/* Header */
.header{
    overflow: hidden;
}
.header-text{
    padding-top: 160px;
}
@media (min-width: 992px){
    /*.header-text{
        padding: 180px 0;
    }*/
}
.header-text .lead{
    max-width: 800px;
    margin: auto;
}
.header-arrow{
    width: 40px;
    height: 40px;
    margin-left: -20px;
    left: 50%;
    bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    transition: Background .3s;
}
.header-arrow:hover{
    background-color: rgba(255, 255, 255, 0.2);
}

/* Navbar */
.main-navbar{
    z-index: 2000;
}
.navbar{
    transition: box-shadow .3s;
}
#navbar-site .nav-link{
    font-weight: 500;
}

/* Main */
.main{

}

/* Section */
.section{
    padding: 2rem 1rem 3rem;
}
.section{
    padding: 45px 1rem;
}
@media (min-width: 1200px) {
    .section{
        padding: 50px 1rem;
    }
}

/* Headings */
h3{
    font-size: 1.25rem;
}

/* features */
.features p{
    max-width: 300px;
}

/* Colors */
.color-box{
    width: 100px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}
.color-box-text{
    font-size: .85rem;
    font-weight: 500;
}

/* Modal */
.modal-backdrop{
    z-index: 2001;
}
.modal{
    z-index: 2002;
}

/* Masonry */
.grid-item{
    width: 100%;
    padding-bottom: 1rem;
}
@media (min-width: 768px){
    .grid-item{
        width: 50%;
        padding: 1rem;
    }
}
@media (min-width: 992px){
    .grid-item{
        width: 33.333333%;
    }
}

/* Icons */
.icons-section [class*=fa-]{
    font-size: 1.2rem;
    opacity: .8;
}

/* Examples */
.template-example{
    max-width: 350px;
    display: block;
    color: inherit;
    transition: box-shadow .3s;
}
.template-example:hover{
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}
.template-example-1{
    background-image: linear-gradient(120deg, rgba(137, 247, 254, .5) 0%, rgba(102, 166, 255, .5) 100%);
}
.template-example-2{
    background-image: linear-gradient(120deg, rgba(132, 250, 176, .5) 0%, rgba(143, 211, 244, .5) 100%);
}
.template-example-3{
    background-image: linear-gradient(-45deg, rgba(255, 199, 150, .5) 0%, rgba(255, 107, 149, .5) 100%);
}

/* Download */
.download h2{
    background: linear-gradient(to right bottom, #406aff, #967adc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.download p{
    max-width: 800px;
}

/* Contact */
.contact-wrapper{
    max-width: 600px;
}
.contact-wrapper label.text-danger{
    margin-top: 4px;
    padding: .35rem 1rem;
    display: block;
    color: red;
    font-size: .9rem;
    opacity: .75;
    border-radius: .25rem;
    background-color: rgba(255, 0, 0, 0.05);
}
.custom-checkbox label.text-danger{
    margin-left: -1.5rem;
}

/* Footer */
.footer-brand{
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}
.footer-brand:hover{
    color: white;
}
.footer-nav .nav-link:hover{
    color: #4E73FF !important;
}


.loader{
    top: 0;
	z-index: 9999999;
    background: #FFF;
}

.spinner-border{
    margin: auto;
    color: #454B57;
}

/* To top button */
.to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: -50px;
    color: #fff;
    background-color: #454B57;
    z-index: 9999;
    transition: right .3s, background .3s;
}

.to-top ion-icon {
    font-size: 18px;
}

.to-top:hover {
    color: #fff;
}

.to-top.visible {
    right: 20px;
}

