@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700&display=swap');
* {
    padding: 0;
    margin: 0;
}
html {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
.container {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;     
}
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/* Header Section */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
}
#header .header {
    min-height: 8vh;
    background-color: rgbs(31, 30, 30, 0.24);
    transition: .3s ease background-color;
}
.header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 10px;
}
#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: rgb(31, 30, 30);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
    transition: .5s ease left;
}
#header .nav-list ul.active {
    left: 0;
}
#header .nav-list ul a {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: .2rem;
    text-decoration: none;
    color: red;
    padding: 20px;
    display: block;
}
#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 10rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after{
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a{
    color: crimson;
}
#header .hamburger{
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
    margin-right: 20px;
}
#header .hamburger:after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: white;
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: white;
    transition: .3s ease;
    transition-property: top, bottom;
}
#header .hamburger .bar::after{
    top: 8px;
}
#header .hamburger .bar::before{
    bottom: 8px;
}
#header .hamburger.active .bar::before {
    bottom: 0;
}
#header .hamburger.active .bar::after{
    bottom: 0;
}
/* End Header Section */
/* Hero Section */
#hero{
    background-image: url("images/36.jpg");
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}
#hero::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .5;
    z-index: -1;
}
#hero .hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
    justify-content: flex-start;
}
#hero h1 {
    display: block;
    width: fit-content;
    font-size: 3px;
    position: relative;
    padding: 10px 30px;
    color: transparent;
    animation: text_reveal .5s ease forwards;
    animation-delay: 1.5s;
}
#hero h1 span{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: crimson;
    animation: text_reveal_box 1s ease;
    animation-delay: 1s;
}
#hero h2 {
    display: block;
    font-size: 10px;
    padding: 10px 30px;
    color: white;
}
#hero p {
    display: block;
    font-size: 15px;
    margin-top: 5px;
    padding: 10px 30px;
    transition: 3s ease background;
    color: white;
}
/* End Hero Section */


/* Services Section */
#services{
    
}
#services .services{
    flex-direction: column;
    text-align: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 0;
}
#services .service-title {
    font-size: 50px;
    font-weight: 100;
    color: black;
    margin-bottom: black;
    letter-spacing: .2rem;
    text-align: center;
}
#services .service-top p {
    font-size: 15px;
    margin-top: 2px;
    line-height: 2.5rem;
    font-weight: 10px;
    letter-spacing: .05px;
}
#services .service-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}
#services .service-item{
    flex-basis: 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    border-radius: 10px;
    margin: 10px 5%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#services .service-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .5;
    z-index: -1;
}
#services .service-item h2{
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}
#services .service-item p{
    color: white;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.9rem;
}
/* End Services Section */


/* Projects Section */
#projects .projects{
    flex-direction: column;
    max-width: 1200px;
    margin: 10 auto;
    padding: 10px;
}
#projects .projects-header h1{
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 4rem;
    font-weight: 300;
    color: black;
    margin-bottom: black;
    letter-spacing: .2rem;
    text-align: center;
}
#projects .all-projects{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#projects .project-item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80%;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 10px;
}
#projects .project-img {
    flex-basis: 50%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
#projects .project-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .1;
}
#projects .project-img img {
    transition: .3s ease transform;
}
#projects .project-item:hover .project-img img {
    transform: scale(1.1);
}
/* End Projects Section */

/* About Section */
#about .about {
    flex-direction: column;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}
#about .col-left {
    width: 8px;
    height: 80px;
}
#about .col-right h2 {
    font-size: 1.8rem;
    font-weight: 100;
    letter-spacing: .1rem;
    margin-top: 0px;
    margin-bottom: 0px;
}
#about .col-right p {
    margin-bottom: 5px;
    font-size: 2rem;
    margin-top: 5px;
    line-height: 2.5rem;
    font-weight: 100;
    letter-spacing: .05rem;
}
.card-img-top{
	height: 40vh;
	width: 100%;
	object-fit: cover;
	padding: 30px;
	border-radius: 1px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #fff;
	margin: 10px 4px;
	box-shadow: 0px 15px 25px rgba(0,0,0,0.2);
	transition: 0.3s;
}
.card-body{
	font-family: "permanent-marker";
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: #fafafafa;
}
.card-title{
	font-family: 'Pacifico', cursive;
	font-size: 2.5rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #222222;
}
/* En;d About Section */

/* Contact Section */
#contact .contact {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}
#contact .contact-items {
    width: 400px;
}
#contact .contact-item {
    width: 100%;
    padding: 20px;
    text-align: center;
    padding: 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#contact .contact-item:hover {

}
#contact .icon {
	flex-direction: row;
    width: 100px;
    margin: 0 auto;
    margin-bottom: 5px;
}
#contact .contact-info h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 5px;
}
#contact .contact-info h2 {
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-weight: 500;
}
/* End Contact Section */

