body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Barlow Semi Condensed', sans-serif;
}
body.uk-position-relative {
	overflow: hidden;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0px 0px 20px;
    padding: 0px;
    letter-spacing: 0;
    color: black;
}

a,
a:hover {
    text-decoration: none;
    color: black;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
	width: 1630px;
	padding: 0px 15px;
	margin: 0px auto;
	max-width: 100%;
	box-sizing: border-box;
}

/* Header */
.header {
	background: #f1f1f1;
	padding: 18px 0px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-mobile-menu, .header-inner .mobile-menu {
	display: none;
}
.header-inner .logo a {
    display: block;
}
.logo img {
    max-width: 180px;
}
.header-menu ul {
    display: flex;
}
.header-inner ul li a {
	font-size: 17px;
	padding: 5px 20px;
	font-weight: 500;
	letter-spacing: 0.5px;
}
.hire-link .hire-btn {
	background: #3ba9f0;
	color: #fff;
	font-size: 16px;
	padding: 0px 38px;
	display: inline-flex;
	height: 50px;
	align-items: center;
	border-radius: 5px;
	border: none;
	cursor: pointer;
    transition: all ease-in-out 0.3s;
}
.hire-link .hire-btn:hover {
    background-color: #000;
}


/* Section */
.portfolio-section {
        padding: 20px 0px;
}
.portfolio-wrap {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 20px;
}
.portfolio-wrap .portfolio-item {
	width: calc(25% - 15px);
	max-height: 600px;
	overflow: hidden;
	position: relative;
}
.portfolio-wrap .portfolio-item::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    height: 100%;
    width: 100%;
    transition: all ease-in-out 0.1s;
}
.portfolio-wrap .portfolio-item:hover::before {
    background-color: rgba(0,0,0,0.6);
}
.portfolio-wrap .portfolio-item .img-section img {
	height: auto;
	object-fit: cover;
	width: 100%;
}
.portfolio-wrap .portfolio-item .text-section {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
}
.portfolio-wrap .portfolio-item .text-section h2 {
	font-size: 25px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 25px;
    text-align: center;
}
.portfolio-wrap .portfolio-item .text-section .btn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio-wrap .portfolio-item .text-section .btn a {
	height: 35px;
	background-color: transparent;
	color: #fff;
	line-height: 35px;
	padding: 0px 28px;
	border: 2px solid #fff;
	box-sizing: border-box;
    transition: all ease-in-out 0.3s;
}
.portfolio-wrap .portfolio-item .text-section .btn a:hover {
    background-color: #fff;
    color: #000;
}
.overlap.show{
	display: block;
}
.overlap {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.8);
	z-index: 2;
}
.contact-us {
	display: none;
	padding: 60px 40px;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 3;
	background: rgba(0,0,0,0.9);
	box-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.contact-us .close {
	position: absolute;
	right: 20px;
	top: 20px;
	display: flex;
	justify-content: center;
	cursor: pointer;
}
.contact-us .close img {
	height: 25px;
	width: 25px;
}
.contact-us.show {
	display: flex;
}
.contact-us .container {
    width: 630px;
}
.contact-us form {
	display: flex;
	flex-wrap: wrap;
    column-gap: 10px;
}
.contact-us form .feild {
	width: calc(50% - 5px);
	position: relative;
	margin-bottom: 10px;
}
.contact-us form .select_feild {
	width: calc(50% - 5px);
	position: relative;
	margin-bottom: 10px;	
}
.contact-us form .feild label {
	position: absolute;
	left: 30px;
	top: 50%;
	color: #000;
	font-size: 14px;
	transform: translateY(-50%);
}
.contact-us form input {
	display: block;
	width: 100%;
	max-height: 40px;
	padding: 0 0 0 30px;
	min-height: 40px;
	height: 40px;
	box-sizing: border-box;
	border: none;
}
::placeholder {
	color: #000;
}
.contact-us form label {
	display: none;
}
.contact-us form select {
	width: 100%;
	height: 40px;
	background: #fff;
	border: 1px solid #000;
	padding: 5px 0 5px 30px;
	cursor: pointer;
}
.contact-us form .feild.note_feild {
	width: 100%;
}
.contact-us form .feild.note_feild label {
	top: 20px;
	transform: inherit;
}
.contact-us form textarea {
	width: 100%;
	padding: 22px 0px 0px 30px;
	max-height: 150px;
	box-sizing: border-box;
	border: 1px solid #000; 
}
.contact-us form input.submit {
	width: 150px;
	padding: 0;
	margin: 15px auto 0;
	background: transparent;
	border-radius: 0;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	letter-spacing: 2px;
	transition: all ease-in-out 0.3s;
	border: 1px solid #fff;
	text-transform: uppercase;
}
.contact-us form input.submit:hover {
    background: #fff;
	color: #000;
}

/* footer */
footer {
	padding: 15px 0px;
	border-top: 1px solid #d9d9d9;
}
.copy-right {
    text-align: center;
}
.copy-right small:first-child {
    padding-right: 5px;
    border-right: 1px solid #000;
    margin-right: 5px;
}
.copy-right small {
	font-size: 15px;
    color: #000;
}
.copy-right small a {
    text-decoration: underline;
    color: #1e87f0;
}

@media only screen and (max-width: 1259px) {
.portfolio-wrap .portfolio-item {width: calc(33.33% - 15px);}
}
@media only screen and (max-width: 1023px) {
.portfolio-wrap .portfolio-item {max-height: 400px;}
}
@media only screen and (max-width: 959px) {
.logo img {max-width: 150px;}
.header-inner ul li a {font-size: 16px;padding: 5px 15px;}
.portfolio-wrap .portfolio-item .text-section h2 {font-size: 22px;margin-bottom: 20px;}
}
 @media only screen and (max-width: 767px) {
.portfolio-wrap .portfolio-item {width: calc(50% - 10px);}
}
@media only screen and (max-width: 639px) {
.logo img {max-width: 120px;}
.hire-link .hire-btn {font-size: 15px;padding: 0px 31px;height: 40px;}
.header-inner ul li a {font-size: 14px;padding: 5px 12px;}
.copy-right small {font-size: 14px;line-height: 1.5;display: block;}
.copy-right small:first-child {padding-right: 0;border-right: none;margin-right: 0;}
}
@media only screen and (max-width: 539px) {
.header {padding: 15px 0px;}
.logo img {max-width: 100px;}
.hire-link .hire-btn {font-size: 14px;padding: 0px 22px;height: 35px;}
.portfolio-wrap {column-gap: 10px;row-gap: 10px;}
.portfolio-wrap .portfolio-item {width: calc(50% - 5px);max-height: 300px;}
.portfolio-wrap .portfolio-item .text-section h2 {font-size: 20px;}
}
@media only screen and (max-width: 479px) {
.portfolio-wrap .portfolio-item .text-section h2 {font-size: 17px;}
.portfolio-wrap .portfolio-item .text-section .btn a {padding: 0px 22px;}
}