*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}
:root{
	--bg-color: black;
	--text-color: #fff;
	--second-color: #685f78;
	--main-color: #FF0000;
	--big-font: 3.8rem;
	--h2-font: 2.6rem;
	--p-font: 1.1rem;
}
body{
	background: var(--bg-color);
	color: var(--text-color);
}
body{
	background: var(--bg-color);
	color: var(--text-color);
}
header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: transparent;
	padding: 23px 13%;
	transition: all .40s ease;
}
.logo {
	padding-left: 1%;
	height: auto;
	font-size: var(--p-font);
	color: var(--main-color);
	max-width: 100%;
	font-weight: 600;
}
.navbar{
	display: flex;
}
.navbar a{
	color: var(--text-color);
	font-weight: 600;
	font-size: var(--p-font);
	padding: 10px 22px;
	transition: all .40s ease;
}
.navbar a:hover{
	color: var(--main-color);
}

#menu-icon{
	font-size: 34px;
	color: var(--text-color);
	z-index: 10001;
	cursor: pointer;
	display: none;
}
.home {
	margin: auto;
	margin-bottom: 10px;
}

.slider{
    width: 900px;
    max-width: 100vw;
    height: 500px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
	margin: auto;
    width: 900px;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}

header.sticky{
	background: var(--bg-color) 5%;
	padding: 12px 13%;
	box-shadow: 0px 4px 15px rgb(0 0 0 / 8%);
}

.btn{
	display: inline-block;
	padding: 16px 30px;
	font-size: var(--p-font);
	font-weight: 700;
	background: var(--main-color);
	color: #fff;
	border-radius: 30px;
	transition: all .40s ease;
}
.btn:hover{
	transform: scale(0.9) translateY(-5px);
}

