* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out
}

.clearfix {
    clear: both
}

.hidden {
    display: none !important
}

.container {
    margin-left: auto;
    margin-right: auto
}

::-webkit-scrollbar {
    display: none
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.buttons-container {
    width: 100%;
    margin-top: 30px;
    cursor: default
}

.buttons-container .button {
    display: inline-block;
    background-color: #6495ed;
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 25px 9px;
    margin: 5px;
    border: 2px solid #6495ed;
    outline: none;
    border-radius: 30px;
    cursor: pointer
}

.buttons-container .button:not(:first-of-type) {
    background-color: #fff;
    color: #252525;
    border: 2px solid #fff
}

.buttons-container .button:first-of-type:hover {
    background-color: transparent
}

.buttons-container .button:not(:first-of-type):hover {
    background-color: transparent;
    color: #fff
}

body {
    background-color: #383340;
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    word-spacing: 2px;
    letter-spacing: 1px;
    overflow-x: hidden
}

header {
    background: url(../images/header-background.jpg) fixed center center;
    background-size: cover;
    -webkit-mask-image: -webkit-linear-gradient(top, black 70%, transparent 100%);
}

header .overlay {
    background: -webkit-gradient(linear, left top, right bottom, from(rgba(43, 56, 125, 0.8)), to(rgba(107, 52, 91, 0.8)));
    background: -webkit-linear-gradient(top left, rgba(43, 56, 125, 0.8), rgba(107, 52, 91, 0.8));
    background: -o-linear-gradient(top left, rgba(43, 56, 125, 0.8), rgba(107, 52, 91, 0.8));
    background: linear-gradient(to bottom right, rgba(43, 56, 125, 0.8), rgba(107, 52, 91, 0.8));
}

header .container {
    min-height: 400px;
    padding: 100px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

header h1 {
    width: 100%;
    font-size: 42px;
    font-weight: normal;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif
}

header h1:first-letter {
    color: #6495ed
}

header h3 {
    font-weight: normal;
    margin: 0
}

.page {
    padding: 0px 0 30px;
    -webkit-mask-image: -webkit-linear-gradient(bottom, black 75%, transparent 200%)
}

.page .page-content > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center
}

.page .demo {
    width: 45%;
    margin-bottom: 25px
}

.page .demo .demo-img {
    display: block;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2)
}

.page .demo .demo-img img {
    display: block;
    width: 100%;
    height: auto
}

.page .demo .demo-name {
    display: block;
    margin: 20px 0
}

.Scroll-To-Top {
    position: fixed;
    right: -40px;
    bottom: 25px;
    z-index: 1000;
    width: 35px;
    height: 35px;
    background-color: #6b345b;
    border-radius: 3px;
    cursor: pointer;
    opacity: .8;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.Scroll-To-Top:hover {
    opacity: 1
}

.Scroll-To-Top:active {
    opacity: .9
}

.Scroll-To-Top span {
    display: block;
    height: 2px;
    width: 11px;
    background-color: #fff;
    margin: 0 -2px
}

.Scroll-To-Top span:first-of-type {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg)
}

.Scroll-To-Top span:last-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg)
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        width: 970px
    }
}

@media (max-width: 991px) {
    .container {
        width: 750px
    }
}

@media (max-width: 767px) {
    .container {
        width: auto;
        margin: 0
    }
    
    header .container {
        min-height: 350px;
        padding: 70px 0
    }
    
    .page .demo {
        width: 80%
    }
}

@media (max-width: 450px) {
    .page .demo {
        width: 90%
    }
}