*{
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body{
	margin: 0;
	padding: 0;
	font-family: "Nunito Sans", system-ui;
	font-size: 18px;
	color: #fff;
	background: #0E0C38;
	font-weight: 400;
  	font-style: normal;
}

input{
	display: block;
	width: 100%;
	border: 0;
	background: #1d1b43;
	height: 50px;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 18px;
	color: #fff;
	font-family: "Nunito Sans", system-ui;
}
textarea{
	display: block;
	width: 100%;
	border: 0;
	background: #1d1b43;
	height: 150px;
	padding: 10px;
	font-size: 18px;
	color: #fff;
	border-radius: 5px;
	resize: none;
}
input:focus, textarea:focus{
	outline: 0;
	border: 0;
}

h1{
	font-size: 65px;
	font-weight: 1000;
	margin: 0;
}
h2{
	font-size: 55px;
	font-weight: 800;
	margin: 0 0 20px;
}
.submitBtn {
    border: 2px solid #fff;
    border-radius: 3rem;
	background-color: #1d1b43;
	cursor: pointer;
    color: #fff;
    font-size: 1rem;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-decoration: none;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    display: inline-block;
}
.submitBtn::after {
    background-color: #dc3545;
    border-radius: 3rem;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}
.submitBtn:hover {
    border: 2px solid transparent;
    color: #fff;
    transform: scale(1.05);
    will-change: transform;
}
.submitBtn:hover::after {
    transform: translate(0, 0);
}

header{
	height: 100px;
	position: absolute;
	z-index: 15;
	left: 0;
	top: 0;
	width: 100%;
}
.wrapper{
	max-width: 1300px;
	margin: auto;
}
header .wrapper{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.logo img{
	width: 200px;
	display: block;
}
nav{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
	flex-direction: row;
}
nav a{
	display: block;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	line-height: 40px;
	padding: 0 15px !important;
	background-color: inherit !important;
}
nav a:hover{
	background: #dc3545 !important;
	color: #fff;
}
nav a.active{
	background: #dc3545 !important;
	color: #fff;
}

.hero-section{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100vh;
}
.links-box{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 30px;
}
/* .links-box a{
	display: block;
	padding: 10px 35px;
	background-color: #dc3545;
	color: #fff;
	border-radius: 50px;
	text-decoration: none;
} */

.links-box a {
    border: 2px solid #fff;
    border-radius: 3rem;
    color: #fff;
    font-size: 1rem;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-decoration: none;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    display: inline-block;
}
.links-box a::after {
    background-color: #dc3545;
    border-radius: 3rem;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}
.links-box a:hover {
    border: 2px solid transparent;
    color: #fff;
    transform: scale(1.05);
    will-change: transform;
}
.links-box a:hover::after {
    transform: translate(0, 0);
}

.h-text{
	margin: 0;
	padding-bottom: 40px;
	font-size: 45px;
	font-weight: 800;
	color:#fff;
}
.hero-text p {
	line-height: 30px;
}

.three-cols {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
    padding-top: 2rem;
}
.three-cols > div {
    flex: 0 0 30%;
}
.three-cols .icon {
    padding-bottom: 1.5rem;
}
.three-cols .icon img {
    width: 60px;
	display: block;
	-webkit-filter: invert(1);
   filter: invert(1);
}
.three-cols .cont h4 {
    padding-bottom: 0.8rem;
	margin: 0; 
}
.three-cols p{
	margin: 0
}

.services{
	padding: 80px 0;
}

.contact{
	padding: 60px 0;
	position: relative;
}
.contact::before{
	background: url(../img/map_bg.png) no-repeat center center;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.2;
	z-index: -1;
}
.inputBox label, .inputBox1 label{
	padding-bottom: 10px;
	display: block;
}
.col-2{
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.col-2 > div{
	flex: 0 0 40%;
}
.col-2 > div:last-child{
	flex: 0 0 60%;
}
footer{
	background-color: #040221;
	text-align: center;
	padding: 30px 0;
}

.form-box{
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form-box > div{
	flex: 0 0 48%
}
.form-box > div:nth-child(5){
	flex: 0 0 100%;
}
.form-box > div:nth-child(7){
	flex: 0 0 100%;
}

.design-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}
.design-list .items {
    position: relative;
	flex: 0 0 31%;
}
.design-list .imgbox {
    height: 400px;
    overflow: hidden;
    border-radius: 0.8rem;
}
.design-list .imgbox > img{
	display: block;
	width: 100%;
}
.design-list .items:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(246, 246, 246, 0.2);
    z-index: -1;
    position: absolute;
    top: -13px;
    left: -13px;
    border-radius: 0.8rem;
}
.openLinks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    justify-content: center;
    justify-items: center;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-out;
}
.openLinks img {
    width: 40px;
}
.design-list .imgbox:hover .openLinks {
    backdrop-filter: blur(10px);
    opacity: 1;
    visibility: visible;
    cursor: pointer;
}
.addButton.showBtn {
    display: block;
}
.addButton {
    padding-top: 2rem;
    display: none;
}
.design-list .items.hideBox {
    display: none;
}

.portfolio{
	padding: 80px 0;
	background-color: #040221;
}
.linkBtn {
    border: 2px solid #fff;
    border-radius: 3rem;
    color: #fff;
    font-size: 1rem;
    overflow: hidden;
    padding: 1rem 2rem;
    position: relative;
    text-decoration: none;
    transition: 0.2s transform ease-in-out;
    will-change: transform;
    z-index: 0;
    display: inline-block;
}
.linkBtn::after {
    background-color: #dc3545;
    border-radius: 3rem;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-100%, 0) rotate(10deg);
    transform-origin: top left;
    transition: 0.2s transform ease-out;
    will-change: transform;
    z-index: -1;
}
.linkBtn:hover {
    border: 2px solid transparent;
    color: #fff;
    transform: scale(1.05);
    will-change: transform;
}
.linkBtn:hover::after {
    transform: translate(0, 0);
}