.card{
	background: rgba(255,255,255,0.1);;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.card img{
	width: 200px;
	height: 100px;
	cursor: pointer;
	margin: 10px;
}

.about {
	margin-top: 3rem;
	background: ;
	background-size: cover;
	background-position: center;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3rem;
	align-items: center;
}
.about-img{
	margin: auto;
	text-align: center;
	justify-content: center;
}

.about img{
	margin: auto;
	width: 300px;
	height: 300px;
	border-radius: 1rem;
	border: 1px solid  #FF0000;
}

.about-text h3 {
	font-size: 20px;
	line-height: 1.8;
	margin bottom: 20px;
	text-align: center;
}
.about p {
	font-size: var(--p-font);
	color: #fff;
	font-weight: 500;
	line-height: 20px;
	text-align: center;
}
.paragraph-button {
	justify-content: center;
	align-items: center;
	text-align: center;
}

.btn{
	display: inline-block;
	padding: 16px 30px;
	font-size: var(--p-font);
	font-weight: 700;
	background: var(--main-color);
	color: #fff;
	border-radius: 30px;
	transition: all .40s ease;
}
.btn:hover{
	transform: scale(0.9) translateY(-5px);
}
h2{
	padding-top: 15px;
	text-align: center;
	margin-bottom: 2rem;
	font-size: 4rem;
}

.services {
	background: black;
	
}
.all-services {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.service{
	overflow: hidden;
	background: rgba(255,255,255,0.1);
	z-index: 5px;
	color: #21201e;
	text-align: center;
	width: 250px;
	height: 320px;
	padding: rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid  #FF0000;
	border-radius: 1.2rem;
	margin: 1rem;
}
.services h3{
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.service .service-title, .service .service-paragraph{
	font-size: 16px;
	margin-bottom: 0.3rem;
}

.service:hover {
	box-shadow: 5px 15px 25px #eeeeee;
}

.service img {
	height: 190px;
	width: 210px;
	margin: 1rem;
	border-radius: 3px;
	transition: all 0.3s;
}

.service p {
	font-size: var(--p-font);
	color: #fff;
	font-weight: 300;
	line-height: 20px;
}

.service a:link, .service a:visited{
	color: #ececec;
	display: inline-block;
	text-decoration: none;
	background-color: #FF0000;
	padding: 1rem 3rem;
	border-radius: 1rem;
	margin-top: 0.3rem;
	font-size: 14px;
	transition: all 0.2s;
}

.service a:hover{
	transform: scale(1.1);
}

/* Project Section Start */
.main-text h2{
	color: var(--main-color);
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.project-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, auto));
	align-items: center;
	grid-gap:  2rem;
	margin-top: 5rem;
}

.row img {
	height: auto;
	width: 100%;
	border-radius: 0.5rem;
	margin-bottom: 1.5rem;
}

.row {
	padding: 10px;
	background: #edeef2;
	border-radius: 0.5rem;
	transition: all .40s ease;
}

.main-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.row h3 {
	font-size: 25px;
	font-weight: 700;
}

.main-text h4{
	text-align: center;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.row h6 {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}

.row:hover {
	transform: scale(1.01) translateY(-5px);
	cursor: pointer;
}

@media (max-width: 890px){
	.projects{ 
		display: grid;
		grid-template-columns: 2fr;
		grid-gap: 1rem;
        align-items: center;
	}

	.row {
		padding: 10px;
		cursor: pointer;
	}
	
	.row img{
		height: auto;
		width: 100%;
	}
	
}
@media (max-width: 600px){
	.projects{
		height: auto;
		display: block;
		grid-template-columns: 1fr;
		grid-gap: 1rem;
	}
}

.p-btn{
	display: inline-block;
	padding: 16px 20px;
	text-align: center;
	font-size: var(--p-font);
	font-weight: 700;
	background: var(--main-color);
	color: var(--bg-color);
	border-radius: 30px;
	transition: all .40s ease;
}
.p-btn:hover{
	transform: scale(0.9) translateY(-5px);
}
/* Project Section End */

.contact{
	background: url(bg1.png);
	background-size: cover;
	padding: 60px 13%;
}
.main-contact{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	gap: 2rem;
}
.contact-content img{
	height: auto;
	width: 160px;
	max-width: 100%;
	margin-bottom: 30px;
}
.contact-content li{
	margin-bottom: 18px;
}
.contact-content li a{
	display: block;
	text-decoration-style: bold;
	color: var(--text-color);
	font-weight: 500;
	font-size: 15px;
	transition: all .40s ease;
}
.contact-content li a:hover{
	transform: translateX(10px);
	color: #FF0000;
}

.last-text p{
	text-align: center;
	padding: 60px;
	color: var(--second-color);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

/* Social Media Start */
.wrapper {
	display: grid;
  	height: 100%;
  	width: 100%;
  	
}
.wrapper .button{
  display: inline-block;
  height: 60px;
  width: 60px;
  float: left;
  overflow: hidden;
  background: #fff;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease-out;
}
.wrapper .button:hover{
  width: 200px;
}
.wrapper .button .icon{
  display: inline-block;
  color: black;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1):hover .icon{
  background: #4267B2;
}
.wrapper .button:nth-child(2):hover .icon{
  background: #25D366;
}
.wrapper .button:nth-child(3):hover .icon{
  background: #E1306C;
}

.wrapper .button .icon i{
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-out;
}
.wrapper .button:hover .icon i{
  color: #fff;
}
.wrapper .button span{
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
  transition: all 0.3s ease-out;
}
.wrapper .button:nth-child(1) span{
  color: #4267B2;
}
.wrapper .button:nth-child(2) span{
  color: #25D366;
}
.wrapper .button:nth-child(3) span{
  color: #E1306C;
}

/* Social Mdia End */

@media (max-width: 1410px){
	header{
		padding: 10px 3%;
		transition: .2s;
	}
	header.sticky{
		padding: 12px 3%;
		transition: .2s;
	}
	section{
		padding: 70px 3%;
		transition: .2s;
	}
	.container{
		padding: 70px 3%;
		transition: .2s;
	}
	.contact{
		padding: 60px 3%;
		transition: .2s;
	}

}

@media (max-width: 1050px){
	:root{
		--big-font: 3.2rem;
	  --h2-font: 2rem;
	  --p-font: 1rem;
	  transition: .1s;
	}
	.home{
		height: 84vh;
	}
}

@media (max-width: 1025px){
	#menu-icon{
		display: block;
	}
	.navbar{
		position: absolute;
		top: 100%;
		right: -100%;
		width: 100%;
		height: 100vh;
		background: var(--main-color);
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 20px;
		transition: all .40s ease;
	}
	.navbar a{
		display: block;
		margin: 1.3rem 0;
		color: var(--bg-color);
	}
	.navbar a:hover{
		color: var(--bg-color);
		transform: translateY(-5px);
	}
	.navbar.open{
		right: 0;
	}
}

@media (max-width: 890px){
	.home{
		display: block;
		height: 100vh;
		grid-template-columns: 1fr;
		grid-gap: 3rem;
	}
	.slider{
	    width: 100%;
	}

	.slider .list img {
		width: 100%;
	}
	.about{
		grid-template-columns: 1fr;
		grid-gap: 1rem;
	}
}
@media (max-width: 600px){
	.home{
		height: 70vh;
	}
}