/* CSS RESET */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
    font-family: 'Poppins', sans-serif;
}
html{
    list-style: none;
    scroll-behavior: smooth;
}
/* SASS */
:root{
    --bg-color: #1a1a1a;
    --bg2-color: #070607;
    --text-color: rgb(255, 115, 0);
    --text-color2: rgb(223, 227, 230);
}
body{
    background-color: var(--bg-color);
    color: var(--text-color2);
}
h1{
    font-size: 2.5rem;
}
h3{
    font-size: 1.8rem;
}

/* TOP NAVBAR */
.top-navbar{
    position: sticky;
    top: 0px;
    left: 0px;
    /* background: none; */
    height: 10vh;
    background-color: var(--bg2-color);
    /* text-align: center; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 105px;
}
.top-navbar a{
    color: var(--text-color2);
    text-decoration: none;
    list-style: none;
    transition: all .3s ease;
}
.top-navbar a:hover{
    color: var(--text-color);
}
.top-navbar a.active{
    color: var(--text-color);
}

/* .nav-header span{
    color: var(--text-color);
} */
.nav-ul{
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navitem{
    margin: 2px 10px;
    font-size: smaller;
    list-style: none;
}


.burger{
    display: none;
    /* position: absolute; */
    justify-self: flex-end;
    color: var(--bg-color);
    /* top: 45px; */
    /* right: 5%; */
    margin-left: 30vw;
    cursor: pointer;
    /* transition: all 0.5s ease; */
}
.line{
    width: 33px;
    margin: 5px 2px;
    height: 5px;
    background-color: var(--text-color2);
    border-radius: 5px;
}

/* MAIN/HOME-SECTION */
.main-section{
    background-color: black;
    height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    background: rgb(41, 59, 199) url(/images/homebg2.17.jpg) no-repeat center center/cover;
    /* background-blend-mode: darken; */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    /* color: rgb(255, 115, 0); */
    color: var(--text-color2);
    font-size: small;
    transition: all .5s ease;
}

.main-item{
    transition: all .5s ease;
    margin: 0 80px;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
}

#thirdline{
    margin-top: 5px;
}

.org{
    color: var(--text-color);
}
.btn{
    background-color: var(--text-color);
    color: var(--bg2-color);
    padding: 3px;
    cursor: pointer;
    margin: 0px 10px;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all .5s ease;
}

.btn a{
    text-decoration: none;
    color: var(--bg2-color);
}

.btn:hover{
    transform: scale(0.9);
    color: var(--text-color2);
}
.button-item{
    display: flex;
    align-items: center;
    margin: 10px 80px;
    /* justify-content: center; */
}
.icon-img{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin: 0px 5px;
    /* background: url(/circleplay.svg) no-repeat center center/cover; */
    background-color: var(--text-color);
    transition: all .5s ease;
}
.icon-img:hover{
    transform: scale(0.9);
}

/* ABOUT-SECTION */
.about{
    display: flex;
    padding: 5vh 0vh;
    /* margin-bottom: 5vh; */
    /* height: 90vh; */
    justify-content: center;
    align-items: center;
}


.about-image img{
    /* height: 80vh; */
    width: 35vw;
    /* height: 60vh; */
    border-radius: 10px;
    margin-right: 20px;
    margin-left: 80px;
    /* transition: all .5s ease; */
}
/* .about-image img:hover{
    transform: scale(1.02);
} */
.about-text{
    margin-right: 80px;
    padding: 30px;
}
.skill-item{
    padding: 2px 10px;
    font-size: smaller;
    color: rgb(190, 201, 210);
}
.seo{
    padding: 100px;
}
.head{
    margin: 20px 0px;
}

/* SERVICES-SECTION */
.services{
    /* height: 80vh; */
    padding: 5vh 0vh;
    background-color: #070607;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-top: 15vh; */
}
.services-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont{
    width: 20vw;
    height: 20vh;
    margin: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--bg-color);
    border-radius: 10px;
    transition: all .5s ease;
}
.cont:hover{
    transform: scale(1.1);
}
.cont-header{
    margin-top: 10px;
}
.cont-para{
    font-size: smaller;
    text-align: center;
    padding: 10px;
}

/* PORTFOLIO-SECTION */
.portfolio{
    padding: 5vh 0vh;
    background-color: var(--bg-color);
    /* height: 80vh; */
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}
.project-heading{
    text-align: center;
}

.project-box1,
.project-box2{
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-box1 a,
.project-box2 a{
    text-decoration: none;
    color: var(--text-color2);
}

.p-box{
    border: 2px solid black;
    /* color: var(--text-color); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 20vw;
    height: 20vh;
    /* height: 0px; */
    margin: 20px;
    padding: 20px 20px 0px 20px;
    /* padding-bottom: 0px; */
    border-radius: 10px;
    background-color: var(--bg2-color);
    transition: all .5s ease;
}

.p-box:hover{
    transform: scale(0.95);
}

.inner-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* position: relative; */
    /* bottom: 0px; */
    /* left: 0px; */
    background-image: linear-gradient(rgba(0,0,0,0.1),  rgb(255, 60, 0));
    background-blend-mode: darken;
    text-align: center;
    /* height: 0; */
    /* overflow: hidden; */
    width: 20vw;
    border-radius: 10px;
    /* padding: 20px; */
    /* margin: 20px; */
    margin-top: 5px;
    transition: all .3s ease;
    /* display: none; */
    opacity: 0;
}

.inner-box:hover{
    opacity: 1;
    height: 100%;
    padding: 20px;
}

.box-p,
.box-p2{
    font-size: small;
}

#calculate{
    background: rgb(93, 93, 93) url(/images/Social\ media\ marketing-3.jpg)no-repeat center center/cover;
    background-blend-mode: darken;
}
#web-design{
    background: rgb(93, 93, 93) url(/images/seo)no-repeat center center/cover;
    background-blend-mode: darken;
}

#tik-tac{
    background: rgb(93, 93, 93) url(/images/Social\ media\ marketing-2.jpg)no-repeat center center/cover;
    background-blend-mode: darken;
}
#wheather{
    background: rgb(93, 93, 93) url(/images/seo)no-repeat center center/cover;
    background-blend-mode: darken;
}


/* CONTACT-SECTION */
.contact{
    /* height: 90vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 50px; */
    background-color: var(--bg2-color);
    margin: 10vh 20vw;
    padding: 5vh 10vw;

    transition: all .5s ease;
}
/* .contact:hover{
    transform: scale(0.99);
} */
.contact-box{
    height: 80%;
}
.formgroup{
    padding: 10px;
}
form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    /* height: 60vh; */
}
.contact textarea,
.contact input{
    background-color: var(--bg-color);
    color: var(--text-color2);
    width: 40vw;
    border: 1px solid var(--bg-color);
    border-radius: 10px;
    padding: 2px 10px;
}
.contact-box label{
    display: block;
}
.footer{
    text-align: center;
    padding: 5px;
    background-color: var(--bg2-color);
}


/* UTILITY-CLASSES */
.smaller{
    font-size: smaller;
}
.remove-bg{
    background: var(--bg-color);
}
.seo{
    color: var(--text-color2);
    text-decoration: none;
}
