/*
* This theme is prepared by Bikesh Bhaila.
* All rights reservation
* Made by: Bikeshbhail.com.np
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FFFFFF;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

#home-section{
    background-image: url(../images/back.jpeg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.home-overlay{
    height: 100vh;
    background: rgba(23, 26, 29, 0.85);
    color: #fff;
}

.home-heading{
    margin-top: 260px;
}

.home-heading h1{
    line-height: 36pt;
    font-weight: 300;
    padding-bottom: 40px;
    font-size: 32pt;
}

.view{
    font-size: 16px;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 30px;
    border-radius: none;
    cursor: pointer;
    transition: all 0.7s;
}

.view:hover{
    color: #fff;
    text-decoration: none;
    background-color: #04c2c9;
    border: #04c2c9;
}

.view i{
    transition: all 0.7s;
}
.view:hover i{
    transform: rotate(90deg);
    transition: all 0.7s;
}
.home-heading h1 span{
    color: #e31b6d;;
}

.social-links{
    margin-top: 50px;
    list-style: none;
}

.social-links li{
    display: inline-block;
    margin-right: 4px;
    border: 1px solid #757575;
}

.social-links li a{
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    color: #C1C1C1;
    text-decoration: none;
}

.social-links li:hover{
    background: #eee;
    transition: all 1s;
}

.social-links li:hover a{
    color: #000;
}


/* navbar */
nav{
    background-color: #1b242f;
    min-height: 40px;
    border-bottom: 3px solid #04c2c9;
}

nav a{
    margin: 0 5px;
    float: initial;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar-nav{
    padding: 10px;
    text-align: center;
}

.navbar-light .navbar-nav .nav-link{
    padding: 0 25px;
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active{
    color: #e31b6d;
}

/* ================================== */
.section-title{
    padding-top: 50px;
    text-align: center;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.section-title h2{

    position: relative;
    font-size: 40px;
    font-family: raleway-bold !important;
    color: #444649;
}

.section-title h2::before{
    left: 51%;
    content: "";
    position:  absolute;
    height: 4px;
    background-color: #444649;
    width: 70px;
    bottom: -15px;
    margin-left: -50px;
}

.about{
    padding-bottom: 50px;
}

.about-content img{
    width: 55%;
    margin-left: 85px;
    box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.30);
}
.about-content h3{
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin: 0 0 20px 0;
}

.about-content p{
    font-size: 16px;
    line-height: 2em;
    color: #888;
}

/* skills */
.skills{
    background-color: #eee;
    padding-bottom: 40px;
}

.skills .card i{
    margin-top: 50px;
    padding: 20px;
    font-size: 40px;
    color: #e31b6d;
}

.skills .card:hover{
    border-bottom: 2px solid #e31b6d;
    transition: all 1s;
    box-shadow: 0px 10px 30px rgba(57, 56, 61, 0.30);
}

.skills .card p{
    padding: 10px 30px 30px 20px;
    font-size: 16px;
    line-height: 34px;
    color: #444649;
}

/* Testimonials */
.testimonials{
    background-color: #eee;
}

/* ============== Contact =================*/
.contact{
    background-color: #2d2d2d;
    padding-bottom: 10px;
}

.contact-text{
    color: #e31b6d;
    font-size: 15px;
    text-align: center;
}

.contact .section-title h2::before{
    
    background-color: #fff;
    
}

.contact .form-control{
    display: block;
    width: 100%;
    height: 50px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 21px;
    color: #555555;
    border: 1px solid #aeaeae;
    border-radius: 3px;
    margin-bottom: 15px;
    opacity: .8;
    outline: 0px !important;
    transition: all 1s;
}

#message{
    height: 170px;
    resize: none;
}
/* Footer */
.footer{
    margin-top: 30px;
    border-top: 0.5px solid #eee;
}

.footer p{
    margin-top: 30px;
    text-align: center;
    color: #eee;
}

.scrollTop{
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #e31b6d;
    color: #fff;
}

.scrollTop:hover{
    color: #fff;
    text-decoration: none;
}


@media only screen and (max-width: 767px){
    .home-heading{
        margin-top: 200px
    }

    .home-heading h1{
        font-size: 26pt;
    }
}