.tools-box{
	display: flex;
	gap: 20px;
	flex-direction: row;
	align-items: center;
	padding-bottom: 35px;
}
.tools-box img{
	height: 80px;
}
.skills{
	background-color: #040221;
	padding: 80px 0;
}
.title{
	font-size: 25px;
	font-weight: 700;
	padding-bottom: 20px;
}
.colr-rvt{
	-webkit-filter: invert(1);
    filter: invert(1);
}
.contact-details{
	display: flex;
	flex-direction: column;
	padding-right: 60px;
}
.info a{
	line-height: 45px;
	text-decoration: none;
	color:#fff;
}
.info strong{
	display: inline-block;
	width: 120px;
}

.grid-column-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
}
.logo-box {
    padding: 2rem 1rem;
    /* border: 1px solid var(--color-border); */
    /* border-radius: 0.5rem; */
    height: 7rem;
    width: 100%;
}
.logo-box img{
    display: block;
    margin: auto;
    width: 150px;
}
.logo-box img.wht-logo{
	-webkit-filter: invert(1);
    filter: invert(1);
}
.clients{
	padding: 60px 0;
	background-color: #121042;
}
header.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	text-align: center;
	backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.2);
	z-index: 90;
	height: 70px;
}
.tgmenu{
	display: none;
	background: none;
	width: 40px;
	height: 40px;
	border: 0;
	font-size: 2rem;
	color: #fff;
}
.hero-section{
	position: relative;
}
.hero-section::before{
	background: url(../img/bg_top__right.png) no-repeat right top;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.2;
}
@media screen and (max-width:1300px) {
	.wrapper{
		padding: 0 15px;
	}
	.col-2 > div:last-child {
		flex: 0 0 58%;
	}
	.three-cols > div{
		flex: 0 0 29%;
	}
}
@media screen and (max-width:979px){
	.design-list .items{
		flex: 0 0 47%;
	}
	.three-cols{
		justify-content: inherit;
	}
	.three-cols > div{
		flex: 0 0 45%;
	}
	.form-box > div{
		flex: 0 0 100%;
	}
	nav{
		gap: 0;
	}
	.logo-box img{
		width: 120px;
	}
}
@media screen and (max-width:767px){
	.grid-column-four{
		grid-template-columns: repeat(2, 1fr);
	}
	.col-2{
		flex-direction: column;
	}
	.logo-box img{
		width:90%
	}
	nav{display: none;}
	.tgmenu{
		display: block;
	}
	h1{
		font-size: 35px;
	}
	.h-text{
		font-size: 25px;
	}
	.three-cols > div{
		flex: 0 0 44.5%;
	}
	h2{font-size: 35px;}
	.contact-details{
		padding-right: 0;
	}
	header{height: 70px;}
	nav.open{
		display: block;
		position: absolute;
		width: 100%;
		top: 70px;
		left: 0;
		background-color: #1d1b43;
		text-align: left;
	}
}
@media screen and (max-width:639px){
	.tools-box{
		flex-wrap: wrap;
	}
	.three-cols > div{
		flex: 0 0 100%;
	}
	.design-list .items{
		flex: 0 0 100%;
	}
}