body {
    background: #fff;
    color: #2f3138;
    font-family: "Open Sans", sans-serif;
}
a {
    color: #4bc9f2;
    transition: 0.5s;
}
a:active,
a:focus,
a:hover {
    color: #f8234a;
    outline: 0;
    text-decoration: none;
}
p {
    padding: 0;
    margin: 0 0 30px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Raleway, sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
    color: #0e1b4d;
}
.wow {
    visibility: hidden;
}
.back-to-top {
    position: fixed;
    display: none;
    background: #4bc9f2;
    color: #fff;
    width: 40px;
    height: 45xGjpCYwjcFg8yytjgvE4iUzM7EZxqAUQT4c1bGz4uXUJKRrK3ZCac7zsfWbA6fdnHYDZDXpbo86LkfSrWmkWptV9fvM6z-in-out;
}
.back-to-top i {
    font-size: 24px;
    padding-top: 6px;
}
.back-to-top:focus {
    background: #e0072f;
    color: #fff;
    outline: 0;
}
.back-to-top:hover {
    background: #e0072f;
    color: #fff;
}
#logo {
    margin-bottom: 2rem;
}
#logo a{
    display:block;
}
#intro {
    width: 100%;
    height: 100vh;
    background: url(../img/intro-bg.jpg) top center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
#intro:before {
    content: "";
    background: rgba(6, 12, 34, 0.2);
	backdrop-filter: blur(0px);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
#intro .intro-container {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 90px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#intro h1 {    
    font-size: 32px;
	margin-bottom: 3rem!important;
}
#intro h1 span {    
    color: #4bc9f2;
}
#intro h1 a {
	color: #fff;
}
#intro h1 a:hover {
	color: #f8234a;
}
#intro h2 {
    font-size: 56px;
	margin-bottom: 0px!important;
}

#intro h1, #intro h2{
    color: #fff;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

#intro p {
    color: #ebebeb;
    font-family: Raleway, sans-serif;
	font-weight: 600;
    font-size: 20px;
}

#intro #logo {
	margin: 20px 0;
}

#intro .about-btn {
    font-family: Raleway, sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #4bc9f2;
}

#intro .about-btn:hover {
    background: #4bc9f2;
    color: #fff;
}

@-webkit-keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        -webkit-transform: scale(0.6, 0.6);
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (min-width: 1024px) {
    #intro {
        background-attachment: fixed;
    }
    #about {
        background-attachment: fixed;
    }
}
@media (max-width: 991px) {
    #intro .intro-container {
        top: 70px;
    }
    #intro h1 {
        font-size: 34px;
    }
    #intro p {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
	#logo{
		max-width:400px;
	}
	#logo a img{
		max-width:400px;
	}
	#intro h1 {    
		font-size: 20px;
	}
	#intro h2 {
		font-size: 38px;
	}
}