/* Footer */
footer{
	width: 100%;
	position: absolute;
	bottom: 0;
	background: linear-gradient(to right, #00093c, #2d0b00);
	color: #fff;
	padding: 100px 0 30px;
	border-top-left-radius: 125px;
	font-size: 13px;
	line-height: 20px;
}
.row{
	width: 85%;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.col{
	flex-basis: 25%;
	padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
	flex-basis: 15%;
}
.navbar-brand{
	font-family: 'Pacifico', cursive;
	font-size: 15px;
	font-weight: 50px;
	color: #e74c3c;
}
.LLL{
	width: 80px;
	margin-bottom: 30px;
}
.col-1 h3{
	width: fit-content;
	margin-bottom: 40px;
	position: relative;
}
.email-id{
	width: fit-content;
	border-bottom: 1px solid #ccc;
	margin: 20px 0;
}
ul li{
	list-style: none;
	margin-bottom: 12px;
}
ul li a{
	text-decoration: overline;
	color: #fff;
}
form{
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ccc;
	margin-bottom: 50px;
}
form .far{
	font-size: 15px;
	margin-right: 10px;
}
form input{
	width: 100%;
	background: transparent;
	color: #ccc;
	border: 0;
	outline: none;
}
form button{
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
form button .fas{
	font-size: 16px;
	color: #ccc;
}
.social-icons  .fab{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #000;
	background: #fff;
	margin-right: 15px;
	cursor: pointer;
}
.social-icons  .fa{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #000;
	background: #fff;
	margin-right: 15px;
	cursor: pointer;
}
hr{
	width: 90%;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin: 20px auto;
}
.copyright{
	text-align: center;
}
.underline{
	width: 100%;
	height: 5px;
	background: #767676;
	border-radius: 3px;
	position: absolute;
	top: 25px;
	left: 0;
	overflow: hidden;
}
.underline span{
	width: 15px;
	height: 100%;
	background: #fff;
	border-radius: 3px;
	position: absolute;
	top: 0;
	left: 10px;
	animation: moving 2s linear infinite;
}
@keyframes moving{
	0%{
		left: -20px;
	}
	100%{
		left: 100%;
	}
}
@media (max-width: 700px){
	footer{
		bottom: unset;
	}
	.col{
		flex-basis: 100%;
	}
	.col:nth-child(2), .col:nth-child(3){
		flex-basis: 100%;
	}
}

/* End Footer */
/* keyframes */
@keyframes hamburger_puls{
    0%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(1.5);
    }
}
@keyframes text_reveal_box{
    50%{
        width: 100%;
        left: 0;
    }
    100%{
        width: 0;
        left: 100%;
    }
}
@keyframes text_reveal {
    100%{
        color: white;
    }
}
/* End keyframes */

/* Media Query For Tablet */
@media only screen and (min-width:768px){
    .cta{
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1.section-title {
        font-size: 3rem;
    }
}
/* Hero */
#hero h1 {
    font-size: 5rem;
}
/* End Hero */
/* Service Section */
#services .service-bottom .service-item {
    flex-basis: 22%;
    margin: 1.5%;
}
/* End Service Section */
/* Projects */
#project .project-item{
    flex-direction: column;
}
#projects .project-item {
    height: 400%;
    margin: 0;
    width: 100%;
    border-radius: 0;
}
#projects .all-projects .project-info {
    height: 500%;
}
#projects .all-projects .project-img {
    height: 500%;
}
/* End Projects */
/* contact */
#contact .contact {
    flex-direction: colomn;
    padding: 100px 0;
    align-items: center;
    justify-content: center;
    min-width: 20vh;
}
#contact .contact-items {
    width: 25%;
    margin-top: 0;
    margin-bottom: 0;
}
/* End contact */
/* header */
#header .hamburger {
        display: none;
}
#header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
    background-color: transparent;
}
#header .nav-list ul li {
    display: inline-block;
}
#header .nav-list ul li a{
    font-size: 1.8rem;
}
#header .nav-list ul a:after {
    display: none;
}
/* End header */
/* End Media Query For Tablet */

/* Media Query for Desktop */
@media only screen and(min-width: 1200px) {
/* header */
#header .hamburger {
        display: none;
}
#header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
}
/* End header */
/* Service Section */
#services .service-bottom .service-item {
    flex-basis: 22%;
    margin: 1.5%;
}
/* End Service Section */
}
/* End Media Query for Desktop */





